diff --git a/cmd/get_monsters.py b/cmd/get_monsters.py new file mode 100644 index 0000000..0ea9bb7 --- /dev/null +++ b/cmd/get_monsters.py @@ -0,0 +1,630 @@ + +"""This script fetches updated monster lists from 5e.tools and then formats them in a consistant +manner. It exists because I got frustrated at the complexity my code required in order to pander +to the many, many, MANY "edge cases" in the 5e.tools JSON files where, in an apparent attempt to +make some entries more human readable, dictionaries would be turned into single scalar values and +any other items within would be assumed.""" + +from __future__ import annotations +from collections.abc import Mapping, Sequence +from functools import reduce +import json +import os +from pathlib import Path +import re +from typing import Any + +import click + +from util import listify +from dmtoolkit.api.models import AC, HP, Entry, Monster, SkillList, Speed, SpellCasting, Scalar +from dmtoolkit.api.serialize import load_json, dump_json + +# Default paths to the monster JSON files +DEFAULT_RAW = Path(__file__).parent / "raw_monsters.json" +DEFAULT_CONV = Path(__file__).parent.parent / "dmtoolkit" / "api" / "data" / "monsters.json" + +# Some statblocks are pointless and broken enough that writing edge cases for them isn't worth it, +# like young miss Cassalanter, who's entire statblock is just her name, size, and type. +IGNORE_MONSTERS = { + "Elzerina Cassalanter-WDH", + "Jenks-WDH", + "Nat-WDH", + "Squiddly-WDH", + "Terenzio Cassalanter-WDH", + # The source monster is miscapitalized and I don't feel like making the check case insensitive + "Ougalop-OotA", + "Shuushar the Awakened-OotA" +} + +def convert_monster(spec: dict[str, Any]) -> Monster: + if any(key in spec for key in ("_copy", "summonedBySpell", "summonedByClass")): + # Implement this later + return + + # Compare to ignore list + key = f"{spec.get('name')}-{spec.get('source')}" + if key in IGNORE_MONSTERS: + return + + optargs = { + "other_sources": spec.get("otherSources", []) + } + + typ = spec.get("type") + if isinstance(typ, str): + maintype = typ + elif isinstance(typ, dict): + maintype = typ["type"] + subtype = "" + if tags := typ.get("tags"): + _tags = [] + # some tags are not just strings + for tag in tags: + if isinstance(tag, dict): + _tags.append(f"{tag['prefix']} {tag['tag']}") + else: + _tags.append(tag) + subtype += ", ".join(_tags) + if swarm_size := typ.get("swarmSize"): + maintype = f"swarm of {get_size_string(swarm_size)} {maintype}s" + if subtype: + optargs["subtype"] = subtype + else: + raise TypeError(f"Invalid type of 'type': '{type(typ).__name__}': {typ}") + + # Make sure skills, saves, etc. have the expected format + if saves := spec.get("save"): + assert isinstance(saves, dict), f"Got type '{type(saves).__name__}'" + for k, v in saves.items(): + assert isinstance(k, str), f"Got type '{type(k).__name__}'" + assert isinstance(v, str), f"Got type '{type(v).__name__}'" + + # Make sure senses are a list of strings + senses = spec.get("senses", []) + assert isinstance(senses, list), f"Unexpected type '{type(senses).__name__}'" + for item in senses: + assert isinstance(item, str), f"Unexpected type '{type(senses).__name__}'" + + # Make sure passive is an int + assert isinstance(spec["passive"], int), f"Unexpected type '{type(spec['passive']).__name__}'" + + # Make sure languages are a list of strings + langs = spec.get("languages", []) + assert isinstance(langs, list), f"Unexpected type '{type(langs).__name__}'" + for item in langs: + assert isinstance(item, str), f"Unexpected type '{type(langs).__name__}'" + + monster = Monster( + name = spec["name"], + source = spec["source"], + page = spec.get("page", 0), + size_str = get_size_string(spec["size"]), + maintype = maintype, + alignment = get_alignment_string(spec.get("alignment", ["U"])), + ac = AC.from_spec(spec["ac"]), + hp = HP(**spec["hp"]), + speed = Speed.from_spec(spec["speed"]), + cr = get_cr(spec.get("cr", "0")), + xp = get_xp(get_cr(spec.get("cr", "0"))), + strength = spec["str"], + dexterity = spec["dex"], + constitution = spec["con"], + intelligence = spec["int"], + wisdom = spec["wis"], + charisma = spec["cha"], + skills = SkillList.from_spec(spec.get("skill")), + saves = spec.get("save"), + dmg_vulnerabilities = get_damage_mods(spec.get("vulnerable")), + dmg_resistances = get_damage_mods(spec.get("resist")), + dmg_immunities = get_damage_mods(spec.get("immune")), + cond_immunities = get_damage_mods(spec.get("conditionImmune")), + senses = spec.get("senses", []), + passive = spec.get("passive"), + languages = spec.get("languages", []), + traits = [Entry.from_spec(trait) for trait in spec.get("trait", [])], + actions = [Entry.from_spec(action) for action in spec.get("action", [])], + bonus_actions = [Entry.from_spec(bonus) for bonus in spec.get("bonus", [])], + reactions = [Entry.from_spec(reaction) for reaction in spec.get("reaction", [])], + legendary_actions = [Entry.from_spec(legendary) for legendary in spec.get("legendary", [])], + spellcasting = [SpellCasting.from_spec(s) for s in spec.get("spellcasting", [])], + **optargs + ) + return monster + + +def copy_monster(orig: dict[str, Any], copy: dict[str, Any]) -> dict[str, Any]: + """Takes a raw monster spec and the copy spec and returns the new monster spec.""" + new_spec = orig | copy # Copy the fields over + copy_spec = copy["_copy"] + + # Apply modifications + def replace_text(obj: Any, old: str, new: str): + """Replaces all occurences of old with new.""" + # The 'new' pattern is using $1 instead of \1 for backreferences, so we need to adjust it + new = re.sub(r"$(\d+)", r"\\\1", new) + if isinstance(obj, str): + return re.sub(old, new, obj) + if isinstance(obj, Mapping): + for k, v in obj.items(): + obj[k] = replace_text(v, old, new) + return obj + if isinstance(obj, Sequence): + return [replace_text(x, old, new) for x in obj] + return obj + + for target, mods in copy_spec.get("_mod", {}).items(): + mods = listify(mods) + + + for mod in mods: + # Sometimes, mod is a string instead of a modification spec + if isinstance(mod, str): + match mod: + case "remove": + del new_spec[target] + case _: + raise ValueError(f"Unknown modification: '{mod}'") + continue + match mod.get("mode"): + case "replaceTxt": + old_str = mod.get("replace", "") + new_str = mod.get("with", "") + if target == "*": + new_spec = replace_text(new_spec, old_str, new_str) + else: + new_spec[target] = replace_text(new_spec[target], old_str, new_str) + case "appendArr" | "appendIfNotExistsArr": + # Initialize the array if it doesn't exist + if target not in new_spec: + new_spec[target] = [] + # Add new item + new_spec[target].append(mod.get("items")) + case "insertArr": + insert_arr(new_spec, mod, target) + case "prependArr": + # Basically we just call insert_arr with an index of 0. + insert_mod_spec = { + "index": 0, + **mod + } + insert_arr(new_spec, insert_mod_spec, target) + case "replaceArr": + new_arr = mod.get("items") + new_arr = listify(new_arr) + new_spec[target] = new_arr + case "removeArr": + # Two posibilities: we're removing a scalar (string) from a list, or + # we're removing named entries. + if "items" in mod: + items = listify(mod["items"]) + new_spec[target] = [x for x in new_spec[target] if x not in items] + elif "names" in mod: + # Remove an entry from an array if the name matches + # Annoyingly, names can be either a string or a list of names + names = set(listify(mod.get("names"))) + new_spec[target] = [ + x for x in new_spec[target] if x.get("name") not in names + ] + else: + raise ValueError(f"Unexpected removeArr spec :(") + case "addSkills": + new_skills = mod.get("skills", {}) + new_spec["skills"] = new_spec.get("skills", {}) | new_skills + case "addSpells": + # Add new spells + for spellcasting_spec in new_spec.get("spellcasting", []): + extend_nested_array(mod, spellcasting_spec) + case "removeSpells": + for spellcasting_spec in new_spec.get("spellcasting", []): + for field in ("daily", "spells"): + if spell_list := mod.get(field): + for k, v in spell_list.items(): + v = listify(v) + spellcasting_spec[field][k] = [x for x in spellcasting_spec[field][k] if x not in v] + case "replaceSpells": + spell_replacements = mod.get("spells") + for spellcasting_spec in new_spec.get("spellcasting", []): + old_spells = spellcasting_spec.get("spells", {}) + for level, replace_specs in spell_replacements.items(): + for replace_spec in replace_specs: + old_spell = replace_spec["replace"] + new_spell = replace_spec["with"] + if level in old_spells: + # one-liner replacement: + old_spells[level] = [x if x != old_spell else new_spell for x in old_spells] + case _: + raise ValueError(f"Unknown mod mode '{mod.get('mode')}'") + + return new_spec + + +def insert_arr(monster_spec: dict, mod_spec: dict, target: str): + """Insert an entry into an array within monster_spec.""" + # Add a new item at a specific index + target_arr = monster_spec.get(target, []) + target_arr.insert(mod_spec.get("index", 0), mod_spec.get("item")) + monster_spec[target] = target_arr + + +def get_nested_paths(obj: Mapping[str, Any]) -> list[list[str]]: + """Returns all nested paths to non-mapping objects inside obj.""" + paths: list[list[str]] = [] + for k, v in obj.items(): + if isinstance(v, Mapping): + paths.extend([[k] + p for p in get_nested_paths(v)]) + else: + paths.append([k]) + return paths + + + +def deep_get(dictionary: dict, *keys, default=None): + """Safely return the value of an arbitrarily nested map + + Inspired by https://bit.ly/3a0hq9E + """ + out = reduce( + lambda d, key: d.get(key, default) if isinstance(d, Mapping) else default, keys, dictionary + ) + if out is None: + return default + return out + + +def extend_nested_array(mod_spec: dict, obj: dict): + # Remove any potentiall keywords from mod_type + mode = mod_spec.pop("mode") + paths = get_nested_paths(mod_spec) + for path in paths: + # Get nested list in spec + extensions = deep_get(mod_spec, *path, default=[]) + o = deep_get(obj, *path) + o.extend(extensions) # Extend is in-place, so this is fine + + +def get_alignment_string(alignment: list[str|dict]) -> str: + alignment_words = { + "A": "Any", + "U": "Unaligned", + "L": "Lawful", + "N": "Neutral", + "C": "Chaotic", + "G": "Good", + "E": "Evil" + } + + if isinstance(alignment[0], str): + if len(alignment) <= 2: + # Very simple case, like "chaotic neutral", "any evil", etc. + alignment_parts = [] + for char in alignment: + alignment_parts.append(alignment_words.get(char, "X")) + return " ".join(alignment_parts) + else: + # More complex; these are the "anything but" ones... + alignments = {"E", "G", "C", "L", "NY", "NX"} + alignment_set = set(alignment) + if len(alignment) == 5: + # Find the one that's missing + missing = (alignments - alignment_set).pop() + return f"Any Non-{alignment_words.get(missing)} Alignment" + elif len(alignment) == 4: + # Determine which axis is allowed + if {"E", "G"} < alignment_set: + if "C" in alignment_set: + return "Any Chaotic Alignment" + elif "L" in alignment_set: + return "Any Lawful Alignment" + elif {"L", "C"} < alignment_set: + if "E" in alignment_set: + return "Any Evil Alignment" + elif "G" in alignment_set: + return "Any Good Alignment" + elif alignment_set == {"NX", "NY", "N"}: + # Usually this is represented by ["A", "N"], but currently there's exactly ONE + # monster that uses this godforsaken notation + return "Any Neutral Alignment" + elif isinstance(alignment[0], dict): + if len(alignment) == 1: + if alignment_str := alignment[0].get("special"): + # Ex: [{'special': "as the eidolon's alignment"}] + return alignment_str + + if all("alignment" in item for item in alignment): + # Ex: [{'alignment': ['C', 'G'], 'chance': 75}, {'alignment': ['N', 'E'], 'chance': 25}] + # [{'alignment': ['C', 'G'], 'note': 'chaotic evil when fully possessed'}] + alignment_strs = [] + for item in alignment: + s = get_alignment_string(item["alignment"]) + if chance := item.get("chance"): + s += f" ({chance}%)" + if note := item.get("note"): + s += f" ({note})" + alignment_strs.append(s) + return ", ".join(alignment_strs[:-1]) + " or " + alignment_strs[-1] + + raise ValueError(f"Invalid alignment: {alignment}") + + +def get_cr(cr: str | dict) -> str: + """Fetch the CR string and return it.""" + if isinstance(cr, str): + return cr + if isinstance(cr, dict): + # Ex. cr = {"cr": "1", "xp": "100"} + return cr["cr"] + raise TyperError(f"Unexpected type '{type(cr).__name__}") + + +def get_damage_mods(spec: list[str|dict]) -> list[Scalar]: + """Converts a list of damage/condition vulnerabilities/resistsences/immunities.""" + if not spec: + return [] + items = [] + for item in spec: + if isinstance(item, str): + items.append(Scalar(item)) + elif isinstance(item, dict): + # the key could be "vulnerable", "resist", or "immune" + val = item.get("vulnerable") or item.get("resist") or item.get("immune") + note = item.get("note") + items.append(Scalar(val, note)) + else: + raise TypeError(f"Unexpected type '{type(item).__name__}'") + return items + + +def get_size_string(size_spec: list[str]) -> str: + return { + "G": "Gargantuan", + "H": "Huge", + "L": "Large", + "M": "Medium", + "S": "Small", + "T": "Tiny" + }.get(size_spec[0]) + + +def get_speed(speed_spec): + args = {} + for x in ("walk", "fly", "burrow", "swim", "climb"): + if x not in speed_spec: + continue + if isinstance(speed_spec[x], int): + args[x] = Scalar(speed_spec[x]) + else: + args[x] = Scalar(speed_spec[x]["number"], speed_spec[x]["condition"]) + if "canHover" in speed_spec: + args["can_hover"] = speed_spec["canHover"] + s = Speed(**args) + return s + + +def get_xp(cr: str) -> int: + return { + "0": 10, + "1/8": 25, + "1/4": 50, + "1/2": 100, + "1": 200, + "2": 450, + "3": 700, + "4": 1100, + "5": 1800, + "6": 2300, + "7": 2900, + "8": 3900, + "9": 5000, + "10": 5900, + "11": 7200, + "12": 8400, + "13": 10000, + "14": 11500, + "15": 13000, + "16": 15000, + "17": 18000, + "18": 20000, + "19": 22000, + "20": 25000, + "21": 33000, + "22": 41000, + "23": 50000, + "24": 62000, + "25": 75000, + "26": 90000, + "27": 105000, + "28": 120000, + "29": 135000, + "30": 155000 + }.get(cr, 0) + +@click.group() +def cli(): + pass + +@cli.command() +@click.option("--outfile", "-o", default=DEFAULT_RAW, type=click.Path(writable=True, path_type=Path)) +def get(outfile: Path): + if not outfile.is_absolute(): + outfile = Path(__file__).parent / outfile + if outfile.is_dir(): + outfile /= "raw_monsters.json" + urls = [ + "https://5e.tools/data/bestiary/bestiary-ai.json", + "https://5e.tools/data/bestiary/bestiary-bam.json", + "https://5e.tools/data/bestiary/bestiary-bgdia.json", + "https://5e.tools/data/bestiary/bestiary-cm.json", + "https://5e.tools/data/bestiary/bestiary-cos.json", + "https://5e.tools/data/bestiary/bestiary-dc.json", + "https://5e.tools/data/bestiary/bestiary-dip.json", + "https://5e.tools/data/bestiary/bestiary-dmg.json", + "https://5e.tools/data/bestiary/bestiary-dosi.json", + "https://5e.tools/data/bestiary/bestiary-dsotdq.json", + "https://5e.tools/data/bestiary/bestiary-erlw.json", + "https://5e.tools/data/bestiary/bestiary-esk.json", + "https://5e.tools/data/bestiary/bestiary-ftd.json", + "https://5e.tools/data/bestiary/bestiary-ggr.json", + "https://5e.tools/data/bestiary/bestiary-gos.json", + "https://5e.tools/data/bestiary/bestiary-hol.json", + "https://5e.tools/data/bestiary/bestiary-hotdq.json", + "https://5e.tools/data/bestiary/bestiary-idrotf.json", + "https://5e.tools/data/bestiary/bestiary-jttrc.json", + "https://5e.tools/data/bestiary/bestiary-kkw.json", + "https://5e.tools/data/bestiary/bestiary-lmop.json", + "https://5e.tools/data/bestiary/bestiary-lox.json", + "https://5e.tools/data/bestiary/bestiary-mm.json", + "https://5e.tools/data/bestiary/bestiary-mpmm.json", + "https://5e.tools/data/bestiary/bestiary-mot.json", + "https://5e.tools/data/bestiary/bestiary-mtf.json", + "https://5e.tools/data/bestiary/bestiary-oota.json", + "https://5e.tools/data/bestiary/bestiary-oow.json", + "https://5e.tools/data/bestiary/bestiary-phb.json", + "https://5e.tools/data/bestiary/bestiary-pota.json", + "https://5e.tools/data/bestiary/bestiary-rot.json", + "https://5e.tools/data/bestiary/bestiary-scc.json", + "https://5e.tools/data/bestiary/bestiary-sdw.json", + "https://5e.tools/data/bestiary/bestiary-skt.json", + "https://5e.tools/data/bestiary/bestiary-slw.json", + "https://5e.tools/data/bestiary/bestiary-tce.json", + "https://5e.tools/data/bestiary/bestiary-tftyp.json", + "https://5e.tools/data/bestiary/bestiary-toa.json", + "https://5e.tools/data/bestiary/bestiary-vgm.json", + "https://5e.tools/data/bestiary/bestiary-vrgr.json", + "https://5e.tools/data/bestiary/bestiary-xge.json", + "https://5e.tools/data/bestiary/bestiary-wbtw.json", + "https://5e.tools/data/bestiary/bestiary-wdh.json", + "https://5e.tools/data/bestiary/bestiary-wdmm.json", + "https://5e.tools/data/bestiary/bestiary-kftgv.json", + "https://5e.tools/data/bestiary/bestiary-bgg.json", + "https://5e.tools/data/bestiary/bestiary-pabtso.json", + "https://5e.tools/data/bestiary/bestiary-mpp.json", + "https://5e.tools/data/bestiary/bestiary-tofw.json", + "https://5e.tools/data/bestiary/bestiary-bmt.json", + "https://5e.tools/data/bestiary/bestiary-ditlcot.json", + "https://5e.tools/data/bestiary/bestiary-veor.json", + "https://5e.tools/data/bestiary/bestiary-qftis.json", + "https://5e.tools/data/bestiary/bestiary-xphb.json", + "https://5e.tools/data/bestiary/bestiary-xdmg.json", + "https://5e.tools/data/bestiary/bestiary-egw.json", + ] + + # If you try to fetch the URLs above, you get a "Please wait" HTML response, and presumably + # some JS code that loads the JSON data async then serves it. In the browser, I see only JSON, + # but fetching those URLs in cURL or requests just gives me HTML. Thus, I have to use selenium + # to actually get the data 🥲 + from selenium import webdriver + from selenium.webdriver.common.by import By + from selenium.webdriver.firefox.options import Options + opts = Options() + opts.headless = True + os.environ["MOZ_HEADLESS"] = "1" + driver = webdriver.Firefox(options=opts) + monsters = [] + for url in urls: + try: + driver.get("view-source:" + url) + import time + time.sleep(0) + data = json.loads(driver.find_element(By.TAG_NAME, "pre").text) + except Exception as e: + print(f"Unable to load URL {url}: {repr(e)}") + with open("errors.txt", "a") as f: + f.write(driver.page_source) + continue + monsters += data["monster"] + driver.close() + + with outfile.open("w") as f: + json.dump(monsters, f) + + +@cli.command("convert") +@click.option("--infile", "-i", default=DEFAULT_RAW, type=click.Path(exists=True, path_type=Path)) +@click.option("--outfile", "-o", default=DEFAULT_CONV, type=click.Path(writable=True, path_type=Path)) +def convert(infile: Path, outfile: Path): + if not infile.is_absolute(): + infile = Path(__file__).parent / infile + if not outfile.is_absolute(): + outfile = Path(__file__).parent.parent / "dmtoolkit" / "api" / "data" / outfile + + if infile.is_dir(): + infile /= "raw_monsters.json" + if outfile.is_dir(): + outfile /= "monsters.json" + + with infile.open("r") as f: + monsters = json.load(f) + monsters_dict: dict[str, dict[str, Any]] = {} + monsters_to_copy: dict[str, dict[str, Any]] = {} + converted_monsters = [] + for monster in monsters: + key = f"{monster.get('name')}-{monster.get('source')}" + monsters_dict[key] = monster + try: + if key in IGNORE_MONSTERS: + continue + if "_copy" in monster: + monsters_to_copy[key] = monster + continue + if converted_monster := convert_monster(monster): + converted_monsters.append(converted_monster) + except Exception as e: + print(json.dumps(monster)) + raise e + + # Process copied monsters + copy_monster_keys = set(monsters_to_copy.keys()) + n_iter = 0 + while len(copy_monster_keys) > 0 or n_iter < 1000: + n_iter += 1 # Loop counter + for new_monster_key, copy_spec in monsters_to_copy.items(): + if new_monster_key not in copy_monster_keys: + # Means we've already copied it in a previous iteration + continue + try: + src_monster_key = f"{copy_spec['_copy'].get('name')}-{copy_spec['_copy'].get('source')}" + if src_monster_key in copy_monster_keys: + # Means the source of this monster is another monster + continue + # Else, we can copy this guy + old = monsters_dict.get(src_monster_key) + if not old: + raise ValueError( + f"Unable to copy '{new_monster_key}'; " + f"no target with key '{src_monster_key}'" + ) + new_monster = copy_monster(old, copy_spec) + if converted_monster := convert_monster(new_monster): + converted_monsters.append(converted_monster) + copy_monster_keys.remove(new_monster_key) + except Exception as e: + print(json.dumps(copy_spec)) + raise e + + + with outfile.open("w") as f: + dump_json(converted_monsters, f) + +@cli.command("test") +@click.option("--infile", "-i", default=DEFAULT_CONV, type=click.Path(exists=True, path_type=Path)) +def test(infile: Path): + if not infile.is_absolute(): + infile = Path(__file__).parent.parent / "dmtoolkit" / "api" / "data" / infile + + if infile.is_dir(): + infile /= "monsters.json" + + with infile.open("r") as f: + load_json(f) + + +@cli.command("all") +def full(): + get() + convert() + test() + + +if __name__ == "__main__": + cli() \ No newline at end of file diff --git a/cmd/raw_monsters.json b/cmd/raw_monsters.json new file mode 100644 index 0000000..4c0e612 --- /dev/null +++ b/cmd/raw_monsters.json @@ -0,0 +1,391667 @@ +[ + { + "name": "Ancient Deep Crow", + "source": "AI", + "page": 211, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "15d12 + 90" + }, + "speed": { + "walk": 20, + "fly": 80 + }, + "str": 23, + "dex": 16, + "con": 23, + "int": 10, + "wis": 15, + "cha": 19, + "save": { + "con": "+11", + "wis": "+7" + }, + "skill": { + "perception": "+7", + "stealth": "+13" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Deep Crow" + ], + "cr": "15", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The ancient deep crow has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the ancient deep crow can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ancient deep crow makes three attacks: one with its mandibles and two with its claws." + ] + }, + { + "name": "Mandibles", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, and the ancient deep crow can't use its mandibles on another target." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Shadow Caw", + "entries": [ + "The ancient deep crow releases an ear-splitting caw. Each creature within 60 feet of the crow and able to hear it must make a {@dc 17} Constitution saving throw. On a failure, a creature takes 10 ({@damage 3d6}) psychic damage." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The deep crow makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Shadow Caw (Costs 2 Actions)", + "entries": [ + "The ancient deep crow uses Shadow Caw." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The ancient deep crow beats its wings. Each creature within 10 feet of the deep crow must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The ancient deep crow can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Ancient Deep Crow", + "source": "AI" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "P", + "S", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Auspicia Dran", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 208, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 15, + "wis": 12, + "cha": 10, + "skill": { + "athletics": "+5", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "Auspicia's innate spellcasting ability is Intelligence. She can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect thoughts}" + ], + "daily": { + "1e": [ + "{@spell augury}" + ] + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Auspicia makes two attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "light crossbow|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P", + "S" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brahma Lutier", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 12, + "int": 11, + "wis": 13, + "cha": 16, + "skill": { + "perception": "+3", + "performance": "+5", + "persuasion": "+5" + }, + "passive": 13, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Brahma is a 4th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She has the following bard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell vicious mockery}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell heroism}", + "{@spell illusory script}", + "{@spell sleep}", + "{@spell unseen servant}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell cloud of daggers}", + "{@spell invisibility}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Brahma has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + }, + { + "name": "Taunt (2/Day)", + "entries": [ + "Brahma can use a bonus action to target one creature she can see within 30 feet of her. If the target can hear Brahma, it must succeed on a {@dc 13} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of Brahma's next turn." + ] + } + ], + "action": [ + { + "name": "War Lute", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Song of Domination (3/Day)", + "entries": [ + "Brahma targets one creature that can see or hear her, which must succeed on a {@dc 13} Wisdom saving throw or be {@condition charmed} by her for 1 minute. The target can repeat the save at the end of each of its turns, ending the effect on itself on a success. It has disadvantage on these saves if being {@condition charmed} by Brahma is something the target openly or secretly desires. For 1 hour after the charm effect ends, the target has disadvantage on Intelligence, Wisdom, or Charisma checks made as part of a contest with Brahma." + ] + } + ], + "traitTags": [ + "Fey Ancestry" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "S", + "Y" + ], + "spellcastingTags": [ + "CB" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chaos Quadrapod", + "source": "AI", + "page": 209, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 18, + "dex": 13, + "con": 15, + "int": 6, + "wis": 10, + "cha": 4, + "skill": { + "acrobatics": "+5", + "perception": "+4" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 14, + "cr": "4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The chaos quadrapod has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chaos quadrapod makes up to two tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. If the target is a creature, it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}. The chaos quadrapod can grapple no more than two targets at a time." + ] + }, + { + "name": "Chaos Cloud (Recharges after a Short or Long Rest)", + "entries": [ + "The chaos quadrapod shoots forth a knot of roiling ethereal light that explodes at a point it can see within 60 feet of it. Each creature in a 20-foot-radius sphere centered on that point must succeed on a {@dc 14} Charisma saving throw or be {@condition stunned} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clockwork Dragon", + "source": "AI", + "page": 209, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 14, + "dex": 10, + "con": 12, + "int": 10, + "wis": 11, + "cha": 13, + "skill": { + "acrobatics": "+2", + "perception": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the clockwork dragon remains motionless, it is indistinguishable from a metal statue." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The clockwork dragon exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 11} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Deep Crow", + "source": "AI", + "page": 210, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56" + }, + "speed": { + "walk": 20, + "fly": 80 + }, + "str": 20, + "dex": 16, + "con": 18, + "int": 8, + "wis": 15, + "cha": 14, + "save": { + "con": "+8", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+11" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Deep Crow" + ], + "cr": "9", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The deep crow has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the deep crow can take the Hide action as a bonus action." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the deep crow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deep crow makes three attacks: one with its mandibles and two with its claws." + ] + }, + { + "name": "Mandibles", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the deep crow can't use its mandibles on another target." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Donaar Blit'zen", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 201, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dragonborn" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 8, + "con": 14, + "int": 10, + "wis": 10, + "cha": 16, + "save": { + "wis": "+2", + "cha": "+5" + }, + "skill": { + "history": "+2", + "insight": "+2", + "intimidation": "+5", + "persuasion": "+5" + }, + "passive": 10, + "resist": [ + "acid" + ], + "languages": [ + "Common", + "Draconic", + "Orc" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Donaar is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following paladin spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell compelled duel}", + "{@spell cure wounds}", + "{@spell wrathful smite}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell aid}", + "{@spell branding smite}", + "{@spell lesser restoration}", + "{@spell warding bond}", + "{@spell zone of truth}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Champion Challenge (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, Donaar causes each creature of his choice that he can see within 30 feet of him to make a {@dc 13} Wisdom saving throw. On a failure, a creature can't willingly move more than 30 feet away from Donaar. This effect ends on the creature if Donaar is {@condition incapacitated} or dies, or if the creature is moved more than 30 feet away from him." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Donaar makes two attacks with his greatsword or his whip." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage. Whenever Donaar rolls a 1 or 2 on a damage die, he can reroll the die and must use the new roll." + ] + }, + { + "name": "Whip", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ] + }, + { + "name": "Acid Vomit", + "entries": [ + "Donaar regurgitates acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 12} Dexterity saving throw, taking 7 ({@damage 2d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "whip|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "O" + ], + "damageTags": [ + "A", + "S" + ], + "damageTagsSpell": [ + "R", + "Y" + ], + "spellcastingTags": [ + "CP" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "frightened", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flabbergast", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 200, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 17, + "wis": 13, + "cha": 13, + "save": { + "int": "+5", + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "persuasion": "+3", + "history": "+5", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Gnomish" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Flabbergast is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell distort value|AI}*" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gift of gab|AI}*", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fast friends|AI}*", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "footerEntries": [ + "*New spell introduced in chapter 3" + ], + "ability": "int" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "DR", + "E", + "G" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "F", + "L" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jim Darkmagic", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 197, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 18, + "wis": 12, + "cha": 14, + "save": { + "int": "+7", + "wis": "+4" + }, + "skill": { + "acrobatics": "+5", + "animal handling": "+4", + "arcana": "+7", + "history": "+7", + "performance": "+5" + }, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Jim is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell Jim's magic missile|AI}*", + "{@spell mage armor}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell Jim's glowing coin|AI}*" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell incite greed|AI}*", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell conjure minor elementals}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell mislead}" + ] + } + }, + "footerEntries": [ + "*New spell introduced in chapter 3" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Jim carries a {@item wand of wonder}." + ] + }, + { + "name": "Benign Transportation (Recharges after Jim Casts a Conjuration Spell of 1st Level or Higher)", + "entries": [ + "As a bonus action, Jim teleports up to 30 feet to a space he can see. The space must be unoccupied or occupied by a willing Small or Medium creature. If the latter, Jim and the willing creature both teleport, swapping places." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Minor Conjuration", + "entries": [ + "Jim conjures an inanimate object, no larger than 3 feet on a side and no more than 10 pounds, in his hand or on the ground in an unoccupied space he can see within 10 feet of him. The object is visibly magical, radiating dim light out to 5 feet. It disappears if it takes any damage, after 1 hour, or when Jim uses this feature again." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "K'thriss Drow'b", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 202, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 12, + "int": 14, + "wis": 11, + "cha": 18, + "save": { + "str": "+0", + "dex": "+3", + "con": "+2", + "int": "+3", + "wis": "+3", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "insight": "+2", + "investigation": "+4", + "perception": "+2", + "religion": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "languages": [ + "Celestial", + "Common", + "Elvish", + "Undercommon; can read all writing" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "K'thriss's innate spellcasting ability is Charisma (spell save {@dc 14}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell disguise self}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "K'thriss is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He regains his expended spell slots when he finishes a short or long rest, and knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mending}", + "{@spell prestidigitation}", + "{@spell thorn whip}", + "{@spell vicious mockery}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell dissonant whispers}", + "{@spell fly}", + "{@spell hex}", + "{@spell misty step}", + "{@spell sending}", + "{@spell shatter}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "K'thriss wears a {@item robe of stars} (accounted for in his statistics). The robe allows him to cast the following spells: 6/day: {@spell magic missile} (7 missiles)" + ] + }, + { + "name": "Awakened Mind", + "entries": [ + "K'thriss can telepathically speak to any creature he can see within 30 feet of him, provided the creature can understand at least one language." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "K'thriss has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep. Sunlight Sensitivity. While in sunlight, K'thriss has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "K'thriss makes two attacks with his sickle." + ] + }, + { + "name": "Sickle", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "attachedItems": [ + "sickle|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "E", + "U", + "XX" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "N", + "O", + "P", + "T", + "Y" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Keg Robot", + "source": "AI", + "page": 212, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 15, + "int": 6, + "wis": 8, + "cha": 5, + "skill": { + "perception": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Customizable Storage", + "entries": [ + "A keg robot can hold up to three types of liquid payload totaling 12 gallons within its hollow, barrel-shaped body. A full keg robot can make one liquid attack per gallon before the liquid must be refilled. Filling a keg robot takes 2 rounds per gallon. Differing payloads can alter the keg robot's attacks from those presented here." + ] + } + ], + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ] + }, + { + "name": "Acid Squirt", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/40 ft., one target. {@h}7 ({@damage 1d8 + 3}) acid damage." + ] + }, + { + "name": "Beer Shower", + "entries": [ + "The keg robot spews an unnaturally potent beer in a 15-foot cone or in a 30-foot line that is 5 feet wide. Each creature in the area must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned}. While {@condition poisoned} in this way, a creature has its speed halved by exposure to the potent brew. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "Additionally, the beer shower extinguishes any fires or open flames in its area." + ] + }, + { + "name": "Hot Oil Spray {@recharge 5}", + "entries": [ + "The keg robot sprays hot oil in a 15-foot cone or in a 30-foot line that is 5 feet wide. Each creature in the area must make a {@dc 13} Dexterity saving throw. On a failed save, a creature takes 7 ({@damage 1d8 + 3}) fire damage and falls {@condition prone}. On a successful save, a creature takes half as much damage and doesn't fall {@condition prone}.", + "Any creature affected by the hot oil spray that takes fire damage before the oil dries (after 1 minute) takes an additional 3 ({@damage 1d6}) fire damage, and the oil burns away.", + "If the oil that remains in the area of the spray is lit, it burns for {@dice 1d4} rounds and deals 3 ({@damage 1d6}) fire damage to any creature that enters the area for the first time on a turn or ends its turn there." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "A", + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "poisoned", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "M\u00f4rg\u00e6n", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 199, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 12, + "int": 12, + "wis": 14, + "cha": 10, + "save": { + "str": "+3", + "dex": "+6" + }, + "skill": { + "athletics": "+3", + "insight": "+4", + "nature": "+3", + "perception": "+4", + "stealth": "+6", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Giant", + "Goblin" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "M\u00f4rg\u00e6n's spellcasting ability is Intelligence. She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell mage hand}" + ], + "ability": "int" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "M\u00f4rg\u00e6n is a 9th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She has the following ranger spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell alarm}", + "{@spell animal friendship}", + "{@spell hunter's mark}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell pass without trace}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell conjure animals}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "M\u00f4rg\u00e6n has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "M\u00f4rg\u00e6n makes three attacks with her scimitars or her longbow." + ] + }, + { + "name": "Scimitars", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "longbow|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR", + "GI", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "P" + ], + "spellcastingTags": [ + "CR", + "I" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oak Truestrike", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + { + "alignment": [ + "N", + "G" + ] + }, + { + "alignment": [ + "N", + "E" + ] + } + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 16, + "con": 14, + "int": 10, + "wis": 13, + "cha": 11, + "skill": { + "nature": "+4", + "perception": "+3", + "performance": "+2", + "stealth": "+5", + "survival": "+3" + }, + "passive": 13, + "languages": [ + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Oak has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "Keen Hearing and Sight", + "entries": [ + "Oak has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Oak makes three attacks with his hooked daggers or his hand crossbow." + ] + }, + { + "name": "Hooked Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Return the Favor (3/Day)", + "entries": [ + "When Oak takes damage from a melee weapon attack, he can make a hooked dagger attack." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Omin Dran", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 196, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 8, + "con": 14, + "int": 11, + "wis": 18, + "cha": 12, + "save": { + "wis": "+7", + "cha": "+4" + }, + "skill": { + "deception": "+4", + "insight": "+7", + "intimidation": "+4", + "medicine": "+7", + "perception": "+7", + "persuasion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Goblin" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Omin is a 9th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell command}", + "{@spell divine favor}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell enhance ability}", + "{@spell hold person}", + "{@spell magic weapon}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell beacon of hope}", + "{@spell crusader's mantle}", + "{@spell dispel magic}", + "{@spell mass healing word}", + "{@spell spirit guardians}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell death ward}", + "{@spell freedom of movement}", + "{@spell locate creature}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell dispel evil and good}", + "{@spell flame strike}", + "{@spell hold monster}", + "{@spell greater restoration}", + "{@spell legend lore}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Divine Strike", + "entries": [ + "Once on each of his turns when he hits a creature with a weapon attack, Omin can cause the attack to deal an extra 4 ({@damage 1d8}) damage of the same type dealt by the weapon." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Omin has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Omin makes two attacks with his maul." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "War God's Blessing (Recharges after a Short or Long Rest)", + "entries": [ + "When a creature within 30 feet of Omin makes an attack roll, but before learning whether it hits or misses, Omin can grant the creature a +10 bonus to that roll." + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "E", + "GO" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "deafened", + "paralyzed", + "prone" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pendragon Beestinger", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 206, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 17, + "wis": 10, + "cha": 11, + "skill": { + "arcana": "+5", + "investigation": "+5", + "performance": "+2" + }, + "passive": 10, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Halfling" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Pendragon is a 4th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell light}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell cloud of daggers}", + "{@spell scorching ray}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Echo Spell (1/Day)", + "entries": [ + "Pendragon can cast the spell he cast on his last turn, whose casting time becomes 1 bonus action. This bonus casting uses a spell slot as normal." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "languageTags": [ + "C", + "DR", + "E", + "H" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "A", + "F", + "I", + "L", + "O", + "S" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Phoenix Anvil", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 206, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 12, + "int": 13, + "wis": 16, + "cha": 13, + "skill": { + "athletics": "+4", + "performance": "+3", + "persuasion": "+3", + "religion": "+3" + }, + "passive": 13, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Phoenix is a 4th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell cure wounds}", + "{@spell guiding bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Divine Display (1/Day)", + "entries": [ + "As a bonus action, Phoenix causes his shield to flare with divine light. Each creature of his choice within 30 feet of him must succeed on a {@dc 13} Wisdom saving throw or be {@condition blinded} for 1 minute. A creature can repeat the save at the end of each of its turns, ending the effect on itself with a success." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Phoenix makes two melee attacks." + ] + }, + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and the target must succeed on a {@dc 12} Strength saving throw or be pushed 5 feet." + ] + } + ], + "attachedItems": [ + "warhammer|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Portentia Dran", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 208, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 16, + "int": 13, + "wis": 12, + "cha": 14, + "skill": { + "deception": "+6", + "insight": "+3", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "3", + "trait": [ + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Portentia deals an extra 14 ({@damage 4d6}) damage when she hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Portentia that isn't {@condition incapacitated} and Portentia doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Portentia makes three melee attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Portentia magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than her own, or back into her true form. Any equipment she is wearing or carrying is absorbed or borne by the new form (her choice). In a new form, Portentia retains her game statistics and ability to speak, but her AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and she gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that she lacks." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Prophetess Dran", + "source": "AI", + "page": 208, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 12, + "int": 13, + "wis": 16, + "cha": 13, + "skill": { + "medicine": "+5", + "persuasion": "+3", + "religion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Prophetess is a 5th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Prophetess has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell guiding bolt}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell spirit guardians}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Divine Eminence", + "entries": [ + "As a bonus action, Prophetess can expend a spell slot to cause her melee weapon attacks to magically deal an extra 10 ({@damage 3d6}) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If Prophetess expends a spell slot of 2nd level or higher, the extra damage increases by {@damage 1d6} for each level above 1st." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Prophetess has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + } + ], + "action": [ + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Rosie Beestinger", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 203, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "halfling" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 45, + "formula": "10d6 + 10" + }, + "speed": { + "walk": 40 + }, + "str": 8, + "dex": 16, + "con": 12, + "int": 12, + "wis": 14, + "cha": 14, + "save": { + "str": "+1", + "dex": "+5" + }, + "skill": { + "acrobatics": "+5", + "history": "+3", + "intimidation": "+4", + "stealth": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Halfling" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Rosie's innate spellcasting ability is Wisdom (spell save {@dc 12}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell minor illusion}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell command}", + "{@spell darkness}", + "{@spell darkvision}", + "{@spell pass without trace}", + "{@spell silence}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Brave", + "entries": [ + "Rosie has advantage on saving throws against being {@condition frightened}." + ] + }, + { + "name": "Halfling Nimbleness", + "entries": [ + "Rosie can move through the space of any creature that is of a size larger than hers." + ] + }, + { + "name": "Evasion", + "entries": [ + "If Rosie is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. She can't use this trait if she's {@condition incapacitated}." + ] + }, + { + "name": "Shadow Step", + "entries": [ + "When Rosie is in dim light or darkness, she can use a bonus action to teleport 60 feet to an unoccupied space she can see that is also in dim light or darkness. She then has advantage on the first melee attack she makes before the end of the turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Rosie makes three attacks, then makes two unarmed strike attacks." + ] + }, + { + "name": "Staff of the Master (+1 Quarterstaff)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage. Rosie's unarmed strikes are magical." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missiles", + "entries": [ + "In response to being hit by a ranged weapon attack, Rosie deflects the missile. The damage she takes from the attack is reduced by {@damage 1d10 + 9}. If the damage is reduced to 0, she catches the missile if it's small enough to hold in one hand and she has a hand free." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "H" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "deafened", + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Splugoth the Returned", + "source": "AI", + "page": 213, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 14, + "wis": 11, + "cha": 10, + "save": { + "int": "+4", + "wis": "+2" + }, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Goblin" + ], + "cr": "2", + "trait": [ + { + "name": "Defensive Advantage", + "entries": [ + "As long as two or more of Splugoth's allies are within 5 feet of him and are not {@condition incapacitated}, attack rolls against him are made with disadvantage." + ] + }, + { + "name": "Nimble Escape", + "entries": [ + "Splugoth can take the Disengage or Hide action as a bonus action on each of his turns." + ] + }, + { + "name": "Touch of Madness", + "entries": [ + "Splugoth has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Splugoth makes two attacks with his dagger." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Word From Beyond (1/Day)", + "entries": [ + "Splugoth remembers and repeats aloud a few words from a place he entered while walking back from the next world to this one. Each creature of his choice within 30 feet of him that can hear him must succeed on a {@dc 12} Wisdom saving throw or be {@condition stunned} until the end of its next turn." + ] + } + ], + "reaction": [ + { + "name": "Absorb Attack", + "entries": [ + "When a creature Splugoth can see hits him with a melee weapon attack, the weapon snags on a pocket of residual resurrectional energy and is caught fast. The attack is negated and the weapon cannot be used until the creature succeeds on a {@dc 12} Strength ({@skill Athletics}) check as an action to pull it out of Splugoth. Natural weapons can have their attacks negated by this feature, but can then be retracted automatically at the end of the attacking creature's turn." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "GO" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Viari", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 198, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item +1 Studded Leather Armor||+1 studded leather}" + ] + }, + { + "ac": 19, + "condition": "while wielding two melee weapons", + "braces": true + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 20, + "con": 14, + "int": 10, + "wis": 8, + "cha": 14, + "save": { + "dex": "+8", + "int": "+3" + }, + "skill": { + "acrobatics": "+11", + "athletics": "+7", + "perception": "+5", + "performance": "+5", + "persuasion": "+5", + "sleight of hand": "+11", + "stealth": "+8" + }, + "passive": 15, + "languages": [ + "Common", + "Draconic", + "Thieves' cant" + ], + "cr": "5", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If Viari is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ] + }, + { + "name": "Second-Story Work", + "entries": [ + "Climbing does not cost Viari extra movement. Additionally, when he makes a running jump, the distance he covers increases by 5 feet." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Viari deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Viari that isn't {@condition incapacitated} and Viari doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Viari makes two attacks with his shortsword and two attacks with his rapier." + ] + }, + { + "name": "+1 Shortsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "Viari halves the damage that he takes from an attack that hits him. He must be able to see the attacker." + ] + } + ], + "attachedItems": [ + "+1 shortsword|dmg", + "dagger|phb", + "rapier|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TC" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Walnut Dankgrass", + "isNpc": true, + "isNamedCreature": true, + "source": "AI", + "page": 204, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 35 + }, + "str": 8, + "dex": 16, + "con": 14, + "int": 10, + "wis": 18, + "cha": 10, + "save": { + "int": "+2", + "wis": "+6" + }, + "skill": { + "athletics": "+1", + "insight": "+6", + "perception": "+6", + "stealth": "+5", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Walnut is a 7th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell thorn whip}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flame blade}", + "{@spell moonbeam}", + "{@spell pass without trace}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell dispel magic}", + "{@spell plant growth}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell blight}", + "{@spell freedom of movement}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Walnut has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + }, + { + "name": "Mask of the Wild", + "entries": [ + "Walnut can attempt to hide even when she is only lightly obscured by foliage, heavy rain, falling snow, mist, and other natural phenomena." + ] + }, + { + "name": "Wild Shape (Recharges after a Short or Long rest)", + "entries": [ + "As a bonus action, Walnut can assume the shape of a dire wolf. She can stay in this form for 3 hours or until she reverts to her normal form as a bonus action. She automatically reverts if she falls {@condition unconscious}, drops to 0 hit points, or dies.", + "While transformed, Walnut's game statistics are replaced by the statistics of the dire wolf, except she retains her alignment, personality, and Intelligence, Wisdom, and Charisma scores.", + "Her attacks in beast form are magical. While in beast form, Walnut can use a bonus action to expend one spell slot and regain {@dice 1d8} hit points per level of the spell slot expended." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Walnut makes two attacks with Foremother or her longbow." + ] + }, + { + "name": "Foremother (+1 Scimitar)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "longbow|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU", + "E", + "S" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "F", + "L", + "N", + "P", + "R", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aartuk Elder", + "source": "BAM", + "page": 8, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 18, + "dex": 10, + "con": 15, + "int": 12, + "wis": 14, + "cha": 12, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Aartuk" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The aartuk casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "daily": { + "1e": [ + "{@spell calm emotions}", + "{@spell detect magic}", + "{@spell sending}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The aartuk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aartuk makes two Branch attacks, two Radiant Pellet attacks, or one of each." + ] + }, + { + "name": "Branch", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Radiant Pellet", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 4d4}) radiant damage." + ] + } + ], + "bonus": [ + { + "name": "Tongue {@recharge}", + "entries": [ + "The aartuk tries to use its gooey tongue to snare one Large or smaller creature it can see within 30 feet of itself. The target must make a {@dc 12} Dexterity saving throw. On a failed save, the target is {@condition grappled} by the tongue (escape {@dc 14}) and pulled up to 25 feet toward the aartuk. The tongue can grapple one creature at a time." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "R" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aartuk Starhorror", + "source": "BAM", + "page": 9, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 12, + "dex": 10, + "con": 14, + "int": 13, + "wis": 16, + "cha": 10, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Aartuk" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The aartuk casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell revivify}", + "{@spell speak with plants}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The aartuk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aartuk makes two Branch attacks, two Radiant Pellet attacks, or one of each." + ] + }, + { + "name": "Branch", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 10 ft., one target. {@h}8 ({@damage 2d6 + 1}) bludgeoning damage." + ] + }, + { + "name": "Radiant Pellet", + "entries": [ + "{@atk rs} {@hit 2} to hit, range 60 ft., one target. {@h}7 ({@damage 3d4}) radiant damage." + ] + } + ], + "bonus": [ + { + "name": "Rally the Troops (1/Day)", + "entries": [ + "The aartuk magically ends the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of itself." + ] + }, + { + "name": "Tongue {@recharge}", + "entries": [ + "The aartuk tries to use its gooey tongue to snare one Medium or smaller creature it can see within 30 feet of itself. The target must make a {@dc 12} Dexterity saving throw. On a failed save, the target is {@condition grappled} by the tongue (escape {@dc 11}) and pulled up to 25 feet toward the aartuk. The tongue can grapple one creature at a time." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "R" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aartuk Weedling", + "source": "BAM", + "page": 9, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 14, + "dex": 12, + "con": 13, + "int": 10, + "wis": 13, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Aartuk" + ], + "cr": "2", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The aartuk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aartuk makes two Branch attacks, two Radiant Pellet attacks, or one of each." + ] + }, + { + "name": "Branch", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}8 ({@damage 2d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Radiant Pellet", + "entries": [ + "{@atk rs} {@hit 3} to hit, range 60 ft., one target. {@h}7 ({@damage 3d4 + 1}) radiant damage." + ] + } + ], + "bonus": [ + { + "name": "Tongue {@recharge}", + "entries": [ + "The aartuk tries to use its gooey tongue to snare one Medium or smaller creature it can see within 30 feet of itself. The target must make a {@dc 11} Dexterity saving throw. On a failed save, the target is {@condition grappled} by the tongue (escape {@dc 12}) and pulled up to 25 feet toward the aartuk. The tongue can grapple one creature at a time." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "R" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Lunar Dragon", + "source": "BAM", + "page": 34, + "otherSources": [ + { + "source": "LoX" + }, + { + "source": "VEoR" + } + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 40, + "burrow": 20, + "fly": 80 + }, + "str": 23, + "dex": 12, + "con": 20, + "int": 10, + "wis": 13, + "cha": 15, + "save": { + "con": "+10", + "wis": "+6" + }, + "skill": { + "perception": "+11", + "stealth": "+11" + }, + "senses": [ + "darkvision 240 ft." + ], + "passive": 21, + "immune": [ + "cold" + ], + "languages": [ + "Draconic" + ], + "cr": "13", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 15-foot-diameter tunnel in its wake." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales a blast of frost in a 60-foot cone. Each creature in the cone must make a {@dc 18} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) cold damage, and its speed is reduced to 0 until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "bonus": [ + { + "name": "Phase (3/Day)", + "entries": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ] + } + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Tail Attack", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Treacherous Ice", + "entries": [ + "Magical ice covers the ground in a 20-foot radius centered on a point the dragon can see within 120 feet of itself. The ice, which is difficult terrain for all creatures except lunar dragons, lasts for 10 minutes or until the dragon uses this legendary action again." + ] + } + ], + "legendaryGroup": { + "name": "Lunar Dragon", + "source": "BAM" + }, + "dragonAge": "adult", + "traitTags": [ + "Legendary Resistances", + "Tunneler", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Adult Solar Dragon", + "source": "BAM", + "page": 52, + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 30, + "fly": { + "number": 90, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 24, + "dex": 15, + "con": 22, + "int": 15, + "wis": 16, + "cha": 14, + "save": { + "dex": "+7", + "con": "+11", + "wis": "+8", + "cha": "+7" + }, + "skill": { + "perception": "+13", + "stealth": "+7" + }, + "senses": [ + "darkvision 180 ft." + ], + "passive": 23, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "Draconic" + ], + "cr": "14", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Nebulous Thoughts", + "entries": [ + "Magical attempts to read the dragon's mind or glean its thoughts fail automatically." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The dragon deals double damage to objects and structures." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}14 ({@damage 2d6 + 7}) piercing damage plus 7 ({@damage 2d6}) radiant damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d6 + 7}) bludgeoning damage." + ] + }, + { + "name": "Photonic Breath {@recharge 5}", + "entries": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 180 feet of itself, then blossoms into a 30-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 19} Constitution saving throw, taking 55 ({@damage 10d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Tail Attack", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Burst of Light (Costs 2 Actions)", + "entries": [ + "The dragon emits magical light in a 30-foot-radius sphere centered on itself. Each creature in this area must succeed on a {@dc 23} Wisdom saving throw or be {@condition blinded} until the end of its next turn." + ] + } + ], + "legendaryGroup": { + "name": "Solar Dragon", + "source": "BAM" + }, + "dragonAge": "adult", + "traitTags": [ + "Flyby", + "Legendary Resistances", + "Siege Monster", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "P", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Lunar Dragon", + "source": "BAM", + "page": 32, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119" + }, + "speed": { + "walk": 40, + "burrow": 20, + "fly": 80 + }, + "str": 27, + "dex": 12, + "con": 24, + "int": 12, + "wis": 15, + "cha": 17, + "save": { + "con": "+13", + "wis": "+8" + }, + "skill": { + "perception": "+14", + "stealth": "+13" + }, + "senses": [ + "darkvision 240 ft." + ], + "passive": 24, + "immune": [ + "cold" + ], + "languages": [ + "Draconic" + ], + "cr": "19", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 20-foot-diameter tunnel in its wake." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d6 + 8}) piercing damage plus 7 ({@damage 2d6}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}15 ({@damage 2d6 + 8}) bludgeoning damage." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales a blast of frost in a 90-foot cone. Each creature in the cone must make a {@dc 21} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) cold damage, and its speed is reduced to 0 until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "bonus": [ + { + "name": "Phase (3/Day)", + "entries": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ] + } + ], + "legendary": [ + { + "name": "Tail Attack", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Treacherous Ice", + "entries": [ + "Magical ice covers the ground in a 20-foot radius centered on a point the dragon can see within 120 feet of itself. The ice, which is difficult terrain for all creatures except lunar dragons, lasts for 10 minutes or until the dragon uses this legendary action again." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 21} Dexterity saving throw or take 12 ({@damage 1d8 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its speed without provoking opportunity attacks." + ] + } + ], + "legendaryGroup": { + "name": "Lunar Dragon", + "source": "BAM" + }, + "dragonAge": "ancient", + "traitTags": [ + "Legendary Resistances", + "Tunneler", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Solar Dragon", + "source": "BAM", + "page": 50, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 425, + "formula": "23d20 + 184" + }, + "speed": { + "walk": 30, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 28, + "dex": 15, + "con": 26, + "int": 17, + "wis": 18, + "cha": 16, + "save": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+10" + }, + "skill": { + "perception": "+18", + "stealth": "+9" + }, + "senses": [ + "darkvision 240 ft." + ], + "passive": 28, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "Draconic" + ], + "cr": "21", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Nebulous Thoughts", + "entries": [ + "Magical attempts to read the dragon's mind or glean its thoughts fail automatically." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The dragon deals double damage to objects and structures." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d6 + 9}) piercing damage plus 10 ({@damage 3d6}) radiant damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}13 ({@damage 1d8 + 9}) bludgeoning damage." + ] + }, + { + "name": "Photonic Breath {@recharge 5}", + "entries": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 240 feet of itself, then blossoms into a 40-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 23} Constitution saving throw, taking 66 ({@damage 12d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Tail Attack", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Blinding Brilliance (Costs 2 Actions)", + "entries": [ + "The dragon emits magical light in a 30-foot-radius sphere centered on itself. Each creature in this area must succeed on a {@dc 23} Wisdom saving throw or be {@condition blinded} until the end of its next turn." + ] + } + ], + "legendaryGroup": { + "name": "Solar Dragon", + "source": "BAM" + }, + "dragonAge": "ancient", + "traitTags": [ + "Flyby", + "Legendary Resistances", + "Siege Monster", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "P", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Astral Elf Aristocrat", + "source": "BAM", + "page": 11, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item elven chain}" + ] + } + ], + "hp": { + "average": 103, + "formula": "23d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 10, + "int": 21, + "wis": 18, + "cha": 18, + "save": { + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "arcana": "+8", + "deception": "+7", + "insight": "+7", + "persuasion": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Celestial", + "Common", + "Draconic", + "Elvish" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The elf casts one of the following spells, using Intelligence as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell fly}", + "{@spell mislead}", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "The elf wears a suit of {@item elven chain}." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The elf doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elf makes two Scimitar attacks and uses Radiant Beam (if available)." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage plus 10 ({@damage 3d6}) radiant damage." + ] + }, + { + "name": "Radiant Beam (3/Day)", + "entries": [ + "A magical beam of radiance flashes out from the elf's hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a {@dc 16} Constitution saving throw, taking 18 ({@damage 4d8}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Starlight Step (3/Day)", + "entries": [ + "The elf magically teleports up to 30 feet, along with anything it is wearing or carrying, to an unoccupied space it can see." + ] + }, + { + "name": "Summon Solar Dragon (1/Day)", + "entries": [ + "The elf has a 50 percent chance of magically summoning a {@creature young solar dragon|BAM}. A summoned dragon appears in an unoccupied space that the summoner can see, acts on its own initiative count, and is an ally of its summoner. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "DR", + "E" + ], + "damageTags": [ + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Astral Elf Commander", + "source": "BAM", + "page": 12, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|PHB|half plate}" + ] + } + ], + "hp": { + "average": 143, + "formula": "26d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 13, + "int": 18, + "wis": 18, + "cha": 18, + "save": { + "dex": "+5", + "con": "+4", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "deception": "+7", + "history": "+7", + "intimidation": "+7", + "survival": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The elf casts the following spell, using Wisdom as the spellcasting ability:" + ], + "daily": { + "2": [ + "{@spell teleport}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The elf doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elf makes two Longsword or Longbow attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage when used with two hands, plus 14 ({@damage 4d6}) radiant damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 14 ({@damage 4d6}) radiant damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "E" + ], + "damageTags": [ + "P", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Astral Elf Honor Guard", + "source": "BAM", + "page": 12, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|PHB|half plate}" + ] + } + ], + "hp": { + "average": 93, + "formula": "17d8 + 17" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 15, + "con": 12, + "int": 17, + "wis": 16, + "cha": 16, + "save": { + "wis": "+6", + "cha": "+6" + }, + "skill": { + "intimidation": "+6", + "perception": "+6", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "cr": "5", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The elf doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elf makes two Longsword or Radiant Ray attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) slashing damage, or 13 ({@damage 2d10 + 2}) slashing damage when used with two hands, plus 10 ({@damage 3d6}) radiant damage." + ] + }, + { + "name": "Radiant Ray", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}22 ({@damage 4d10}) radiant damage." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "E" + ], + "damageTags": [ + "R", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Astral Elf Star Priest", + "source": "BAM", + "page": 13, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 90, + "formula": "20d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 11, + "con": 10, + "int": 16, + "wis": 20, + "cha": 17, + "save": { + "int": "+6", + "wis": "+8", + "cha": "+6" + }, + "skill": { + "medicine": "+8", + "religion": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The elf casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "daily": { + "2e": [ + "{@spell cure wounds} (8th-level version)", + "{@spell hold person}" + ], + "1e": [ + "{@spell divination}", + "{@spell sending}", + "{@spell word of recall}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The elf doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elf makes two Morningstar attacks. It can use Rain of Radiance in place of one of these attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) piercing damage plus 17 ({@damage 5d6}) radiant damage." + ] + }, + { + "name": "Rain of Radiance", + "entries": [ + "Magical, flame-like radiance rains down on a creature that the elf can see within 60 feet of itself. The target must make a {@dc 16} Dexterity saving throw, taking 22 ({@damage 5d8}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Starlight Step (2/Day)", + "entries": [ + "The elf magically teleports up to 30 feet, along with anything it is wearing or carrying, to an unoccupied space it can see." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "E" + ], + "damageTags": [ + "P", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Astral Elf Warrior", + "source": "BAM", + "page": 13, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 58, + "formula": "13d8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 10, + "int": 16, + "wis": 16, + "cha": 15, + "save": { + "dex": "+4", + "wis": "+5" + }, + "skill": { + "intimidation": "+4", + "survival": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "cr": "3", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The elf doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elf makes two Longsword or Longbow attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage when used with two hands, plus 10 ({@damage 3d6}) radiant damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 10 ({@damage 3d6}) radiant damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "E" + ], + "damageTags": [ + "P", + "R", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Autognome", + "source": "BAM", + "page": 13, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d6 + 18" + }, + "speed": { + "walk": 20 + }, + "str": 13, + "dex": 6, + "con": 16, + "int": 4, + "wis": 11, + "cha": 6, + "save": { + "con": "+5", + "wis": "+2", + "cha": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Common", + "Gnomish" + ], + "cr": "2", + "trait": [ + { + "name": "Malfunction", + "entries": [ + "Whenever the autognome takes 15 damage or more from a single source and isn't reduced to 0 hit points by that damage, roll a {@dice d20} to determine if it suffers a malfunction:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-10: \"All Fine Here!\"", + "entries": [ + "No malfunction occurs." + ] + }, + { + "type": "item", + "name": "11-12: \"My Mind Is Going. I Can Feel It.\"", + "entries": [ + "The autognome is {@condition incapacitated} for 1 minute." + ] + }, + { + "type": "item", + "name": "13-14: \"You've Disarmed Me!\"", + "entries": [ + "One of the autognome's arms falls off, reducing the number of Shock attacks it can make by 1 until a creature uses an action to reattach the arm." + ] + }, + { + "type": "item", + "name": "15-16: \"Who Turned Out the Lights?\"", + "entries": [ + "The autognome's head falls off and deactivates, causing the autognome to be {@condition blinded} and {@condition deafened} until a creature uses an action to reattach the head, which reactivates it." + ] + }, + { + "type": "item", + "name": "17-20: \"Have a Magical Day!\"", + "entries": [ + "The autognome explodes and is destroyed. Each creature within 20 feet of the exploding autognome must make a {@dc 11} Dexterity saving throw, taking 22 ({@damage 4d10}) slashing damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "type": "item", + "name": "Unusual Nature", + "entries": [ + "The autognome doesn't require air, food, drink, or sleep." + ] + } + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The autognome makes two Shock attacks." + ] + }, + { + "name": "Shock", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 2d6}) lightning damage." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "G" + ], + "damageTags": [ + "L", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "B'rohg", + "source": "BAM", + "page": 16, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 92, + "formula": "8d12 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 14, + "con": 21, + "int": 5, + "wis": 10, + "cha": 7, + "skill": { + "athletics": "+8", + "survival": "+6" + }, + "passive": 10, + "cr": "6", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The b'rohg makes four Fist attacks or two Rock attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 60/240 ft., one target. {@h}23 ({@damage 4d8 + 5}) bludgeoning damage." + ] + }, + { + "name": "Hideous Rend", + "entries": [ + "The b'rohg uses all four of its hands to target one Large or smaller creature it can see within 10 feet of itself. The target must succeed on a {@dc 16} Dexterity saving throw or be {@condition grappled} (escape {@dc 16}). Until this grapple ends, the b'rohg can't make Fist attacks or Rock attacks, and the target takes 49 ({@damage 8d10 + 5}) bludgeoning damage at the start of each of its turns. A creature reduced to 0 hit points by this damage is ripped into four pieces." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Braxat", + "source": "BAM", + "page": 15, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor", + "intellect fortress" + ] + } + ], + "hp": { + "average": 162, + "formula": "13d12 + 78" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 8, + "con": 22, + "int": 14, + "wis": 13, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "acid", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The braxat casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "daily": { + "1e": [ + "{@spell compulsion}", + "{@spell fear}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Intellect Fortress", + "entries": [ + "The braxat's AC includes its Intelligence modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The braxat makes two Greatclub attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Acid Breath {@recharge}", + "entries": [ + "The braxat exhales a 15-foot cone of acid. Each creature in the cone must make a {@dc 18} Constitution saving throw, taking 26 ({@damage 4d12}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "reaction": [ + { + "name": "Psionic Shield (3/Day)", + "entries": [ + "When the braxat would be hit by an attack roll or a {@spell magic missile} spell that originates from a source the braxat can see, the braxat can create an {@condition invisible} barrier of magical force around itself that lasts until the start of its next turn. This barrier gives the braxat a +5 bonus to AC, including against the triggering attack, and prevents {@spell magic missile} spells from damaging it." + ] + } + ], + "attachedItems": [ + "greatclub|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "A", + "B" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brown Scavver", + "source": "BAM", + "page": 49, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 18, + "dex": 15, + "con": 17, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "cr": "4", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The scavver doesn't require air." + ] + } + ], + "action": [ + { + "name": "Swallowing Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Dexterity saving throw or be swallowed by the scavver. The scavver can have one creature swallowed at a time.", + "A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the scavver, and takes 13 ({@damage 3d8}) poison damage at the start of each of the scavver's turns from the poisonous gas in the scavver's gullet.", + "If the scavver takes 15 damage or more on a single turn from a creature inside it, the scavver must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate the swallowed creature, which falls {@condition prone} in a space within 10 feet of the scavver. If the scavver dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting {@condition prone}." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Swallow" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chwinga Astronaut", + "source": "BAM", + "page": 17, + "size": [ + "T" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 15 + ], + "hp": { + "average": 7, + "formula": "3d4" + }, + "speed": { + "walk": 20, + "climb": 20, + "swim": 20 + }, + "str": 1, + "dex": 20, + "con": 10, + "int": 14, + "wis": 16, + "cha": 16, + "skill": { + "acrobatics": "+7", + "perception": "+7", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 17, + "cr": "0", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The chwinga casts one of the following spells, requiring no material or verbal components and using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell pass without trace}", + "{@spell resistance}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Evasion", + "entries": [ + "When the chwinga is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails, provided it isn't {@condition incapacitated}." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The chwinga doesn't require air, food, or drink. When it dies, it turns into a tiny pile of moondust, a cloud of glittering spores, a statuette resembling its former self, a chunk of ice, or a sponge shaped like a dodecahedron (DM's choice)." + ] + } + ], + "action": [ + { + "name": "Magical Gift (1/Day)", + "entries": [ + "The chwinga targets a Humanoid it can see within 5 feet of itself. The target gains a {@filter supernatural charm|rewards|type=charm} of the DM's choice. See {@book chapter 7|DMG|7|Other Rewards} for more information on supernatural charms." + ] + }, + { + "name": "Natural Shelter", + "entries": [ + "The chwinga takes shelter inside a rock, a bush, a tree, or a natural source of fresh water in its space. The chwinga can't be targeted by any attack, spell, or other effect while it is magically protected in this way, and the shelter doesn't impair the chwinga's blindsight. The chwinga can use its action to emerge from a shelter. If its shelter is destroyed, the chwinga is forced out and appears in the shelter's space, but is otherwise unharmed." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cosmic Horror", + "source": "BAM", + "page": 18, + "otherSources": [ + { + "source": "VEoR" + } + ], + "size": [ + "G" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 280, + "formula": "16d20 + 112" + }, + "speed": { + "walk": 50, + "fly": 100 + }, + "str": 27, + "dex": 10, + "con": 25, + "int": 24, + "wis": 15, + "cha": 24, + "save": { + "int": "+13", + "wis": "+8", + "cha": "+13" + }, + "senses": [ + "darkvision 240 ft." + ], + "passive": 12, + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Deep Speech", + "telepathy 240 ft." + ], + "cr": "18", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the horror fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The horror doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The horror makes one Bite attack and two Tentacle attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d6 + 8}) piercing damage." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 30 ft., one target. {@h}18 ({@damage 3d6 + 8}) force damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the horror can't use this tentacle against other targets. The horror has {@dice 1d8 + 1} tentacles, each of which can grapple one target." + ] + }, + { + "name": "Psychic Whispers {@recharge 5}", + "entries": [ + "The horror emits dreadful whispers in a 60-foot-radius sphere centered on itself. Each creature in the sphere that isn't an Aberration must make a {@dc 21} Wisdom saving throw, taking 33 ({@damage 6d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Crushing Tentacle", + "entries": [ + "The horror crushes one creature it is grappling. The {@condition grappled} creature must make a {@dc 22} Constitution saving throw, taking 18 ({@damage 3d6 + 8}) force damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Poison Jet (Costs 2 Actions)", + "entries": [ + "Foul gas squirts from the horror in a 30-foot line that is 5 feet wide. Each creature in the line must succeed on a {@dc 21} Constitution saving throw or take 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Teleport (Costs 2 Actions)", + "entries": [ + "The horror teleports, along with any creatures it is grappling, to an unoccupied space it can see within 120 feet of itself." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "I", + "O", + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dohwar", + "source": "BAM", + "page": 19, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 20, + "swim": 20 + }, + "str": 5, + "dex": 12, + "con": 11, + "int": 11, + "wis": 14, + "cha": 13, + "save": { + "dex": "+3", + "wis": "+4" + }, + "skill": { + "deception": "+3", + "insight": "+4", + "persuasion": "+3" + }, + "passive": 12, + "languages": [ + "Common", + "Dohwar", + "telepathy 30 ft. (see also Merging below)" + ], + "cr": "0", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dohwar casts the following spell, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "daily": { + "3": [ + "{@spell detect thoughts}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Merging", + "entries": [ + "Two dohwars can have a telepathic conversation with each other and a third willing creature of their choice, provided all three are within 30 feet of one another." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "languageTags": [ + "C", + "TP" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Esthetic", + "source": "BAM", + "page": 20, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "G" + ], + "type": "aberration", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 217, + "formula": "14d20 + 70" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 24, + "dex": 8, + "con": 20, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 300 ft. (blind beyond this radius)" + ], + "passive": 12, + "immune": [ + "acid" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "petrified", + "prone" + ], + "cr": "12", + "trait": [ + { + "name": "Bioluminescence", + "entries": [ + "While it has at least 1 hit point, the esthetic sheds bright light in a 30-foot radius and dim light for an additional 30 feet, and its interior compartments are dimly lit." + ] + }, + { + "name": "Spelljamming", + "entries": [ + "The esthetic has the properties of a spelljamming helm (see the Astral Adventurer's Guide), but only its reigar creator can attune to it." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The esthetic doesn't require air, food, or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The esthetic makes two Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 30 ft., one target. {@h}17 ({@damage 3d6 + 7}) force damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the creature takes 18 ({@damage 4d8}) acid damage at the start of each of its turns, and the esthetic can't use this tentacle against other targets. The esthetic has {@dice 1d4 \u00d7 2} tentacles, each of which can grapple one target." + ] + } + ], + "bonus": [ + { + "name": "Jammerscream {@recharge}", + "entries": [ + "The esthetic targets one spelljamming ship within 300 feet of itself, magically suppressing the properties of the ship's spelljamming helm for {@dice 2d10} days. If the ship has more than one helm aboard it, randomly determine which helm is affected. A creature attuned to that helm can choose to make a {@dc 17} Charisma saving throw. On a failed save, the creature takes 42 ({@damage 12d6}) psychic damage, and the helm is suppressed for {@dice 2d10} hours instead of {@dice 2d10} days. On a successful save, the creature takes half as much damage, and the helm is suppressed for {@dice 2d10} minutes instead of {@dice 2d10} days." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "A", + "O", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eye Monger", + "source": "BAM", + "page": 21, + "otherSources": [ + { + "source": "VEoR" + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 149, + "formula": "13d10 + 78" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 21, + "dex": 6, + "con": 23, + "int": 7, + "wis": 13, + "cha": 7, + "senses": [ + "darkvision 120 ft.", + "blindsight 120 ft. while the eye monger's eye is closed" + ], + "passive": 11, + "languages": [ + "Deep Speech" + ], + "cr": "10", + "trait": [ + { + "name": "Antimagic Gullet", + "entries": [ + "Magical effects, including those produced by spells and magic items but excluding those created by artifacts or deities, are suppressed inside the eye monger's gullet. Any spell slot or charge expended by a creature in the gullet to cast a spell or activate a property of a magic item is wasted. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration. No spell or magical effect that originates outside the eye monger's gullet, except one created by an artifact or a deity, can affect a creature or an object inside the gullet." + ] + }, + { + "name": "False Appearance", + "entries": [ + "If the eye monger is motionless and has its eye and mouth closed at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the eye monger move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the eye monger is animate." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The eye monger doesn't require air." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and if the target is a Medium or smaller creature, it must succeed on a {@dc 18} Dexterity saving throw or be swallowed by the eye monger and deposited in the eye monger's gullet (see Antimagic Gullet). The eye monger can swallow one creature at a time. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects originating outside the eye monger, and takes 35 ({@damage 10d6}) acid damage at the start of each of its turns.", + "If the eye monger takes 25 damage or more on a single turn from a creature inside its gullet, the eye monger regurgitates the swallowed creature, which falls {@condition prone} in a space within 10 feet of the eye monger. If the eye monger dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting {@condition prone}." + ] + } + ], + "traitTags": [ + "False Appearance", + "Unusual Nature" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Swallow" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Feyr", + "source": "BAM", + "page": 22, + "otherSources": [ + { + "source": "BMT" + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d10" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 16, + "con": 11, + "int": 14, + "wis": 14, + "cha": 11, + "save": { + "int": "+5", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "conditionImmune": [ + "frightened" + ], + "cr": "5", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The feyr doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The feyr makes one Frightful Bite attack and one Tentacle attack." + ] + }, + { + "name": "Frightful Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage, and each creature within 10 feet of the feyr that can see it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of the feyr until the end of the feyr's next turn." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}17 ({@damage 4d6 + 3}) psychic damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the feyr can't use this tentacle against other targets. The feyr has two tentacles, each of which can grapple one creature." + ] + }, + { + "name": "Invisibility", + "entries": [ + "The feyr becomes {@condition invisible} until it attacks, uses Nightmare Fuel, or uses a bonus action to become visible." + ] + }, + { + "name": "Nightmare Fuel (1/Day)", + "entries": [ + "The feyr targets one {@condition unconscious} creature it can see within 10 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage, and the feyr gains temporary hit points equal to the damage dealt." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gaj", + "source": "BAM", + "page": 23, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 12, + "wis": 15, + "cha": 7, + "skill": { + "perception": "+6", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "understands all languages but can't speak" + ], + "cr": "4", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gaj makes one Mandibles attack and uses Mind-Probing Antennae or Paralyze (if available)." + ] + }, + { + "name": "Mandibles", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) slashing damage, and the target is {@condition grappled} (escape {@dc 11}). Until the grapple ends, the target takes 10 ({@damage 2d6 + 3}) slashing damage at the start of each of the gaj's turns. While it is grappling a creature, the gaj can't use its mandibles to attack other creatures." + ] + }, + { + "name": "Mind-Probing Antennae", + "entries": [ + "The gaj targets one creature {@condition grappled} by it. The target must make a {@dc 12} Wisdom saving throw. On a failed save, the target takes 16 ({@damage 3d10}) psychic damage, and the gaj magically pulls one piece of information from the target's mind that the gaj wants to know. On a successful save, the target takes half as much damage, and the gaj learns nothing." + ] + }, + { + "name": "Paralyze {@recharge}", + "entries": [ + "The gaj magically targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 12} Wisdom saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Space Hamster", + "source": "BAM", + "page": 56, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 22, + "formula": "4d10" + }, + "speed": { + "walk": 30, + "burrow": 10 + }, + "str": 14, + "dex": 12, + "con": 10, + "int": 2, + "wis": 12, + "cha": 4, + "passive": 11, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giff Shipmate", + "source": "BAM", + "page": 24, + "otherSources": [ + { + "source": "LoX" + }, + { + "source": "SJA" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 11, + "wis": 12, + "cha": 12, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Firearms Knowledge", + "entries": [ + "The giff's mastery of its weapons enables it to ignore the loading property of any firearm." + ] + }, + { + "name": "Steady as She Goes", + "entries": [ + "On the deck of a ship, the giff has advantage on ability checks and saving throws made against effects that would knock it {@condition prone} or shove it overboard." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giff makes two Longsword or Musket attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Musket", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 40/120 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage." + ] + }, + { + "name": "Force Grenade", + "entries": [ + "The giff throws a grenade up to 60 feet, and the grenade explodes in a 20-foot-radius sphere. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) force damage on a failed save, or half as much damage on a successful one. After the giff throws the grenade, roll a {@dice d6}; on a roll of 4 or lower, the giff has no more grenades to throw." + ] + } + ], + "attachedItems": [ + "longsword|phb", + "musket|dmg" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giff Shock Trooper", + "source": "BAM", + "page": 25, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 20, + "dex": 14, + "con": 18, + "int": 11, + "wis": 12, + "cha": 13, + "save": { + "str": "+8", + "con": "+7", + "wis": "+4" + }, + "skill": { + "athletics": "+8", + "intimidation": "+7", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Common" + ], + "cr": "6", + "trait": [ + { + "name": "Firearms Knowledge", + "entries": [ + "The giff's mastery of its weapons enables it to ignore the loading property of any firearm." + ] + }, + { + "name": "Headfirst Charge", + "entries": [ + "If the giff moves at least 20 feet in a straight line and ends within 5 feet of a Large or smaller creature, that creature must succeed on a {@dc 16} Strength saving throw or take 7 ({@damage 2d6}) bludgeoning damage and be knocked {@condition prone}." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The giff deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giff makes two Greatsword or Musket attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ] + }, + { + "name": "Musket", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 40/120 ft., one target. {@h}15 ({@damage 2d12 + 2}) piercing damage." + ] + }, + { + "name": "Thunder Bomb", + "entries": [ + "The giff lights a grapefruit-sized bomb and throws it at a point up to 60 feet away, where it explodes. Each creature within a 10-foot-radius sphere centered on that point must make a {@dc 15} Dexterity saving throw, taking 18 ({@damage 4d8}) thunder damage on a failed save, or half as much damage on a successful one. After the giff throws the bomb, roll a {@dice d6}; on a roll of 4 or lower, the giff has no more bombs to throw." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "musket|dmg" + ], + "traitTags": [ + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giff Warlord", + "source": "BAM", + "page": 25, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|PHB|half plate}" + ] + } + ], + "hp": { + "average": 178, + "formula": "21d8 + 84" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 22, + "dex": 15, + "con": 18, + "int": 14, + "wis": 14, + "cha": 18, + "save": { + "str": "+10", + "dex": "+6", + "con": "+8", + "wis": "+6" + }, + "skill": { + "athletics": "+10", + "insight": "+6", + "intimidation": "+12" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "10", + "trait": [ + { + "name": "Firearms Knowledge", + "entries": [ + "The giff's mastery of its weapons enables it to ignore the loading property of any firearm." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the giff fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giff makes two Morningstar attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ] + }, + { + "name": "Double-Barreled Musket", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 40/120 ft., one target. {@h}28 ({@damage 4d12 + 2}) piercing damage." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The giff moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Rallying Cry", + "entries": [ + "The giff ends the {@condition frightened} condition on itself and each creature of its choice that it can see within 30 feet of it." + ] + }, + { + "name": "Weapon of Choice (2 Actions)", + "entries": [ + "The giff makes two Morningstar attacks or one Double-Barreled Musket attack." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Buccaneer", + "source": "BAM", + "page": 27, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 16, + "wis": 13, + "cha": 13, + "save": { + "con": "+4", + "int": "+5", + "wis": "+3" + }, + "skill": { + "athletics": "+5", + "deception": "+3", + "perception": "+3", + "survival": "+3" + }, + "passive": 13, + "languages": [ + "Common", + "Gith" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1e": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes two Greatsword or Telekinetic Bolt attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) psychic damage." + ] + }, + { + "name": "Telekinetic Bolt", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}13 ({@damage 3d6 + 3}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Astral Step {@recharge 4}", + "entries": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GTH" + ], + "damageTags": [ + "O", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Star Seer", + "source": "BAM", + "page": 27, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith", + "warlock" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@spell mage armor}" + ] + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 11, + "con": 14, + "int": 19, + "wis": 16, + "cha": 14, + "save": { + "con": "+5", + "int": "+7", + "wis": "+6" + }, + "skill": { + "arcana": "+10", + "history": "+10" + }, + "passive": 13, + "resist": [ + "radiant" + ], + "languages": [ + "Common", + "Gith" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "2e": [ + "{@spell detect magic}", + "{@spell invisibility} (self only)", + "{@spell mage armor} (self only)", + "{@spell tongues}" + ], + "1e": [ + "{@spell contact other plane} (as an action)", + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes three Astral Bolt attacks." + ] + }, + { + "name": "Astral Bolt", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}20 ({@damage 3d10 + 4}) radiant damage." + ] + } + ], + "bonus": [ + { + "name": "Astral Step {@recharge 4}", + "entries": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GTH" + ], + "damageTags": [ + "R" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "P" + ], + "conditionInflictSpell": [ + "invisible", + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Xenomancer", + "source": "BAM", + "page": 27, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "druid", + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 14 + ], + "hp": { + "average": 157, + "formula": "21d8 + 63" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 18, + "con": 17, + "int": 15, + "wis": 18, + "cha": 13, + "save": { + "dex": "+8", + "con": "+7", + "wis": "+8" + }, + "skill": { + "animal handling": "+8", + "nature": "+6", + "perception": "+8", + "survival": "+8" + }, + "passive": 18, + "languages": [ + "Gith plus any four languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell druidcraft}", + "{@spell light}", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "2e": [ + "{@spell invisibility} (self only)", + "{@spell pass without trace} (self only)" + ], + "1e": [ + "{@spell dominate monster}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes three Staff attacks, three Telekinetic Bolt attacks, or a combination thereof." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage when used with two hands, plus 14 ({@damage 4d6}) psychic damage." + ] + }, + { + "name": "Telekinetic Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 60 ft., one target. {@h}20 ({@damage 3d10 + 4}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Astral Step {@recharge 4}", + "entries": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH", + "X" + ], + "damageTags": [ + "B", + "O", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gray Scavver", + "source": "BAM", + "page": 49, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 16, + "dex": 13, + "con": 15, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The scavver doesn't require air." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit (with advantage if the target is a creature that is missing any hit points), reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hadozee Explorer", + "source": "BAM", + "page": 28, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 11, + "dex": 17, + "con": 13, + "int": 13, + "wis": 17, + "cha": 14, + "save": { + "con": "+3", + "wis": "+5" + }, + "skill": { + "athletics": "+2", + "perception": "+5", + "stealth": "+5", + "survival": "+5" + }, + "passive": 15, + "languages": [ + "Common", + "Hadozee" + ], + "cr": "2", + "trait": [ + { + "name": "Glide", + "entries": [ + "If it isn't {@condition incapacitated} or wearing heavy armor, the hadozee can extend its skin membranes to move up to 5 feet horizontally for every 1 foot it descends in the air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hadozee makes two Shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Musket", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 40/120 ft., one target. {@h}16 ({@damage 2d12 + 3}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "The hadozee takes the Disengage or Hide action." + ] + } + ], + "reaction": [ + { + "name": "Safe Descent", + "entries": [ + "When it would take damage from a fall, the hadozee extends its skin membranes to reduce the fall's damage to 0, provided it isn't wearing heavy armor." + ] + } + ], + "attachedItems": [ + "musket|dmg", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hadozee Shipmate", + "source": "BAM", + "page": 29, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 11, + "dex": 14, + "con": 11, + "int": 10, + "wis": 14, + "cha": 12, + "save": { + "dex": "+4", + "con": "+2" + }, + "skill": { + "perception": "+4", + "survival": "+6" + }, + "passive": 14, + "languages": [ + "Common", + "Hadozee" + ], + "cr": "1/8", + "trait": [ + { + "name": "Glide", + "entries": [ + "If it isn't {@condition incapacitated} or wearing heavy armor, the hadozee can extend its skin membranes to move up to 5 feet horizontally for every 1 foot it descends in the air." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Safe Descent", + "entries": [ + "When it would take damage from a fall, the hadozee extends its skin membranes to reduce the fall's damage to 0, provided it isn't wearing heavy armor." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hadozee Warrior", + "source": "BAM", + "page": 29, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 11, + "dex": 16, + "con": 13, + "int": 10, + "wis": 13, + "cha": 12, + "save": { + "dex": "+5", + "con": "+3" + }, + "skill": { + "perception": "+3", + "stealth": "+5", + "survival": "+5" + }, + "passive": 13, + "languages": [ + "Common", + "Hadozee" + ], + "cr": "1/2", + "trait": [ + { + "name": "Glide", + "entries": [ + "If it isn't {@condition incapacitated} or wearing heavy armor, the hadozee can extend its skin membranes to move up to 5 feet horizontally for every 1 foot it descends in the air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hadozee makes two Shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Safe Descent", + "entries": [ + "When it would take damage from a fall, the hadozee extends its skin membranes to reduce the fall's damage to 0, provided it isn't wearing heavy armor." + ] + }, + { + "name": "Uncanny Dodge", + "entries": [ + "The hadozee halves the damage that it takes from an attack that hits it, provided it can see the attacker." + ] + } + ], + "attachedItems": [ + "light crossbow|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jammer Leech", + "source": "BAM", + "page": 30, + "size": [ + "T" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d4 + 15" + }, + "speed": { + "walk": 10 + }, + "str": 11, + "dex": 1, + "con": 16, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "conditionImmune": [ + "charmed", + "frightened", + "prone" + ], + "cr": "1", + "trait": [ + { + "name": "Spelljammer Overload", + "entries": [ + "If the leech is reduced to 0 hit points while attached to a ship that has a spelljamming helm, the creature attuned to that helm must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 10 ({@damage 4d4}) psychic damage and is {@condition incapacitated} for 1 minute. On a successful save, the creature takes half as much damage and is {@condition incapacitated} until the end of its next turn." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The leech doesn't require air or sleep." + ] + } + ], + "action": [ + { + "name": "Spiked Tentacle", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Attach to Hull", + "entries": [ + "The leech attaches itself to a ship's hull in its space, dealing 2 ({@damage 1d4}) piercing damage to the ship (ignoring the ship's damage threshold). This damage can't be repaired until the leech is scraped off the hull. While the leech is attached, its speed is 0, and it can detach itself as a bonus action. As an action, a creature within reach of the leech can to try to scrape it off the hull, doing so with a successful {@dc 18} Strength check. On a failed check, the action is wasted as the leech remains attached to the hull. Removing the leech in this way deals no damage to the leech or the ship." + ] + } + ], + "reaction": [ + { + "name": "Magical Discharge (1/Day)", + "entries": [ + "When it takes damage, the leech can discharge a bolt of magical energy from its eye that targets one creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Dexterity saving throw or take 10 ({@damage 3d6}) force damage and be {@condition stunned} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "O", + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kindori", + "source": "BAM", + "page": 31, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "G" + ], + "type": "celestial", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 202, + "formula": "15d20 + 45" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 25, + "dex": 7, + "con": 17, + "int": 6, + "wis": 14, + "cha": 7, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "cr": "7", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The kindori doesn't require food, drink, or air." + ] + } + ], + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Flashing Eyes {@recharge}", + "entries": [ + "The kindori emits bright light in a 120-foot cone. Each creature in the cone must succeed on a {@dc 14} Wisdom saving throw or be {@condition 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." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lunar Dragon Wyrmling", + "source": "BAM", + "page": 35, + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 40, + "burrow": 10, + "fly": 40 + }, + "str": 15, + "dex": 12, + "con": 16, + "int": 6, + "wis": 10, + "cha": 9, + "save": { + "con": "+5", + "wis": "+2" + }, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "trait": [ + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales a blast of frost in a 15-foot cone. Each creature in the cone must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 13 ({@damage 3d8}) cold damage, and its speed is halved until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "bonus": [ + { + "name": "Phase (2/Day)", + "entries": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ] + } + ], + "dragonAge": "wyrmling", + "traitTags": [ + "Tunneler", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Megapede", + "source": "BAM", + "page": 36, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 175, + "formula": "13d20 + 39" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 22, + "dex": 10, + "con": 17, + "int": 1, + "wis": 10, + "cha": 3, + "save": { + "con": "+7", + "wis": "+4" + }, + "skill": { + "perception": "+8", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "cr": "11", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The megapede makes one Bite attack and uses either Life Drain or Psychic Bomb." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 20 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage plus 22 ({@damage 5d8}) poison damage." + ] + }, + { + "name": "Life Drain", + "entries": [ + "The megapede magically drains life energy from other creatures nearby. Each creature within 15 feet of the megapede must make a {@dc 15} Constitution saving throw, taking 16 ({@damage 3d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Psychic Bomb", + "entries": [ + "The megapede targets one creature it can see within 60 feet of itself. The target must make a {@dc 15} Wisdom saving throw. On a failed save, the target takes 22 ({@damage 5d8}) psychic damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the target takes half as much damage and isn't {@condition incapacitated}." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "N", + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mercane", + "source": "BAM", + "page": 37, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@spell mage armor}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 18, + "wis": 16, + "cha": 15, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+5" + }, + "skill": { + "insight": "+9", + "perception": "+6", + "persuasion": "+5" + }, + "passive": 16, + "languages": [ + "Common", + "Giant", + "telepathy 60 ft. (see also Mercane telepathy)" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The mercane casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell light}" + ], + "daily": { + "1e": [ + "{@spell dimension door}", + "{@spell invisibility}", + "{@spell mage armor} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Mercane Telepathy", + "entries": [ + "The mercane can communicate telepathically with any other mercane it knows, regardless of the distance between them." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mercane makes three Psi-Imbued Blade attacks." + ] + }, + { + "name": "Psi-Imbued Blade", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage, and if the target is a creature, it must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of the mercane until the end of the target's next turn." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "TP" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Murder Comet", + "source": "BAM", + "page": 38, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "7d8 + 35" + }, + "speed": { + "walk": 0, + "fly": 120 + }, + "str": 15, + "dex": 15, + "con": 20, + "int": 6, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 240 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "prone", + "unconscious" + ], + "languages": [ + "Ignan", + "Terran" + ], + "cr": "5", + "trait": [ + { + "name": "Explode", + "entries": [ + "When the comet drops to 0 hit points, it explodes in a 20-foot-radius sphere centered on itself. Each creature in the sphere must make a {@dc 16} Dexterity saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Flyby", + "entries": [ + "The comet doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Illumination", + "entries": [ + "The comet sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The comet deals double damage to objects and structures." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The comet doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The comet makes one Slam attack and one Spit Fire attack." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage." + ] + }, + { + "name": "Spit Fire", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 60 ft., one target. {@h}13 ({@damage 2d10 + 2}) fire damage." + ] + } + ], + "traitTags": [ + "Flyby", + "Illumination", + "Siege Monster", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG", + "T" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neh-thalggu", + "source": "BAM", + "page": 39, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 8, + "con": 18, + "int": 12, + "wis": 11, + "cha": 7, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "languages": [ + "Deep Speech; see also Brain Dump" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The neh-thalggu casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 11}). It must have consumed the requisite number of brains to cast the spell, as indicated:" + ], + "daily": { + "1e": [ + "{@spell arms of Hadar} (1 brain)", + "{@spell detect magic} (2 brains)", + "{@spell magic missile} (3 brains)", + "{@spell Tenser's floating disk} (4 brains)", + "{@spell darkness} (5 brains)", + "{@spell hold person} (6 brains)", + "{@spell invisibility} (7 brains)", + "{@spell spider climb} (8 brains)", + "{@spell fear} (9 brains)", + "{@spell hypnotic pattern} (10 brains)", + "{@spell major image} (11 brains)", + "{@spell stinking cloud} (12 brains)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Brain Dump", + "entries": [ + "Whenever the neh-thalggu consumes a brain, it gains the magical ability to speak and understand languages known by the brain's previous owner." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The neh-thalggu doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The neh-thalggu makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one {@condition incapacitated} Humanoid. {@h}35 ({@damage 10d6}) piercing damage. If this damage reduces the target to 0 hit points, the neh-thalggu kills the target by extracting and consuming its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The neh-thalggu magically emits psychic energy at one Humanoid it can see within 10 feet of itself. The target must make a {@dc 14} Wisdom saving throw. On a failed save, the target takes 9 ({@damage 2d8}) psychic damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the target takes half as much damage and isn't {@condition incapacitated}." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "N", + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neogi Hatchling Swarm", + "source": "BAM", + "page": 40, + "size": [ + "M" + ], + "type": { + "type": "aberration", + "swarmSize": "T" + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 11 + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 12, + "dex": 13, + "con": 14, + "int": 6, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "3", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny neogi hatchling. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Swarm of Bites", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}22 ({@damage 6d6 + 1}) poison damage, or 11 ({@damage 3d6 + 1}) poison damage if the swarm has half of its hit points or fewer, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Neogi Pirate", + "source": "BAM", + "page": 41, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 6, + "dex": 15, + "con": 14, + "int": 13, + "wis": 12, + "cha": 15, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "cr": "3", + "trait": [ + { + "name": "Mental Fortitude", + "entries": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The neogi makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Neogi Void Hunter", + "source": "BAM", + "page": 41, + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 6, + "dex": 16, + "con": 14, + "int": 16, + "wis": 12, + "cha": 18, + "save": { + "wis": "+3", + "cha": "+6" + }, + "skill": { + "arcana": "+5", + "deception": "+6", + "intimidation": "+6", + "perception": "+3", + "persuasion": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Deep Speech", + "telepathy 30 ft.", + "Undercommon" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The neogi casts one of the following spells, using Charisma as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell dimension door}", + "{@spell invisibility}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the neogi's darkvision." + ] + }, + { + "name": "Mental Fortitude", + "entries": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The neogi makes one Bite attack and two Claw attacks, or it makes two Eldritch Bolt attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Eldritch Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}20 ({@damage 3d10 + 4}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Enslave (Recharges after a Short or Long Rest)", + "entries": [ + "The neogi targets one creature it can see within 30 feet of itself. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Devil's Sight", + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "TP", + "U" + ], + "damageTags": [ + "I", + "O", + "P" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Night Scavver", + "source": "BAM", + "page": 49, + "otherSources": [ + { + "source": "VEoR" + } + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d12 + 36" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 20, + "dex": 15, + "con": 17, + "int": 1, + "wis": 10, + "cha": 1, + "skill": { + "perception": "+6", + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "cr": "5", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The scavver doesn't require air." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit (with advantage if the target is a creature that is missing any hit points), reach 10 ft., one target. {@h}27 ({@damage 4d10 + 5}) piercing damage." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Plasmoid Boss", + "source": "BAM", + "page": 42, + "size": [ + "L" + ], + "type": "ooze", + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 82, + "formula": "11d10 + 22" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 14, + "int": 14, + "wis": 13, + "cha": 15, + "save": { + "con": "+4", + "wis": "+3" + }, + "skill": { + "deception": "+4", + "intimidation": "+4", + "persuasion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "acid", + "poison" + ], + "languages": [ + "Common" + ], + "cr": "4", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The plasmoid can squeeze through a space as narrow as 1 inch wide, provided it is wearing and carrying nothing. It has advantage on ability checks it makes to initiate or escape a grapple." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The plasmoid can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The plasmoid makes three Pseudopod attacks." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 6} to hit (with advantage if the plasmoid has one or more allies within 10 feet of itself), reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "The plasmoid halves the damage that it takes from an attack that hits it. The plasmoid must be able to see the attacker." + ] + } + ], + "traitTags": [ + "Amorphous", + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Plasmoid Explorer", + "source": "BAM", + "page": 43, + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 10, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "acid", + "poison" + ], + "languages": [ + "Common" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The plasmoid can squeeze through a space as narrow as 1 inch wide, provided it is wearing and carrying nothing. It has advantage on ability checks it makes to initiate or escape a grapple." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The plasmoid can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The plasmoid makes two Pseudopod attacks. It can replace one of those attacks with a Javelin attack." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "traitTags": [ + "Amorphous", + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Plasmoid Warrior", + "source": "BAM", + "page": 43, + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "athletics": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "acid", + "poison" + ], + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The plasmoid can squeeze through a space as narrow as 1 inch wide, provided it is wearing and carrying nothing. It has advantage on ability checks it makes to initiate or escape a grapple." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The plasmoid can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The plasmoid makes three Pseudopod attacks. It can replace one of those attacks with a Spear or Pistol attack." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage when used with two hands to make a melee attack." + ] + }, + { + "name": "Pistol", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "pistol|dmg", + "spear|phb" + ], + "traitTags": [ + "Amorphous", + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Psurlon", + "source": "BAM", + "page": 44, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@spell mage armor}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 14, + "int": 17, + "wis": 11, + "cha": 7, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 10, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The psurlon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "1": [ + "{@spell suggestion}" + ], + "2e": [ + "{@spell disguise self}", + "{@spell mage armor} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aberrant Mind", + "entries": [ + "Magic can't read the psurlon's thoughts or put the psurlon to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The psurlon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Psychic Crush", + "entries": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must make a {@dc 13} Wisdom saving throw, taking 14 ({@damage 2d10 + 3}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Psurlon Leader", + "source": "BAM", + "page": 45, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@spell mage armor}" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 20, + "wis": 11, + "cha": 7, + "save": { + "wis": "+3", + "cha": "+1" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 16, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The psurlon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "daily": { + "2e": [ + "{@spell disguise self}", + "{@spell mage armor} (self only)" + ], + "1e": [ + "{@spell dimension door}", + "{@spell suggestion}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aberrant Mind", + "entries": [ + "Magic can't read the psurlon's thoughts or put the psurlon to sleep." + ] + }, + { + "name": "Two Heads", + "entries": [ + "The psurlon has advantage on saving throws it makes to avoid or end the {@condition frightened}, {@condition stunned}, or {@condition unconscious} condition on itself. While one of the psurlon's heads is asleep, its other head is awake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The psurlon makes two Bite attacks and two Claw attacks. It can also use Pacify (if available) or Psychic Crush." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ] + }, + { + "name": "Pacify {@recharge 5}", + "entries": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must succeed on a {@dc 16} Wisdom saving throw or fall {@condition unconscious} for 10 minutes. The condition ends if the target takes any damage or if another creature uses its action to shake the target awake." + ] + }, + { + "name": "Psychic Crush", + "entries": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must make a {@dc 16} Wisdom saving throw, taking 21 ({@damage 3d10 + 5}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Psurlon Ringer", + "source": "BAM", + "page": 45, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@spell mage armor}" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 11, + "con": 10, + "int": 17, + "wis": 11, + "cha": 7, + "passive": 10, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Deep Speech plus the languages of the Humanoid it is imitating", + "telepathy 120 ft." + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The psurlon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "1": [ + "{@spell suggestion}" + ], + "2": [ + "{@spell mage armor} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aberrant Mind", + "entries": [ + "Magic can't read the psurlon's thoughts or put the psurlon to sleep." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage plus 4 ({@damage 1d8}) psychic damage." + ] + }, + { + "name": "Psychic Crush", + "entries": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must make a {@dc 13} Wisdom saving throw, taking 12 ({@damage 3d8 + 3}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Reigar", + "source": "BAM", + "page": 47, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "glory" + ] + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 18, + "dex": 15, + "con": 12, + "int": 19, + "wis": 16, + "cha": 24, + "save": { + "dex": "+5", + "con": "+4", + "wis": "+6", + "cha": "+10" + }, + "skill": { + "arcana": "+7", + "history": "+7", + "performance": "+10", + "persuasion": "+10" + }, + "passive": 13, + "languages": [ + "Celestial", + "Common", + "Deep Speech", + "Draconic" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The reigar casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell dimension door}", + "{@spell phantasmal force}" + ], + "1e": [ + "{@spell mass suggestion}", + "{@spell sending}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Glory", + "entries": [ + "The reigar's Armor Class includes its Charisma modifier." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The reigar can hold its breath for 1 hour." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "The reigar wears a {@item talarith|BAM}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The reigar makes two Trident attacks." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) force damage if the reigar is wearing its talarith." + ] + }, + { + "name": "Chromatic Bolt", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 90 ft., one target. {@h}22 ({@damage 5d8}) damage of a type chosen by the reigar from the following list: cold, fire, lightning, or radiant." + ] + }, + { + "name": "Summon Duplicate (Recharges after a Short or Long Rest)", + "entries": [ + "Using its talarith, the reigar summons a duplicate of itself. The duplicate obeys the reigar's commands and uses the reigar's statistics, except it is an unaligned Construct that doesn't have a talarith of its own. The duplicate takes its turn immediately after the reigar. It vanishes after 1 hour or when it is reduced to 0 hit points." + ] + } + ], + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "DR", + "DS" + ], + "damageTags": [ + "O", + "P" + ], + "damageTagsSpell": [ + "O", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Solar Dragon Wyrmling", + "source": "BAM", + "page": 53, + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d8 + 24" + }, + "speed": { + "walk": 20, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 15, + "con": 18, + "int": 11, + "wis": 12, + "cha": 10, + "save": { + "dex": "+4", + "con": "+6", + "wis": "+3", + "cha": "+2" + }, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "Draconic" + ], + "cr": "3", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 3 ({@damage 1d6}) radiant damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + }, + { + "name": "Photonic Breath {@recharge 5}", + "entries": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 120 feet of itself, then blossoms into a 10-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 14} Constitution saving throw, taking 22 ({@damage 4d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "dragonAge": "wyrmling", + "traitTags": [ + "Flyby", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "P", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Space Clown", + "source": "BAM", + "page": 54, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 14, + "int": 11, + "wis": 11, + "cha": 16, + "skill": { + "acrobatics": "+5", + "performance": "+5", + "sleight of hand": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Abyssal", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The clown casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell mirror image}", + "{@spell spider climb}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Dying Burst", + "entries": [ + "When the clown drops to 0 hit points, it pops like a balloon, releasing a splash of putrid, corrosive ichor. Each creature within 5 feet of the clown when it bursts must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Squeakers", + "entries": [ + "The clown wears shoes that squeak when it walks. The squeaking can be heard out to a range of 30 feet. The squeaking is silenced while the clown's Phantasmal Form is in effect." + ] + } + ], + "action": [ + { + "name": "Shock", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) lightning damage." + ] + }, + { + "name": "Ray Gun", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one creature. {@h}7 ({@damage 2d6}) psychic damage, and if the target is a Humanoid with an Intelligence score of 3 or higher, it must make a {@dc 12} Wisdom saving throw. On a failed save, the target perceives everything it sees or hears as hilariously funny and is {@condition incapacitated} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Phantasmal Form (3/Day)", + "entries": [ + "The clown veils itself and everything it is wearing and carrying in an illusion that makes it look like some other creature of its size or smaller (such as a child) or an object small enough to fit in the clown's space (such as a floating balloon). Maintaining this effect requires the clown's {@status concentration} (as if {@status concentration||concentrating} on a spell), and the illusion fails to hold up to physical inspection. As an action, a creature that can see the clown's illusory form can make a {@dc 15} Wisdom ({@skill Insight}) check, piercing the illusion and discerning the clown's true form on a success." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "A", + "L", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Space Eel", + "source": "BAM", + "page": 55, + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 10, + "fly": 30 + }, + "str": 12, + "dex": 18, + "con": 11, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/2", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The eel doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "If it isn't attached to a creature, the eel makes one Bite attack and one Tail Spine attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the eel attaches to the target. While attached, the eel can't make Bite attacks. Instead, the target takes 4 ({@damage 1d6 + 1}) piercing damage at the start of each of the eel's turns. The eel can detach itself as a bonus action. A creature, including the target, can use its action to detach the eel." + ] + }, + { + "name": "Tail Spine", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} for 1 minute. Until this poison ends, the target is {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Space Guppy", + "source": "BAM", + "page": 55, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 0, + "fly": 30 + }, + "str": 3, + "dex": 16, + "con": 10, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "0", + "trait": [ + { + "name": "Air Envelope", + "entries": [ + "If it has at least 1 hit point, the guppy can generate an air envelope around itself when in a vacuum. This air envelope can sustain the guppy and one other Tiny creature in its space indefinitely." + ] + }, + { + "name": "Flyby", + "entries": [ + "The guppy doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Tail Slap", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Space Hamster", + "source": "BAM", + "page": 56, + "size": [ + "T" + ], + "type": "monstrosity", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 15 + ], + "hp": { + "average": 10, + "formula": "4d4" + }, + "speed": { + "walk": 20, + "burrow": 5 + }, + "str": 1, + "dex": 20, + "con": 10, + "int": 6, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3", + "stealth": "+7" + }, + "passive": 13, + "languages": [ + "telepathy 5 ft." + ], + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + }, + { + "name": "Go for the Eyes {@recharge}", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 15} Dexterity saving throw or be {@condition blinded} until the start of the hamster's next turn." + ] + } + ], + "bonus": [ + { + "name": "Escape", + "entries": [ + "The hamster takes the Dash or Disengage action." + ] + } + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Space Mollymawk", + "source": "BAM", + "page": 57, + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 10, + "fly": 50 + }, + "str": 6, + "dex": 14, + "con": 11, + "int": 3, + "wis": 12, + "cha": 3, + "skill": { + "perception": "+5" + }, + "passive": 15, + "cr": "0", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The mollymawk doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The mollymawk can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "traitTags": [ + "Flyby", + "Hold Breath" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Space Swine", + "source": "BAM", + "page": 57, + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 12, + "dex": 12, + "con": 12, + "int": 4, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+4", + "survival": "+4" + }, + "passive": 14, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ssurran Defiler", + "source": "BAM", + "page": 58, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor", + "intellect fortress" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 13, + "dex": 12, + "con": 16, + "int": 15, + "wis": 15, + "cha": 7, + "save": { + "con": "+5", + "int": "+4" + }, + "skill": { + "arcana": "+4", + "perception": "+4", + "stealth": "+3", + "survival": "+4" + }, + "passive": 14, + "resist": [ + "necrotic" + ], + "languages": [ + "Draconic" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The ssurran casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1": [ + "{@spell invisibility} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The ssurran can hold its breath for 15 minutes." + ] + }, + { + "name": "Intellect Fortress", + "entries": [ + "The ssurran's AC includes its Intelligence modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ssurran makes two Claw attacks and uses Defile (if available)." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage plus 4 ({@damage 1d8}) necrotic damage." + ] + }, + { + "name": "Defile {@recharge}", + "entries": [ + "Ordinary vegetation within 10 feet of the ssurran withers and dies. In addition, each creature within 10 feet of the ssurran must make a {@dc 11} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one. The ssurran regains 5 ({@dice 1d10}) hit points for each creature that fails the saving throw." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "N", + "S" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ssurran Poisoner", + "source": "BAM", + "page": 58, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 13, + "dex": 12, + "con": 13, + "int": 12, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+3", + "survival": "+3" + }, + "passive": 13, + "languages": [ + "Draconic" + ], + "cr": "1/2", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The ssurran can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ssurran makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ] + }, + { + "name": "Poison Bomb", + "entries": [ + "The ssurran throws a tangerine-sized bomb at a point up to 60 feet away, where it explodes, releasing a 10-foot-radius sphere of poisonous gas that disperses quickly. Each creature in the sphere must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one. After the ssurran throws a bomb, roll a {@dice d6}; on a roll of 4 or lower, the ssurran has no more bombs to throw." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Starlight Apparition", + "source": "BAM", + "page": 59, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 10 + ], + "hp": { + "average": 72, + "formula": "16d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 11, + "con": 10, + "int": 18, + "wis": 16, + "cha": 16, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "acid", + "cold", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "radiant" + ], + "conditionImmune": [ + "blinded", + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "trait": [ + { + "name": "Astral Existence", + "entries": [ + "The apparition can exist only on the Astral Plane. If it is sent to a location not on the Astral Plane, the apparition is destroyed." + ] + }, + { + "name": "Illumination", + "entries": [ + "While it has at least 1 hit point, the apparition sheds bright light in a 20-foot radius and dim light for an additional 20 feet." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The apparition can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The apparition doesn't require air, drink, food, or sleep." + ] + } + ], + "action": [ + { + "name": "Radiant Eruption", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}20 ({@damage 5d6 + 3}) radiant damage, and if the target is a creature, it must succeed on a {@dc 14} Wisdom saving throw or be {@condition blinded} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One Humanoid that the apparition can see within 5 feet of itself must succeed on a {@dc 14} Charisma saving throw or be possessed by the apparition; the apparition then disappears, and the target is {@condition incapacitated} and loses control of its body. The apparition now controls the body but doesn't deprive the target of awareness. The apparition can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the apparition ends it as a bonus action, the body leaves the Astral Plane, or the apparition is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the apparition reappears in an unoccupied space within 5 feet of the body. If it reappears in a location not on the Astral Plane, the apparition is destroyed. The target is immune to this apparition's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "traitTags": [ + "Illumination", + "Incorporeal Movement", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O", + "R" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "blinded", + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thri-kreen Gladiator", + "source": "BAM", + "page": 60, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 142, + "formula": "19d8 + 57" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 16, + "int": 10, + "wis": 15, + "cha": 11, + "save": { + "str": "+7", + "dex": "+7", + "wis": "+5" + }, + "skill": { + "acrobatics": "+7", + "athletics": "+7", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "telepathy 60 ft.", + "Thri-kreen" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thri-kreen makes two Gythka attacks and one Chatkcha attack." + ] + }, + { + "name": "Gythka", + "entries": [ + "{@atk mw} {@hit 7} to hit (with advantage if the thri-kreen is missing any hit points), reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Chatkcha", + "entries": [ + "{@atk rw} {@hit 7} to hit (with advantage if the thri-kreen is missing any hit points), range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Leap", + "entries": [ + "The thri-kreen leaps up to 20 feet in any direction, provided its speed isn't 0." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The thri-kreen adds 3 to its AC against one melee attack that would hit it. To do so, the thri-kreen must see the attacker and be wielding a melee weapon." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thri-kreen Hunter", + "source": "BAM", + "page": 61, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 13, + "int": 10, + "wis": 14, + "cha": 9, + "skill": { + "perception": "+4", + "stealth": "+5", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "telepathy 60 ft.", + "Thri-kreen" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thri-kreen makes two Gythka or Chatkcha attacks." + ] + }, + { + "name": "Gythka", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ] + }, + { + "name": "Chatkcha", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Chameleon Carapace", + "entries": [ + "The thri-kreen changes the color of its carapace to match the color and texture of its surroundings, gaining advantage on Dexterity ({@skill Stealth}) checks it makes to hide in those surroundings." + ] + }, + { + "name": "Leap", + "entries": [ + "The thri-kreen leaps up to 20 feet in any direction, provided its speed isn't 0." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The thri-kreen adds 2 to its AC against one melee attack that would hit it. To do so, the thri-kreen must see the attacker and be wielding a melee weapon." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thri-kreen Mystic", + "source": "BAM", + "page": 61, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 13, + "int": 12, + "wis": 16, + "cha": 10, + "skill": { + "perception": "+6", + "stealth": "+5", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "telepathy 60 ft.", + "Thri-kreen" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The thri-kreen casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability:" + ], + "will": [ + "{@spell levitate} (self only)", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1e": [ + "{@spell freedom of movement} (self only)", + "{@spell invisibility} (self only)" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thri-kreen makes two Gythka attacks or four Psychic Bolt attacks." + ] + }, + { + "name": "Gythka", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) slashing damage." + ] + }, + { + "name": "Psychic Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}6 ({@damage 1d6 + 3}) psychic damage." + ] + }, + { + "name": "Drain Vitality (Recharges after a Short or Long Rest)", + "entries": [ + "The thri-kreen targets one creature it can see within 30 feet of itself. The target must make a {@dc 14} Constitution saving throw, taking 32 ({@damage 5d12}) necrotic damage on a failed save, or half as much damage on a successful one. The thri-kreen regains hit points equal to the damage dealt." + ] + } + ], + "bonus": [ + { + "name": "Chameleon Carapace", + "entries": [ + "The thri-kreen changes the color of its carapace to match the color and texture of its surroundings, gaining advantage on Dexterity ({@skill Stealth}) checks it makes to hide in those surroundings." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "N", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampirate", + "source": "BAM", + "page": 62, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 18, + "int": 10, + "wis": 11, + "cha": 12, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "cold", + "necrotic", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "2", + "trait": [ + { + "name": "Explode", + "entries": [ + "When the vampirate is reduced to 0 hit points, it explodes in a cloud of ash. Any creature within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or take 5 ({@damage 1d10}) necrotic damage." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vampirate can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The vampirate doesn't require air or drink." + ] + } + ], + "action": [ + { + "name": "Energy Drain", + "entries": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 30 ft., one creature. {@h}11 ({@damage 2d10}) necrotic damage. A Humanoid reduced to 0 hit points by this attack dies and instantly transforms into a free-willed shadow under the DM's control." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "light crossbow|phb" + ], + "traitTags": [ + "Spider Climb", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampirate Captain", + "source": "BAM", + "page": 63, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 18, + "int": 12, + "wis": 13, + "cha": 16, + "save": { + "con": "+7", + "wis": "+4", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "immune": [ + "cold", + "necrotic", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "6", + "trait": [ + { + "name": "Explode", + "entries": [ + "When the captain is reduced to 0 hit points, it explodes in a cloud of ash. Any creature within 5 feet of it must succeed on a {@dc 15} Constitution saving throw or take 16 ({@damage 3d10}) necrotic damage." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The captain can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The captain doesn't require air or drink." + ] + } + ], + "action": [ + { + "name": "Energy Drain", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 30 ft., one creature. {@h}22 ({@damage 4d10}) necrotic damage. A Humanoid reduced to 0 hit points by this attack dies and instantly transforms into a free-willed shadow or vampirate (captain's choice) under the DM's control." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 100/400 ft., one target. {@h}19 ({@damage 3d10 + 3}) piercing damage." + ] + }, + { + "name": "Ship Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "A ship upon which the captain stands, along with all creatures and objects aboard it, becomes {@condition invisible} to creatures not aboard the ship. The captain must concentrate on this magical effect to maintain it (as if {@status concentration||concentrating} on a spell), and it lasts for up to 1 hour. The effect ends if the captain leaves the ship." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "The captain halves the damage that it takes from an attack that hits it. The captain must be able to see the attacker." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb" + ], + "traitTags": [ + "Spider Climb", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Vampirate Mage", + "source": "BAM", + "page": 63, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 18, + "int": 13, + "wis": 14, + "cha": 15, + "save": { + "wis": "+5", + "cha": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "cold", + "necrotic", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell message}" + ], + "daily": { + "1": [ + "{@spell darkness}", + "{@spell dimension door}", + "{@spell fly}", + "{@spell hypnotic pattern}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Explode", + "entries": [ + "When the mage is reduced to 0 hit points, it explodes in a cloud of ash. Any creature within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or take 11 ({@damage 2d10}) necrotic damage." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The mage can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The mage doesn't require air or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mage makes two Ray of Cold attacks." + ] + }, + { + "name": "Energy Drain", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 30 ft., one creature. {@h}22 ({@damage 4d10}) necrotic damage. A Humanoid reduced to 0 hit points by this attack dies and instantly transforms into a free-willed shadow under the DM's control." + ] + }, + { + "name": "Ray of Cold", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}11 ({@damage 2d8 + 2}) cold damage." + ] + } + ], + "traitTags": [ + "Spider Climb", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "C", + "N" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Void Scavver", + "source": "BAM", + "page": 49, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 22, + "dex": 16, + "con": 19, + "int": 4, + "wis": 13, + "cha": 5, + "skill": { + "perception": "+5", + "stealth": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "cr": "11", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The scavver doesn't require air." + ] + } + ], + "action": [ + { + "name": "Swallowing Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}45 ({@damage 6d12 + 6}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 16} Dexterity saving throw or be swallowed by the scavver. The scavver can have one creature swallowed at a time.", + "A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the scavver, and takes 11 ({@damage 2d10}) acid damage at the start of each of the scavver's turns from the digestive juices in the scavver's gullet.", + "If the scavver takes 25 damage or more on a single turn from a creature inside it, the scavver must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate the swallowed creature, which falls {@condition prone} in a space within 10 feet of the scavver. If the scavver dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting {@condition prone}." + ] + } + ], + "bonus": [ + { + "name": "Ray of Fear {@recharge 4}", + "entries": [ + "The scavver's eye emits an {@condition invisible}, magical ray that targets one creature the scavver can see within 60 feet of itself. The target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} of the scavver until the start of the scavver's next turn." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Swallow" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "frightened", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Lunar Dragon", + "source": "BAM", + "page": 35, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52" + }, + "speed": { + "walk": 40, + "burrow": 20, + "fly": 80 + }, + "str": 19, + "dex": 12, + "con": 18, + "int": 8, + "wis": 10, + "cha": 13, + "save": { + "con": "+7", + "wis": "+3" + }, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 240 ft." + ], + "passive": 16, + "immune": [ + "cold" + ], + "languages": [ + "Draconic" + ], + "cr": "7", + "trait": [ + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales a blast of frost in a 30-foot cone. Each creature in the cone must make a {@dc 15} Constitution saving throw. On a failed save, the creature takes 27 ({@damage 6d8}) cold damage, and its speed is halved until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "bonus": [ + { + "name": "Phase (2/Day)", + "entries": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Tunneler", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Young Solar Dragon", + "source": "BAM", + "page": 53, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 20, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 20, + "dex": 15, + "con": 20, + "int": 13, + "wis": 14, + "cha": 12, + "save": { + "dex": "+6", + "con": "+9", + "wis": "+6", + "cha": "+5" + }, + "skill": { + "perception": "+10", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 20, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "Draconic" + ], + "cr": "9", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 7 ({@damage 2d6}) radiant damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage." + ] + }, + { + "name": "Photonic Breath {@recharge 5}", + "entries": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 120 feet of itself, then blossoms into a 20-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 17} Constitution saving throw, taking 44 ({@damage 8d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Flyby", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "P", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zodar", + "source": "BAM", + "page": 64, + "otherSources": [ + { + "source": "LoX" + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d8 + 128" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 30, + "dex": 10, + "con": 26, + "int": 12, + "wis": 15, + "cha": 18, + "save": { + "con": "+13", + "int": "+6", + "wis": "+7", + "cha": "+9" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 12, + "immune": [ + "acid", + "fire", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "see Disembodied Voice below" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Wish", + "type": "spellcasting", + "headerEntries": [ + "The zodar casts the {@spell wish} spell, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 17}). After casting this spell, the zodar turns to dust and is destroyed." + ], + "will": [ + { + "entry": "{@spell wish}", + "hidden": true + } + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Disembodied Voice", + "entries": [ + "Up to three times in its life, the zodar can cause a message of up to twenty-five words to issue from the air around it. It speaks only when it has something profoundly important to say, and the message can be understood by any creature that has an Intelligence score of 2 or higher." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the zodar fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Transport Inhibitor", + "entries": [ + "The zodar can't be teleported or sent to any plane of existence against its will." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The zodar doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zodar makes two Crushing Fist attacks. Before or after these attacks, the zodar uses Forced Teleport." + ] + }, + { + "name": "Crushing Fist", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}21 ({@damage 2d10 + 10}) force damage." + ] + }, + { + "name": "Forced Teleport", + "entries": [ + "The zodar magically warps space around one creature it can see within 60 feet of itself. The target must make a {@dc 21} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) force damage, and the zodar teleports it, along with any equipment it's wearing or carrying, up to 60 feet to an unoccupied space that the zodar can see and that can support the target. On a successful save, the target takes half as much damage and isn't teleported." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Abyssal Chicken", + "source": "BGDIA", + "page": 97, + "size": [ + "T" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(see bad flier below)" + } + }, + "str": 6, + "dex": 14, + "con": 13, + "int": 4, + "wis": 9, + "cha": 5, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Bad Flier", + "entries": [ + "The abyssal chicken falls at the end of a turn if it's airborne and the only thing holding it aloft is its flying speed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abyssal chicken makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "familiar": true, + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amrik Vanthampur", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 30, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item leather armor|phb}", + "charisma modifier" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 12, + "int": 14, + "wis": 14, + "cha": 15, + "skill": { + "acrobatics": "+6", + "athletics": "+3", + "deception": "+6", + "insight": "+6" + }, + "passive": 12, + "languages": [ + "Common", + "Infernal" + ], + "cr": "3", + "trait": [ + { + "name": "Suave Defense", + "entries": [ + "While Amrik is wearing light or no armor and wielding no shield, his AC includes his Charisma modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Amrik makes three dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Smoke Bomb (1/Day)", + "entries": [ + "Amrik hurls a smoke bomb up to 20 feet away. The bomb explodes on impact, creating a cloud of black smoke that fills a 10-foot-radius sphere. The area within the cloud is heavily obscured. A strong wind disperses the cloud, which otherwise remains until the end of Amrik's next turn." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Archduke Zariel of Avernus", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 243, + "_copy": { + "name": "Zariel", + "source": "MTF", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Zariel attacks twice with her flail and once with Matalotok. She can substitute Horrid Touch for Matalotok." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) piercing damage plus 36 ({@damage 8d8}) fire damage." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Javelin", + "items": { + "name": "Matalotok (Warhammer)", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning, or 19 ({@damage 2d10 + 8}) bludgeoning damage if used with two hands, plus 36 ({@damage 8d8}) fire damage. In addition, the weapon emits a burst of cold that deals 10 ({@damage 3d6}) cold damage to each creature within 30 feet of it." + ] + } + } + ] + } + }, + "resist": [ + "fire", + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "damageTags": [ + "B", + "C", + "F", + "N", + "P" + ], + "damageTagsLegendary": [], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Arkhan the Cruel", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 111, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dragonborn" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 23, + "from": [ + "{@item obsidian flint dragon plate|bgdia}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 221, + "formula": "26d8 + 104" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 12, + "con": 18, + "int": 10, + "wis": 10, + "cha": 18, + "save": { + "wis": "+5", + "cha": "+9" + }, + "skill": { + "athletics": "+10", + "deception": "+9", + "intimidation": "+9" + }, + "senses": [ + "darkvision 60 ft. (can see invisible creatures out to the same range)" + ], + "passive": 10, + "resist": [ + "fire", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Arkhan's spellcasting ability is Charisma (spell save {@dc 17}). He can cast the following spells, requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell animate dead}", + "{@spell branding smite} (at 4th level)", + "{@spell revivify}" + ], + "1e": [ + "{@spell geas}", + "{@spell raise dead}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Aura of Hate", + "entries": [ + "While Arkhan isn't {@condition incapacitated}, he and all fiends and undead within 30 feet of him deal 4 extra damage whenever they hit with a melee weapon attack (already factored into Arkhan's attacks). This extra damage is of the same type as the weapon's damage type." + ] + }, + { + "name": "Hand of Vecna", + "entries": [ + "The {@item Hand of Vecna} has 8 charges and regains {@dice 1d4 + 4} expended charges daily at dawn. Arkhan can cast the following spells from the hand by expending the specified number of charges (spell save {@dc 18}): {@spell finger of death} (5 charges), {@spell sleep} (1 charge), {@spell slow} (2 charges), and {@spell teleport} (3 charges)." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Arkhan wields {@item Fane-Eater|bgdia} and wears a suit of {@item Obsidian Flint Dragon Plate|bgdia}. The armor gives Arkhan advantage on ability checks and saving throws made to avoid or end the {@condition grappled} condition on him." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Arkhan makes three weapon attacks." + ] + }, + { + "name": "Fane-Eater (Battleaxe)", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}16 ({@damage 1d8 + 12}) slashing damage, or 17 ({@damage 1d10 + 12}) slashing damage when used with two hands, plus 9 ({@damage 2d8}) cold damage. If the target is a creature and Arkhan rolls a 20 on the attack roll, the creature takes an extra 9 ({@damage 2d8}) necrotic damage, and Arkhan regains an amount of hit points equal to the necrotic damage dealt." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 10} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, plus 4 piercing damage and 9 ({@damage 2d8}) cold damage if the javelin was used to make a melee attack." + ] + } + ], + "attachedItems": [ + "fane-eater|bgdia", + "javelin|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "C", + "N", + "P", + "S" + ], + "damageTagsSpell": [ + "R", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bel", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 115, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 364, + "formula": "27d10 + 216" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 28, + "dex": 14, + "con": 26, + "int": 25, + "wis": 19, + "cha": 26, + "save": { + "dex": "+10", + "con": "+16", + "wis": "+12" + }, + "skill": { + "arcana": "+15", + "deception": "+16", + "insight": "+12", + "persuasion": "+16" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 14, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "cr": "25", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Bel's spellcasting ability is Charisma (spell save {@dc 23}). Bel can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell fireball}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell hold monster}", + "{@spell mirror image}", + "{@spell mislead}", + "{@spell raise dead}", + "{@spell teleport}", + "{@spell wall of fire}" + ], + "1e": [ + "{@spell imprisonment}", + "{@spell meteor swarm}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fear Aura", + "entries": [ + "Any creature hostile to Bel that starts its turn within 20 feet of him must make a {@dc 23} Wisdom saving throw, unless Bel is {@condition incapacitated}. Unless the save succeeds, the creature is {@condition frightened} until the start of its next turn. If a creature's saving throw is successful, the creature is immune to Bel's Fear Aura for the next 24 hours." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Bel fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Bel has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Bel's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bel makes three attacks: two with his greatsword and one with his tail." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}23 ({@damage 4d6 + 9}) slashing damage plus 21 ({@damage 6d6}) fire damage. If the target is a flammable object that is not being held or worn, it catches fire." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d10 + 9}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Constitution saving throw or be {@condition stunned} until the end of its next turn." + ] + } + ], + "legendary": [ + { + "name": "Fireball", + "entries": [ + "Bel casts {@spell fireball}." + ] + }, + { + "name": "Tactical Edge (Costs 2 Actions)", + "entries": [ + "Roll a {@dice d6} for Bel. The number rolled on the die is subtracted from the next attack roll made against Bel or an ally of his choice within the next minute." + ] + }, + { + "name": "Summon Ice Devil (Costs 3 Actions)", + "entries": [ + "Bel magically summons an ice devil with an ice spear (as described in the ice devil's entry in the Monster Manual). The ice devil appears in an unoccupied space within 60 feet of Bel, acts as Bel's ally, and can summon other devils if it has such power. The ice devil remains until Bel dies or until he dismisses it as an action." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "B", + "F", + "S" + ], + "damageTagsSpell": [ + "B", + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "invisible", + "paralyzed", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bitter Breath", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 90, + "_copy": { + "name": "Horned Devil", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the devil", + "with": "Bitter Breath", + "flags": "i" + } + } + }, + "speed": { + "walk": 20 + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Black Gauntlet of Bane", + "source": "BGDIA", + "page": 235, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 18, + "int": 12, + "wis": 15, + "cha": 18, + "save": { + "wis": "+5" + }, + "skill": { + "intimidation": "+7", + "perception": "+5" + }, + "passive": 15, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The black gauntlet is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell bless}", + "{@spell cure wounds}", + "{@spell guiding bolt} (see \"Actions\" below)" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell hold person}", + "{@spell silence}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell sending}", + "{@spell spirit guardians}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Aura of Terror", + "entries": [ + "When a hostile creature within 5 feet of the black gauntlet makes an attack roll or a saving throw, it has disadvantage on the roll. Creatures that are immune to the {@condition frightened} condition are immune to this trait." + ] + }, + { + "name": "Tactical Discipline", + "entries": [ + "The black gauntlet has advantage on all ability checks and saving throws made during combat." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The black gauntlet makes two attacks with its mace." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) necrotic damage." + ] + }, + { + "name": "Guiding Bolt (1st-Level Spell; Requires a Spell Slot)", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one creature. {@h}14 ({@damage 4d6}) radiant damage, and the next attack roll made against the target before the end of the black gauntlet's next turn has advantage. If the black gauntlet casts this spell using a spell slot of 2nd level or higher, the damage increases by {@damage 1d6} for each slot level above 1st." + ] + } + ], + "attachedItems": [ + "mace|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "N", + "R" + ], + "damageTagsSpell": [ + "N", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "paralyzed" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bone Whelk", + "source": "BGDIA", + "page": 119, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d10" + }, + "speed": { + "walk": 15, + "climb": 15 + }, + "str": 10, + "dex": 5, + "con": 11, + "int": 6, + "wis": 9, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "cr": "1/4", + "trait": [ + { + "name": "Adhesive", + "entries": [ + "The bone whelk can cause Medium or smaller objects to adhere to it. A Medium or smaller creature that touches the bone whelk is {@condition grappled} by it (escape {@dc 10})." + ] + }, + { + "name": "Death Scream", + "entries": [ + "When the bone whelk dies, it emits a blood-curdling shriek than can be heard out to a range of 120 feet. This shriek causes nonmagical, organic material within 10 feet of the bone whelk to rot. Each creature within 10 feet of the bone whelk when it dies takes 9 ({@damage 2d8}) necrotic damage." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The bone whelk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d8}) piercing damage." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Burney the Barber", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 129, + "_copy": { + "name": "Ancient Copper Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Burney", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Healer", + "entries": [ + "Burney has the benefits of the {@feat healer} feat as well as proficiency with both the {@item healer's kit|phb} and the {@item herbalism kit|phb}." + ] + }, + { + "name": "Bahamut's Blessings", + "entries": [ + "Burney has received several blessings in her service to Bahamut:", + { + "type": "list", + "items": [ + "Unless Burney decided otherwise, once any creature less powerful than a deity has taken three steps from her, they can no longer remember her or having interacted with her specifically.", + "Burney is under the effect of a permanent {@spell mind blank} spell, and cannot be detected by magical or mundane means unless she wishes it. In exchange for this blessing, Burney can take no direct action against the denizens of the Nine Hells, though she can certainly enlist the help of those who can.", + "Burney always knows the location of the Wandering Emporium and can transport herself there as though by a {@spell word of recall} spell. This explains why Burney simply seems to appear amid the fully deployed marketplace each morning it is active to provide service and tell stories.", + "Once each day, when Burney so desires, she can instantly transport herself to the court of Bahamut via a powerful blessing akin to the {@spell plane shift} spell." + ] + } + ] + } + ] + } + } + }, + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Chukka", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 83, + "_copy": { + "name": "Kenku", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the kenku", + "with": "Chukka", + "flags": "i" + } + } + }, + "action": [ + { + "name": "Silvered Pike", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "attachedItems": [ + "silvered pike|phb" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Clonk", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 83, + "_copy": { + "name": "Kenku", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the kenku", + "with": "Clonk", + "flags": "i" + } + } + }, + "action": [ + { + "name": "Hellfire Warhammer", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage, or 5 ({@damage 1d10 + 1}) bludgeoning damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "hellfire warhammer|bgdia" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Crokek'toeck", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 231, + "size": [ + "G" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119" + }, + "speed": { + "walk": 60, + "swim": 60 + }, + "str": 28, + "dex": 10, + "con": 24, + "int": 6, + "wis": 10, + "cha": 13, + "save": { + "con": "+12", + "wis": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "14", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Crokek'toeck can breathe air and water." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Crokek'toeck has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Crokek'toeck's weapon attacks are magical." + ] + }, + { + "name": "Secure Memory", + "entries": [ + "Crokek'toeck is immune to the waters of the River Styx as well as any effect that would steal or modify its memories or detect or read its thoughts." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "Crokek'toeck's long jump is up to 60 feet and its high jump is up to 30 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}44 ({@damage 10d6 + 9}) piercing damage." + ] + }, + { + "name": "Disgorge Allies {@recharge}", + "entries": [ + "Crokek'toeck opens its mouth and disgorges {@dice 1d4} {@creature barlgura||barlguras}, {@dice 3d6} {@creature gnoll||gnolls} led by 1 {@creature gnoll fang of Yeenoghu}, {@dice 6d6} {@creature dretch||dretches}, or {@dice 1d3} {@creature vrock||vrocks}. Each creature it disgorges appears in an unoccupied space within 30 feet of Crokek'toeck's mouth, or the next closest unoccupied space." + ] + } + ], + "traitTags": [ + "Amphibious", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death's Head of Bhaal", + "source": "BGDIA", + "page": 233, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 15 + ], + "hp": { + "average": 76, + "formula": "8d8 + 40" + }, + "speed": { + "walk": 50 + }, + "str": 20, + "dex": 20, + "con": 20, + "int": 14, + "wis": 13, + "cha": 16, + "skill": { + "intimidation": "+6", + "perception": "+4", + "persuasion": "+6", + "stealth": "+11" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Aura of Murder", + "entries": [ + "As long as the death's head is not {@condition incapacitated}, hostile creatures within 5 feet of it gain vulnerability to piercing damage unless they have resistance or immunity to such damage." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The death's head has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The death's head uses Stunning Gaze and makes two dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + }, + { + "name": "Stunning Gaze", + "entries": [ + "The death's head targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be {@condition stunned} until the end of its next turn." + ] + } + ], + "reaction": [ + { + "name": "Unstoppable (3/Day)", + "entries": [ + "The death's head reduces the damage it takes from an attack to 0." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dryad Spirit", + "source": "BGDIA", + "page": 108, + "_copy": { + "name": "Banshee", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "banshee", + "with": "dryad" + } + } + }, + "hasToken": true + }, + { + "name": "Duke Thalamra Vanthampur", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 38, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 15, + "int": 13, + "wis": 16, + "cha": 18, + "skill": { + "deception": "+6", + "insight": "+5", + "intimidation": "+6", + "religion": "+3" + }, + "senses": [ + "darkvision 120 ft. (see devil's sight below)" + ], + "passive": 13, + "languages": [ + "Common", + "Infernal" + ], + "cr": "4", + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "Thalamra has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Devil's Sight", + "entries": [ + "Thalamra can see normally in darkness, both magical and nonmagical, out to a distance of 120 feet." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Thalamra uses eldritch blast twice or makes two unarmed strikes." + ] + }, + { + "name": "Eldritch Blast (Cantrip)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}9 ({@damage 1d10 + 4}) force damage." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Hellish Rebuke (1st-Level Spell; 2/Day)", + "entries": [ + "When Thalamra is damaged by a creature within 60 feet of her that she can see, the creature that damaged her is engulfed in hellish flames and must make a {@dc 14} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Devil's Sight" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "B", + "F", + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elliach", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 130, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Elliach", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 10 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Feonor", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 130, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Feonor", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Fiendish Flesh Golem", + "source": "BGDIA", + "page": 236, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 20, + "dex": 9, + "con": 20, + "int": 7, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine or silvered", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Berserk", + "entries": [ + "Whenever the golem starts its turn with 100 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points. If the golem's creator is within 60 feet of the berserk golem, the creator can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 100 hit points or fewer, the golem might go berserk again." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Fist of Bane", + "source": "BGDIA", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 13, + "int": 10, + "wis": 12, + "cha": 11, + "passive": 11, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "Tactical Discipline", + "entries": [ + "The fist of Bane has advantage on all ability checks and saving throws made during combat." + ] + } + ], + "action": [ + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "mace|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Flying Dagger", + "source": "BGDIA", + "page": 30, + "_copy": { + "name": "Flying Sword", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "sword", + "with": "dagger" + }, + "action": { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + } + } + }, + "size": [ + "T" + ], + "hp": { + "average": 7, + "formula": "3d4" + }, + "cr": "1/8", + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Gideon Lightward", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 65, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 136, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 18, + "int": 10, + "wis": 18, + "cha": 13, + "save": { + "dex": "+4", + "con": "+7", + "wis": "+7" + }, + "skill": { + "insight": "+7", + "religion": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "6", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "Gideon regains 10 hit points at the start of each of his turns. If he takes radiant damage, this trait doesn't function at the start of his next turn. Gideon is destroyed only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Gideon attacks twice with his fists." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Withering Gaze", + "entries": [ + "Gideon targets one creature he can see within 60 feet of him. The target must make a {@dc 15} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Harkina Hunt", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 53, + "_copy": { + "name": "Commoner", + "source": "MM", + "_mod": { + "action": { + "mode": "appendArr", + "items": { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RNG" + ], + "hasToken": true + }, + { + "name": "Hellwasp", + "source": "BGDIA", + "page": 236, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d10 + 8" + }, + "speed": { + "walk": 10, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 15, + "con": 12, + "int": 10, + "wis": 10, + "cha": 7, + "save": { + "dex": "+5", + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "fire" + ], + "vulnerable": [ + "cold" + ], + "languages": [ + "Infernal", + "telepathy 300 ft. (with other hellwasps only)" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Weapons", + "entries": [ + "The hellwasp's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hellwasp makes two attacks: one with its sting and one with its sword talons." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 7 ({@damage 2d6}) fire damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is also {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Sword Talons", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + } + ], + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hellwasp Grub", + "source": "BGDIA", + "page": 95, + "_copy": { + "name": "Giant Centipede", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Hollyphant", + "source": "BGDIA", + "page": 237, + "size": [ + "S" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8" + }, + "speed": { + "walk": 20, + "fly": 120 + }, + "str": 10, + "dex": 11, + "con": 12, + "int": 16, + "wis": 19, + "cha": 16, + "save": { + "dex": "+3", + "con": "+4", + "cha": "+6" + }, + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Celestial", + "telepathy 120 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hollyphant's innate spellcasting ability is Wisdom (spell save {@dc 15}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell light}" + ], + "daily": { + "2e": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell protection from evil and good}" + ], + "1e": [ + "{@spell banishment}", + "{@spell heal}", + "{@spell raise dead}", + "{@spell shapechange} (into a golden-furred {@creature mammoth} with feathered wings and a flying speed of 120 ft.)", + "{@spell teleport} (with no chance of error)" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Aura of Invulnerability", + "entries": [ + "An {@condition invisible} aura forms a 10-foot-radius sphere around the hollyphant for as long as it lives. Any spell of 5th level or lower cast from outside the barrier can't affect creatures or objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such spells. The hollyphant can use an action to suppress this trait until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The hollyphant's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Tusks", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + }, + { + "name": "Trumpet (3/Day)", + "entries": [ + "The hollyphant blows air through its trunk, creating a trumpet sound that can be heard out to a range of 600 feet. The trumpet also creates a 30-foot cone of energy that has one of the following effects, chosen by the hollyphant:" + ] + }, + { + "name": "Trumpet of Blasting", + "entries": [ + "Each creature in the cone must make a {@dc 14} Constitution saving throw. On a failed save, a creature takes 17 ({@damage 5d6}) thunder damage and is {@condition deafened} for 1 minute. On a successful save, a creature takes half as much damage and isn't {@condition deafened}. Nonmagical objects in the cone that aren't being held or worn take 35 ({@damage 10d6}) thunder damage." + ] + }, + { + "name": "Trumpet of Sparkles", + "entries": [ + "Creatures in the cone must make a {@dc 14} Constitution saving throw, taking 22 ({@damage 4d8 + 4}) radiant damage on a failed save, or half as much damage on a successful one. Evil creatures have disadvantage on the saving throw. Good creatures in the cone take no damage." + ] + } + ], + "traitTags": [ + "Magic Weapons" + ], + "languageTags": [ + "CE", + "TP" + ], + "damageTags": [ + "P", + "R", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "deafened" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Iron Consul", + "source": "BGDIA", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 11, + "con": 16, + "int": 12, + "wis": 15, + "cha": 16, + "save": { + "wis": "+4" + }, + "skill": { + "intimidation": "+5", + "perception": "+4" + }, + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "Tactical Discipline", + "entries": [ + "The iron consul has advantage on all ability checks and saving throws made during combat." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The iron consul makes one attack with its spear and can use its Voice of Command ability." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage when used with two hands to make a melee attack." + ] + }, + { + "name": "Voice of Command", + "entries": [ + "The iron consul selects up to two allies within 90 feet of it that can hear its commands. Each ally can immediately use its reaction to make one melee attack." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kostchtchie", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 105, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 243, + "formula": "18d10 + 144" + }, + "speed": { + "walk": 40 + }, + "str": 30, + "dex": 12, + "con": 27, + "int": 18, + "wis": 22, + "cha": 19, + "save": { + "dex": "+9", + "con": "+16", + "wis": "+14" + }, + "skill": { + "intimidation": "+12", + "perception": "+14", + "survival": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "fire", + "lightning" + ], + "immune": [ + "cold", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Giant", + "telepathy 120 ft." + ], + "cr": "25", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kostchtchie's innate spellcasting ability is Charisma (spell save {@dc 20}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell command}", + "{@spell darkness}" + ], + "daily": { + "1e": [ + "{@spell dispel evil and good}", + "{@spell gate}", + "{@spell harm}", + "{@spell telekinesis}", + "{@spell teleport}", + "{@spell wind walk}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Kostchtchie fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Kostchtchie has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Kostchtchie makes two melee attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 5 ft., one creature. {@h}13 ({@damage 1d6 + 10}) piercing damage." + ] + }, + { + "name": "Matalotok (Warhammer)", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage, or 21 ({@damage 2d10 + 10}) bludgeoning damage when used with two hands, and the weapon emits a burst of cold that deals 10 ({@damage 3d6}) cold damage to each creature within 30 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Kostchtchie makes one melee weapon attack." + ] + }, + { + "name": "Charge", + "entries": [ + "Kostchtchie moves up to his speed." + ] + }, + { + "name": "Curse (Costs 2 Actions)", + "entries": [ + "Kostchtchie curses one creature he can see within 60 feet of him. The cursed creature gains vulnerability to all damage dealt by Kostchtchie until the end of Kostchtchie's next turn." + ] + } + ], + "attachedItems": [ + "matalotok|bgdia" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "GI", + "TP" + ], + "damageTags": [ + "B", + "C", + "P" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Krull", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 110, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tortle" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 14, + "con": 15, + "int": 12, + "wis": 20, + "cha": 12, + "save": { + "wis": "+8", + "cha": "+4" + }, + "skill": { + "arcana": "+4", + "medicine": "+8", + "nature": "+4", + "survival": "+8" + }, + "passive": 15, + "languages": [ + "Aquan", + "Common", + "Draconic" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Krull is a 14th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mending}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell detect evil and good}", + "{@spell false life}", + "{@spell inflict wounds}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell gentle repose}", + "{@spell hold person}", + "{@spell ray of enfeeblement}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell magic circle}", + "{@spell speak with dead}", + "{@spell spirit guardians}", + "{@spell vampiric touch}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell blight}", + "{@spell death ward}", + "{@spell divination}", + "{@spell locate creature}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell antilife shell}", + "{@spell cloudkill}", + "{@spell contagion}", + "{@spell greater restoration}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell create undead}", + "{@spell true seeing}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell divine word}", + "{@spell regenerate}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "Krull can hold his breath for 1 hour." + ] + }, + { + "name": "Inescapable Destruction", + "entries": [ + "Necrotic damage dealt by Krull's spells ignores resistance to necrotic damage." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + }, + { + "name": "+1 Maul", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "Krull withdraws into his shell. Until he emerges as a bonus action, he has a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in his shell, Krull is {@condition prone}, his speed is 0 and can't increase, he has disadvantage on Dexterity saving throws, he can't take reactions, and the only action he can take is to emerge from his shell." + ] + } + ], + "attachedItems": [ + "+1 maul|dmg" + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "AQ", + "C", + "DR" + ], + "damageTags": [ + "B", + "N", + "P" + ], + "damageTagsSpell": [ + "I", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "incapacitated", + "paralyzed", + "poisoned", + "stunned" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lulu", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 5, + "_copy": { + "name": "Hollyphant", + "source": "BGDIA", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the hollyphant", + "with": "Lulu", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Mad Maggie", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 74, + "_copy": { + "name": "Night Hag", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the hag", + "with": "Maggie", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Mahadi the Rakshasa", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 127, + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "23d8 + 92" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 18, + "con": 18, + "int": 14, + "wis": 18, + "cha": 20, + "save": { + "wis": "+9", + "cha": "+10" + }, + "skill": { + "arcana": "+7", + "deception": "+10", + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + { + "vulnerable": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "cond": true + } + ], + "languages": [ + "all (can read only)", + "Common", + "Infernal" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Mahadi's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 9} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell hellish rebuke}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell speak with dead}", + "{@spell suggestion}" + ], + "1e": [ + "{@spell banishment}", + "{@spell demiplane}", + "{@spell dominate person}", + "{@spell fly}", + "{@spell forcecage}", + "{@spell geas}", + "{@spell plane shift}", + "{@spell true seeing}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Limited Magic Immunity", + "entries": [ + "Mahadi can't be affected or detected by spells of 6th level or lower unless he wishes to be. He has advantage on saving throws against all other spells and magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Mahadi's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Mahadi makes four claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage, and the target is cursed if it's a creature. The curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a {@spell remove curse} spell or similar magic." + ] + }, + { + "name": "Summon Erinyes (1/Day)", + "entries": [ + "Mahadi summons Ilzabet, an erinyes bound to him by an infernal contract. The erinyes appears in an unoccupied space within 60 feet of him, acts as his ally, and can't summon other devils. The erinyes remains for 10 minutes or until Mahadi dismisses it as an action. If the erinyes dies, Mahadi loses this action option." + ] + } + ], + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I", + "XX" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "F", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "CUR", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Master of Souls", + "source": "BGDIA", + "page": 234, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 17, + "int": 19, + "wis": 14, + "cha": 13, + "save": { + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "religion": "+6" + }, + "passive": 12, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The master of souls is a 5th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell detect magic}", + "{@spell ray of sickness} (see \"Actions\" below)", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell misty step}", + "{@spell scorching ray} (see \"Actions\" below)" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell animate dead}", + "{@spell fireball}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Grave Magic", + "entries": [ + "When the master of souls cast a spell that deals damage, it can change the spell's damage type to necrotic." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The master of souls attacks twice with its flail." + ] + }, + { + "name": "Silvered Skull Flail", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage plus 14 ({@damage 4d6}) necrotic damage, and the target has disadvantage on all saving throws until the end of the master of souls' next turn." + ] + }, + { + "name": "Chill Touch (Cantrip)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}13 ({@damage 2d8}) necrotic damage, and the target can't regain hit points until the start of the master of souls' next turn. If the target is undead, it has disadvantage on attack rolls against the master of souls for the same duration." + ] + }, + { + "name": "Ray of Sickness (1st-Level Spell; Requires a Spell Slot)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}9 ({@damage 2d8}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the end of the master of souls' next turn. If the master of souls casts this spell using a spell slot of 2nd level or higher, the damage increases by {@damage 1d8} for each slot level above 1st." + ] + }, + { + "name": "Scorching Ray (2nd-Level Spell; Requires a Spell Slot)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target per ray (3 rays if a 2nd-level spell slot is used, 4 rays if a 3rd-level spell slot is used). {@h}7 ({@damage 2d6}) fire damage per ray." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "B", + "F", + "I", + "N" + ], + "damageTagsSpell": [ + "F", + "I", + "N" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mortlock Vanthampur", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 26, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 10, + "wis": 12, + "cha": 13, + "skill": { + "athletics": "+6", + "intimidation": "+5" + }, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Indomitable (2/Day)", + "entries": [ + "Mortlock can reroll a saving throw that he fails. He must use the new roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Mortlock makes two attacks with his greatclub." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage, plus 5 ({@damage 2d4}) bludgeoning damage if Mortlock has taken any damage since his last turn." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "greatclub|phb", + "heavy crossbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Necromite of Myrkul", + "source": "BGDIA", + "page": 234, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 13, + "con": 15, + "int": 16, + "wis": 11, + "cha": 10, + "skill": { + "arcana": "+5", + "religion": "+5" + }, + "passive": 10, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "1/2", + "action": [ + { + "name": "Skull Flail", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage." + ] + }, + { + "name": "Claws of the Grave", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 90 ft., one target. {@h}8 ({@damage 2d4 + 3}) necrotic damage." + ] + } + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Necrotic Centipede", + "source": "BGDIA", + "page": 119, + "_copy": { + "name": "Remorhaz", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "remorhaz", + "with": "centipede" + }, + "action": { + "mode": "replaceArr", + "replace": "Bite", + "items": { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}40 ({@damage 6d10 + 7}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. If the target is a creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the centipede can't bite another target." + ] + } + } + } + }, + "immune": [ + "necrotic", + "fire" + ], + "trait": [ + { + "name": "Necrotic Body", + "entries": [ + "A creature that touches the centipede or hits it with a melee attack while within 5 feet of it takes 10 ({@damage 3d6}) necrotic damage." + ] + } + ], + "damageTags": [ + "A", + "N", + "P" + ], + "hasToken": true + }, + { + "name": "Night Blade", + "source": "BGDIA", + "page": 233, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 40 + }, + "str": 11, + "dex": 15, + "con": 12, + "int": 10, + "wis": 11, + "cha": 14, + "skill": { + "intimidation": "+4", + "stealth": "+6" + }, + "senses": [ + "darkvision 60" + ], + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1/4", + "trait": [ + { + "name": "Aura of Murder", + "entries": [ + "As long as the night blade is not {@condition incapacitated}, hostile creatures within 5 feet of it gain vulnerability to piercing damage unless they have resistance or immunity to such damage." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Nine-Fingers Keene", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 170, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 14, + "int": 13, + "wis": 17, + "cha": 14, + "save": { + "dex": "+7", + "int": "+4" + }, + "skill": { + "acrobatics": "+10", + "deception": "+5", + "insight": "+6", + "intimidation": "+5", + "perception": "+6", + "sleight of hand": "+10", + "stealth": "+10" + }, + "passive": 16, + "languages": [ + "Common", + "Thieves' cant" + ], + "cr": "5", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of her turns in combat, Nine-Fingers can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Dagger Thrower", + "entries": [ + "Nine-Fingers adds double her proficiency bonus to the damage she deals on ranged attacks made with daggers (already factored into her attacks)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Nine-Fingers attacks three times with her daggers." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage, plus 6 piercing damage if it's a ranged attack." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "Nine-Fingers halves the damage that she takes from an attack that hits her. She must be able to see the attacker." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Peacock", + "source": "BGDIA", + "page": 195, + "_copy": { + "name": "Vulture", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "vulture", + "with": "peacock" + } + } + }, + "hasToken": true + }, + { + "name": "Princeps Kovik", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 91, + "_copy": { + "name": "Chain Devil", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the devil", + "with": "Kovik", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Raggadragga", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 87, + "_copy": { + "name": "Wereboar", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wereboar", + "with": "Raggadragga", + "flags": "i" + } + } + }, + "hp": { + "average": 120, + "formula": "12d8 + 24" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Reaper of Bhaal", + "source": "BGDIA", + "page": 233, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 15 + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 40 + }, + "str": 11, + "dex": 20, + "con": 13, + "int": 15, + "wis": 12, + "cha": 16, + "skill": { + "intimidation": "+5", + "perception": "+3", + "persuasion": "+5", + "stealth": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The reaper's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell sanctuary}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Aura of Murder", + "entries": [ + "As long as the reaper is not {@condition incapacitated}, hostile creatures within 5 feet of it gain vulnerability to piercing damage unless they have resistance or immunity to such damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The reaper makes two dagger attacks and uses Shroud Self." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + }, + { + "name": "Shroud Self", + "entries": [ + "The reaper magically turns {@condition invisible} until the start of its next turn. This invisibility ends if the reaper makes an attack roll, makes a damage roll, or casts a spell." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rilsa Rael", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 199, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 18, + "con": 14, + "int": 10, + "wis": 11, + "cha": 15, + "save": { + "dex": "+6", + "wis": "+2" + }, + "skill": { + "acrobatics": "+6", + "athletics": "+4", + "deception": "+4", + "perception": "+2", + "sleight of hand": "+6", + "stealth": "+6" + }, + "passive": 12, + "languages": [ + "Common", + "Thieves' cant" + ], + "cr": "3", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of her turns in combat, Rilsa can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Focus", + "entries": [ + "If Rilsa damages a creature with a weapon attack, she gains advantage on attack rolls against that target until the end of her next turn." + ] + }, + { + "name": "Tactical Leadership", + "entries": [ + "As a bonus action, Rilsa chooses one creature she can see within 30 feet of her. The creature doesn't provoke opportunity attacks until the end of its next turn, provided it can hear Rilsa's commands." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Rilsa makes three weapon attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skeletal Rats", + "source": "BGDIA", + "page": 23, + "_copy": { + "name": "Swarm of Rats", + "source": "MM" + }, + "type": { + "type": "undead", + "swarmSize": "T" + }, + "hasToken": true + }, + { + "name": "Skull Lasher of Myrkul", + "source": "BGDIA", + "page": 234, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 15, + "int": 16, + "wis": 13, + "cha": 10, + "save": { + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "religion": "+5" + }, + "passive": 11, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The skull lasher is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell protection from evil and good}", + "{@spell ray of sickness} (see \"Actions\" below)", + "{@spell shield}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell darkness}", + "{@spell misty step}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skull lasher makes two attacks with its flail." + ] + }, + { + "name": "Iron Skull Flail", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage plus 7 ({@damage 2d6}) necrotic damage, and the target has disadvantage on all saving throws until the end of the skull lasher's next turn." + ] + }, + { + "name": "Ray of Sickness (1st-Level Spell; Requires a Spell Slot)", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}9 ({@damage 2d8}) poison damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the end of the skull lasher's next turn. If the skull lasher casts this spell using a spell slot of 2nd level or higher, the damage increases by {@damage 1d8} for each slot level above 1st." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "B", + "I", + "N" + ], + "damageTagsSpell": [ + "I" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Smiler the Defiler", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 133, + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item +2 leather armor}" + ] + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 20, + "con": 16, + "int": 18, + "wis": 11, + "cha": 18, + "skill": { + "deception": "+7", + "persuasion": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Smiler's innate spellcasting ability is Charisma (spell save {@dc 15}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person}", + "{@spell Tasha's hideous laughter}" + ], + "daily": { + "3e": [ + "{@spell confusion}", + "{@spell enthrall}", + "{@spell suggestion}" + ], + "1e": [ + "{@spell hallucinatory terrain}", + "{@spell Otto's irresistible dance}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "As a bonus action, Smiler can teleport up to 30 feet to an unoccupied space that he can see or to the empty seat of his infernal war machine." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Smiler has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Equipment", + "entries": [ + "Smiler wears +2 leather armor. He carries seven soul coins in a bag and a +1 shortsword" + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Smiler makes two weapon attacks. He can cast a spell in place of one of these attacks." + ] + }, + { + "name": "+1 Shortsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage." + ] + } + ], + "attachedItems": [ + "+1 shortsword|dmg" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sylvira Savikas", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 46, + "_copy": { + "name": "Archmage", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Sylvira", + "flags": "i" + }, + "_": [ + { + "mode": "addSkills", + "skills": { + "investigation": 2 + } + } + ] + } + }, + "alignment": [ + "L", + "N" + ], + "languages": [ + "Abyssal", + "Celestial", + "Common", + "Draconic", + "Infernal", + "Primordial" + ], + "languageTags": [ + "AB", + "C", + "CE", + "DR", + "I", + "P" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "hasToken": true + }, + { + "name": "Thavius Kreeg", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 42, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 10, + "con": 11, + "int": 15, + "wis": 18, + "cha": 16, + "skill": { + "deception": "+5", + "medicine": "+6", + "persuasion": "+5", + "religion": "+4" + }, + "passive": 14, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "1/2", + "trait": [ + { + "name": "Shadow of Guilt", + "entries": [ + "Thavius's shadow is that of a pudgy, horned devil with small wings." + ] + } + ], + "action": [ + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "mace|phb" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Thurstwell Vanthampur", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 34, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 9 + ], + "hp": { + "average": 5, + "formula": "2d8 - 4" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 8, + "con": 6, + "int": 15, + "wis": 17, + "cha": 12, + "skill": { + "deception": "+3", + "insight": "+5", + "perception": "+5", + "religion": "+4" + }, + "passive": 15, + "languages": [ + "Common", + "Elvish", + "Infernal" + ], + "cr": "1/8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Thurstwell is a 2nd-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 13}). He has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell sacred flame} (see \"Actions\" below)", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell sanctuary}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "Thurstwell has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Sacred Flame (Cantrip)", + "entries": [ + "Flame-like radiance descends on one creature Thurstwell can see within 60 feet of him. The target must succeed on a {@dc 13} Dexterity saving throw or take 4 ({@damage 1d8}) radiant damage, gaining no benefit from cover." + ] + } + ], + "languageTags": [ + "C", + "E", + "I" + ], + "damageTags": [ + "R" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Torogar Steelfist", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 112, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 17, + "con": 20, + "int": 8, + "wis": 9, + "cha": 16, + "save": { + "str": "+11", + "con": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Abyssal", + "Common" + ], + "cr": "11", + "trait": [ + { + "name": "Goring Rush", + "entries": [ + "Immediately after using the Dash action, Torogar can make one melee attack with his horns." + ] + }, + { + "name": "Labyrinthine Recall", + "entries": [ + "Torogar can perfectly recall any path he has traveled." + ] + }, + { + "name": "Rage (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, Torogar can enter a rage that lasts for 1 minute. The rage ends early if Torogar is knocked {@condition unconscious} or if his turn ends and he hasn't attacked a hostile creature or taken damage since his last turn. While raging, Torogar gains the following benefits:", + "He has advantage on Strength checks and Strength saving throws.", + "He deals an extra 3 damage when he hits a target with a melee weapon attack.", + "He has resistance to bludgeoning, piercing, and slashing damage." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Torogar wears {@item gauntlets of flaming fury|bgdia} and a {@item belt of fire giant strength}. Without the belt, his Strength is 21. He also carries a {@item soul coin|bgdia}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Torogar makes three attacks: two with his scimitars and one with his horns." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage, or 17 ({@damage 2d6 + 10}) slashing damage while raging, plus 3 ({@damage 1d6}) fire damage from the gauntlets of flaming fury." + ] + }, + { + "name": "Horns", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage, or 19 ({@damage 2d8 + 10}) piercing damage while raging." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Traxigor", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 50, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Traxigor", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "7": [ + { + "replace": "{@spell teleport}", + "with": "{@spell plane shift}" + } + ] + } + } + } + }, + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "C", + "G" + ], + "str": 3, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Gnomish", + "Halfling", + "Troglodyte" + ], + "languageTags": [ + "C", + "D", + "DR", + "G", + "H", + "OTH" + ], + "hasToken": true + }, + { + "name": "Tressym", + "source": "BGDIA", + "page": 241, + "_copy": { + "name": "Tressym", + "source": "SKT" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ulder Ravengard", + "isNpc": true, + "isNamedCreature": true, + "source": "BGDIA", + "page": 70, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 25 + }, + "str": 17, + "dex": 14, + "con": 16, + "int": 11, + "wis": 10, + "cha": 17, + "save": { + "con": "+6", + "wis": "+3" + }, + "skill": { + "athletics": "+6", + "intimidation": "+6", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "Common" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ulder makes three melee attacks, only one of which can be with his shield." + ] + }, + { + "name": "+1 Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage when used with two hands." + ] + }, + { + "name": "Shield", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and Ulder pushes the target 5 feet away from him. Ulder then enters the space vacated by the target. If the target is pushed to within 5 feet of a creature friendly to Ulder, the target provokes an opportunity attack from that creature." + ] + } + ], + "reaction": [ + { + "name": "Guardian Strike", + "entries": [ + "If an enemy within 5 feet of Ulder attacks a target other than him, Ulder can make a melee attack against that enemy." + ] + } + ], + "attachedItems": [ + "+1 longsword|dmg" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Undead Tree", + "source": "BGDIA", + "page": 109, + "_copy": { + "name": "Treant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "treant", + "with": "tree" + } + } + }, + "type": "undead", + "resist": [ + "necrotic" + ], + "hasToken": true + }, + { + "name": "Animated Broom", + "source": "CM", + "page": 20, + "reprintedAs": [ + "Animated Broom|XMM" + ], + "size": [ + "S" + ], + "type": "construct", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 17, + "con": 10, + "int": 1, + "wis": 5, + "cha": 1, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 7, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "cr": "1/4", + "trait": [ + { + "name": "False Object", + "entries": [ + "If the broom is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the broom move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the broom is animate." + ] + }, + { + "name": "Flyby", + "entries": [ + "The broom doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The broom makes two melee attacks." + ] + }, + { + "name": "Broomstick", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Animated Chained Library", + "source": "CM", + "page": 24, + "size": [ + "L" + ], + "type": "construct", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 10 + }, + "str": 15, + "dex": 8, + "con": 14, + "int": 1, + "wis": 5, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 7, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "cr": "1", + "trait": [ + { + "name": "False Object", + "entries": [ + "If the library is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the library move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the library is animate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The library makes two attacks." + ] + }, + { + "name": "Chained Book", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 12})." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Arrant Quill", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 157, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 18, + "con": 16, + "int": 16, + "wis": 15, + "cha": 20, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+9" + }, + "skill": { + "arcana": "+11", + "deception": "+9", + "history": "+7", + "performance": "+13" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Undercommon" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Quill casts one of the following spells using Charisma as the spellcasting ability (save {@dc 17}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "3e": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell hold monster}" + ], + "1e": [ + "{@spell mind blank}", + "{@spell teleport}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Quill makes two attacks with his dagger and uses Supreme Mockery." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Quill's Fable {@recharge}", + "entries": [ + "Quill utters a short fable while targeting up to five creatures within 30 feet of him that he can see. Each target that can hear Quill's magical fable must make a {@dc 17} Wisdom saving throw, taking 36 ({@damage 8d8}) psychic damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Supreme Mockery", + "entries": [ + "Quill hurls a string of insults laced with enchantments at a creature he can see within 60 feet of him. If the creature can hear Quill (though it need not understand him), it must succeed on a {@dc 17} Wisdom saving throw or take 66 ({@damage 12d10}) psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bak Mei", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 168, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 10, + "dex": 18, + "con": 18, + "int": 13, + "wis": 17, + "cha": 16, + "save": { + "str": "+5", + "dex": "+9", + "con": "+9", + "int": "+6", + "wis": "+8", + "cha": "+8" + }, + "skill": { + "acrobatics": "+9", + "athletics": "+5", + "medicine": "+8", + "religion": "+6", + "stealth": "+9" + }, + "passive": 13, + "resist": [ + "poison", + "thunder" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed" + ], + "languages": [ + "Auran", + "Common" + ], + "cr": "13", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Bak Mei fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Bak Mei carries a {@item staff of striking} with 10 charges." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "While Bak Mei is wearing no armor and wielding no shield, his AC includes his Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bak Mei attacks three times: twice with Thunder Strike and once with his staff of striking." + ] + }, + { + "name": "Thunder Strike", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) thunder damage, and if the target is a creature, it must succeed on a {@dc 17} Constitution saving throw or be {@condition deafened} and {@condition stunned} until the start of Bak Mei's next turn." + ] + }, + { + "name": "Staff of Striking", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage when used with two hands, and Bak Mei can expend up to 3 of the staff's charges. For each expended charge, the target takes an extra {@damage 1d6} force damage." + ] + }, + { + "name": "Heal Self (Recharges after a Long Rest)", + "entries": [ + "Bak Mei regains {@dice 2d8 + 4} hit points, and all levels of {@condition exhaustion} end on him." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "Bak Mei takes the Disengage or Hide action." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, Bak Mei deflects the missile. The damage he takes from the attack is reduced by {@dice 1d10 + 12}. If the damage is reduced to 0, Bak Mei catches the missile if it's small enough to hold in one hand and Bak Mei has a hand free." + ] + } + ], + "legendary": [ + { + "name": "Crane Dance", + "entries": [ + "Bak Mei moves up to 20 feet. This movement does not provoke opportunity attacks." + ] + }, + { + "name": "Thunder Strike (Costs 2 Actions)", + "entries": [ + "Bak Mei uses Thunder Strike." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "B", + "T" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "deafened", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Canopic Golem", + "source": "CM", + "page": 179, + "size": [ + "L" + ], + "type": "construct", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 252, + "formula": "24d10 + 120" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 10, + "con": 20, + "int": 7, + "wis": 11, + "cha": 1, + "save": { + "int": "+3", + "wis": "+5", + "cha": "+0" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "13", + "trait": [ + { + "name": "Limited Spell Immunity", + "entries": [ + "The golem automatically succeeds on saving throws against spells of 7th level or lower, and the attack rolls of such spells always miss it." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The golem doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}27 ({@damage 4d10 + 5}) force damage." + ] + }, + { + "name": "Crystal Dart", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 120 ft., one target. {@h}14 ({@damage 2d8 + 5}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Spell Deflection", + "entries": [ + "In response to a spell attack missing the golem, it causes that spell to hit another creature within 120 feet of it that it can see." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chwinga", + "source": "CM", + "page": 212, + "_copy": { + "name": "Chwinga", + "source": "ToA" + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cloud Giant Ghost", + "source": "CM", + "page": 146, + "size": [ + "H" + ], + "type": "undead", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "16d12" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 27, + "dex": 11, + "con": 10, + "int": 12, + "wis": 16, + "cha": 17, + "save": { + "wis": "+7", + "cha": "+7" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "cold" + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ghost casts one of the following spells, using Charisma as the spellcasting ability and requiring no material components:" + ], + "will": [ + "{@spell fog cloud}" + ], + "daily": { + "1": [ + "{@spell control weather}" + ], + "3": [ + "{@spell telekinesis}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Ethereal Sight", + "entries": [ + "The ghost can see 120 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The ghost regains 10 hit points at the start of its turn. If the ghost takes radiant damage or damage from a magic weapon, this trait doesn't function at the start of the ghost's next turn. The ghost dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ghost makes two melee attacks." + ] + }, + { + "name": "Spectral Weapon", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) force damage." + ] + }, + { + "name": "Etherealness", + "entries": [ + "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ] + }, + { + "name": "Wind Howl {@recharge}", + "entries": [ + "The ghost emits a dreadful howl that summons a cold, biting wind. This wind engulfs up to three creatures of the ghost's choice that it can see within 60 feet of it. Each target is pulled up to 20 feet toward the ghost and must make a {@dc 15} Constitution saving throw, taking 16 ({@damage 3d10}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "C", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Constructed Commoner", + "source": "CM", + "page": 149, + "size": [ + "M" + ], + "type": "construct", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 6, + "formula": "1d8 + 2" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 10, + "con": 15, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "0", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The commoner doesn't require air, food, drink, or sleep, and it gains no benefit from finishing a short or long rest. When it drops to 0 hit points, it becomes a lifeless object." + ] + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "traitTags": [ + "Unusual Nature" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Corrupted Avatar of Lurue", + "source": "CM", + "page": 123, + "size": [ + "L" + ], + "type": "monstrosity", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 50, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 11, + "wis": 17, + "cha": 16, + "save": { + "int": "+3", + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "paralyzed", + "poisoned" + ], + "languages": [ + "Celestial", + "Elvish", + "Sylvan", + "telepathy 60 ft." + ], + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The avatar makes two attacks: one with its hooves and one with its horn." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}32 ({@damage 8d6 + 4}) necrotic damage." + ] + }, + { + "name": "Horn", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}32 ({@damage 8d6 + 4}) necrotic damage. If the target is a humanoid, it must succeed on a {@dc 13} Wisdom saving throw or be transformed into a wolf under the avatar's control. This transformation lasts for 1 hour, or until the target drops to 0 hit points or dies. The target's game statistics are replaced by the wolf's statistics, but it retains its hit points. The target is limited in the actions it can perform by the nature of its wolf form, and it can't speak, cast spells, or take any other action that requires hands or speech. The target's gear melds into the new form, and it can't activate, use, wield, or otherwise benefit from any of its equipment." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CE", + "E", + "S", + "TP" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragon Tortoise", + "source": "CM", + "page": 205, + "_copy": { + "name": "Dragon Turtle", + "source": "MM", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Amphibious" + }, + "action": { + "mode": "replaceArr", + "replace": "Steam Breath {@recharge 5}", + "items": { + "name": "Sand Breath {@recharge 5}", + "entries": [ + "The dragon tortoise exhales abrasive sand in a 60-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 52 ({@damage 15d6}) slashing damage on a failed save, or half as much damage on a successful one." + ] + } + } + } + }, + "speed": { + "walk": 20 + }, + "languages": [ + "Draconic", + "Terran" + ], + "languageTags": [ + "DR", + "T" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Faerl", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 104, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 11, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "persuasion": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Elvish" + ], + "cr": "1/8", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Faerl has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Faerl adds 2 to his AC against one melee attack that would hit it. To do so, he must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fungal Servant", + "source": "CM", + "page": 217, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 11, + "wis": 18, + "cha": 16, + "save": { + "con": "+8", + "int": "+5", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "history": "+5", + "religion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "The languages it knew in life" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The fungal servant is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The fungal servant has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell guardian of faith}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell insect plague}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell harm}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The fungal servant has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "A destroyed fungal servant gains a new body in 24 hours if its heart is intact, regaining all its hit points and becoming active again. The new body appears within 5 feet of the fungal servant's heart." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fungal servant can use its Dreadful Glare and makes one attack with its rotting fist." + ] + }, + { + "name": "Rotting Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to spores. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ] + }, + { + "name": "Dreadful Glare", + "entries": [ + "The fungal servant targets one creature it can see within 60 feet of it. If the target can see the fungal servant, it must succeed on a {@dc 16} Wisdom saving throw against this magic or become {@condition frightened} until the end of the fungal servant's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all fungal servants for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The fungal servant makes one attack with its rotting fist or uses its Dreadful Glare." + ] + }, + { + "name": "Blinding Spores", + "entries": [ + "Blinding spores swirls magically around the fungal servant. Each creature within 5 feet of the fungal servant must succeed on a {@dc 16} Constitution saving throw or be {@condition blinded} until the end of the creature's next turn." + ] + }, + { + "name": "Blasphemous Word (Costs 2 Actions)", + "entries": [ + "The fungal servant utters a blasphemous word. Each non-undead creature within 10 feet of the fungal servant that can hear the magical utterance must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the end of the fungal servant's next turn." + ] + }, + { + "name": "Channel Negative Energy (Costs 2 Actions)", + "entries": [ + "The fungal servant magically unleashes negative energy. Creatures within 60 feet of the fungal servant, including ones behind barriers and around corners, can't regain hit points until the end of the fungal servant's next turn." + ] + }, + { + "name": "Whirlwind of Spores (Costs 2 Actions)", + "entries": [ + "The fungal servant magically transforms into a whirlwind of spores, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the fungal servant is immune to all damage, and it can't be {@condition grappled}, {@condition petrified}, knocked {@condition prone}, {@condition restrained}, or {@condition stunned}. Equipment worn or carried by the fungal servant remain in its possession." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "N", + "O", + "P", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "AOE", + "CUR", + "MW" + ], + "conditionInflict": [ + "blinded", + "frightened", + "paralyzed", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "paralyzed", + "poisoned", + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Gingwatzim", + "source": "CM", + "page": 27, + "size": [ + "S" + ], + "type": { + "type": "aberration", + "tags": [ + "shapechanger" + ] + }, + "ac": [ + 12 + ], + "hp": { + "average": 39, + "formula": "6d6 + 18" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover) in its true form only" + }, + "canHover": true + }, + "str": 3, + "dex": 15, + "con": 16, + "int": 4, + "wis": 11, + "cha": 6, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "telepathy 60 ft." + ], + "cr": "2", + "trait": [ + { + "name": "Alternate Forms", + "entries": [ + "The gingwatzim has two alternate forms, both of which are chosen by its creator when the gingwatzim comes into being. One form is an exact duplicate of a Tiny nonmagical object (such as a book, dagger, or gemstone) that its creator is carrying or wearing when the gingwatzim is conjured. The other form can be any Tiny beast. Once these alternate forms are chosen, they can't be changed." + ] + } + ], + "action": [ + { + "name": "Energy Drain (True Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}16 ({@damage 4d6 + 2}) necrotic damage, and the target must succeed on a {@dc 12} Constitution saving throw or gain 1 level of {@condition exhaustion}. When the target finishes a short or long rest, the target loses every level of {@condition exhaustion} gained from this attack." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The gingwatzim changes from its true form\u2014a 3-foot-diameter sphere of luminous ectoplasm\u2014into one of its two alternate forms, or from one of those forms back into its true form. In object form, it can't move or make attacks but otherwise retains its statistics, and it is indistinguishable from the thing it is imitating. In beast form, it retains its hit points but otherwise uses the stat block of the beast it is imitating. When it dies, the gingwatzim reverts to its true form and then vanishes." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Shapechanger" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "exhaustion" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Grippli Warrior", + "source": "CM", + "page": 99, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "grippli" + ] + }, + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30, + "climb": 30, + "swim": 30 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 10, + "wis": 14, + "cha": 10, + "skill": { + "athletics": "+2", + "stealth": "+4", + "survival": "+4" + }, + "passive": 12, + "languages": [ + "Grippli plus one other language (usually Common, Draconic, or Primordial)" + ], + "cr": "1/4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The grippli can hold its breath for 20 minutes." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The grippli can leap 30 feet horizontally or 20 feet vertically from a standing position." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The grippli makes one attack with its tongue. If this attack hits, the grippli can make a melee attack using its trident against the same target." + ] + }, + { + "name": "Tongue", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the grippli can't grab another creature." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack, plus 2 ({@damage 1d4}) piercing damage if the grippli had advantage on the attack roll." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 2 ({@damage 1d4}) piercing damage if the grippli had advantage on the attack roll." + ] + } + ], + "attachedItems": [ + "shortbow|phb", + "trident|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "P", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hag of the Fetid Gaze", + "source": "CM", + "page": 76, + "_copy": { + "name": "Green Hag", + "source": "MM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell alter self}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell glyph of warding}", + "{@spell slow}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dominate person}", + "{@spell seeming}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell Otto's irresistible dance}" + ] + } + }, + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save DC is 12 + the hag's Intelligence modifier, and the spell attack bonus is 4 + the hag's Intelligence modifier." + ] + } + } + } + }, + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "L", + "N", + "P", + "S", + "T", + "Y" + ], + "spellcastingTags": [ + "CW", + "I", + "S" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Immortal Lotus Monk", + "source": "CM", + "page": 165, + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + { + "ac": 15, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 11, + "wis": 14, + "cha": 10, + "skill": { + "acrobatics": "+6", + "perception": "+5", + "stealth": "+6" + }, + "passive": 15, + "languages": [ + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the monk is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The monk makes two attacks." + ] + }, + { + "name": "Force Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) force damage, and if the target is a creature, it must succeed on a {@dc 14} Dexterity saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "dart|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O", + "P" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Jade Tigress", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 166, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 11, + "wis": 16, + "cha": 11, + "save": { + "str": "+7", + "con": "+5" + }, + "skill": { + "athletics": "+7", + "insight": "+6", + "intimidation": "+3", + "perception": "+6" + }, + "passive": 16, + "resist": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common" + ], + "cr": "8", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While Jade Tigress is wearing no armor and wielding no shield, her AC includes her Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jade Tigress makes three attacks." + ] + }, + { + "name": "Force Strike", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) force damage, and if the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of Jade Tigress's next turn." + ] + }, + { + "name": "Poisoned Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 7 ({@damage 3d4}) poison damage, and the target must succeed on a {@dc 15} Constitution saving throw or gain 1 level of {@condition exhaustion}." + ] + }, + { + "name": "Heal Self (Recharges after a Long Rest)", + "entries": [ + "Jade Tigress regains {@dice 2d8 + 2} hit points, and all levels of {@condition exhaustion} end on her." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "Jade Tigress takes the Disengage or Hide action." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, Jade Tigress deflects the missile. The damage she takes from the attack is reduced by {@dice 1d10 + 9}. If the damage is reduced to 0, Jade Tigress catches the missile if it's small enough to hold in one hand and Jade Tigress has a hand free." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "I", + "O", + "P" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "exhaustion", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "K'Tulah", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 64, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tabaxi" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 11 + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 13, + "int": 12, + "wis": 15, + "cha": 11, + "skill": { + "medicine": "+4", + "nature": "+3", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Druidic" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "K'Tulah is a 4th-level spellcaster. K'Tulah's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). K'Tulah has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Feline Agility", + "entries": [ + "When K'Tulah moves on her turn in combat, she can double her speed until the end of the turn. Once she uses this ability, K'Tulah can't use it again until she moves 0 feet on one of her turns." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, 4 ({@damage 1d8}) bludgeoning damage if wielded with two hands, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DU" + ], + "damageTags": [ + "B", + "S" + ], + "damageTagsSpell": [ + "F", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kiddywidget", + "source": "CM", + "page": 136, + "size": [ + "S" + ], + "type": "construct", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 15, + "formula": "2d6 + 8" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 6, + "dex": 14, + "con": 18, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60" + ], + "passive": 10, + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Skitterwidget" + ], + "cr": "1/2", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The kiddywidget doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kiddywidget makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a creature, it is {@condition grappled} by the kiddywidget (escape {@dc 8})." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 2 ({@damage 1d4}) lightning damage." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lichen Lich", + "source": "CM", + "page": 223, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 16, + "int": 14, + "wis": 20, + "cha": 16, + "save": { + "con": "+9", + "int": "+8", + "wis": "+11", + "cha": "+9" + }, + "skill": { + "medicine": "+11", + "nature": "+14", + "perception": "+11", + "survival": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "stunned" + ], + "languages": [ + "Common", + "Druidic", + "Sylvan" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lich casts one of the following spells using Wisdom as the spellcasting ability (save {@dc 19}):" + ], + "will": [ + "{@spell druidcraft}" + ], + "daily": { + "3e": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell pass without trace}" + ], + "1e": [ + "{@spell antilife shell}", + "{@spell dispel magic}", + "{@spell speak with plants}", + "{@spell transport via plants}", + { + "entry": "{@spell fire storm}", + "hidden": true + } + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the lich fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If it has a phylactery, a destroyed lich gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lich makes four attacks." + ] + }, + { + "name": "Poisonous Touch", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}17 ({@damage 5d6}) poison damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Wither", + "entries": [ + "{@atk rs} {@hit 9} to hit, range 60 ft., one target. {@h}14 ({@damage 4d6}) necrotic damage." + ] + }, + { + "name": "Fire Storm (7th-Level Spell; 1/Day)", + "entries": [ + "The lich fills up to ten 10-foot cubes with fire. Every cube must be within 150 feet of the lich and occupy a space the lich can see, and each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a {@dc 19} Dexterity saving throw, taking 38 ({@damage 7d10}) fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried. If the lich chooses, plant life in the area is unaffected by the spell." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The lich makes an attack." + ] + }, + { + "name": "Poison Prick (Cost 2 Actions)", + "entries": [ + "The lich targets one {@condition poisoned} creature it can see within 30 feet of it. The target must succeed on a {@dc 19} Constitution saving throw or fall {@condition unconscious} until the {@condition poisoned} condition ends on it." + ] + }, + { + "name": "Sap Life (Costs 2 Actions)", + "entries": [ + "The lich targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 19} Constitution saving throw or take 11 ({@damage 2d10}) necrotic damage. The lich regains a number of hit points equal to the amount of damage that the creature takes." + ] + } + ], + "legendaryGroup": { + "name": "Lichen Lich", + "source": "CM" + }, + "traitTags": [ + "Legendary Resistances", + "Rejuvenation" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU", + "S" + ], + "damageTags": [ + "F", + "I", + "N" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lightning Golem", + "source": "CM", + "page": 129, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 9 + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 9, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Berserk", + "entries": [ + "Whenever the golem starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points.", + "The golem's creator, if within 60 feet of the berserk golem, can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 40 hit points or fewer, the golem might go berserk again." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) lightning damage." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "L" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Master Sage", + "source": "CM", + "page": 9, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "ac": [ + 10 + ], + "hp": { + "average": 54, + "formula": "12d8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 10, + "con": 10, + "int": 20, + "wis": 18, + "cha": 11, + "skill": { + "arcana": "+11", + "history": "+11", + "insight": "+7", + "investigation": "+11", + "medicine": "+10", + "nature": "+11", + "religion": "+11" + }, + "passive": 14, + "languages": [ + "Common plus any five languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sage casts one of the following spells, using Intelligence as the spellcasting ability (save {@dc 14}, {@hit 6} to hit with spell attacks):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell prestidigitation}", + { + "entry": "{@spell shocking grasp}", + "hidden": true + } + ], + "daily": { + "3e": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell dispel magic}", + { + "entry": "{@spell fireball}", + "hidden": true + }, + "{@spell identify}", + "{@spell levitate}", + "{@spell locate object}", + { + "entry": "{@spell shield}", + "hidden": true + }, + "{@spell Tenser's Floating Disk}", + "{@spell unseen servant}" + ], + "1e": [ + "{@spell banishment}", + "{@spell contact other plane}", + "{@spell Drawmij's instant summons}", + "{@spell legend lore}", + "{@spell locate creature}", + "{@spell planar binding}", + "{@spell polymorph}", + "{@spell protection from evil and good}", + "{@spell scrying}", + "{@spell sending}", + "{@spell true seeing}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Shocking Grasp (Cantrip)", + "entries": [ + "{@atk ms} {@hit 8} to hit (with advantage if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}13 ({@damage 3d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ] + }, + { + "name": "Fireball (3rd-Level Spell; 3/Day)", + "entries": [ + "The sage creates a fiery explosion centered on a point it can see within 150 feet of it. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 14} Dexterity saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried." + ] + } + ], + "reaction": [ + { + "name": "Shield (1st-Level Spell; 3/Day)", + "entries": [ + "When the sage is hit by an attack or targeted by a {@spell magic missile} spell, it calls forth an {@condition invisible} barrier of magical force that protects it. Until the start of its next turn, the sage has a +5 bonus to AC, including against the triggering attack, and it takes no damage from magic missile." + ] + } + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "F", + "L" + ], + "damageTagsSpell": [ + "F", + "L", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Miirym", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 16, + "size": [ + "L" + ], + "type": "undead", + "ac": [ + 10 + ], + "hp": { + "average": 262, + "formula": "25d10 + 125" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 17, + "dex": 10, + "con": 20, + "int": 18, + "wis": 15, + "cha": 23, + "save": { + "dex": "+7", + "con": "+12", + "int": "+11", + "wis": "+9", + "cha": "+13" + }, + "skill": { + "arcana": "+11", + "history": "+11", + "perception": "+16", + "stealth": "+14" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft.; see also \"x-ray vision\" below" + ], + "passive": 26, + "resist": [ + "acid", + "fire", + "lightning", + "thunder" + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "22", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Miirym casts one of the following spells, using Charisma as the spellcasting ability (save {@dc 21}) and requiring no material components:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}" + ], + "daily": { + "3e": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell locate creature}" + ], + "1e": [ + "{@spell dispel evil and good}", + "{@spell wall of force}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Bound to Candlekeep", + "entries": [ + "Miirym can't leave Candlekeep and is immune to any effect that would place her in a location outside it, including an extradimensional space. If she dies, Miirym regains her form and all her hit points after {@dice 1d10} days, reappearing in the location where she died or in the nearest unoccupied space." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Miirym regains 40 hit points at the start of her turn. If Miirym takes damage from a magic weapon or a spell, this trait doesn't function at the start of Miirym's next turn. Miirym dies only if she starts her turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "Miirym can move through other creatures and objects as if they were {@quickref difficult terrain||3}. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Miirym fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "X-Ray Vision", + "entries": [ + "Miirym can see through solid matter out to a range of 60 feet. To her, opaque creatures, objects, and obstacles within that distance appear transparent and don't prevent light from passing through them. This vision can penetrate 5 feet of stone, 3 inches of common metal, and up to 10 feet of wood or dirt. Thicker substances block this vision, as does a thin sheet of lead." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}34 ({@damage 9d6 + 3}) force damage." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "Miirym uses one of the following breath weapons:" + ] + }, + { + "name": "Cold Breath", + "entries": [ + "Miirym exhales an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 21} Constitution saving throw, taking 67 ({@damage 15d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Necrotic Breath", + "entries": [ + "Miirym exhales a bolt of necrotic energy in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 21} Dexterity saving throw, taking 82 ({@damage 15d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Paralyzing Breath", + "entries": [ + "Miirym exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or be {@condition 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." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Miirym's choice that is within 120 feet of her and aware of her must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Miirym's Frightful Presence for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Bite", + "entries": [ + "Miirym makes a bite attack." + ] + }, + { + "name": "Teleport (Costs 2 Actions)", + "entries": [ + "Miirym magically teleports up to 120 feet to an unoccupied space she can see." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances", + "Regeneration" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "C", + "N", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mimic Chair", + "source": "CM", + "page": 22, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 15 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 5, + "wis": 13, + "cha": 8, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "acid" + ], + "conditionImmune": [ + "prone" + ], + "cr": "2", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Adhesive (Object Form Only)", + "entries": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 10}). Ability checks made to escape this grapple have disadvantage." + ] + }, + { + "name": "False Appearance (Object Form Only)", + "entries": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ] + }, + { + "name": "Grappler", + "entries": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ] + } + ], + "traitTags": [ + "False Appearance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Naiad", + "source": "CM", + "page": 84, + "_copy": { + "name": "Naiad", + "source": "MOT" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nintra Siotta", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 197, + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + 17 + ], + "hp": { + "average": 306, + "formula": "36d10 + 108" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 24, + "con": 16, + "int": 17, + "wis": 15, + "cha": 24, + "save": { + "str": "+8", + "dex": "+12", + "wis": "+7" + }, + "skill": { + "deception": "+12", + "insight": "+7", + "perception": "+7" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 17, + "conditionImmune": [ + "charmed", + "exhaustion", + "stunned" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Nintra casts one of the following spells, using Charisma as the spellcasting ability (save {@dc 20}) and requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell mirror image}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Nintra fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Nintra makes two attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d4 + 7}) piercing damage." + ] + }, + { + "name": "Shard of Shadow", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}10 ({@damage 1d6 + 7}) necrotic damage, and if the target is a creature, it must succeed on a {@dc 20} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ] + }, + { + "name": "Storm of Shattered Glass {@recharge}", + "entries": [ + "Nintra targets a point she can see within 60 feet of her and creates a 20-foot-radius sphere of swirling glass shards centered on that point. Each creature in the sphere must make a {@dc 20} Dexterity saving throw, taking 28 ({@damage 8d6}) slashing damage on a failed save, or half as much damage on a successful save. If Nintra is in the sphere, the shards deal no damage to her." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Nintra makes one attack." + ] + }, + { + "name": "Fey Step", + "entries": [ + "Nintra teleports to an unoccupied space she can see within 30 feet of her." + ] + }, + { + "name": "Shadow Strikes (Costs 2 Actions)", + "entries": [ + "Provided she is in bright or dim light, Nintra causes her shadow to attack a creature within 10 feet of her. Her shadow makes two claw attacks, each attack identical to Nintra's claw attack except that it deals psychic damage instead of piercing damage." + ] + } + ], + "legendaryGroup": { + "name": "Nintra Siotta", + "source": "CM" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "damageTagsLegendary": [ + "N", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Parasite-infested Behir", + "source": "CM", + "page": 220, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64" + }, + "speed": { + "walk": 50, + "climb": 40 + }, + "str": 23, + "dex": 16, + "con": 18, + "int": 7, + "wis": 14, + "cha": 12, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 90 ft." + ], + "passive": 16, + "immune": [ + "lightning" + ], + "languages": [ + "Draconic" + ], + "cr": "11", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The behir makes two attacks: one with its bite and one to constrict." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one Large or smaller creature. {@h}17 ({@damage 2d10 + 6}) bludgeoning damage plus 17 ({@damage 2d10 + 6}) slashing damage. The target is {@condition grappled} (escape {@dc 16}) if the behir isn't already constricting a creature, and the target is {@condition restrained} until this grapple ends." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Swallow", + "entries": [ + "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the behir, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.", + "Any creature swallowed by a parasite-infested behir must succeed on a {@dc 19} Constitution saving throw at the start of each of the behir's turns or be feasted upon by blood parasites, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful save. This damage is in addition to the damage caused by the behir's digestive acids.", + "If the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a {@dc 14} Constitution saving throw at the end of that turn or regurgitate the creature, which falls {@condition prone} in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Swallow" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "A", + "B", + "L", + "N", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ram Sugar", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 132, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dragonborn" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "skill": { + "deception": "+4", + "persuasion": "+4", + "religion": "+2" + }, + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ram Sugar is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). Ram Sugar has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "Ram Sugar has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ram Sugar makes two melee attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Breath Weapon (Recharges after a Short or Long Rest)", + "entries": [ + "Ram Sugar exhales fire in a 30-foot-long line that is 5 feet wide. Any creature in the line must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sage", + "source": "CM", + "page": 9, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "ac": [ + 10 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 10, + "con": 10, + "int": 18, + "wis": 15, + "cha": 11, + "skill": { + "arcana": "+8", + "history": "+8", + "insight": "+4", + "investigation": "+8", + "medicine": "+6", + "nature": "+8", + "religion": "+8" + }, + "passive": 12, + "languages": [ + "Common plus any four languages" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sage casts one of the following spells, using Intelligence as the spellcasting ability (save {@dc 14}, {@hit 6} to hit with spell attacks):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}", + { + "entry": "{@spell shocking grasp}", + "hidden": true + } + ], + "daily": { + "3e": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell identify}", + { + "entry": "{@spell shield}", + "hidden": true + } + ], + "1e": [ + "{@spell dispel magic}", + "{@spell levitate}", + "{@spell locate object}", + "{@spell see invisibility}", + "{@spell sending}", + "{@spell tongues}", + "{@spell unseen servant}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Shocking Grasp (Cantrip)", + "entries": [ + "{@atk ms} {@hit 6} to hit (with advantage if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}9 ({@damage 2d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ] + } + ], + "reaction": [ + { + "name": "Shield (1st-Level Spell; 3/Day)", + "entries": [ + "When the sage is hit by an attack or targeted by a {@spell magic missile} spell, it calls forth an {@condition invisible} barrier of magical force that protects it. Until the start of its next turn, the sage has a +5 bonus to AC, including against the triggering attack, and it takes no damage from magic missile." + ] + } + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "L" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sapphire Sentinel", + "source": "CM", + "page": 201, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 9, + "con": 20, + "int": 3, + "wis": 11, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "10", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Slow {@recharge 5}", + "entries": [ + "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a {@dc 17} Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Sapphire", + "entries": [ + "The sapphire has 3 charges. As an action, the golem can expend 1 charge to cast {@spell dispel magic} (as a 9th-level spell) from the sapphire using Constitution as its spellcasting ability. The sapphire ceases to glow if all its charges are expended, but it regains {@dice 1d3} expended charges daily at dawn and glows again once it has 1 or more charges." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shemshime", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 69, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + 13 + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 6, + "dex": 17, + "con": 10, + "int": 17, + "wis": 14, + "cha": 16, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "acid", + "bludgeoning", + "fire", + "lightning", + "piercing", + "slashing", + "thunder" + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "telepathy 60 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Crushing End", + "entries": [ + "If damage reduces Shemshime to 0 hit points, Shemshime instead drops to 1 hit point unless the damage is the result of Shemshime being crushed by an object weighing at least 1,000 pounds." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "Shemshime can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Maddening Touch", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) psychic damage." + ] + }, + { + "name": "Whispers of Violence", + "entries": [ + "Shemshime chooses up to two creatures it can see within 60 feet of it. Each target must succeed on a {@dc 13} Wisdom saving throw, or that target takes 7 ({@damage 1d8 + 3}) psychic damage and must use its reaction to make a melee weapon attack against one creature it can reach (Shemshime's choice) that Shemshime can see." + ] + }, + { + "name": "Howling Babble {@recharge}", + "entries": [ + "Shemshime targets one creature it can see within 30 feet of it. The creature must make a {@dc 13} Wisdom saving throw. On a failed save, it takes 21 ({@damage 4d8 + 3}) psychic damage and is {@condition stunned} until the end of its next turn. On a successful save, it takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "O", + "Y" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Skitterwidget", + "source": "CM", + "page": 136, + "size": [ + "M" + ], + "type": "construct", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 16, + "dex": 14, + "con": 18, + "int": 3, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Skitterwidget" + ], + "cr": "5", + "trait": [ + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the skitterwidget is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The skitterwidget doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skitterwidget makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it is {@condition grappled} by the skitterwidget (escape {@dc 13})." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) lightning damage, and if the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of its next turn." + ] + } + ], + "reaction": [ + { + "name": "Good Parent", + "entries": [ + "The skitterwidget imposes disadvantage on one attack roll made against a kiddywidget it can see within 5 feet of it." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Steel Crane", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 164, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 76, + "formula": "9d8 + 36" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 18, + "con": 18, + "int": 13, + "wis": 17, + "cha": 14, + "save": { + "dex": "+7", + "int": "+4" + }, + "skill": { + "acrobatics": "+7", + "deception": "+5", + "perception": "+6", + "stealth": "+7" + }, + "passive": 16, + "resist": [ + "poison", + "psychic" + ], + "languages": [ + "Common" + ], + "cr": "8", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While Steel Crane is wearing no armor and wielding no shield, his AC includes his Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Steel Crane makes three attacks." + ] + }, + { + "name": "Force Strike", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage, and if the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the start of Steel Crane's next turn." + ] + }, + { + "name": "Whip", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage or, if the target is a creature, Steel Crane can grapple the target instead (escape {@dc 15}). Steel Crane can't make attacks with the whip while using it to grapple a creature. Anytime on his turn, he can release a creature {@condition grappled} by the whip (no action required)." + ] + }, + { + "name": "Heal Self (Recharges after a Long Rest)", + "entries": [ + "Steel Crane regains {@dice 2d8 + 4} hit points, and all levels of {@condition exhaustion} end on him." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, Steel Crane deflects the missile. The damage he takes from the attack is reduced by {@dice 1d10 + 10}. If the damage is reduced to 0, Steel Crane catches the missile if it's small enough to hold in one hand and Steel Crane has a hand free." + ] + }, + { + "name": "Slow Descent (3/Day)", + "entries": [ + "When Steel Crane falls, he can slow his descent, taking no damage from the fall." + ] + } + ], + "attachedItems": [ + "whip|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Storm Giant Skeleton", + "source": "CM", + "page": 208, + "size": [ + "H" + ], + "type": "undead", + "ac": [ + { + "ac": 13, + "from": [ + "armor scraps" + ] + } + ], + "hp": { + "average": 204, + "formula": "24d12 + 48" + }, + "speed": { + "walk": 50 + }, + "str": 29, + "dex": 14, + "con": 15, + "int": 3, + "wis": 8, + "cha": 1, + "save": { + "str": "+14", + "con": "+7" + }, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold" + ], + "immune": [ + "lightning", + "poison", + "thunder" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "cr": "16", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two attacks with its greatsword or hurls two rocks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}30 ({@damage 6d6 + 9}) slashing damage plus 18 ({@damage 4d8}) necrotic damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 14} to hit, reach 60/240 ft., one target. {@h}35 ({@damage 4d12 + 9}) bludgeoning damage." + ] + }, + { + "name": "Lightning Strike {@recharge 5}", + "entries": [ + "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a {@dc 15} Dexterity saving throw, taking 54 ({@damage 12d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "L", + "N", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Swarm of Animated Books", + "source": "CM", + "page": 19, + "size": [ + "M" + ], + "type": { + "type": "construct", + "swarmSize": "T" + }, + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 13, + "con": 12, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "1/4", + "trait": [ + { + "name": "False Objects", + "entries": [ + "If the swarm is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the swarm move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the swarm is animate." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a 1-foot-tall, 8-inch-wide, 2-inch-thick object. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Book Club", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage, or 3 ({@damage 1d4 + 1}) bludgeoning damage if the swarm has half its hit points or fewer." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Valin Sarnaster", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 182, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 11, + "wis": 18, + "cha": 16, + "save": { + "con": "+8", + "int": "+5", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "history": "+5", + "religion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "The languages it knew in life" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Valin Sarnaster is a 10th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). Valin has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell harm}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "Valin has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "While her heart remains in Alessia's body, Valin re-forms inside her sarcophagus, regaining all her hit points and becoming active again." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Valin can use her Dreadful Glare and makes one attack with her rotting fist." + ] + }, + { + "name": "Rotting Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ] + }, + { + "name": "Dreadful Glare", + "entries": [ + "Valin targets one creature she can see within 60 feet of her. If the target can see Valin, it must succeed on a {@dc 16} Wisdom saving throw against this magic or become {@condition frightened} until the end of Valin's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Valin makes one attack with her rotting fist or uses her Dreadful Glare." + ] + }, + { + "name": "Blinding Dust", + "entries": [ + "Blinding dust and sand swirls magically around Valin. Each creature within 5 feet of Valin must succeed on a {@dc 16} Constitution saving throw or be {@condition blinded} until the end of her next turn." + ] + }, + { + "name": "Blasphemous Word (Costs 2 Actions)", + "entries": [ + "Valin utters a blasphemous word. Each non-undead creature within 10 feet of Valin that can hear the magical utterance must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the end of Valin's next turn." + ] + }, + { + "name": "Channel Negative Energy (Costs 2 Actions)", + "entries": [ + "Valin magically unleashes negative energy. Creatures within 60 feet of Valin, including ones behind barriers and around corners, can't regain hit points until the end of Valin's next turn." + ] + }, + { + "name": "Whirlwind of Sand (Costs 2 Actions)", + "entries": [ + "Valin magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to her normal form. While in whirlwind form, Valin is immune to all damage, and it can't be {@condition grappled}, {@condition petrified}, knocked {@condition prone}, {@condition restrained}, or {@condition stunned}. Equipment worn or carried by Valin remain in her possession." + ] + } + ], + "legendaryGroup": { + "name": "Valin Sarnaster", + "source": "CM" + }, + "traitTags": [ + "Magic Resistance", + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "AOE", + "CUR", + "MW" + ], + "conditionInflict": [ + "blinded", + "frightened", + "paralyzed", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "paralyzed", + "poisoned", + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Varnyr", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 63, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 11, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "persuasion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Elvish" + ], + "cr": "1/8", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Varnyr has advantage on saving throws against being {@condition charmed}, and magic can't put Varnyr to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Varnyr makes two attacks." + ] + }, + { + "name": "Cane", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Varnyr adds 2 to their AC against one melee attack that would hit it. To do so, Varnyr must see the attacker and be wielding a melee weapon." + ] + } + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Wood Elf Wizard", + "source": "CM", + "page": 187, + "_copy": { + "name": "Drow Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "\\bdrow\\b", + "with": "wood elf" + }, + "trait": { + "mode": "removeArr", + "names": "Sunlight Sensitivity" + } + } + }, + "traitTags": [ + "Fey Ancestry" + ], + "hasToken": true + }, + { + "name": "Zikran", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 145, + "_copy": { + "name": "Archmage", + "source": "MM", + "_templates": [ + { + "name": "Water Genasi", + "source": "EEPC" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Zikran", + "flags": "i" + }, + "_": { + "mode": "addSpells", + "spells": { + "5": { + "spells": [ + "{@spell conjure elemental}" + ] + } + } + } + } + }, + "hp": { + "average": 144, + "formula": "18d8 + 18" + }, + "languages": [ + "Aquan", + "Common", + "Primordial", + "Sahuagin", + "Undercommon" + ], + "traitTags": [ + "Amphibious", + "Magic Resistance" + ], + "languageTags": [ + "AQ", + "C", + "OTH", + "P", + "U" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zikzokrishka", + "isNpc": true, + "isNamedCreature": true, + "source": "CM", + "page": 209, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 80 + }, + "str": 25, + "dex": 10, + "con": 23, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "dex": "+6", + "con": "+12", + "wis": "+8", + "cha": "+10" + }, + "skill": { + "perception": "+14", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 24, + "resist": [ + "necrotic" + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "17", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Zikzokrishka fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Zikzokrishka has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zikzokrishka can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Zikzokrishka's choice that is within 120 feet of the Zikzokrishka and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the Zikzokrishka's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "Zikzokrishka exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 20} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "Zikzokrishka makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "Zikzokrishka makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "Zikzokrishka beats its tattered wings. Each creature within 10 feet of Zikzokrishka must succeed on a {@dc 21} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. After beating its wings this way, Zikzokrishka can fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Zikzokrishka", + "source": "CM" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "L" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amber Golem", + "source": "CoS", + "page": 186, + "_copy": { + "name": "Stone Golem", + "source": "MM" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Anastrasya Karelova", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 93, + "_copy": { + "name": "Vampire Spawn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Anastrasya", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Animated Halberd", + "source": "CoS", + "page": 59, + "_copy": { + "name": "Flying Sword", + "source": "MM" + }, + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "action": [ + { + "name": "Halberd", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d10 + 1}) slashing damage." + ] + } + ], + "attachedItems": [ + "halberd|phb" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Arabelle", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 38, + "_copy": { + "name": "Commoner", + "source": "MM", + "_mod": { + "action": "remove" + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hp": { + "average": 2, + "formula": "1d8" + }, + "miscTags": [], + "hasToken": true + }, + { + "name": "Armored Saber-Toothed Tiger", + "source": "CoS", + "page": 115, + "_copy": { + "name": "Saber-Toothed Tiger", + "source": "MM" + }, + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 84, + "formula": "7d10 + 14" + }, + "cr": "3", + "hasToken": true + }, + { + "name": "Arrigal", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 121, + "_copy": { + "name": "Vistana Assassin", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Arrigal", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Baba Lysaga", + "group": [ + "Hags" + ], + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 228, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 16, + "int": 20, + "wis": 17, + "cha": 13, + "save": { + "wis": "+7" + }, + "skill": { + "arcana": "+13", + "religion": "+13" + }, + "passive": 13, + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Giant" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Baba Lysaga is a 16th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). Baba Lysaga has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell sleep}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell enlarge/reduce}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fireball}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell Evard's black tentacles}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell geas}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell programmed illusion}", + "{@spell true seeing}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell mirage arcane}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell power word stun}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "Baba Lysaga can use an action to polymorph into a {@creature swarm of insects} (flies), or back into her true form. While in swarm form, she has a walking speed of 5 feet and a flying speed of 30 feet. Anything she is wearing transforms with her, but nothing she is carrying does." + ] + }, + { + "name": "Blessing of Mother Night", + "entries": [ + "Baba Lysaga is shielded against divination magic, as though protected by a {@spell nondetection} spell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Baba Lysaga makes three attacks with her quarterstaff." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if wielded with two hands." + ] + }, + { + "name": "Summon Swarms of Insects (Recharges after a Short or Long Rest)", + "entries": [ + "Baba Lysaga summons {@dice 1d4} swarms of insects. A summoned swarm appears in an unoccupied space within 60 feet of Baba Lysaga and acts as her ally. It remains until it dies or until Baba Lysaga dismisses it as an action." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Shapechanger" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "D", + "DR", + "GI" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "B", + "F", + "I", + "L", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Baba Lysaga's Creeping Hut", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 226, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 263, + "formula": "17d20 + 85" + }, + "speed": { + "walk": 30 + }, + "str": 26, + "dex": 7, + "con": 20, + "int": 1, + "wis": 3, + "cha": 3, + "save": { + "con": "+9", + "wis": "+0", + "cha": "+0" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "prone" + ], + "cr": "11", + "trait": [ + { + "name": "Constructed Nature", + "entries": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ] + }, + { + "name": "Antimagic Susceptibility", + "entries": [ + "The hut is {@condition incapacitated} while the magic gem that animates it is in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the hut must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The hut deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hut makes three attacks with its roots. It can replace one of these attacks with a rock attack." + ] + }, + { + "name": "Root", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 60 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 120 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility", + "Siege Monster" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Baron Vargas Vallakovich", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 105, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Vargas", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Barovian Commoner", + "source": "CoS", + "page": 29, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "action": [ + { + "name": "Pitchfork", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Barovian Scout", + "source": "CoS", + "page": 29, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Longbow", + "items": { + "name": "Light Crossbows", + "entries": [ + "{@atk rw} {@hit 4} to hit, ranged 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + } + } + }, + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true + }, + { + "name": "Barovian Witch", + "source": "CoS", + "page": 229, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 11, + "con": 13, + "int": 14, + "wis": 11, + "cha": 12, + "skill": { + "arcana": "+4", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The witch is a 3rd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The witch has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell ray of sickness}", + "{@spell sleep}", + "{@spell Tasha's hideous laughter}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell alter self}", + "{@spell invisibility}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Claws (Requires Alter Self)", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage. This attack is magical." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "C", + "I", + "P", + "S" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Beucephalus", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 93, + "_copy": { + "name": "Nightmare", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the nightmare", + "with": "Beucephalus", + "flags": "i" + } + } + }, + "hp": { + "average": 104, + "formula": "8d10 + 24" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bluto Krogarov", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 38, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true + }, + { + "name": "Bray Martikov", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 98, + "_copy": { + "name": "Young Wereraven", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wereraven", + "with": "Bray", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Brom Martikov", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 98, + "_copy": { + "name": "Young Wereraven", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wereraven", + "with": "Brom", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Broom of Animated Attack", + "source": "CoS", + "page": 226, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 17, + "con": 10, + "int": 1, + "wis": 5, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 7, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "cr": "1/4", + "trait": [ + { + "name": "Constructed Nature", + "entries": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ] + }, + { + "name": "Antimagic Susceptibility", + "entries": [ + "The broom is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the broom must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the broom remains motionless and isn't flying, it is indistinguishable from a normal broom." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The broom makes two melee attacks." + ] + }, + { + "name": "Broomstick", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Animated Attack", + "entries": [ + "If the broom is motionless and a creature grabs hold of it, the broom makes a Dexterity check contested by the creature's Strength check. If the broom wins the contest, it flies out of the creature's grasp and makes a melee attack against it with advantage on the attack roll." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Clovin Belview", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 147, + "_copy": { + "name": "Mongrelfolk", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mongrelfolk", + "with": "Clovin", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Extraordinary Feature", + "items": { + "name": "Two-Headed", + "entries": [ + "The mongrelfolk has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + } + } + } + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Cyrus Belview", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 77, + "_copy": { + "name": "Mongrelfolk", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mongrelfolk", + "with": "Cyrus", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Extraordinary Feature", + "items": { + "name": "Keen Hearing and Smell", + "entries": [ + "The mongrelfolk has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + } + } + }, + "traitTags": [ + "Keen Senses" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Danika Dorakova", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 98, + "_copy": { + "name": "Wereraven", + "source": "VRGR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wereraven", + "with": "Danika", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Davian Martikov", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 173, + "_copy": { + "name": "Wereraven", + "source": "VRGR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wereraven", + "with": "Davian", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Distended Corpse", + "source": "CoS", + "page": 165, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "speed": { + "walk": 20 + }, + "conditionImmune": [ + "charmed", + "frightened" + ], + "trait": [ + { + "name": "Snake-Swollen", + "entries": [ + "When a corpse is reduced to 0 hit points, it splits open, disgorging a {@creature swarm of poisonous snakes}. The snakes are hungry and fight until slain." + ] + } + ], + "hasToken": true + }, + { + "name": "Donavich", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 46, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Donavich", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Doru", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 47, + "_copy": { + "name": "Vampire Spawn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Doru", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Emil Toranescu", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 81, + "_copy": { + "name": "Werewolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the werewolf", + "with": "Emil", + "flags": "i" + } + } + }, + "hp": { + "average": 72, + "formula": "9d8 + 18" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Escher", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 70, + "_copy": { + "name": "Vampire Spawn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Escher", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Exethanter", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 189, + "_copy": { + "name": "Lich", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the lich", + "with": "Exethanter", + "flags": "i" + } + } + }, + "hp": { + "average": 99, + "formula": "18d8 + 54" + }, + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). The lich has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + } + }, + "ability": "int" + } + ], + "damageTagsLegendary": [], + "damageTagsSpell": [ + "C" + ], + "hasToken": true + }, + { + "name": "Ezmerelda d'Avenir", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 231, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item +1 studded leather armor}" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 19, + "con": 16, + "int": 16, + "wis": 11, + "cha": 17, + "save": { + "wis": "+3" + }, + "skill": { + "acrobatics": "+7", + "arcana": "+6", + "deception": "+9", + "insight": "+3", + "medicine": "+3", + "perception": "+6", + "performance": "+6", + "sleight of hand": "+7", + "stealth": "+7", + "survival": "+6" + }, + "passive": 16, + "languages": [ + "Common", + "Elvish" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ezmerelda is a 7th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Ezmerelda has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell protection from evil and good}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell knock}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell lightning bolt}", + "{@spell magic circle}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell greater invisibility}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "In addition to her magic armor and weapons, Ezmerelda has two {@item potion of greater healing||potions of greater healing}, six {@item holy water (flask)|phb|vials of holy water}, and three wooden stakes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ezmerelda makes three attacks: two with her +1 rapier and one with her +1 handaxe or her silvered shortsword." + ] + }, + { + "name": "Rapier +1", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + }, + { + "name": "Handaxe +1", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Silvered Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Curse (Recharges after a Long Rest)", + "entries": [ + "Ezmerelda targets one creature that she can see within 30 feet of her. The target must succeed on a {@dc 14} Wisdom saving throw or be cursed. While cursed, the target has vulnerability to one type of damage of Ezmerelda's choice. The curse lasts until ended with a {@spell greater restoration} spell, a {@spell remove curse} spell, or similar magic. When the curse ends, Ezmerelda takes {@damage 3d6} psychic damage." + ] + }, + { + "name": "Evil Eye (Recharges after a Short or Long Rest)", + "entries": [ + "Ezmerelda targets one creature that she can see within 10 feet of her and casts one of the following spells on the target (save {@dc 14}), requiring neither somatic nor material components to do so: animal friendship, charm person, or hold person. If the target succeeds on the initial saving throw, Ezmerelda is {@condition blinded} until the end of her next turn. Once a target succeeds on a saving throw against this effect, it is immune to the Evil Eye power of all Vistani for 24 hours." + ] + } + ], + "attachedItems": [ + "+1 handaxe|dmg", + "+1 rapier|dmg", + "silvered shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "F", + "L", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gadof Blinsky", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 118, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gertruda", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 68, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Guardian Portrait", + "source": "CoS", + "page": 227, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 5, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 0 + }, + "str": 1, + "dex": 1, + "con": 10, + "int": 14, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "plus up to two other languages" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The portrait's innate spellcasting ability is Intelligence (spell save {@dc 12}). The portrait can innately cast the following spells, requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell counterspell}", + "{@spell crown of madness}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Constructed Nature", + "entries": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ] + }, + { + "name": "Antimagic Susceptibility", + "entries": [ + "The portrait is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the portrait must succeed on a Constitution saving throw against the caster's spell save DC or become {@condition unconscious} for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the figure in the portrait remains motionless, the portrait is indistinguishable from a normal painting." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "X" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Helga Ruvak", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 64, + "_copy": { + "name": "Vampire Spawn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Helga", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Henrik van der Voort", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 116, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ireena Kolyana", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 44, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Ireena", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hp": { + "average": 14, + "formula": "2d8" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ismark Kolyanovich", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 43, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Ismark", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Izek Strazni", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 10, + "wis": 9, + "cha": 15, + "skill": { + "intimidation": "+8", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when Izek hits with it (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Izek makes two attacks with his battleaxe." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) when used with two hands." + ] + }, + { + "name": "Hurl Flame", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) fire damage. If the target is a flammable object that isn't being worn or carried, it catches fire." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "traitTags": [ + "Brute" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "F", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kasimir Velikov", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 233, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Kasimir", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Fey Ancestry", + "entries": [ + "Kasimir has advantage on saving throws against being {@condition charmed}, and magic can't put the him to sleep." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Kasimir wears a {@item ring of warmth} and carries a spellbook containing all the spells he has prepared plus the following spells: {@spell arcane lock}, {@spell comprehend languages}, {@spell hold person}, {@spell identify}, {@spell locate object}, {@spell nondetection}, {@spell polymorph}, {@spell protection from evil and good}, and {@spell wall of stone}." + ] + } + ] + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "elf", + "prefix": "Dusk" + } + ] + }, + "alignment": [ + "N" + ], + "senses": [ + "darkvision 60 ft." + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kasimir is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Kasimir has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kiril Stoyanovich", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 203, + "_copy": { + "name": "Werewolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the werewolf", + "with": "Kiril", + "flags": "i" + } + } + }, + "hp": { + "average": 90, + "formula": "9d8 + 18" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Knight of the Order", + "source": "CoS", + "page": 139, + "_copy": { + "name": "Revenant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "revenant", + "with": "knight" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The knight makes two longsword attacks or two fist attacks." + ] + } + }, + { + "mode": "insertArr", + "index": 1, + "items": { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage. If the target is a creature against which the knight has sworn vengeance, the target takes an extra 14 ({@damage 4d6}) slashing damage." + ] + } + } + ] + } + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "broken chainmail" + ] + } + ], + "damageTags": [ + "B", + "S" + ], + "hasToken": true + }, + { + "name": "Lady Fiona Wachter", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 110, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Fiona", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 10 + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Fiona is a 5th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Fiona has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell purify food and drink}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell gentle repose}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell animate dead}", + "{@spell create food and water}" + ] + } + }, + "ability": "wis" + } + ], + "damageTagsSpell": [], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Lady Lydia Petrovna", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 105, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Lief Lipsiege", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 62, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true + }, + { + "name": "Ludmilla Vilisevic", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 93, + "_copy": { + "name": "Vampire Spawn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Ludmilla", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Luvash", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 121, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Luvash", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Mad Mary", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 44, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Madam Eva", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 233, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 10 + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 20 + }, + "str": 8, + "dex": 11, + "con": 12, + "int": 17, + "wis": 20, + "cha": 18, + "save": { + "con": "+5" + }, + "skill": { + "arcana": "+7", + "deception": "+8", + "insight": "+13", + "intimidation": "+8", + "perception": "+9", + "religion": "+7" + }, + "passive": 19, + "languages": [ + "Abyssal", + "Common", + "Elvish", + "Infernal" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Madam Eva is a 16th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). Madam Eva has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell protection from poison}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell create food and water}", + "{@spell speak with dead}", + "{@spell spirit guardians}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell freedom of movement}", + "{@spell guardian of faith}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell greater restoration}", + "{@spell raise dead}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell find the path}", + "{@spell harm}", + "{@spell true seeing}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell fire storm}", + "{@spell regenerate}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell earthquake}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + }, + { + "name": "Curse (Recharges after a Long Rest)", + "entries": [ + "Madam Eva targets one creature that she can see within 30 feet of her. The target must succeed on a {@dc 17} Wisdom saving throw or be cursed. While cursed, the target is {@condition blinded} and {@condition deafened}. The curse lasts until ended with a {@spell greater restoration} spell, a {@spell remove curse} spell, or similar magic. When the curse ends, Madam Eva takes {@damage 5d6} psychic damage." + ] + }, + { + "name": "Evil Eye (Recharges after a Short or Long Rest)", + "entries": [ + "Madam Eva targets one creature that she can see within 10 feet of her and casts one of the following spells on the target (save {@dc 17}), requiring neither somatic nor material components to do so: {@spell animal friendship}, {@spell charm person}, or {@spell hold person}. If the target succeeds on the initial saving throw, Madam Eva is {@condition blinded} until the end of her next turn. Once a target succeeds on a saving throw against this effect, it is immune to the Evil Eye power of all Vistani for 24 hours." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "AB", + "C", + "E", + "I" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "F", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "conditionInflict": [ + "blinded", + "deafened" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Majesto", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 115, + "_copy": { + "name": "Imp", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the imp", + "with": "Majesto", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Marzena Belview", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 150, + "_copy": { + "name": "Mongrelfolk", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mongrelfolk", + "with": "Marzena", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Extraordinary Feature", + "items": { + "name": "Flight", + "entries": [ + "The mongrelfolk has leathery wings and a flying speed of 40 feet." + ] + } + } + } + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "hasToken": true + }, + { + "name": "Milivoj", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 97, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "str": 15, + "action": [ + { + "name": "Shovel", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Mishka Belview", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 150, + "_copy": { + "name": "Mongrelfolk", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mongrelfolk", + "with": "Mishka", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Extraordinary Feature", + "items": { + "name": "Spider Climb", + "entries": [ + "The mongrelfolk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + } + } + }, + "alignment": [ + "C", + "E" + ], + "traitTags": [ + "Spider Climb" + ], + "hasToken": true + }, + { + "name": "Mongrelfolk", + "source": "CoS", + "page": 234, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "mongrelfolk" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 20 + }, + "str": 12, + "dex": 9, + "con": 15, + "int": 9, + "wis": 10, + "cha": 6, + "skill": { + "deception": "+2", + "perception": "+2", + "stealth": "+3" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1/4", + "trait": [ + { + "name": "Extraordinary Feature", + "entries": [ + "The mongrelfolk has one of the following extraordinary features, determined randomly by rolling a {@dice d20} or chosen by the DM:", + "1\u20133: Amphibious. The mongrelfolk can breathe air and water.", + "4\u20139: Darkvision. The mongrelfolk has darkvision out to a range of 60 feet.", + "10: Flight. The mongrelfolk has leathery wings and a flying speed of 40 feet.", + "11\u201315: Keen Hearing and Smell. The mongrelfolk has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell.", + "16\u201317: Spider Climb. The mongrelfolk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.", + "18\u201319: Standing Leap. The mongrelfolk's long jump is up to 20 feet and its high jump up to 10 feet, with or without a running start.", + "20: Two-Headed. The mongrelfolk has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + }, + { + "name": "Mimicry", + "entries": [ + "The mongrelfolk can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mongrelfolk makes two attacks: one with its bite and one with its claw or dagger." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Mimicry" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Morgantha", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 48, + "_copy": { + "name": "Night Hag", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the hag", + "with": "Morgantha", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Nikolai Wachter", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 110, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Nikolai", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true + }, + { + "name": "Otto Belview", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 147, + "_copy": { + "name": "Mongrelfolk", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mongrelfolk", + "with": "Otto", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Extraordinary Feature", + "items": { + "name": "Standing Leap", + "entries": [ + "The mongrelfolk's long jump is up to 20 feet and its high jump up to 10 feet, with or without a running start." + ] + } + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Parriwimple", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 43, + "_copy": { + "name": "Gladiator", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gladiator", + "with": "Parriwimple", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "int": 6, + "hasToken": true + }, + { + "name": "Patrina Velikovna", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 89, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Patrina", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "elf", + "prefix": "Dusk" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Phantom Warrior", + "source": "CoS", + "page": 235, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 16 + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 8, + "wis": 10, + "cha": 15, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "any languages it knew in life" + ], + "cr": "3", + "trait": [ + { + "name": "Ethereal Sight", + "entries": [ + "The phantom warrior can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The phantom warrior can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Spectral Armor and Shield", + "entries": [ + "The phantom warrior's AC accounts for its spectral armor and shield." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The phantom warrior makes two attacks with its spectral longsword." + ] + }, + { + "name": "Spectral Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) force damage." + ] + }, + { + "name": "Etherealness", + "entries": [ + "The phantom warrior enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Phantom Warrior (Archer)", + "source": "CoS", + "page": 142, + "_copy": { + "name": "Phantom Warrior", + "source": "CoS", + "_mod": { + "action": [ + { + "mode": "appendArr", + "items": [ + { + "name": "Spectral Longbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) force damage." + ] + } + ] + }, + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The phantom warrior makes two attacks with its spectral longsword or spectral longbow." + ] + } + } + ] + } + }, + "hasToken": true + }, + { + "name": "Piccolo", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 118, + "_copy": { + "name": "Baboon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the baboon", + "with": "Piccolo", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Pidlwick II", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 236, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 11, + "int": 8, + "wis": 13, + "cha": 10, + "skill": { + "performance": "+2" + }, + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Common but doesn't speak and can't read or write" + ], + "cr": "1/4", + "trait": [ + { + "name": "Ambusher", + "entries": [ + "During the first round of combat, Pidlwick II has advantage on attack rolls against any creature that hasn't had a turn yet." + ] + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "club|phb", + "dart|phb" + ], + "traitTags": [ + "Ambusher" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rahadin", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 237, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 35 + }, + "str": 14, + "dex": 22, + "con": 17, + "int": 15, + "wis": 16, + "cha": 18, + "save": { + "con": "+7", + "wis": "+7" + }, + "skill": { + "deception": "+8", + "insight": "+7", + "intimidation": "+12", + "perception": "+11", + "stealth": "+14" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 21, + "languages": [ + "Common", + "Elvish" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Rahadin's innate spellcasting ability is Intelligence. He can innately cast the following spells, requiring no components:" + ], + "daily": { + "1": [ + "{@spell magic weapon}", + "{@spell nondetection}" + ], + "3": [ + "{@spell misty step}", + "{@spell phantom steed}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Deathly Choir", + "entries": [ + "Any creature within 10 feet of Rahadin that isn't protected by a {@spell mind blank} spell hears in its mind the screams of the thousands of people Rahadin has killed. As a bonus action, Rahadin can force all creatures that can hear the screams to make a {@dc 16} Wisdom saving throw. Each creature takes 16 ({@damage 3d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Rahadin has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "Mask of the Wild", + "entries": [ + "Rahadin can attempt to hide even when he is only lightly obscured by foliage, heavy rain, falling snow, mist, and other natural phenomena." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Rahadin attacks three times with his scimitar, or twice with his {@condition poisoned} darts." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) slashing damage." + ] + }, + { + "name": "Poisoned Dart", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "I", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rictavio", + "alias": [ + "Rudolph van Richten" + ], + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 238, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 77, + "formula": "14d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 12, + "con": 13, + "int": 16, + "wis": 18, + "cha": 16, + "save": { + "con": "+4", + "wis": "+7" + }, + "skill": { + "arcana": "+9", + "insight": "+7", + "medicine": "+7", + "perception": "+7", + "religion": "+6", + "sleight of hand": "+4" + }, + "passive": 17, + "languages": [ + "Abyssal", + "Common", + "Elvish", + "Infernal" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Rictavio is a 9th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Rictavio has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell lesser restoration}", + "{@spell protection from poison}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell magic circle}", + "{@spell remove curse}", + "{@spell speak with dead}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell death ward}", + "{@spell freedom of movement}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell dispel evil and good}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "In addition to his sword cane, Rictavio wears a {@item hat of disguise} and a {@item ring of mind shielding}, and he carries a {@item spell scroll (5th level)||spell scroll} of {@spell raise dead}." + ] + }, + { + "name": "Undead Slayer", + "entries": [ + "When Rictavio hits an undead with a weapon attack, the undead takes an extra 10 ({@damage 3d6}) damage of the weapon's type." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Rictavio makes two attacks with his sword cane." + ] + }, + { + "name": "Sword Cane", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage (wooden cane) or piercing damage (silvered sword)." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "E", + "I" + ], + "damageTags": [ + "B" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rosavalda \"Rose\" Durst", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 217, + "_copy": { + "name": "Ghost", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ghost", + "with": "Rose", + "flags": "i" + }, + "action": { + "mode": "removeArr", + "names": "Horrifying Visage" + } + } + }, + "size": [ + "S" + ], + "alignment": [ + "L", + "G" + ], + "hp": { + "average": 35, + "formula": "10d6" + }, + "languages": [ + "Common" + ], + "cr": "3", + "languageTags": [ + "C" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sangzor", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 160, + "_copy": { + "name": "Giant Goat", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the goat", + "with": "Sangzor", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "hp": { + "average": 33, + "formula": "3d10 + 3" + }, + "int": 6, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "cr": "1", + "hasToken": true + }, + { + "name": "Savid", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 133, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Savid", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "elf", + "prefix": "Dusk" + } + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Sir Godfrey Gwilym", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 139, + "_copy": { + "name": "Knight of the Order", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the revenant", + "with": "Sir Godfrey", + "flags": "i" + } + } + }, + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sir Godfrey is a 16th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He has the following paladin spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell divine favor}", + "{@spell thunderous smite}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell branding smite}", + "{@spell magic weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell blinding smite}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell staggering smite}" + ] + } + }, + "ability": "wis" + } + ], + "damageTagsSpell": [ + "R", + "T", + "Y" + ], + "spellcastingTags": [ + "CP" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Snow Maiden", + "source": "CoS", + "page": 159, + "_copy": { + "name": "Specter", + "source": "MM", + "_mod": { + "resist": { + "mode": "removeArr", + "items": "cold" + }, + "action": { + "mode": "replaceArr", + "replace": "Life Drain", + "items": { + "name": "Life Drain", + "entries": [ + "{@atk ms} {@hit 4} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 10} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + } + } + } + }, + "alignment": [ + "N" + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "damageTags": [ + "C", + "O" + ], + "hasToken": true + }, + { + "name": "Stanimir", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 20, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Stanimir", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The mage has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell mage armor}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell phantom steed}", + "{@spell vampiric touch}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell dominate person}" + ] + } + }, + "ability": "int" + } + ], + "damageTagsSpell": [ + "N" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Stella Wachter", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 113, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true + }, + { + "name": "Strahd von Zarovich", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 240, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 20, + "wis": 15, + "cha": 18, + "save": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "arcana": "+15", + "perception": "+12", + "religion": "+10", + "stealth": "+14" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 22, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Elvish", + "Giant", + "Infernal" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Strahd is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell fog cloud}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell gust of wind}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell fireball}", + "{@spell nondetection}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell greater invisibility}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell animate objects}", + "{@spell scrying}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "If Strahd isn't in running water or sunlight, he can use his action to polymorph into a Tiny bat, a Medium wolf, or a Medium cloud of mist, or back into his true form.", + "While in bat or wolf form, Strahd can't speak. In bat form, his walking speed is 5 feet, and he has a flying speed of 30 feet. In wolf form, his walking speed is 40 feet. His statistics, other than his size and speed, are unchanged. Anything he is wearing transforms with him, but nothing he is carrying does. He reverts to his true form if he dies.", + "While in mist form, Strahd can't take any actions, speak, or manipulate objects. He is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and he can't pass through water. He has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage, except the damage he takes from sunlight." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Strahd fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Misty Escape", + "entries": [ + "When Strahd drops to 0 hit points outside his coffin, he transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that he isn't in running water or sunlight. If he can't transform, he is destroyed.", + "While he has 0 hit points in mist form, he can't revert to his vampire form, and he must reach his coffin within 2 hours or be destroyed. Once in his coffin, he reverts to his vampire form. He is then {@condition paralyzed} until he regains at least 1 hit point. After 1 hour in his coffin with 0 hit points, he regains 1 hit point." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Strahd regains 20 hit points at the start of his turn if he has at least 1 hit point and isn't in running water or sunlight. If he takes radiant damage or damage from holy water, this trait doesn't function at the start of his next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Strahd can climb difficult surfaces, including upside down on ceilings, without having to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "Strahd has the following flaws:", + "{@i Forbiddance.} He can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} He takes 20 acid damage if he ends his turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into his heart while he is {@condition incapacitated} in his coffin, he is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} While in sunlight, Strahd takes 20 radiant damage at the start of his turn, and he has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack (Vampire Form Only)", + "entries": [ + "Strahd makes two attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Unarmed Strike (Vampire or Wolf Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, plus 14 ({@damage 4d6}) necrotic damage. If the target is a creature, Strahd can grapple it (escape {@dc 18}) instead of dealing the slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by Strahd, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Strahd regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under Strahd's control." + ] + }, + { + "name": "Charm", + "entries": [ + "Strahd targets one humanoid he can see within 30 feet of him. If the target can see Strahd, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed}. The {@condition charmed} target regards Strahd as a trusted friend to be heeded and protected. The target isn't under Strahd's control, but it takes Strahd's requests and actions in the most favorable way and lets Strahd bite it.", + "Each time Strahd or his companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Strahd is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ] + }, + { + "name": "Children of the Night (1/Day)", + "entries": [ + "Strahd magically calls {@dice 2d4} {@creature swarm of bats||swarms of bats} or {@creature swarm of rats||swarms of rats}, provided that the sun isn't up. While outdoors, Strahd can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of Strahd and obeying his spoken commands. The beasts remain for 1 hour, until Strahd dies, or until he dismisses them as a bonus action." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "Strahd moves up to his speed without provoking opportunity attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "Strahd makes one unarmed strike." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "Strahd makes one bite attack." + ] + } + ], + "legendaryGroup": { + "name": "Strahd von Zarovich", + "source": "CoS" + }, + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Shapechanger", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR", + "E", + "GI", + "I" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "N", + "P", + "S" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Strahd Zombie", + "source": "CoS", + "page": 241, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 20 + }, + "str": 13, + "dex": 6, + "con": 16, + "int": 3, + "wis": 6, + "cha": 5, + "save": { + "wis": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Loathsome Limbs", + "entries": [ + "Whenever the zombie takes at least 5 bludgeoning or slashing damage at one time, roll a {@dice d20} to determine what else happens to it:", + "1\u20138: One leg is severed from the zombie if it has any legs left.", + "9\u201316: One arm is severed from the zombie if it has any arms left.", + "17\u201320: The zombie is decapitated.", + "If the zombie is reduced to 0 hit points, all parts of it die. Until then, a severed part acts on the zombie's initiative and has its own action and movement. A severed part has AC 8. Any damage it takes is subtracted from the zombie's hit points.", + "A severed leg is unable to attack and has a speed of 5 feet.", + "A severed arm has a speed of 5 feet and can make one claw attack on its turn, with disadvantage on the attack roll. Each time the zombie loses an arm, it loses a claw attack.", + "If its head is severed, the zombie loses its bite attack and its body is {@condition blinded} unless the head can see it. The severed head has a speed of 0 feet. It can make a bite attack, but only against a target in its space.", + "The zombie's speed is halved if it's missing a leg. If it loses both legs, it falls {@condition prone}. If it has both arms, it can crawl. With only one arm, it can still crawl, but its speed is halved. With no arms or legs, its speed is 0 feet, and it can't benefit from bonuses to speed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zombie makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Strahd's Animated Armor", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 227, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 13, + "con": 16, + "int": 9, + "wis": 10, + "cha": 9, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 13, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Constructed Nature", + "entries": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ] + }, + { + "name": "Antimagic Susceptibility", + "entries": [ + "The armor is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the armor remains motionless, it is indistinguishable from a normal suit of armor." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The armor makes two melee attacks or uses Shocking Bolt twice." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) lightning damage." + ] + }, + { + "name": "Shocking Bolt", + "entries": [ + "{@atk rs} {@hit 4} to hit (with advantage on the attack roll if the target is wearing armor made of metal), range 60 ft., one target. {@h}10 ({@damage 3d6}) lightning damage." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "L", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Szoldar Szoldarovich", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 100, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Szoldar", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "The Abbot", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 151, + "_copy": { + "name": "Deva", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the deva", + "with": "The Abbot", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true + }, + { + "name": "The Mad Mage of Mount Baratok", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 39, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "The Mad Mage", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mad mage is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He can cast {@spell disguise self} and {@spell invisibility} at will and has the following wizard spells prepared:" + ], + "will": [ + "{@spell disguise self}", + "{@spell invisibility}" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell misty step}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell Mordenkainen's faithful hound}", + "{@spell polymorph}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell cone of cold}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell Mordenkainen's magnificent mansion}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell mind blank}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell time stop}" + ] + } + }, + "ability": "int", + "hidden": [ + "will" + ] + } + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "L", + "O", + "P" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Thornboldt \"Thorn\" Durst", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 217, + "_copy": { + "name": "Ghost", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ghost", + "with": "Thorn", + "flags": "i" + }, + "action": { + "mode": "removeArr", + "names": "Horrifying Visage" + } + } + }, + "size": [ + "S" + ], + "alignment": [ + "L", + "G" + ], + "hp": { + "average": 35, + "formula": "10d6" + }, + "languages": [ + "Common" + ], + "cr": "3", + "languageTags": [ + "C" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Tree Blight", + "source": "CoS", + "page": 230, + "otherSources": [ + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Tree Blight|XMM" + ], + "size": [ + "H" + ], + "type": "plant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 92, + "formula": "8d12 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 23, + "dex": 10, + "con": 20, + "int": 6, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened" + ], + "languages": [ + "understands Common and Druidic but doesn't speak" + ], + "cr": "7", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the blight remains motionless, it is indistinguishable from a dead tree." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The blight deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blight makes one Branch attack and one Grasping Root attack." + ] + }, + { + "name": "Branch", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage." + ] + }, + { + "name": "Grasping Root", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one creature not {@condition grappled} by the blight. {@h}The target is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target takes 9 ({@damage 1d6 + 6}) bludgeoning damage at the start of each of its turns. The root has AC 15 and can be severed by dealing 6 slashing damage or more to it at once. Cutting the root doesn't hurt the blight, but ends the grapple." + ] + } + ], + "bonus": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature {@condition grappled} by the blight. {@h}19 ({@damage 3d8 + 6}) piercing damage." + ] + } + ], + "traitTags": [ + "False Appearance", + "Siege Monster" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Urwin Martikov", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 98, + "_copy": { + "name": "Wereraven", + "source": "VRGR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wereraven", + "with": "Urwin", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Vasilka", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 151, + "_copy": { + "name": "Flesh Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the golem", + "with": "Vasilka", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Victor Vallakovich", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 105, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Victor", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Vilnius", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 185, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Vilnius", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Vistana Assassin", + "source": "CoS", + "page": 28, + "_copy": { + "name": "Assassin", + "source": "MM", + "_templates": [ + { + "name": "Vistana", + "source": "CoS" + } + ] + }, + "hasToken": true + }, + { + "name": "Vistana Bandit", + "source": "CoS", + "page": 28, + "_copy": { + "name": "Bandit", + "source": "MM", + "_templates": [ + { + "name": "Vistana", + "source": "CoS" + } + ] + }, + "hasToken": true + }, + { + "name": "Vistana Bandit Captain", + "source": "CoS", + "page": 28, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_templates": [ + { + "name": "Vistana", + "source": "CoS" + } + ] + }, + "hasToken": true + }, + { + "name": "Vistana Commoner", + "source": "CoS", + "page": 28, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Vistana", + "source": "CoS" + } + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Vistana Guard", + "source": "CoS", + "page": 28, + "_copy": { + "name": "Guard", + "source": "MM", + "_templates": [ + { + "name": "Vistana", + "source": "CoS" + } + ] + }, + "hasToken": true + }, + { + "name": "Vistana Spy", + "source": "CoS", + "page": 28, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Vistana", + "source": "CoS" + } + ] + }, + "hasToken": true + }, + { + "name": "Vistana Thug", + "source": "CoS", + "page": 28, + "_copy": { + "name": "Thug", + "source": "MM", + "_templates": [ + { + "name": "Vistana", + "source": "CoS" + } + ] + }, + "hasToken": true + }, + { + "name": "Vladimir Horngaard", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 241, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 192, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 13, + "wis": 16, + "cha": 18, + "save": { + "str": "+7", + "con": "+7", + "wis": "+6", + "cha": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + "psychic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "stunned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "7", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "Vladimir regains 10 hit points at the start of his turn. If he takes fire or radiant damage, this trait doesn't function at the start of his next turn. Vladimir's body is destroyed only if he starts his turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "When Vladimir's body is destroyed, his soul lingers. After 24 hours, the soul inhabits and animates another corpse on the same plane of existence and regains all its hit points. While the soul is bodiless, a {@spell wish} spell can be used to force the soul to go to the afterlife and not return." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Vladimir wields a {@item +2 greatsword} with a hilt sculpted to resemble silver dragon wings and a pommel shaped like a silver dragon's head clutching a black opal between its teeth. " + ] + }, + { + "name": "Turn Immunity", + "entries": [ + "Vladimir is immune to effects that turn undead." + ] + }, + { + "name": "Vengeful Tracker", + "entries": [ + "Vladimir knows the distance to and direction of Strahd, even if Strahd and Vladimir are on different planes of existence. If Strahd is destroyed, Vladimir knows." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Vladimir makes two fist attacks or two attacks with his +2 Greatsword." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. Strahd, the target of Vladimir's sworn vengeance, takes an extra 14 ({@damage 4d6}) bludgeoning damage. Instead of dealing damage, Vladimir can grapple the target (escape {@dc 14}) provided the target is Large or smaller." + ] + }, + { + "name": "Greatsword +2", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}20 ({@damage 4d6 + 6}) slashing damage. Against Strahd, Vladimir deals an extra 14 ({@damage 4d6}) slashing damage with this weapon." + ] + }, + { + "name": "Vengeful Glare", + "entries": [ + "Vladimir can target Strahd within 30 feet provided he can see Strahd. Strahd must make a {@dc 15} Wisdom saving throw. One a failure, Strahd is {@condition paralyzed} until Vladimir deals damage to him, or until the end of Vladimir's next turn. When the paralysis ends, Strahd is {@condition frightened} of Vladimir for 1 minute. Strahd can repeat the saving throw at the end of each of his turns, with disadvantage if he can see Vladimir, ending the {@condition frightened} condition on itself on a success." + ] + } + ], + "attachedItems": [ + "+2 greatsword|dmg" + ], + "traitTags": [ + "Regeneration", + "Rejuvenation", + "Turn Immunity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Volenta Popofsky", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 93, + "_copy": { + "name": "Vampire Spawn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Volenta", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Walking Corpse", + "source": "CoS", + "page": 165, + "_copy": { + "name": "Commoner", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Violent Death", + "entries": [ + "When a corpse is reduced to 0 hit points, it splits open, disgorging a {@creature swarm of poisonous snakes}. The snakes are hungry and fight until slain." + ] + } + ] + } + } + }, + "speed": { + "walk": 20 + }, + "conditionImmune": [ + "charmed", + "frightened" + ], + "hasToken": true + }, + { + "name": "Yevgeni Krushkin", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 100, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Yevgeni", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Young Wereraven", + "source": "CoS", + "page": 98, + "_copy": { + "name": "Wereraven", + "source": "VRGR" + }, + "size": [ + "S" + ], + "alignment": [ + "L", + "G" + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "hasToken": true + }, + { + "name": "Zuleika Toranescu", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 204, + "_copy": { + "name": "Werewolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the werewolf", + "with": "Zuleika", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zygfrek Belview", + "isNpc": true, + "isNamedCreature": true, + "source": "CoS", + "page": 148, + "_copy": { + "name": "Mongrelfolk", + "source": "CoS", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mongrelfolk", + "with": "Zygfrek", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Extraordinary Feature", + "items": { + "name": "Darkvision", + "entries": [ + "The mongrelfolk has darkvision out to a range of 60 feet." + ] + } + } + } + }, + "senses": [ + "darkvision 60 ft." + ], + "senseTags": [ + "D" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ebondeath", + "isNpc": true, + "isNamedCreature": true, + "source": "DC", + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 15 + ], + "hp": { + "average": 225, + "formula": "10d8" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 7, + "dex": 13, + "con": 10, + "int": 10, + "wis": 12, + "cha": 17, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Any languages it knew in life" + ], + "cr": "4", + "trait": [ + { + "name": "Ethereal Sight", + "entries": [ + "Ebondeath can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "Ebondeath can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Withering Touch", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ] + }, + { + "name": "Etherealness", + "entries": [ + "Ebondeath enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ] + }, + { + "name": "Horrifying Visage", + "entries": [ + "Each non-undead creature within 60 feet of Ebondeath that can see it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this Ebondeath's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a {@spell greater restoration} spell, but only within 24 hours of it occurring." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid that Ebondeath can see within 5 feet of it must succeed on a {@dc 20} Charisma saving throw or be possessed by Ebondeath; Ebondeath then disappears, and the target is {@condition incapacitated} and loses control of its body. Ebondeath now controls the body but doesn't deprive the target of awareness. Ebondeath can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, including gaining access to the target's knowledge, class features, and proficiencies.", + "The possession lasts until the body drops to 0 hit points, Ebondeath ends it as a bonus action, or Ebondeath is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, Ebondeath reappears in an unoccupied space within 5 feet of the body. The target is immune to Ebondeath Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Expert", + "source": "DC", + "level": 11, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "expert", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 17, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 20, + "con": 12, + "int": 14, + "wis": 10, + "cha": 14, + "save": { + "dex": "+9" + }, + "skill": { + "acrobatics": "+13", + "performance": "+6", + "persuasion": "+6", + "sleight of hand": "+9", + "stealth": "+13" + }, + "passive": 10, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Helpful", + "entries": [ + "The expert can take the Help action as a bonus action, and the creature who receives the help gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ] + }, + { + "name": "Evasion", + "entries": [ + "When the expert is not {@condition incapacitated} and subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it failed." + ] + }, + { + "name": "Reliable Talent", + "entries": [ + "Whenever the expert makes an ability check that includes its whole proficiency bonus, it can treat a {@dice d20} roll of 9 or lower as a 10." + ] + }, + { + "name": "Tools", + "entries": [ + "The expert has {@item thieves' tools|phb} and a musical instrument." + ] + } + ], + "action": [ + { + "name": "Extra Attack", + "entries": [ + "The expert can attack twice, instead of once, whenever it takes the attack action on its turn." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 80/320 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "shortbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Spellcaster (Healer)", + "source": "DC", + "level": 11, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "spellcaster", + "tags": [ + "healer" + ], + "sidekickHidden": true + }, + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 54, + "formula": "12d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 15, + "wis": 18, + "cha": 13, + "save": { + "wis": "+8" + }, + "skill": { + "arcana": "+6", + "investigation": "+6", + "religion": "+6" + }, + "passive": 14, + "languages": [ + "Common", + "plus one of your choice" + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell protection from energy}", + "{@spell revivify}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell death ward}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell greater restoration}", + "{@spell mass cure wounds}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell heal}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Empowered Spells", + "entries": [ + "Whenever the spellcaster casts a spell of the evocation school by expending a spell slot, the spellcaster can add its spellcasting ability modifier to the spell's damage roll or healing roll, if any." + ] + }, + { + "name": "Potent Cantrip", + "entries": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Spellcaster (Mage)", + "source": "DC", + "level": 11, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "spellcaster", + "tags": [ + "mage" + ], + "sidekickHidden": true + }, + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 54, + "formula": "12d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 18, + "wis": 14, + "cha": 14, + "save": { + "wis": "+6" + }, + "skill": { + "arcana": "+8", + "investigation": "+8", + "religion": "+8" + }, + "passive": 12, + "languages": [ + "Common", + "plus one of your choice" + ], + "spellcasting": [ + { + "name": "Spellcasting (Mage)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell polymorph}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell hold monster}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Empowered Spells", + "entries": [ + "Whenever the spellcaster casts a spell of the evocation school by expending a spell slot, the spellcaster can add its spellcasting ability modifier to the spell's damage roll or healing roll, if any." + ] + }, + { + "name": "Potent Cantrip", + "entries": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "C", + "F", + "L" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible", + "paralyzed", + "unconscious" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Warrior", + "source": "DC", + "level": 11, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "warrior", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 21, + "from": [ + "{@item plate armor|PHB|plate}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 10, + "wis": 12, + "cha": 10, + "save": { + "con": "+6" + }, + "skill": { + "athletics": "+8", + "perception": "+5", + "survival": "+5" + }, + "passive": 15, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Battle Readiness", + "entries": [ + "The warrior has advantage on initiative rolls." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "The warrior's attack rolls score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Improved Defense", + "entries": [ + "The warrior's AC increases by 1." + ] + }, + { + "name": "Indomitable (1/Day)", + "entries": [ + "The warriorcan reroll a saving throw that it fails, but it must use the new result." + ] + }, + { + "name": "Martial Role", + "entries": [ + "The warrior has one of the following traits of your choice:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Attacker", + "entries": [ + "The warrior gains a +2 bonus to attack rolls." + ] + }, + { + "type": "item", + "name": "Defender", + "entries": [ + "The warrior gains the Protection reaction below." + ] + } + ] + } + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "The warrior can use a bonus action on its turn to regain hit points equal to {@dice 1d10} + its level." + ] + } + ], + "action": [ + { + "name": "Extra Attack", + "entries": [ + "The warrior can attack three times, instead of once, whenever it takes the attack action on its turn." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Protection (Defender Only)", + "entries": [ + "When a creature the warrior can see attacks a target other than the warrior that is within 5 feet of the warrior, the warrior can use their reaction to impose disadvantage on the attack roll. The warrior must be wielding a shield." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Anchorite of Talos", + "source": "DIP", + "page": 51, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "SDW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-orc", + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 9, + "wis": 15, + "cha": 12, + "skill": { + "nature": "+1", + "stealth": "+3", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Orc" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The anchorite's innate spellcasting ability is Wisdom (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "3": [ + "{@spell thunderwave} ({@damage 2d8} damage)" + ], + "1e": [ + "{@spell augury}", + "{@spell bless}", + "{@spell lightning bolt} ({@damage 8d6} damage)", + "{@spell revivify}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The anchorite can use its action to polymorph into a boar or back into its true form, which is humanoid. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "action": [ + { + "name": "Clawed Gauntlet (Humanoid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ] + }, + { + "name": "Tusk (Boar Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "traitTags": [ + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "L", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Don-Jon Raskin", + "isNpc": true, + "isNamedCreature": true, + "source": "DIP", + "page": 56, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 10 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 10, + "con": 13, + "int": 12, + "wis": 10, + "cha": 14, + "save": { + "dex": "+2", + "con": "+3" + }, + "skill": { + "deception": "+4", + "persuasion": "+4" + }, + "passive": 10, + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1/2", + "trait": [ + { + "name": "Brave", + "entries": [ + "Don-Jon has advantage on saving throws against being {@condition frightened}." + ] + }, + { + "name": "Not Dead Yet (Recharges after a Long Rest)", + "entries": [ + "If damage reduces Don-Jon to 0 hit points, he drops to 1 hit point instead and gains advantage on attack rolls until the end of his next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Don-Jon makes three melee attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 30/120 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "sling|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Falcon the Hunter", + "isNpc": true, + "isNamedCreature": true, + "source": "DIP", + "page": 56, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 15, + "con": 16, + "int": 11, + "wis": 16, + "cha": 15, + "save": { + "dex": "+4", + "wis": "+5" + }, + "skill": { + "athletics": "+4", + "perception": "+7", + "survival": "+5" + }, + "passive": 17, + "languages": [ + "Common" + ], + "cr": "4", + "trait": [ + { + "name": "Archer", + "entries": [ + "A longbow or shortbow deals one extra die of its damage when Falcon hits with it (included in his longbow attack)." + ] + }, + { + "name": "Sharpshooter", + "entries": [ + "Falcon's ranged weapon attacks ignore {@quickref Cover||3||half cover} and {@quickref Cover||3||three-quarters cover}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Falcon makes three melee attacks or two ranged attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gorthok the Thunder Boar", + "isNpc": true, + "isNamedCreature": true, + "source": "DIP", + "page": 58, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 73, + "formula": "7d12 + 28" + }, + "speed": { + "walk": 50 + }, + "str": 20, + "dex": 11, + "con": 19, + "int": 6, + "wis": 10, + "cha": 14, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "thunder" + ], + "cr": "6", + "trait": [ + { + "name": "Relentless (Recharges after a Short or Long Rest)", + "entries": [ + "If Gorthok takes 27 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Gorthok makes two melee attacks: one with its lightning tusks and one with its thunder hooves." + ] + }, + { + "name": "Lightning Tusks", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 7 ({@damage 2d6}) lightning damage." + ] + }, + { + "name": "Thunder Hooves", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 7 ({@damage 2d6}) thunder damage." + ] + }, + { + "name": "Lightning Bolt {@recharge}", + "entries": [ + "Gorthok shoots a bolt of lightning at one creature it can see within 120 feet of it. The target must make a {@dc 15} Dexterity saving throw, taking 18 ({@damage 4d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "L", + "S", + "T" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rock Gnome Recluse", + "source": "DIP", + "page": 62, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 25 + }, + "str": 6, + "dex": 11, + "con": 10, + "int": 15, + "wis": 10, + "cha": 13, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Gnomish" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The gnome is a 2nd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost} (see \"Actions\" below)" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile} (see \"Actions\" below)", + "{@spell shield}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Gnome Cunning", + "entries": [ + "The gnome has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ] + } + ], + "action": [ + { + "name": "Magic Missile (Expends a 1st-Level Spell Slot)", + "entries": [ + "The gnome creates three magical darts. Each dart hits a creature the gnome chooses within 120 feet of it and deals 3 ({@damage 1d4 + 1}) force damage." + ] + }, + { + "name": "Ray of Frost", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one creature. {@h}4 ({@damage 1d8}) cold damage, and the target's speed is reduced by 10 feet until the start of the gnome's next turn." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "G" + ], + "damageTags": [ + "C", + "O" + ], + "damageTagsSpell": [ + "C", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skeletal Riding Horse", + "source": "DIP", + "page": 21, + "_copy": { + "name": "Riding Horse", + "source": "MM" + }, + "type": "undead", + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Avatar of Death", + "source": "DMG", + "page": 164, + "srd": true, + "otherSources": [ + { + "source": "TCE" + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 20 + ], + "hp": { + "special": "half the hit point maximum of its summoner" + }, + "speed": { + "walk": 60, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 16, + "con": 16, + "int": 16, + "wis": 16, + "cha": 16, + "senses": [ + "darkvision 60 ft.", + "truesight 60 ft." + ], + "passive": 13, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "unconscious" + ], + "languages": [ + "all languages known to its summoner" + ], + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The avatar can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Turn Immunity", + "entries": [ + "The avatar is immune to features that turn undead." + ] + } + ], + "action": [ + { + "name": "Reaping Scythe", + "entries": [ + "The avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 ({@damage 1d8 + 3}) slashing damage plus 4 ({@damage 1d8}) necrotic damage." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Turn Immunity" + ], + "senseTags": [ + "D", + "U" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "N", + "O", + "S" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Fly", + "source": "DMG", + "page": 169, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 14, + "dex": 13, + "con": 13, + "int": 2, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "senseTags": [ + "D" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Larva", + "source": "DMG", + "page": 63, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Larva|XMM" + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "ac": [ + 9 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 20 + }, + "str": 9, + "dex": 9, + "con": 10, + "int": 6, + "wis": 10, + "cha": 2, + "passive": 10, + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "0", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage." + ] + } + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Fume Drake", + "source": "DoSI", + "page": 41, + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 6, + "dex": 14, + "con": 12, + "int": 6, + "wis": 10, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Ignan" + ], + "cr": "1/4", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the fume drake dies, it explodes in a cloud of noxious fumes. Each creature within 5 feet of the fume drake must succeed on a {@dc 11} Constitution saving throw or take 4 ({@damage 1d8}) poison damage." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The fume drake doesn't require food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) fire damage." + ] + }, + { + "name": "Scalding Breath {@recharge}", + "entries": [ + "The fume drake exhales a 15-foot cone of scalding steam. Each creature in that area must make a {@dc 11} Dexterity saving throw, taking 4 ({@damage 1d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Death Burst", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "IG" + ], + "damageTags": [ + "F", + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kobold Tinkerer", + "source": "DoSI", + "page": 43, + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 30, + "fly": 10 + }, + "str": 7, + "dex": 14, + "con": 10, + "int": 15, + "wis": 7, + "cha": 9, + "skill": { + "arcana": "+4", + "perception": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/4", + "trait": [ + { + "name": "Inquiring Mind (1/Day)", + "entries": [ + "The kobold can cast {@spell detect magic}, requiring no spell components and using Intelligence as the spellcasting ability." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of its allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Alchemical Flame {@recharge}", + "entries": [ + "The kobold unleashes fire in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed saving throw, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Merrow Extortionist", + "source": "DoSI", + "page": 0, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 8, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Abyssal", + "Aquan", + "Common" + ], + "cr": { + "cr": "1", + "xp": 100 + }, + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The merrow can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The merrow makes two Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "AQ", + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Myla", + "isNpc": true, + "isNamedCreature": true, + "source": "DoSI", + "page": 9, + "_copy": { + "name": "Kobold Tinkerer", + "source": "DoSI", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the kobold", + "with": "Myla", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Runara", + "isNpc": true, + "isNamedCreature": true, + "source": "DoSI", + "page": 40, + "_copy": { + "name": "Adult Bronze Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Runara", + "flags": "i" + }, + "action": [ + { + "mode": "removeArr", + "names": "Tail" + }, + { + "mode": "replaceArr", + "replace": "Change Shape", + "items": { + "name": "Change Shape", + "type": "entries", + "entries": [ + "Runara magically transforms into a Humanoid or Beast that is Medium or Small, while retaining her game statistics (other than her size). This transformation ends if Runara is reduced to 0 hit points or uses a bonus action to end it." + ] + } + } + ] + } + }, + "cr": "13", + "legendary": null, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sinensa", + "isNpc": true, + "isNamedCreature": true, + "source": "DoSI", + "page": 45, + "_copy": { + "name": "Myconid Sovereign", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the myconid", + "with": "Sinensa", + "flags": "i" + }, + "action": [ + { + "mode": "removeArr", + "names": [ + "Animating Spores (3/Day)", + "Pacifying Spores" + ] + }, + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "type": "entries", + "entries": [ + "The myconid makes one Fist attack and uses its Hallucination Spores." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Fist", + "items": { + "name": "Fist", + "type": "entries", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 3d4 + 1}) bludgeoning damage plus 7 ({@damage 2d4}) poison damage." + ] + } + } + ] + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Spore Servant Octopus", + "source": "DoSI", + "page": 46, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 52, + "formula": "8d10 + 8" + }, + "speed": { + "walk": 5, + "swim": 50 + }, + "str": 17, + "dex": 13, + "con": 13, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 8, + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed" + ], + "cr": "1", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "While out of water, the octopus can hold its breath for 1 hour." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The octopus can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 15 ft., one target {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Hold Breath", + "Water Breathing" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Tentacles" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tarak", + "isNpc": true, + "isNamedCreature": true, + "source": "DoSI", + "page": 47, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 10, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "medicine": "+4", + "nature": "+3" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Thieves' cant" + ], + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tarak makes three Dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Cunning Action", + "entries": [ + "Tarak takes the Dash, Disengage, or Hide action." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TC" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Varnoth", + "isNpc": true, + "isNamedCreature": true, + "source": "DoSI", + "page": 47, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 11 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "athletics": "+5", + "history": "+2", + "perception": "+2", + "religion": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Varnoth makes three Shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Violet Fungus", + "source": "DoSI", + "page": 48, + "otherSources": [ + { + "source": "PaBTSO" + }, + { + "source": "BMT" + } + ], + "_copy": { + "name": "Violet Fungus", + "source": "MM", + "_mod": { + "trait": [ + { + "mode": "replaceArr", + "replace": "False Appearance", + "items": { + "name": "False Appearance", + "type": "entries", + "entries": [ + "If the violet fungus is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the fungus move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the violet fungus isn't ordinary fungus." + ] + } + } + ] + } + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amelia Ghallen", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 180, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Amelia", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Andir Valmakos", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 210, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ], + "sidekickType": "spellcaster", + "sidekickTags": [ + "mage" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 12, + "int": 14, + "wis": 11, + "cha": 10, + "save": { + "wis": "+2" + }, + "skill": { + "arcana": "+4", + "history": "+4", + "investigation": "+4", + "religion": "+4" + }, + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "pbNote": "+2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}" + ], + "spells": { + "1": { + "slots": 2, + "spells": [ + "{@spell thunderwave}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Bonus Proficiencies", + "entries": [ + "Andir is proficient with simple weapons and light armor." + ] + } + ], + "action": [ + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 120 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Andir beyond 1st Level", + "entries": [ + { + "type": "table", + "colLabels": [ + "Level", + "Hit Points", + "New Features" + ], + "colStyles": [ + "col-2 text-center", + "col-2", + "col-8" + ], + "rows": [ + [ + "2nd", + "16 ({@dice 3d8 + 3})", + "Spellcasting. Andir learns another 1st-level spell: {@spell longstrider}." + ], + [ + "3rd", + "22 ({@dice 4d8 + 4})", + "Spellcasting. Andir gains one 1st-level spell slot. He also learns another 1st-level spell: {@spell Tenser's floating disk}." + ], + [ + "4th", + "27 ({@dice 5d8 + 5})", + "Ability Score Improvement. Andir's Intelligence score increases by 2, raising the modifier by 1, so increase the following numbers by 1: his spell save DC, the bonus to hit of his spell attacks, and the bonuses in his Skills entry. Spellcasting. Andir learns another cantrip: {@spell mage hand}." + ], + [ + "5th", + "33 ({@dice 6d8 + 6})", + "Proficiency Bonus. Andir's proficiency bonus increases by 1, so increase the following numbers by 1: his spell save DC, the bonus to hit of his Quarterstaff and spell attacks, and the bonuses in the Saving Throws and Skills entries. Spellcasting. Andir gains one 1st-level spell slot and two 2nd-level spell slots. He also learns a 2nd-level spell: {@spell knock}." + ], + [ + "6th", + "38 ({@dice 7d8 + 7})", + "Potent Cantrips. Andir adds his Intelligence modifier to the damage he deals with any cantrip." + ], + [ + "7th", + "44 ({@dice 8d8 + 8})", + "Spellcasting. Andir gains one 2nd-level spell slot. He also learns another 2nd-level spell: {@spell invisibility}." + ], + [ + "8th", + "49 ({@dice 9d8 + 9})", + "Ability Score Improvement. Andir's Intelligence score increases by 2, raising the modifier by 1, so increase the following numbers by 1: his spell save DC, the bonus to hit of his spell attacks, and the bonuses in his Skills entry." + ], + [ + "9th", + "55 ({@dice 10d8 + 10})", + "Proficiency Bonus. Andir's proficiency bonus increases by 1, so increase the following numbers by 1: his spell save DC, the bonus to hit of his Quarterstaff and spell attacks, and the bonuses in the Saving Throws and Skills entries. Spellcasting. Andir gains two 3rd-level spell slots. He also learns a 3rd-level spell: {@spell haste}." + ], + [ + "10th", + "60 ({@dice 11d8 + 11})", + "Spellcasting. Andir learns another cantrip: {@spell minor illusion}." + ], + [ + "11th", + "66 ({@dice 12d8 + 12})", + "Spellcasting. Andir gains one 3rd-level spell slot. He also learns another 3rd-level spell: {@spell sending}." + ] + ] + } + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "O" + ], + "damageTagsSpell": [ + "C", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Andir Valmakos (10th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Andir adds his Intelligence modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Quarterstaff", + "items": { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + } + }, + "level": 10, + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "int": 18, + "save": { + "wis": "+4" + }, + "skill": { + "arcana": "+8", + "history": "+8", + "investigation": "+8", + "religion": "+8" + }, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell knock}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell haste}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (11th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Andir adds his Intelligence modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Quarterstaff", + "items": { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + } + }, + "level": 11, + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "int": 18, + "save": { + "wis": "+4" + }, + "skill": { + "arcana": "+8", + "history": "+8", + "investigation": "+8", + "religion": "+8" + }, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell knock}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell haste}", + "{@spell sending}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (2nd Level)", + "source": "DSotDQ", + "level": 2, + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}" + ], + "spells": { + "1": { + "slots": 2, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (3rd Level)", + "source": "DSotDQ", + "level": 3, + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (4th Level)", + "source": "DSotDQ", + "level": 4, + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "int": 16, + "skill": { + "arcana": "+5", + "history": "+5", + "investigation": "+5", + "religion": "+5" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (5th Level)", + "source": "DSotDQ", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Quarterstaff", + "items": { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + } + }, + "level": 5, + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "int": 16, + "save": { + "wis": "+3" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "investigation": "+6", + "religion": "+6" + }, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell knock}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (6th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Andir adds his Intelligence modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Quarterstaff", + "items": { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + } + }, + "level": 6, + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "int": 16, + "save": { + "wis": "+3" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "investigation": "+6", + "religion": "+6" + }, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell knock}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (7th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Andir adds his Intelligence modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Quarterstaff", + "items": { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + } + }, + "level": 7, + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "int": 16, + "save": { + "wis": "+3" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "investigation": "+6", + "religion": "+6" + }, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell knock}", + "{@spell invisibility}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (8th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Andir adds his Intelligence modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Quarterstaff", + "items": { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + } + }, + "level": 8, + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "int": 18, + "save": { + "wis": "+3" + }, + "skill": { + "arcana": "+7", + "history": "+7", + "investigation": "+7", + "religion": "+7" + }, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell knock}", + "{@spell invisibility}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + }, + { + "name": "Andir Valmakos (9th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Andir adds his Intelligence modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Quarterstaff", + "items": { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + } + }, + "level": 9, + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "int": 18, + "save": { + "wis": "+4" + }, + "skill": { + "arcana": "+8", + "history": "+8", + "investigation": "+8", + "religion": "+8" + }, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + "{@spell light}", + "{@spell ray of frost}", + "{@spell mage hand}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell thunderwave}", + "{@spell longstrider}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell knock}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell haste}" + ] + } + }, + "ability": "int" + } + ], + "variant": null + } + ] + }, + { + "name": "Anhkolox", + "source": "DSotDQ", + "page": 192, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60" + }, + "speed": { + "walk": 50 + }, + "str": 22, + "dex": 11, + "con": 18, + "int": 4, + "wis": 14, + "cha": 2, + "save": { + "wis": "+6" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "cr": "9", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The anhkolox doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The anhkolox makes two Claw attacks and one Entrapping Rend attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be pushed up to 20 feet in a horizontal direction of the anhkolox's choice." + ] + }, + { + "name": "Entrapping Rend", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}23 ({@damage 5d6 + 6}) piercing damage, and if the target is a Large or smaller creature, the target must succeed on a {@dc 18} Strength saving throw or be trapped in the anhkolox's rib cage and {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}, and the anhkolox can't use Entrapping Rend on another target." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aurak Draconian", + "source": "DSotDQ", + "page": 196, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 35 + }, + "str": 13, + "dex": 14, + "con": 16, + "int": 16, + "wis": 11, + "cha": 17, + "save": { + "int": "+6", + "wis": "+3", + "cha": "+6" + }, + "skill": { + "perception": "+3" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell invisibility}", + "{@spell mage hand}" + ], + "daily": { + "1": [ + "{@spell dominate person}" + ], + "2e": [ + "{@spell dimension door}", + "{@spell disguise self}", + "{@spell sending}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aura of Command", + "entries": [ + "The draconian radiates a commanding presence in a 20-foot-radius sphere centered on itself. A draconian in the aura that can see or hear the aurak can't be {@condition charmed} and has advantage on saving throws made to avoid or end the {@condition frightened} condition on itself." + ] + }, + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, its magical essence lashes out as a ball of lightning at the closest creature within 30 feet of it before arcing out to up to two other creatures within 15 feet of the first. Each creature must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) lightning damage and is {@condition stunned} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes three Rend or Energy Ray attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d12 + 2}) slashing damage." + ] + }, + { + "name": "Energy Ray", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ] + }, + { + "name": "Noxious Breath {@recharge 5}", + "entries": [ + "The draconian exhales a 15-foot cone of noxious gas. Each creature in that area must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 21 ({@damage 6d6}) poison damage and gains 1 level of {@condition exhaustion}. On a successful save, the creature takes half as much damage, doesn't gain {@condition exhaustion}, and is immune to all draconians' Noxious Breath for 24 hours." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "I", + "L", + "O", + "S" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "exhaustion", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ayik Ur", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 211, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ], + "sidekickType": "warrior", + "sidekickTags": [ + "attacker" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 12, + "int": 11, + "wis": 13, + "cha": 11, + "save": { + "dex": "+5" + }, + "skill": { + "athletics": "+2", + "nature": "+2", + "perception": "+5", + "stealth": "+5", + "survival": "+3" + }, + "passive": 15, + "languages": [ + "Common" + ], + "pbNote": "+2", + "trait": [ + { + "name": "Attacker", + "entries": [ + "Ayik gains a +2 bonus to all attack rolls (included below)." + ] + }, + { + "name": "Bonus Proficiencies", + "entries": [ + "Ayik is proficient with simple and martial weapons, shields, and all armor." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Ayik beyond 1st Level", + "entries": [ + { + "type": "table", + "colLabels": [ + "Level", + "Hit Points", + "New Features" + ], + "colStyles": [ + "col-2 text-center", + "col-2", + "col-8" + ], + "rows": [ + [ + "2nd", + "16 ({@dice 3d8 + 3})", + "Second Wind. Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ], + [ + "3rd", + "22 ({@dice 4d8 + 4})", + "Improved Critical. Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ], + [ + "4th", + "27 ({@dice 5d8 + 5})", + "Ability Score Improvement. Ayik's Dexterity score increases by 2, raising the modifier by 1, so increase the following numbers by 1: his Armor Class, his Dexterity saving throw bonus, his {@skill Acrobatics} and {@skill Stealth} bonuses, and the bonuses to hit and damage of his weapon attacks." + ], + [ + "5th", + "33 ({@dice 6d8 + 6})", + "Proficiency Bonus. Ayik's proficiency bonus increases by 1, so increase the following numbers by 1: the bonuses in the Saving Throws and Skills entries (by 2 for {@skill Perception}), and the bonuses to hit of his weapon attacks. His passive {@skill Perception} score increases by 2." + ], + [ + "6th", + "38 ({@dice 7d8 + 7})", + "Extra Attack. Ayik can attack twice, instead of once, whenever he takes the {@action Attack} action on his turn." + ], + [ + "7th", + "44 ({@dice 8d8 + 8})", + "Battle Readiness. Ayik has advantage on initiative rolls." + ], + [ + "8th", + "49 ({@dice 9d8 + 9})", + "Ability Score Improvement. Ayik's Dexterity score increases by 2, raising the modifier by 1, so increase the following numbers by 1: his Armor Class, his Dexterity saving throw bonus, his {@skill Acrobatics} and {@skill Stealth} bonuses, and the bonuses to hit and damage of his weapon attacks." + ], + [ + "9th", + "55 ({@dice 10d8 + 10})", + "Proficiency Bonus. Ayik's proficiency bonus increases by 1, so increase the following numbers by 1: the bonuses in the Saving Throws and Skills entries (by 2 for {@skill Perception}), and the bonuses to hit of his weapon attacks. His passive {@skill Perception} score increases by 2." + ], + [ + "10th", + "60 ({@dice 11d8 + 11})", + "Improved Defense. Ayik's Armor Class increases by 1." + ], + [ + "11th", + "66 ({@dice 12d8 + 12})", + "Indomitable. Ayik can reroll a saving throw that he fails, but he must use the new roll. Once he uses this feature, he can't use it again until he finishes a long rest." + ] + ] + } + ] + } + ], + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Ayik Ur (10th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Ayik can attack twice, instead of once, whenever he takes the {@action Attack} action on his turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Ayik has advantage on initiative rolls." + ] + }, + { + "name": "Improved Defense", + "entries": [ + "Ayik's Armor Class increases by 1." + ] + } + ] + } + }, + "level": 10, + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|PHB|studded leather}", + "improved defense" + ] + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "dex": 20, + "save": { + "dex": "+9" + }, + "skill": { + "athletics": "+4", + "nature": "+4", + "perception": "+9", + "stealth": "+9", + "survival": "+5" + }, + "passive": 19, + "pbNote": "+4", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 150/600 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Ayik Ur (11th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Ayik can attack twice, instead of once, whenever he takes the {@action Attack} action on his turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Ayik has advantage on initiative rolls." + ] + }, + { + "name": "Improved Defense", + "entries": [ + "Ayik's Armor Class increases by 1." + ] + }, + { + "name": "Indomitable", + "entries": [ + "Ayik can reroll a saving throw that he fails, but he must use the new roll. Once he uses this feature, he can't use it again until he finishes a long rest." + ] + } + ] + } + }, + "level": 11, + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|PHB|studded leather}", + "improved defense" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "dex": 20, + "save": { + "dex": "+9" + }, + "skill": { + "athletics": "+4", + "nature": "+4", + "perception": "+9", + "stealth": "+9", + "survival": "+5" + }, + "passive": 19, + "pbNote": "+4", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 150/600 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Ayik Ur (2nd Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + } + } + }, + "level": 2, + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "variant": null + }, + { + "name": "Ayik Ur (3rd Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + } + ] + } + }, + "level": 3, + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "variant": null + }, + { + "name": "Ayik Ur (4th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + } + ] + } + }, + "level": 4, + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "dex": 18, + "save": { + "dex": "+6" + }, + "skill": { + "athletics": "+2", + "nature": "+2", + "perception": "+5", + "stealth": "+6", + "survival": "+3" + }, + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Ayik Ur (5th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + } + ] + } + }, + "level": 5, + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "dex": 18, + "save": { + "dex": "+7" + }, + "skill": { + "athletics": "+3", + "nature": "+3", + "perception": "+7", + "stealth": "+7", + "survival": "+4" + }, + "passive": 17, + "pbNote": "+3", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Ayik Ur (6th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Ayik can attack twice, instead of once, whenever he takes the {@action Attack} action on his turn." + ] + } + ] + } + }, + "level": 6, + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "dex": 18, + "save": { + "dex": "+7" + }, + "skill": { + "athletics": "+3", + "nature": "+3", + "perception": "+7", + "stealth": "+7", + "survival": "+4" + }, + "passive": 17, + "pbNote": "+3", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Ayik Ur (7th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Ayik can attack twice, instead of once, whenever he takes the {@action Attack} action on his turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Ayik has advantage on initiative rolls." + ] + } + ] + } + }, + "level": 7, + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "dex": 18, + "save": { + "dex": "+7" + }, + "skill": { + "athletics": "+3", + "nature": "+3", + "perception": "+7", + "stealth": "+7", + "survival": "+4" + }, + "passive": 17, + "pbNote": "+3", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Ayik Ur (8th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Ayik can attack twice, instead of once, whenever he takes the {@action Attack} action on his turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Ayik has advantage on initiative rolls." + ] + } + ] + } + }, + "level": 8, + "ac": [ + { + "ac": 17, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "dex": 20, + "save": { + "dex": "+8" + }, + "skill": { + "athletics": "+3", + "nature": "+3", + "perception": "+7", + "stealth": "+8", + "survival": "+4" + }, + "passive": 17, + "pbNote": "+3", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 150/600 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Ayik Ur (9th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Ayik can use a bonus action on his turn to regain hit points equal to {@dice 1d10} + his level. Once he uses this feature, he can't use it again until he finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Ayik's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Ayik can attack twice, instead of once, whenever he takes the {@action Attack} action on his turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Ayik has advantage on initiative rolls." + ] + } + ] + } + }, + "level": 9, + "ac": [ + { + "ac": 17, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "dex": 20, + "save": { + "dex": "+9" + }, + "skill": { + "athletics": "+4", + "nature": "+4", + "perception": "+9", + "stealth": "+9", + "survival": "+5" + }, + "passive": 19, + "pbNote": "+4", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 150/600 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Baaz Draconian", + "source": "DSotDQ", + "page": 197, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 11, + "con": 13, + "int": 8, + "wis": 8, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/2", + "trait": [ + { + "name": "Controlled Fall", + "entries": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage." + ] + }, + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, its body turns to stone and releases a petrifying gas. Each creature within 5 feet of the draconian must succeed on a {@dc 11} Constitution saving throw or be {@condition restrained} as it begins to turn to stone. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a success, the effect ends; otherwise the creature is {@condition petrified} for 1 minute. After 1 minute, the body of the draconian crumbles to dust." + ] + }, + { + "name": "Draconic Devotion", + "entries": [ + "While the draconian can see a Dragon that isn't hostile to it, the draconian has advantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bakaris the Younger", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 57, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Bakaris", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bakaris Uth Estide", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 54, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Bakaris", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Becklin Uth Viharin", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 55, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Becklin", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Belephaion", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 157, + "_copy": { + "name": "Young Blue Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Belephaion", + "flags": "i" + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Alter Shape", + "entries": [ + "Belephaion magically transforms into an {@creature eagle} or a {@creature priest}, while retaining his alignment, damage immunities, hit points, Hit Dice, and Intelligence, Wisdom, and Charisma scores. This transformation ends if he is reduced to 0 hit points or uses a bonus action to end it." + ] + } + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bozak Draconian", + "source": "DSotDQ", + "page": 198, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 11, + "int": 11, + "wis": 10, + "cha": 14, + "save": { + "int": "+2", + "wis": "+2", + "cha": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "daily": { + "1e": [ + "{@spell enlarge/reduce}", + "{@spell invisibility}", + "{@spell stinking cloud}", + "{@spell web}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, its scales and flesh immediately shrivel away, and then its bones explode. Each creature within 10 feet of it must succeed on a {@dc 10} Dexterity saving throw or take 9 ({@damage 2d8}) force damage." + ] + }, + { + "name": "Glide", + "entries": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Trident melee attacks or two Lightning Discharge attacks." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Lightning Discharge", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) lightning damage." + ] + } + ], + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "L", + "O", + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "invisible", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Captain Hask", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 148, + "_copy": { + "name": "Aurak Draconian", + "source": "DSotDQ", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the draconian", + "with": "Hask", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Caradoc", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 193, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 110, + "formula": "20d8 + 20" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 18, + "con": 12, + "int": 15, + "wis": 13, + "cha": 19, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "deception": "+7", + "insight": "+4", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Solamnic" + ], + "cr": "8", + "trait": [ + { + "name": "Bound Haunting", + "entries": [ + "Caradoc's spirit is bound to Dargaard Keep. At the start of his turn, if he's outside the keep's walls and not possessing a creature using his Possession action, he must succeed on a {@dc 15} Charisma saving throw or vanish and reappear in an unoccupied space within the keep." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "Caradoc can move through other creatures and objects as if they were difficult terrain. He takes 5 ({@damage 1d10}) force damage if he ends his turn inside an object." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If Caradoc dies, he reforms within Dargaard Keep in {@dice 2d6} days." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Caradoc doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Caradoc makes two Withering Touch attacks." + ] + }, + { + "name": "Withering Touch", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) necrotic damage." + ] + }, + { + "name": "Possession {@recharge 5}", + "entries": [ + "One Humanoid that Caradoc can see within 5 feet of himself must succeed on a {@dc 15} Charisma saving throw or be possessed by him; he then disappears, and the target is {@condition incapacitated} and loses control of its body. Caradoc now controls the body but doesn't deprive the target of awareness. Caradoc can't be targeted by any attack, spell, or other effect, except ones that turn Undead, and he retains his alignment, Intelligence, Wisdom, and Charisma, immunity to being {@condition charmed} and {@condition frightened}, and his Divisive Whispers bonus action. He otherwise uses the possessed target's statistics but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, Caradoc ends it as a bonus action, or he is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, Caradoc reappears in an unoccupied space within 5 feet of the body. The target is immune to Caradoc's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "bonus": [ + { + "name": "Divisive Whispers", + "entries": [ + "Caradoc magically whispers to one creature within 60 feet of himself. The target must succeed on a {@dc 15} Wisdom saving throw, or the target must immediately use its reaction to make a melee attack against another creature of Caradoc's choice (wasting its reaction if there are no other creatures within reach)." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Rejuvenation", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clystran", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 126, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Clystran", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Cudgel Ironsmile", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 58, + "_copy": { + "name": "Veteran", + "source": "MM", + "_templates": [ + { + "name": "Hill Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Cudgel", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Dalamar", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 111, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Dalamar", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Darrett Highwater", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 59, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Darrett", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Demelin", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 139, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Demelin", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Dracophage Subject", + "source": "DSotDQ", + "page": 118, + "_copy": { + "name": "Kapak Draconian", + "source": "DSotDQ", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "draconian", + "with": "subject" + } + } + }, + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage. If the target is a Humanoid, it must succeed on a {@dc 12} Constitution saving throw or be infected with a disease\u2014a minuscule slaad egg.", + "A Humanoid host can carry only one slaad egg at a time. Over three months, the egg moves to the chest cavity, gestates, and forms a slaad tadpole. In the 24-hour period before the tadpole is born, the host feels unwell; its speed is halved; and it has disadvantage on attack rolls, ability checks, and saving throws. At birth, the tadpole chews its way through vital organs and out of the host's chest in 1 round, killing the host in the process.", + "If the disease is cured before the tadpole's emergence, the tadpole disintegrates." + ] + } + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "AOE", + "DIS", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dragon Army Dragonnel", + "source": "DSotDQ", + "page": 201, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate barding|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 16, + "dex": 15, + "con": 12, + "int": 8, + "wis": 13, + "cha": 10, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "fire" + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The dragonnel doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonnel makes two Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) fire damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "F", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragon Army Officer", + "source": "DSotDQ", + "page": 200, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "{@item splint armor|PHB|splint}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 15, + "int": 12, + "wis": 14, + "cha": 12, + "save": { + "dex": "+4", + "wis": "+4" + }, + "skill": { + "athletics": "+5", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Common", + "Draconic" + ], + "cr": "3", + "trait": [ + { + "name": "Draconic Devotion", + "entries": [ + "While the officer can see a Dragon that isn't hostile to it, the officer has advantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The officer makes two Vicious Lance attacks and uses Assault Orders if it's available." + ] + }, + { + "name": "Vicious Lance", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 2 ({@damage 1d4}) fire damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 5 ({@damage 1d10}) fire damage." + ] + }, + { + "name": "Assault Orders {@recharge 5}", + "entries": [ + "The officer shouts orders and targets up to two other creatures within 60 feet of itself. If a target has the Draconic Devotion trait and can hear the officer, the target can use its reaction to make one melee attack." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "lance|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dragon Army Soldier", + "source": "DSotDQ", + "page": 200, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "{@item scale mail|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 12, + "con": 12, + "int": 10, + "wis": 10, + "cha": 10, + "skill": { + "athletics": "+4", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "trait": [ + { + "name": "Draconic Devotion", + "entries": [ + "While the soldier can see a Dragon that isn't hostile to it, the soldier has advantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The soldier makes two Longsword or Javelin attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands, plus 2 ({@damage 1d4}) fire damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 2 ({@damage 1d4}) fire damage." + ] + } + ], + "attachedItems": [ + "javelin|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Durstan Rial", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 97, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Durstan", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Duskwalker", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 150, + "_copy": { + "name": "Treant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the treant", + "with": "Duskwalker", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Fewmaster Gholcag", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 74, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item scale mail|PHB}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "2", + "action": [ + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "greatclub|phb", + "javelin|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Greater Death Dragon", + "source": "DSotDQ", + "page": 195, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 230, + "formula": "20d12 + 100" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 23, + "dex": 10, + "con": 20, + "int": 11, + "wis": 14, + "cha": 10, + "save": { + "dex": "+5", + "wis": "+7" + }, + "skill": { + "perception": "+7", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "piercing" + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "14", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 4 ({@damage 1d8}) necrotic damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, and the dragon can't bite a different target." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft. one target. {@h}10 ({@damage 1d8 + 6}) slashing damage." + ] + }, + { + "name": "Cataclysmic Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of ghostly purple flames in a 60-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 45 ({@damage 10d8}) necrotic damage on a failed save, or half as much damage on a successful one. A creature dies if the breath reduces it to 0 hit points. Additionally, any Medium or smaller Humanoid killed by the breath's damage, as well as every corpse of such a creature within the cone, becomes a zombie (see the Monster Manual) under the dragon's control. The zombie acts on the dragon's initiative but immediately after the dragon's turn. Absent any other command, the zombie tries to kill any non-Undead creature it encounters." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Cataclysmic Rush (Costs 2 Actions)", + "entries": [ + "The dragon moves up to half its flying speed without provoking opportunity attacks, carrying with it any creatures it is grappling. During this move, if it enters the space of a Medium or smaller creature, that creature takes 4 ({@damage 1d8}) necrotic damage. A creature can take this damage only once per turn." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hrigg Roundrook", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 211, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ], + "sidekickType": "spellcaster", + "sidekickTags": [ + "healer" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item half plate armor|PHB|half plate}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 12, + "int": 10, + "wis": 14, + "cha": 11, + "save": { + "wis": "+4" + }, + "skill": { + "athletics": "+4", + "history": "+2", + "medicine": "+4", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "pbNote": "+2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}" + ], + "spells": { + "1": { + "slots": 2, + "spells": [ + "{@spell cure wounds}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Bonus Proficiencies", + "entries": [ + "Hrigg is proficient with simple and martial weapons and light and medium armor." + ] + }, + { + "name": "Dwarven Resilience", + "entries": [ + "Hrigg has advantage on saving throws made to avoid or end the {@condition poisoned} condition on himself." + ] + } + ], + "action": [ + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Hrigg beyond 1st Level", + "entries": [ + { + "type": "table", + "colLabels": [ + "Level", + "Hit Points", + "New Features" + ], + "colStyles": [ + "col-2 text-center", + "col-2", + "col-8" + ], + "rows": [ + [ + "2nd", + "16 ({@dice 3d8 + 3})", + "Spellcasting. Hrigg learns another 1st-level spell: {@spell bless}." + ], + [ + "3rd", + "22 ({@dice 4d8 + 4})", + "Spellcasting. Hrigg gains one 1st-level spell slot. He also learns another 1st-level spell: {@spell detect evil and good}." + ], + [ + "4th", + "27 ({@dice 5d8 + 5})", + "Ability Score Improvement. Hrigg's Wisdom score increases by 2, raising the modifier by 1, so increase the following numbers by 1: his spell save DC and the bonus to hit of his spell attacks, his Wisdom saving throw bonus, his {@skill Medicine} and {@skill Perception} bonuses, and his passive {@skill Perception} score. Spellcasting. Hrigg learns another cantrip: {@spell spare the dying}." + ], + [ + "5th", + "33 ({@dice 6d8 + 6})", + "Proficiency Bonus. Hrigg's proficiency bonus increases by 1, so increase the following numbers by 1: his spell save DC and the bonus to hit of his spell attacks, the bonuses in the Saving Throws and Skills entries, and the bonuses to hit of his weapon attacks. Spellcasting. Hrigg gains one 1st-level spell slot and two 2nd-level spell slots. He also learns a 2nd-level spell: {@spell spiritual weapon}." + ], + [ + "6th", + "38 ({@dice 7d8 + 7})", + "Potent Cantrips. Hrigg adds his Wisdom modifier to the damage he deals with any cantrip." + ], + [ + "7th", + "44 ({@dice 8d8 + 8})", + "Spellcasting. Hrigg gains one 2nd-level spell slot. He also learns another 2nd-level spell: {@spell lesser restoration}." + ], + [ + "8th", + "49 ({@dice 9d8 + 9})", + "Ability Score Improvement. Hrigg's Wisdom score increases by 2, raising the modifier by 1, so increase the following numbers by 1: his spell save DC and the bonus to hit of his spell attacks, his Wisdom saving throw bonus, his {@skill Medicine} and {@skill Perception} bonuses, and his passive {@skill Perception} score." + ], + [ + "9th", + "55 ({@dice 10d8 + 10})", + "Proficiency Bonus. Hrigg's proficiency bonus increases by 1, so increase the following numbers by 1: his spell save DC and the bonus to hit of his spell attacks, the bonuses in the Saving Throws and Skills entries, and the bonuses to hit of his weapon attacks. Spellcasting. Hrigg gains two 3rd-level spell slots. He also learns a 3rd-level spell: {@spell beacon of hope}." + ], + [ + "10th", + "60 ({@dice 11d8 + 11})", + "Spellcasting. Hrigg learns another cantrip: {@spell thaumaturgy}." + ], + [ + "11th", + "66 ({@dice 12d8 + 12})", + "Spellcasting. Hrigg gains one 3rd-level spell slot. He also learns another 3rd-level spell: {@spell spirit guardians}." + ] + ] + } + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Hrigg Roundrook (10th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Hrigg adds his Wisdom modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Maul", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + } + }, + "level": 10, + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "wis": 17, + "save": { + "wis": "+8" + }, + "skill": { + "athletics": "+6", + "history": "+4", + "medicine": "+8", + "perception": "+8" + }, + "passive": 16, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell spiritual weapon}", + "{@spell lesser restoration}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell beacon of hope}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (11th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Hrigg adds his Wisdom modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Maul", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + } + }, + "level": 11, + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "wis": 17, + "save": { + "wis": "+8" + }, + "skill": { + "athletics": "+6", + "history": "+4", + "medicine": "+8", + "perception": "+8" + }, + "passive": 16, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell spiritual weapon}", + "{@spell lesser restoration}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell beacon of hope}", + "{@spell spirit guardians}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (2nd Level)", + "source": "DSotDQ", + "level": 2, + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}" + ], + "spells": { + "1": { + "slots": 2, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (3rd Level)", + "source": "DSotDQ", + "level": 3, + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (4th Level)", + "source": "DSotDQ", + "level": 4, + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "wis": 15, + "save": { + "wis": "+5" + }, + "skill": { + "athletics": "+4", + "history": "+2", + "medicine": "+5", + "perception": "+5" + }, + "passive": 15, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (5th Level)", + "source": "DSotDQ", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Maul", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + } + }, + "level": 5, + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "wis": 15, + "save": { + "wis": "+6" + }, + "skill": { + "athletics": "+5", + "history": "+3", + "medicine": "+6", + "perception": "+6" + }, + "passive": 15, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (6th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Hrigg adds his Wisdom modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Maul", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + } + }, + "level": 6, + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "wis": 15, + "save": { + "wis": "+6" + }, + "skill": { + "athletics": "+5", + "history": "+3", + "medicine": "+6", + "perception": "+6" + }, + "passive": 15, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (7th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Hrigg adds his Wisdom modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Maul", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + } + }, + "level": 7, + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "wis": 15, + "save": { + "wis": "+6" + }, + "skill": { + "athletics": "+5", + "history": "+3", + "medicine": "+6", + "perception": "+6" + }, + "passive": 15, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell spiritual weapon}", + "{@spell lesser restoration}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (8th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Hrigg adds his Wisdom modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Maul", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + } + }, + "level": 8, + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "wis": 17, + "save": { + "wis": "+7" + }, + "skill": { + "athletics": "+5", + "history": "+3", + "medicine": "+7", + "perception": "+7" + }, + "passive": 16, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell spiritual weapon}", + "{@spell lesser restoration}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Hrigg Roundrook (9th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Potent Cantrips", + "entries": [ + "Hrigg adds his Wisdom modifier to the damage he deals with any cantrip." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Maul", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + } + }, + "level": 9, + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "wis": 17, + "save": { + "wis": "+8" + }, + "skill": { + "athletics": "+6", + "history": "+4", + "medicine": "+8", + "perception": "+8" + }, + "passive": 16, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "will": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell bless}", + "{@spell detect evil and good}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell spiritual weapon}", + "{@spell lesser restoration}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell beacon of hope}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + } + ] + }, + { + "name": "Hulking Shadow", + "source": "DSotDQ", + "page": 174, + "_copy": { + "name": "Clay Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "shadow" + } + } + }, + "type": "undead", + "hasToken": true + }, + { + "name": "Ignia", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 184, + "_copy": { + "name": "Young Red Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Ignia", + "flags": "i" + } + } + }, + "size": [ + "H" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Incomplete Dragon Skeleton", + "source": "DSotDQ", + "page": 138, + "_copy": { + "name": "Bone Naga (Spirit)", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "naga", + "with": "skeleton" + } + } + }, + "spellcasting": null, + "hasToken": true + }, + { + "name": "Iriad", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 212, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ], + "sidekickType": "expert" + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 35 + }, + "str": 11, + "dex": 16, + "con": 12, + "int": 11, + "wis": 13, + "cha": 11, + "save": { + "dex": "+4" + }, + "skill": { + "acrobatics": "+5", + "athletics": "+2", + "investigation": "+2", + "nature": "+2", + "perception": "+5", + "stealth": "+5", + "survival": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Elvish" + ], + "pbNote": "+2", + "trait": [ + { + "name": "Bonus Proficiencies", + "entries": [ + "Iriad is proficient with simple weapons, light armor, {@item cartographer's tools|PHB}, and {@item woodcarver's tools|PHB}." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Iriad has advantage on saving throws made to avoid or end the {@condition charmed} condition on herself, and magic can't put her to sleep." + ] + } + ], + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "bonus": [ + { + "name": "Helpful", + "entries": [ + "Iriad takes the {@action Help} action." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Iriad beyond 1st Level", + "entries": [ + { + "type": "table", + "colLabels": [ + "Level", + "Hit Points", + "New Features" + ], + "colStyles": [ + "col-2 text-center", + "col-2", + "col-8" + ], + "rows": [ + [ + "2nd", + "16 ({@dice 3d8 + 3})", + "Cunning Action. On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ], + [ + "3rd", + "22 ({@dice 4d8 + 4})", + "Expertise. Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ], + [ + "4th", + "27 ({@dice 5d8 + 5})", + "Ability Score Improvement. Iriad's Dexterity score increases by 2, raising the modifier by 1, so increase the following numbers by 1: her Armor Class, her Dexterity saving throw bonus, her {@skill Stealth} bonus, and the bonuses to hit and damage of her weapon attacks." + ], + [ + "5th", + "33 ({@dice 6d8 + 6})", + "Proficiency Bonus. Iriad's proficiency bonus increases by 1, so make the following changes in her stat block: increase the bonuses in the Saving Throws and Skills entries by 1 (by 2 for {@skill Perception}, {@skill Stealth}, and {@skill Survival}); increase her passive {@skill Perception} score by 2; increase the bonuses to hit of her weapon attacks by 1." + ], + [ + "6th", + "38 ({@dice 7d8 + 7})", + "Coordinated Strike. When Iriad uses her Helpful feature to aid an ally in attacking a creature, that target can be up to 30 feet away from her, and she can deal an extra {@dice 2d6} damage to it the next time she hits it with an attack roll before the end of the current turn. The extra damage is the same type of damage dealt by the attack." + ], + [ + "7th", + "44 ({@dice 8d8 + 8})", + "Evasion. When Iriad is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. Iriad doesn't benefit from this feature while {@condition incapacitated}." + ], + [ + "8th", + "49 ({@dice 9d8 + 9})", + "Ability Score Improvement. Iriad's Strength and Wisdom scores both increase by 1, raising their modifiers by 1, so increase the following numbers by 1: her {@skill Athletics}, {@skill Perception}, and {@skill Survival} bonuses and her passive {@skill Perception} score." + ], + [ + "9th", + "55 ({@dice 10d8 + 10})", + "Proficiency Bonus. Iriad's proficiency bonus increases by 1, so make the following changes in her stat block: increase the bonuses in the Saving Throws and Skills entries by 1 (by 2 for {@skill Perception}, {@skill Stealth}, and {@skill Survival}); increase her passive {@skill Perception} score by 2; increase the bonuses to hit of her weapon attacks by 1." + ], + [ + "10th", + "60 ({@dice 11d8 + 11})", + "Ability Score Improvement. Iriad's Dexterity score increases by 2, raising the modifier by 1, so increase the following numbers by 1: her Armor Class, her Dexterity saving throw bonus, her {@skill Stealth} bonus, and the bonuses to hit and damage of her weapon attacks." + ], + [ + "11th", + "66 ({@dice 12d8 + 12})", + "Inspiring Help. When Iriad takes the {@action Help} action, the creature who receives the help also gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ] + ] + } + ] + } + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Iriad (10th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + }, + { + "name": "Coordinated Strike", + "entries": [ + "When Iriad uses her Helpful feature to aid an ally in attacking a creature, that target can be up to 30 feet away from her, and she can deal an extra {@damage 2d6} damage to it the next time she hits it with an attack roll before the end of the current turn. The extra damage is the same type of damage dealt by the attack." + ] + }, + { + "name": "Evasion", + "entries": [ + "When Iriad is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. Iriad doesn't benefit from this feature while {@condition incapacitated}." + ] + } + ] + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 10, + "ac": [ + { + "ac": 16, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "str": 12, + "dex": 20, + "wis": 14, + "save": { + "dex": "+8" + }, + "skill": { + "acrobatics": "+7", + "athletics": "+5", + "investigation": "+4", + "nature": "+4", + "perception": "+10", + "stealth": "+13", + "survival": "+10" + }, + "passive": 18, + "pbNote": "+4", + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + }, + { + "name": "Iriad (11th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + }, + { + "name": "Coordinated Strike", + "entries": [ + "When Iriad uses her Helpful feature to aid an ally in attacking a creature, that target can be up to 30 feet away from her, and she can deal an extra {@damage 2d6} damage to it the next time she hits it with an attack roll before the end of the current turn. The extra damage is the same type of damage dealt by the attack." + ] + }, + { + "name": "Evasion", + "entries": [ + "When Iriad is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. Iriad doesn't benefit from this feature while {@condition incapacitated}." + ] + }, + { + "name": "Inspiring Help", + "entries": [ + "When Iriad takes the {@action Help} action, the creature who receives the help also gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ] + } + ] + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 11, + "ac": [ + { + "ac": 16, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "str": 12, + "dex": 20, + "wis": 14, + "save": { + "dex": "+8" + }, + "skill": { + "acrobatics": "+7", + "athletics": "+5", + "investigation": "+4", + "nature": "+4", + "perception": "+10", + "stealth": "+13", + "survival": "+10" + }, + "passive": 18, + "pbNote": "+4", + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + }, + { + "name": "Iriad (2nd Level)", + "source": "DSotDQ", + "_mod": { + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 2, + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "variant": null + }, + { + "name": "Iriad (3rd Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + } + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 3, + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "skill": { + "acrobatics": "+5", + "athletics": "+2", + "investigation": "+2", + "nature": "+2", + "perception": "+5", + "stealth": "+7", + "survival": "+5" + }, + "variant": null + }, + { + "name": "Iriad (4th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + } + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 4, + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "dex": 18, + "save": { + "dex": "+5" + }, + "skill": { + "acrobatics": "+5", + "athletics": "+2", + "investigation": "+2", + "nature": "+2", + "perception": "+5", + "stealth": "+8", + "survival": "+5" + }, + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + }, + { + "name": "Iriad (5th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + } + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 5, + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "dex": 18, + "save": { + "dex": "+6" + }, + "skill": { + "acrobatics": "+6", + "athletics": "+3", + "investigation": "+3", + "nature": "+3", + "perception": "+7", + "stealth": "+10", + "survival": "+7" + }, + "passive": 15, + "pbNote": "+3", + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + }, + { + "name": "Iriad (6th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + }, + { + "name": "Coordinated Strike", + "entries": [ + "When Iriad uses her Helpful feature to aid an ally in attacking a creature, that target can be up to 30 feet away from her, and she can deal an extra {@damage 2d6} damage to it the next time she hits it with an attack roll before the end of the current turn. The extra damage is the same type of damage dealt by the attack." + ] + } + ] + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 6, + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "dex": 18, + "save": { + "dex": "+6" + }, + "skill": { + "acrobatics": "+6", + "athletics": "+3", + "investigation": "+3", + "nature": "+3", + "perception": "+7", + "stealth": "+10", + "survival": "+7" + }, + "passive": 15, + "pbNote": "+3", + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + }, + { + "name": "Iriad (7th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + }, + { + "name": "Coordinated Strike", + "entries": [ + "When Iriad uses her Helpful feature to aid an ally in attacking a creature, that target can be up to 30 feet away from her, and she can deal an extra {@damage 2d6} damage to it the next time she hits it with an attack roll before the end of the current turn. The extra damage is the same type of damage dealt by the attack." + ] + }, + { + "name": "Evasion", + "entries": [ + "When Iriad is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. Iriad doesn't benefit from this feature while {@condition incapacitated}." + ] + } + ] + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 7, + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "dex": 18, + "save": { + "dex": "+6" + }, + "skill": { + "acrobatics": "+6", + "athletics": "+3", + "investigation": "+3", + "nature": "+3", + "perception": "+7", + "stealth": "+10", + "survival": "+7" + }, + "passive": 15, + "pbNote": "+3", + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + }, + { + "name": "Iriad (8th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + }, + { + "name": "Coordinated Strike", + "entries": [ + "When Iriad uses her Helpful feature to aid an ally in attacking a creature, that target can be up to 30 feet away from her, and she can deal an extra {@damage 2d6} damage to it the next time she hits it with an attack roll before the end of the current turn. The extra damage is the same type of damage dealt by the attack." + ] + }, + { + "name": "Evasion", + "entries": [ + "When Iriad is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. Iriad doesn't benefit from this feature while {@condition incapacitated}." + ] + } + ] + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 8, + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "str": 12, + "dex": 18, + "wis": 14, + "save": { + "dex": "+6" + }, + "skill": { + "acrobatics": "+6", + "athletics": "+4", + "investigation": "+3", + "nature": "+3", + "perception": "+8", + "stealth": "+10", + "survival": "+8" + }, + "passive": 16, + "pbNote": "+3", + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + }, + { + "name": "Iriad (9th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Expertise", + "entries": [ + "Iriad's proficiency bonus is doubled for any ability check she makes that uses either {@skill Stealth} or {@skill Survival}." + ] + }, + { + "name": "Coordinated Strike", + "entries": [ + "When Iriad uses her Helpful feature to aid an ally in attacking a creature, that target can be up to 30 feet away from her, and she can deal an extra {@damage 2d6} damage to it the next time she hits it with an attack roll before the end of the current turn. The extra damage is the same type of damage dealt by the attack." + ] + }, + { + "name": "Evasion", + "entries": [ + "When Iriad is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. Iriad doesn't benefit from this feature while {@condition incapacitated}." + ] + } + ] + }, + "bonus": { + "mode": "appendArr", + "items": { + "name": "Cunning Action", + "entries": [ + "On Iriad's turn in combat, she can take the {@action Dash}, {@action Disengage}, or {@action Hide} action as a bonus action." + ] + } + } + }, + "level": 9, + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "str": 12, + "dex": 18, + "wis": 14, + "save": { + "dex": "+7" + }, + "skill": { + "acrobatics": "+7", + "athletics": "+5", + "investigation": "+4", + "nature": "+4", + "perception": "+10", + "stealth": "+12", + "survival": "+10" + }, + "passive": 18, + "pbNote": "+4", + "action": [ + { + "name": "Poison Dagger", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Ishvern", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 114, + "_copy": { + "name": "Sea Elf Scout", + "source": "DSotDQ", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Ishvern", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Istarian Drone", + "source": "DSotDQ", + "page": 202, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 20, + "dex": 10, + "con": 18, + "int": 4, + "wis": 10, + "cha": 4, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages spoken by its creator but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The drone can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The drone doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drone makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 4 ({@damage 1d8}) lightning damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). The drone has two claws, each of which can grapple only one target." + ] + }, + { + "name": "Crystalline Spit {@recharge 5}", + "entries": [ + "The drone spits crackling gel in a line 5 feet wide and 20 feet long. Each creature in the line must make a {@dc 15} Dexterity saving throw. On a failed save, the creature takes 14 ({@damage 4d6}) lightning damage and is {@condition restrained} by the gel, which hardens into crystal. The creature is {@condition restrained} until the crystal is destroyed. The crystal has AC 15, 15 hit points, immunity to poison and psychic damage, and vulnerability to thunder damage. On a successful save, the creature takes half as much damage and isn't {@condition restrained}." + ] + } + ], + "traitTags": [ + "Spider Climb", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jeyev Veldrews", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 75, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Jeyev", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kalaman Soldier", + "source": "DSotDQ", + "page": 202, + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "athletics": "+3", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1/2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The soldier makes two Longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Hold the Line", + "entries": [ + "If an ally within 5 feet of the soldier must make a saving throw, the soldier encourages the ally, granting advantage on the roll." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kansaldi Fire-Eyes", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 203, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric", + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 172, + "formula": "23d8 + 69" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 17, + "int": 16, + "wis": 19, + "cha": 16, + "save": { + "wis": "+8", + "cha": "+7" + }, + "skill": { + "insight": "+12", + "perception": "+8", + "religion": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 18, + "immune": [ + "fire" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kansaldi casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell light}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell blade barrier}", + "{@spell dispel magic}", + "{@spell flame strike}", + "{@spell lesser restoration}", + "{@spell revivify}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Kansaldi has a glowing ruby embedded in her left eye socket. The gem functions as her eye and grants her truesight (included above). The gem can't be removed while Kansaldi is alive. When she dies, a creature can remove the gem as an action. The gem then functions as a {@item gem of seeing}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Kansaldi makes two Pike attacks and uses Flame Burst." + ] + }, + { + "name": "Pike", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 16 ({@damage 3d10}) radiant damage." + ] + }, + { + "name": "Flame Burst", + "entries": [ + "Kansaldi hurls magical flames at a creature she can see within 60 feet of herself. The target must make a {@dc 16} Dexterity saving throw. On a failed save, the target takes 11 ({@damage 2d10}) fire damage and catches fire; until a creature takes an action to put out the fire, the target takes 5 ({@damage 1d10}) fire damage at the start of each of its turns. On a successful save, the target takes half as much damage and doesn't catch fire." + ] + } + ], + "bonus": [ + { + "name": "Dragon Queen's Favor", + "entries": [ + "Kansaldi or one creature she can see within 60 feet of herself magically regains 17 ({@dice 2d12 + 4}) hit points." + ] + } + ], + "attachedItems": [ + "pike|phb" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "F", + "P", + "R" + ], + "damageTagsSpell": [ + "F", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kapak Draconian", + "source": "DSotDQ", + "page": 198, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 11, + "dex": 17, + "con": 14, + "int": 12, + "wis": 13, + "cha": 11, + "save": { + "dex": "+5" + }, + "skill": { + "deception": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "3", + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, it dissolves into acid that splashes on those around it. Each creature within 5 feet of the draconian must succeed on a {@dc 12} Dexterity saving throw or be covered in acid for 1 minute. A creature covered in the acid takes 7 ({@damage 2d6}) acid damage at the start of each of its turns. A creature can use its action to scrape or wash the acid off itself or another creature." + ] + }, + { + "name": "Glide", + "entries": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Dagger attacks. If both attacks hit the same creature, the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} until the end of the target's next turn. While {@condition poisoned} in this way, the target is also {@condition paralyzed}." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Karavarix", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 183, + "_copy": { + "name": "Greater Death Dragon", + "source": "DSotDQ", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Karavarix", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kender Skirmisher", + "source": "DSotDQ", + "page": 204, + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 14, + "formula": "4d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 16, + "con": 10, + "int": 12, + "wis": 8, + "cha": 14, + "skill": { + "perception": "+3", + "sleight of hand": "+7", + "stealth": "+5" + }, + "passive": 13, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Kenderspeak" + ], + "cr": "1/4", + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 5 ({@damage 1d4 + 3}) bludgeoning damage if the kender used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "The kender launches a barrage of insults at a creature it can see within 60 feet of itself. If the target can hear the kender, the target must succeed on a {@dc 12} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Elusive", + "entries": [ + "The kender takes the Disengage or Hide action." + ] + } + ], + "attachedItems": [ + "hoopak|dsotdq" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Leedara", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 58, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 11 + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 7, + "dex": 13, + "con": 10, + "int": 10, + "wis": 12, + "cha": 17, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Any languages she knew in life" + ], + "cr": "4", + "trait": [ + { + "name": "Ethereal Sight", + "entries": [ + "Leedara can see 60 feet into the Ethereal Plane when she is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "Leedara can move through other creatures and objects as if they were difficult terrain. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ] + } + ], + "action": [ + { + "name": "Withering Touch", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ] + }, + { + "name": "Etherealness", + "entries": [ + "Leedara enters the Ethereal Plane from the Material Plane, or vice versa. She is visible on the Material Plane while she is in the Border Ethereal, and vice versa, yet she can't affect or be affected by anything on the other plane." + ] + }, + { + "name": "Horrifying Visage", + "entries": [ + "Each non-undead creature within 60 feet of Leedara that can see her must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to Leedara's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a {@spell greater restoration} spell, but only within 24 hours of it occurring." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid that the ghost can see within 5 feet of it must succeed on a {@dc 13} Charisma saving throw or be possessed by Leedara; Leedara then disappears, and the target is {@condition incapacitated} and loses control of its body. Leedara now controls the body but doesn't deprive the target of awareness. Leedara can't be targeted by any attack, spell, or other effect, except ones that turn undead, and she retains her alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. She otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, Leedara ends it as a bonus action, or Leedara is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, Leedara reappears in an unoccupied space within 5 feet of the body. The target is immune to Leedara's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Leedara magically assumes the appearance she had in life, and her creature type changes to Humanoid, while retaining her other game statistics. This transformation ends if Leedara is reduced to 0 hit points or uses an action to end it." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Shapechanger" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lesser Death Dragon", + "source": "DSotDQ", + "page": 195, + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 199, + "formula": "21d10 + 84" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 20, + "dex": 10, + "con": 18, + "int": 5, + "wis": 10, + "cha": 5, + "save": { + "dex": "+4", + "wis": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "piercing" + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "cr": "10", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 4 ({@damage 1d8}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft. one target. {@h}8 ({@damage 1d6 + 5}) slashing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}. The dragon has two claws, each of which can grapple one target." + ] + }, + { + "name": "Cataclysmic Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of ghostly purple flames in a 30-foot cone. Each creature in that area must make a {@dc 16} Dexterity saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. A creature dies if the breath reduces it to 0 hit points. Additionally, any Medium or smaller Humanoid killed by the breath's damage, as well as every corpse of such a creatures within the cone, becomes a zombie (see the Monster Manual) under the dragon's control. The zombie acts on the dragon's initiative but immediately after the dragon's turn. Absent any other command, the zombie tries to kill any non-Undead creature it encounters." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Levna Drakehorn", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 213, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ], + "sidekickType": "warrior", + "sidekickTags": [ + "defender" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 14, + "int": 10, + "wis": 11, + "cha": 14, + "save": { + "con": "+4" + }, + "skill": { + "athletics": "+4", + "intimidation": "+4", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "pbNote": "+2", + "trait": [ + { + "name": "Bonus Proficiencies", + "entries": [ + "Levna is proficient with simple and martial weapons, shields, and all armor." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "Levna has advantage on an attack roll against a creature if at least one of her allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ] + } + ], + "reaction": [ + { + "name": "Protection", + "entries": [ + "When a creature Levna can see within 5 feet of her is targeted by an attack, she can impose disadvantage on the attack roll if she can see the attacker and she is wielding a melee weapon." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Levna beyond 1st Level", + "entries": [ + { + "type": "table", + "colLabels": [ + "Level", + "Hit Points", + "New Features" + ], + "colStyles": [ + "col-2 text-center", + "col-2", + "col-8" + ], + "rows": [ + [ + "2nd", + "19 ({@dice 3d8 + 6})", + "Second Wind. Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ], + [ + "3rd", + "26 ({@dice 4d8 + 8})", + "Improved Critical. Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ], + [ + "4th", + "32 ({@dice 5d8 + 10})", + "Ability Score Improvement. Levna's Strength score increases by 2, raising the modifier by 1, so increase her {@skill Athletics} bonus by 1, and increase the bonuses to hit and damage of her weapon attacks by 1." + ], + [ + "5th", + "39 ({@dice 6d8 + 12})", + "Proficiency Bonus. Levna's proficiency bonus increases by 1, so increase the following numbers by 1: the bonuses in the Saving Throws and Skills entries, her passive {@skill Perception} score, and the bonuses to hit of her weapon attacks." + ], + [ + "6th", + "45 ({@dice 7d8 + 14})", + "Extra Attack. Levna can attack twice, instead of once, whenever she takes the {@action Attack} action on her turn." + ], + [ + "7th", + "52 ({@dice 8d8 + 16})", + "Battle Readiness. Levna has advantage on initiative rolls." + ], + [ + "8th", + "58 ({@dice 9d8 + 18})", + "Ability Score Improvement. Levna's Strength score increases by 2, raising the modifier by 1, so increase her {@skill Athletics} bonus by 1, and increase the bonuses to hit and damage of her weapon attacks by 1." + ], + [ + "9th", + "65 ({@dice 10d8 + 20})", + "Proficiency Bonus. Levna's proficiency bonus increases by 1, so increase the following numbers by 1: the bonuses in the Saving Throws and Skills entries, her passive {@skill Perception} score, and the bonuses to hit of her weapon attacks." + ], + [ + "10th", + "71 ({@dice 11d8 + 22})", + "Improved Defense. Levna's Armor Class increases by 1." + ], + [ + "11th", + "78 ({@dice 12d8 + 24})", + "Indomitable. Levna can reroll a saving throw that she fails, but she must use the new roll. Once she uses this feature, she can't use it again until she finishes a long rest." + ] + ] + } + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Levna Drakehorn (10th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Levna can attack twice, instead of once, whenever she takes the {@action Attack} action on her turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Levna has advantage on initiative rolls." + ] + }, + { + "name": "Improved Defense", + "entries": [ + "Levna's Armor Class increases by 1." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + } + }, + "level": 10, + "ac": [ + { + "ac": 19, + "from": [ + "{@item plate armor|PHB|plate}", + "improved defense" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "str": 19, + "save": { + "con": "+6" + }, + "skill": { + "athletics": "+8", + "intimidation": "+6", + "perception": "+4" + }, + "passive": 14, + "pbNote": "+4", + "variant": null + }, + { + "name": "Levna Drakehorn (11th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Levna can attack twice, instead of once, whenever she takes the {@action Attack} action on her turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Levna has advantage on initiative rolls." + ] + }, + { + "name": "Improved Defense", + "entries": [ + "Levna's Armor Class increases by 1." + ] + }, + { + "name": "Indomitable", + "entries": [ + "Levna can reroll a saving throw that she fails, but she must use the new roll. Once she uses this feature, she can't use it again until she finishes a long rest." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + } + }, + "level": 11, + "ac": [ + { + "ac": 19, + "from": [ + "{@item plate armor|PHB|plate}", + "improved defense" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "str": 19, + "save": { + "con": "+6" + }, + "skill": { + "athletics": "+8", + "intimidation": "+6", + "perception": "+4" + }, + "passive": 14, + "pbNote": "+4", + "variant": null + }, + { + "name": "Levna Drakehorn (2nd Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + } + ] + } + }, + "level": 2, + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "variant": null + }, + { + "name": "Levna Drakehorn (3rd Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + } + ] + } + }, + "level": 3, + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "variant": null + }, + { + "name": "Levna Drakehorn (4th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + } + }, + "level": 4, + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "str": 17, + "skill": { + "athletics": "+5", + "intimidation": "+4", + "perception": "+2" + }, + "variant": null + }, + { + "name": "Levna Drakehorn (5th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + } + }, + "level": 5, + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "str": 17, + "save": { + "con": "+5" + }, + "skill": { + "athletics": "+6", + "intimidation": "+5", + "perception": "+3" + }, + "passive": 13, + "pbNote": "+3", + "variant": null + }, + { + "name": "Levna Drakehorn (6th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Levna can attack twice, instead of once, whenever she takes the {@action Attack} action on her turn." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + } + }, + "level": 6, + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "str": 17, + "save": { + "con": "+5" + }, + "skill": { + "athletics": "+6", + "intimidation": "+5", + "perception": "+3" + }, + "passive": 13, + "pbNote": "+3", + "variant": null + }, + { + "name": "Levna Drakehorn (7th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Levna can attack twice, instead of once, whenever she takes the {@action Attack} action on her turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Levna has advantage on initiative rolls." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + } + }, + "level": 7, + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "str": 17, + "save": { + "con": "+5" + }, + "skill": { + "athletics": "+6", + "intimidation": "+5", + "perception": "+3" + }, + "passive": 13, + "pbNote": "+3", + "variant": null + }, + { + "name": "Levna Drakehorn (8th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Levna can attack twice, instead of once, whenever she takes the {@action Attack} action on her turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Levna has advantage on initiative rolls." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + } + }, + "level": 8, + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "str": 19, + "save": { + "con": "+5" + }, + "skill": { + "athletics": "+7", + "intimidation": "+5", + "perception": "+3" + }, + "passive": 13, + "pbNote": "+3", + "variant": null + }, + { + "name": "Levna Drakehorn (9th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Second Wind", + "entries": [ + "Levna can use a bonus action on her turn to regain hit points equal to {@dice 1d10} + her level. Once she uses this feature, she can't use it again until she finishes a short or long rest." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Levna's attack rolls now score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Extra Attack", + "entries": [ + "Levna can attack twice, instead of once, whenever she takes the {@action Attack} action on her turn." + ] + }, + { + "name": "Battle Readiness", + "entries": [ + "Levna has advantage on initiative rolls." + ] + } + ] + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + } + }, + "level": 9, + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "str": 19, + "save": { + "con": "+6" + }, + "skill": { + "athletics": "+8", + "intimidation": "+6", + "perception": "+4" + }, + "passive": 14, + "pbNote": "+4", + "variant": null + } + ] + }, + { + "name": "Lohezet", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "wizard" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 137, + "formula": "25d8 + 25" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 20, + "wis": 14, + "cha": 11, + "save": { + "con": "+5", + "wis": "+6" + }, + "skill": { + "arcana": "+9", + "history": "+9", + "medicine": "+6" + }, + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Infernal" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Lohezet casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell light}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell dimension door}", + "{@spell mage armor}" + ], + "1e": [ + "{@spell arcane eye}", + "{@spell dominate person}", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Toxic Mastery", + "entries": [ + "Lohezet ignores a creature's resistance to poison damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Lohezet makes three Withering Blast attacks and uses Miasma if it's available. He can replace one of the attacks with a use of Spellcasting." + ] + }, + { + "name": "Withering Blast", + "entries": [ + "{@atk ms,rs} {@hit 9} to hit, reach 5 ft. or range 60 ft., one target. {@h}18 ({@damage 2d12 + 5}) necrotic damage." + ] + }, + { + "name": "Miasma {@recharge 4}", + "entries": [ + "Lohezet magically conjures a billowing cloud of purple fog in a 20-foot-radius sphere centered on a point within 120 feet of himself. The area within the sphere is heavily obscured, and when a creature starts its turn in the sphere or enters the sphere for the first time on a turn, it must make a {@dc 17} Constitution saving throw. On a failed save, the creature takes 39 ({@damage 6d12}) poison damage and is {@condition poisoned} until the start of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}. The cloud lasts for 1 minute, until Lohezet ends it early (no action required), or until Lohezet uses this action again. A strong wind disperses the cloud." + ] + } + ], + "reaction": [ + { + "name": "Noxious Rebuke (3/Day)", + "entries": [ + "When a creature within 60 feet of Lohezet damages him, Lohezet magically retaliates with a spray of foul, purple mist. The creature must make a {@dc 17} Constitution saving throw, taking 16 ({@damage 2d10 + 5}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "E", + "I" + ], + "damageTags": [ + "I", + "N" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lord Soth", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 206, + "otherSources": [ + { + "source": "VEoR" + } + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "paladin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 228, + "formula": "24d8 + 120" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 11, + "con": 20, + "int": 12, + "wis": 16, + "cha": 20, + "save": { + "dex": "+6", + "wis": "+9", + "cha": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "Solamnic" + ], + "cr": "19", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Soth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell command} (cast at 3rd level)" + ], + "daily": { + "1": [ + "{@spell banishment} (cast at 6th level)" + ], + "2e": [ + "{@spell dispel magic}", + "{@spell hold person} (cast at 3rd level)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Soth fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Soth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Marshal Undead", + "entries": [ + "Unless Soth is {@condition incapacitated}, he and Undead creatures of his choice within 60 feet of him are immune to features that turn Undead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Soth doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Soth makes three Forsaken Brand attacks." + ] + }, + { + "name": "Forsaken Brand", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) necrotic damage, and if the target is a creature, it can't regain hit points until the start of Soth's next turn." + ] + }, + { + "name": "Cataclysmic Fire (1/Day)", + "entries": [ + "Soth hurls a magical ball of fire that explodes at a point he can see within 120 feet of himself. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 19} Dexterity saving throw. A creature takes 35 ({@damage 10d6}) fire damage and 35 ({@damage 10d6}) necrotic damage on a failed save, or half as much damage on a successful one.", + "Additionally, any Medium or smaller Humanoid killed by this damage, as well as every corpse of such a creature within the sphere, becomes a skeleton (see the Monster Manual) under Soth's control. The skeleton acts on Soth's initiative but immediately after his turn. Absent any other command, the skeleton tries to kill any non-Undead creature it encounters." + ] + }, + { + "name": "Word of Death (1/Day)", + "entries": [ + "Soth points at a creature he can see within 60 feet of himself and magically commands it to die. The target must make a {@dc 19} Constitution saving throw, taking 100 necrotic damage on a failed save, or half as much damage on a successful one. If this damage reduces the target to 0 hit points, the target dies." + ] + } + ], + "legendary": [ + { + "name": "Implacable Maneuver", + "entries": [ + "Soth moves up to his speed or commands a mount he is riding to move up to its speed. The movement from this action doesn't provoke opportunity attacks. If he or his mount moves within 5 feet of a creature during this movement, he can force the creature to make a {@dc 20} Strength saving throw. The creature is knocked {@condition prone} unless it succeeds on the saving throw." + ] + }, + { + "name": "Strike (Costs 2 Actions)", + "entries": [ + "Soth makes one Forsaken Brand attack." + ] + }, + { + "name": "Cast a Spell (Costs 3 Actions)", + "entries": [ + "Soth uses Spellcasting." + ] + } + ], + "altArt": [ + { + "name": "Lord Soth", + "source": "VEoR" + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "B", + "F", + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "incapacitated", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lorry Wanwillow", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 177, + "_copy": { + "name": "Vampire", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Lorry", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Shapechanger", + "items": { + "name": "Shapechanger", + "entries": [ + "If Lorry isn't in sunlight or running water, it can use its action to polymorph into a Tiny rat or a Medium cloud of mist, or back into its true form.", + "While in bat form, Lorry can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, Lorry can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ] + } + } + } + }, + "type": { + "type": "undead", + "tags": [ + "shapechanger", + "kender" + ] + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Raven Uth Vogler", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 53, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Raven", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Red Ruin", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 208, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB|plate}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 12, + "con": 17, + "int": 13, + "wis": 14, + "cha": 15, + "save": { + "str": "+8", + "dex": "+5" + }, + "skill": { + "athletics": "+8", + "perception": "+6" + }, + "passive": 16, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "10", + "trait": [ + { + "name": "Draconic Devotion", + "entries": [ + "While Red Ruin can see a Dragon that isn't hostile to her, she has advantage on attack rolls." + ] + }, + { + "name": "Mounted Combat Master", + "entries": [ + "When Red Ruin is mounted and a creature targets her mount with an attack, Red Ruin can cause the attack to target her instead." + ] + }, + { + "name": "Mounted Evasion", + "entries": [ + "When Red Ruin or her mount makes a Dexterity saving throw to take half damage from an effect, they take no damage on a success and half damage on a failure." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Red Ruin makes three Ember Lance attacks." + ] + }, + { + "name": "Ember Lance", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage plus 7 ({@damage 2d6}) fire damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 16} Strength saving throw or fall {@condition prone}." + ] + }, + { + "name": "Explosive Hand Crossbow {@recharge 5}", + "entries": [ + "Red Ruin fires an explosive crossbow bolt at a point she can see within 120 feet of herself. When the bolt reaches that point, or if it hits an object early, it detonates in a 20-foot-radius sphere. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 35 ({@damage 10d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RNG" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sarlamir", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 102, + "_copy": { + "name": "Skeletal Knight", + "source": "DSotDQ", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the skeletal knight", + "with": "Sarlamir", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sea Elf Scout", + "source": "DSotDQ", + "page": 114, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 11, + "wis": 13, + "cha": 11, + "skill": { + "nature": "+4", + "perception": "+5", + "stealth": "+6", + "survival": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Any one language (usually Common)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Keen Hearing and Sight", + "entries": [ + "The scout has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The scout has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + }, + { + "name": "Child of the Sea", + "entries": [ + "The scout can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scout makes two melee attacks or two ranged attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, ranged 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sivak Draconian", + "source": "DSotDQ", + "page": 199, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 57, + "formula": "6d10 + 24" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 18, + "dex": 10, + "con": 18, + "int": 13, + "wis": 10, + "cha": 10, + "save": { + "str": "+6", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "4", + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points by a creature that is Large or smaller, the draconian crumbles into dust that then forms a spectral, shrieking image of the creature that killed it. The image lasts for 1 minute. Each creature hostile to the draconian within 10 feet of the image must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the spectral image for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Serrated Sword attacks and one Tail attack." + ] + }, + { + "name": "Serrated Sword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Shape Theft", + "entries": [ + "After the draconian kills a Medium or smaller Humanoid, the draconian magically cloaks itself in an illusion to look and feel like that creature while retaining the draconian's game statistics (other than its size). This transformation lasts until the draconian dies or uses a bonus action to end it." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skeletal Knight", + "source": "DSotDQ", + "page": 208, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 10, + "con": 16, + "int": 13, + "wis": 14, + "cha": 10, + "save": { + "con": "+6", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "7", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the skeletal knight to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is bludgeoning or from a critical hit. On a success, the skeletal knight drops to 1 hit point instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The skeletal knight doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skeletal knight makes three Enervating Blade or Throwing Axe attacks in any combination." + ] + }, + { + "name": "Enervating Blade", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) necrotic damage, and if the target is a creature, it can't regain hit points until the start of the skeletal knight's next turn." + ] + }, + { + "name": "Throwing Axe", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ] + } + ], + "traitTags": [ + "Undead Fortitude", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tatina Rookledust", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 87, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Tatina", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Tem Temble", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 213, + "level": 1, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kender" + ], + "sidekickType": "spellcaster", + "sidekickTags": [ + "healer" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d6 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 14, + "int": 10, + "wis": 14, + "cha": 14, + "save": { + "wis": "+4" + }, + "skill": { + "insight": "+4", + "medicine": "+4", + "perception": "+4", + "sleight of hand": "+4", + "stealth": "+4" + }, + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Kenderspeak" + ], + "pbNote": "+2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}" + ], + "spells": { + "1": { + "slots": 2, + "spells": [ + "{@spell healing word}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Bonus Proficiencies", + "entries": [ + "Tem is proficient with simple weapons and light armor." + ] + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 12} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Elusive", + "entries": [ + "Tem takes the Disengage or Hide action." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Tem beyond 1st Level", + "entries": [ + { + "type": "table", + "colLabels": [ + "Level", + "Hit Points", + "New Features" + ], + "colStyles": [ + "col-2 text-center", + "col-2", + "col-8" + ], + "rows": [ + [ + "2nd", + "16 ({@dice 3d6 + 6})", + "Spellcasting. Tem learns another 1st-level spell: {@spell faerie fire}." + ], + [ + "3rd", + "22 ({@dice 4d6 + 8})", + "Spellcasting. Tem gains one 1st-level spell slot. She also learns another 1st-level spell: {@spell goodberry}." + ], + [ + "4th", + "27 ({@dice 5d6 + 10})", + "Ability Score Improvement. Tem's Wisdom score increases by 2, raising the modifier by 1, so increase the following numbers by 1: her spell save DC and the bonus to hit of spell attacks; her Wisdom saving throw bonus; her {@skill Insight}, {@skill Medicine}, and {@skill Perception} bonuses; her passive {@skill Perception} score; and the DC of her Taunt action. Spellcasting. Tem learns another cantrip: {@spell mending}." + ], + [ + "5th", + "33 ({@dice 6d6 + 12})", + "Proficiency Bonus. Tem's proficiency bonus increases by 1, so increase the following numbers by 1: her spell save DC and the bonus to hit of her spell attacks, the bonuses in the Saving Throws and Skills entries, and the bonuses to hit of her weapon attacks, and the DC of her Taunt action." + ], + [ + "6th", + "38 ({@dice 7d6 + 14})", + "Potent Cantrips. Tem adds her Wisdom modifier to the damage she deals with any cantrip." + ], + [ + "7th", + "44 ({@dice 8d6 + 16})", + "Spellcasting. Tem gains one 2nd-level spell slot. She also learns another 2nd-level spell: {@spell enhance ability}." + ], + [ + "8th", + "49 ({@dice 9d6 + 18})", + "Ability Score Improvement. Tem's Wisdom score increases by 2, raising the modifier by 1, so increase the following numbers by 1: her spell save DC and the bonus to hit of spell attacks; her Wisdom saving throw bonus; her {@skill Insight}, {@skill Medicine}, and {@skill Perception} bonuses; her passive {@skill Perception} score; and the DC of her Taunt action." + ], + [ + "9th", + "55 ({@dice 10d6 + 20})", + "Proficiency Bonus. Tem's proficiency bonus increases by 1, so increase the following numbers by 1: her spell save DC and the bonus to hit of her spell attacks, the bonuses in the Saving Throws and Skills entries, the bonuses to hit of her weapon attacks, and the DC of her Taunt action." + ], + [ + "10th", + "60 ({@dice 11d6 + 22})", + "Spellcasting. Tem learns another cantrip: {@spell resistance}." + ], + [ + "11th", + "66 ({@dice 12d6 + 24})", + "Spellcasting. Tem gains one 3rd-level spell slot. She also learns another 3rd-level spell: {@spell dispel magic}." + ] + ] + } + ] + } + ], + "attachedItems": [ + "hoopak|dsotdq" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "I" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Tem Temble (10th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Potent Cantrips", + "entries": [ + "Tem adds her Wisdom modifier to the damage she deals with any cantrip." + ] + } + ] + } + }, + "level": 10, + "hp": { + "average": 60, + "formula": "11d6 + 22" + }, + "wis": 18, + "save": { + "wis": "+8" + }, + "skill": { + "insight": "+8", + "medicine": "+8", + "perception": "+8", + "sleight of hand": "+6", + "stealth": "+6" + }, + "passive": 16, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}", + "{@spell resistance}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + }, + "2": { + "slots": 1, + "spells": [ + "{@spell enhance ability}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 16} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + }, + { + "name": "Tem Temble (11th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Potent Cantrips", + "entries": [ + "Tem adds her Wisdom modifier to the damage she deals with any cantrip." + ] + } + ] + } + }, + "level": 11, + "hp": { + "average": 66, + "formula": "12d6 + 24" + }, + "wis": 18, + "save": { + "wis": "+8" + }, + "skill": { + "insight": "+8", + "medicine": "+8", + "perception": "+8", + "sleight of hand": "+6", + "stealth": "+6" + }, + "passive": 16, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}", + "{@spell resistance}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + }, + "2": { + "slots": 1, + "spells": [ + "{@spell enhance ability}" + ] + }, + "3": { + "slots": 1, + "spells": [ + "{@spell dispel magic}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 16} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + }, + { + "name": "Tem Temble (2nd Level)", + "source": "DSotDQ", + "level": 2, + "hp": { + "average": 16, + "formula": "3d6 + 6" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}" + ], + "spells": { + "1": { + "slots": 2, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Tem Temble (3rd Level)", + "source": "DSotDQ", + "level": 3, + "hp": { + "average": 22, + "formula": "4d6 + 8" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + }, + { + "name": "Tem Temble (4th Level)", + "source": "DSotDQ", + "level": 4, + "hp": { + "average": 27, + "formula": "5d6 + 10" + }, + "wis": 16, + "save": { + "wis": "+5" + }, + "skill": { + "insight": "+5", + "medicine": "+5", + "perception": "+5", + "sleight of hand": "+4", + "stealth": "+4" + }, + "passive": 15, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 13} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + }, + { + "name": "Tem Temble (5th Level)", + "source": "DSotDQ", + "level": 5, + "hp": { + "average": 33, + "formula": "6d6 + 12" + }, + "wis": 16, + "save": { + "wis": "+6" + }, + "skill": { + "insight": "+6", + "medicine": "+6", + "perception": "+6", + "sleight of hand": "+5", + "stealth": "+5" + }, + "passive": 15, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 14} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + }, + { + "name": "Tem Temble (6th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Potent Cantrips", + "entries": [ + "Tem adds her Wisdom modifier to the damage she deals with any cantrip." + ] + } + ] + } + }, + "level": 6, + "hp": { + "average": 38, + "formula": "7d6 + 14" + }, + "wis": 16, + "save": { + "wis": "+6" + }, + "skill": { + "insight": "+6", + "medicine": "+6", + "perception": "+6", + "sleight of hand": "+5", + "stealth": "+5" + }, + "passive": 15, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 14} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + }, + { + "name": "Tem Temble (7th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Potent Cantrips", + "entries": [ + "Tem adds her Wisdom modifier to the damage she deals with any cantrip." + ] + } + ] + } + }, + "level": 7, + "hp": { + "average": 44, + "formula": "8d6 + 16" + }, + "wis": 16, + "save": { + "wis": "+6" + }, + "skill": { + "insight": "+6", + "medicine": "+6", + "perception": "+6", + "sleight of hand": "+5", + "stealth": "+5" + }, + "passive": 15, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + }, + "2": { + "slots": 1, + "spells": [ + "{@spell enhance ability}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 14} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + }, + { + "name": "Tem Temble (8th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Potent Cantrips", + "entries": [ + "Tem adds her Wisdom modifier to the damage she deals with any cantrip." + ] + } + ] + } + }, + "level": 8, + "hp": { + "average": 49, + "formula": "9d6 + 18" + }, + "wis": 18, + "save": { + "wis": "+7" + }, + "skill": { + "insight": "+7", + "medicine": "+7", + "perception": "+7", + "sleight of hand": "+5", + "stealth": "+5" + }, + "passive": 16, + "pbNote": "+3", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + }, + "2": { + "slots": 1, + "spells": [ + "{@spell enhance ability}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 15} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + }, + { + "name": "Tem Temble (9th Level)", + "source": "DSotDQ", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Potent Cantrips", + "entries": [ + "Tem adds her Wisdom modifier to the damage she deals with any cantrip." + ] + } + ] + } + }, + "level": 9, + "hp": { + "average": 55, + "formula": "10d6 + 20" + }, + "wis": 18, + "save": { + "wis": "+8" + }, + "skill": { + "insight": "+8", + "medicine": "+8", + "perception": "+8", + "sleight of hand": "+6", + "stealth": "+6" + }, + "passive": 16, + "pbNote": "+4", + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to spell attacks). She has the following druid spells prepared:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell mending}" + ], + "spells": { + "1": { + "slots": 3, + "spells": [ + "{@spell healing word}", + "{@spell faerie fire}", + "{@spell goodberry}" + ] + }, + "2": { + "slots": 1, + "spells": [ + "{@spell enhance ability}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Hoopak", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ] + }, + { + "name": "Taunt", + "entries": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 16} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Undead Soldier", + "source": "DSotDQ", + "page": 96, + "_copy": { + "name": "Wight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "wight", + "with": "soldier" + } + } + }, + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "trait": null, + "hasToken": true + }, + { + "name": "Virruza", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 119, + "_copy": { + "name": "Green Slaad", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the slaad", + "with": "Virruza", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Shapechanger", + "items": { + "name": "Death Throes", + "entries": [ + "When Virruza is reduced to 0 hit points, he turns into a puddle of acid and splashes acid on those around him. Each creature within 5 feet of him must succeed on a {@dc 12} Dexterity saving throw or be covered in acid for 1 minute. A creature can use its action to scrape or wash the acid off itself or another creature. A creature covered in the acid takes 7 ({@damage 2d6}) acid damage at the start of each of its turns." + ] + } + } + } + }, + "traitTags": [ + "Death Burst", + "Magic Resistance", + "Regeneration", + "Shapechanger" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Wasteland Dragonnel", + "source": "DSotDQ", + "page": 201, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 65, + "formula": "10d10 + 10" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 16, + "dex": 16, + "con": 12, + "int": 8, + "wis": 13, + "cha": 10, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "acid" + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The dragonnel doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonnel makes two Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Acid Spit", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 60 ft., one target. {@h}20 ({@damage 5d6 + 3}) acid damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "A", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Wersten Kern", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 209, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 178, + "formula": "21d8 + 84" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 10, + "con": 18, + "int": 13, + "wis": 14, + "cha": 16, + "save": { + "con": "+9", + "wis": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "Solamnic" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Wersten casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell wall of stone}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces Wersten to 0 hit points, she must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is bludgeoning or from a critical hit. On a success, Wersten drops to 1 hit point instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Wersten doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Wersten makes three Banner Pike attacks and uses Terrifying Litany if it's available." + ] + }, + { + "name": "Banner Pike", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 13 ({@damage 3d8}) necrotic damage. If the target is a Humanoid, it must succeed on a {@dc 16} Charisma saving throw or be cursed. The curse lasts until it is lifted by remove curse or similar magic. Black, thorny rose stems sprout from the creature's body while it is cursed, imposing disadvantage on the creature's ability checks and attack rolls and halving its speed. A creature that succeeds on the saving throw against the curse is immune to it for 24 hours." + ] + }, + { + "name": "Terrifying Litany {@recharge 5}", + "entries": [ + "Wersten recites names of souls slain by Soth and his company, channeling their mortal terror. Each creature that isn't an Undead within 30 feet of her must make a {@dc 16} Wisdom saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) psychic damage and is {@condition frightened} of Wersten for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition frightened}. At the end of each of its turns, a {@condition frightened} creature can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Undead Fortitude", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "N", + "P", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wyhan", + "isNpc": true, + "isNamedCreature": true, + "source": "DSotDQ", + "page": 79, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Wyhan", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Belashyrra", + "isNamedCreature": true, + "source": "ERLW", + "page": 286, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 304, + "formula": "32d8 + 160" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 24, + "dex": 21, + "con": 20, + "int": 25, + "wis": 22, + "cha": 23, + "save": { + "int": "+14", + "wis": "+13", + "cha": "+13" + }, + "skill": { + "arcana": "+14", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "exhaustion", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": { + "cr": "22", + "lair": "23" + }, + "trait": [ + { + "name": "Alien Mind", + "entries": [ + "If a creature tries to read Belashyrra's thoughts or deals psychic damage to it, that creature must succeed on a {@dc 22} Intelligence saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Eye Thief", + "entries": [ + "Belashyrra can see through the eyes of all creatures within 120 feet of it. It can use its Eye Ray through any creature within 120 feet of it, as though it were in that creature's space." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Belashyrra fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Belashyrra has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Belashyrra regains 20 hit points at the start of its turn. If it takes radiant damage, this trait doesn't function at the start of its next turn. Belashyrra dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Teleport", + "entries": [ + "As a bonus action, Belashyrra can teleport up to 30 feet to an unoccupied space it can see." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Belashyrra makes two attacks with its claws and uses its Eye Ray once." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d6 + 7}) slashing damage." + ] + }, + { + "name": "Eye Ray", + "entries": [ + "Belashyrra shoots one of the following magical eye rays of its choice, targeting one creature it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Psyche-Reconstruction Ray", + "style": "italic", + "entry": "The target must make a {@dc 22} Wisdom saving throw, taking 49 ({@damage 9d10}) psychic damage on a failed save, or half as much damage on a successful one. If this damage reduces a creature to 0 hit points, it dies and transforms into a spectator under Belashyrra's control and acts immediately after Belashyrra in the initiative order. The target can't be returned to its original form by any means short of a {@spell wish} spell." + }, + { + "type": "item", + "name": "2. Domination Ray", + "style": "italic", + "entry": "The target must succeed on a {@dc 22} Wisdom saving throw or be {@condition charmed} by Belashyrra for 1 minute or until the target takes damage. Belashyrra can issue telepathic commands to the {@condition charmed} creature (no action required), which it does its best to obey." + }, + { + "type": "item", + "name": "3. Mind-Weakening Ray", + "style": "italic", + "entry": "The target must succeed on a {@dc 22} Intelligence saving throw or take 36 ({@damage 8d8}) psychic damage and be unable to cast spells or activate magic items for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "4. Blinding Ray", + "style": "italic", + "entry": "The target and each creature within 10 feet of it must succeed on a {@dc 22} Constitution saving throw or take 19 ({@damage 3d12}) radiant damage and be {@condition blinded} for 1 minute. Until this blindness ends, Belyshyrra can see through the {@condition blinded} creature's eyes. The {@condition blinded} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "Belashyrra makes one claw attack." + ] + }, + { + "name": "Implant Fear (Costs 2 Actions)", + "entries": [ + "Belashyrra targets a creature it can see within 60 feet of it. The target must succeed on a {@dc 22} Wisdom saving throw or take 22 ({@damage 4d10}) psychic damage and immediately use its reaction, if available, to move as far as its speed allows away from Belashyrra." + ] + }, + { + "name": "Rend Reality (Costs 3 Actions)", + "entries": [ + "Belashyrra rips at the bonds of reality in its immediate area. Each creature within 10 feet of Belashyrra must succeed on a {@dc 22} Constitution saving throw or take 19 ({@damage 3d12}) force damage and gain one level of {@condition exhaustion}." + ] + } + ], + "legendaryGroup": { + "name": "Belashyrra", + "source": "ERLW" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "O", + "R", + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "charmed", + "exhaustion", + "stunned" + ], + "conditionInflictLegendary": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "intelligence", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bone Knight", + "source": "ERLW", + "page": 316, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "bonecraft armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 14, + "int": 12, + "wis": 14, + "cha": 16, + "save": { + "wis": "+5", + "cha": "+6" + }, + "skill": { + "athletics": "+7", + "deception": "+6", + "intimidation": "+6" + }, + "passive": 12, + "resist": [ + "necrotic", + "poison" + ], + "languages": [ + "any one language (usually Common)" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The knight is an 8th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It has the following paladin spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell compelled duel}", + "{@spell hellish rebuke}", + "{@spell wrathful smite}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell branding smite}", + "{@spell crown of madness}", + "{@spell darkness}", + "{@spell find steed}", + "{@spell magic weapon}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Commander of Bones", + "entries": [ + "As a bonus action, the knight can target one skeleton or zombie it can see within 30 feet of it. The target must make a {@dc 14} Wisdom saving throw. On a failed save, the target must obey the knight's commands until the knight dies or until the knight releases it as a bonus action. The knight can command up to twelve undead at a time this way." + ] + }, + { + "name": "Master of the Pallid Banner", + "entries": [ + "While within 60 feet of the knight, any undead ally of the knight has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The knight attacks twice with one of its weapons." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "longbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "F", + "R", + "Y" + ], + "spellcastingTags": [ + "CP" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Changeling", + "source": "ERLW", + "page": 317, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "changeling", + "shapechanger" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 15, + "con": 12, + "int": 14, + "wis": 10, + "cha": 16, + "skill": { + "acrobatics": "+4", + "deception": "+5", + "insight": "+2", + "perception": "+2", + "persuasion": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Halfling", + "Thieves' cant" + ], + "cr": "1/2", + "trait": [ + { + "name": "Change Appearance", + "entries": [ + "The changeling can use its action to polymorph into a Medium humanoid it has seen, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The changeling makes two attacks with its dagger." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Unsettling Visage (Recharges after a Short or Long Rest)", + "entries": [ + "Each creature within 30 feet of the changeling must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} 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." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "E", + "H", + "TC" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Clawfoot", + "group": [ + "Dinosaurs" + ], + "source": "ERLW", + "page": 289, + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 4, + "wis": 12, + "cha": 10, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The clawfoot has advantage on an attack roll against a creature if at least one of the clawfoot's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the clawfoot moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the clawfoot can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The clawfoot makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + } + ], + "altArt": [ + { + "name": "Clawfoot Raptor", + "source": "WGE" + } + ], + "traitTags": [ + "Pack Tactics", + "Pounce" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Corrin Delmaco", + "isNpc": true, + "isNamedCreature": true, + "source": "ERLW", + "page": 271, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Stout Halfling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Corrin", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "E" + ], + "hp": { + "average": 21, + "formula": "6d6" + }, + "languageTags": [ + "H", + "X" + ], + "hasToken": true + }, + { + "name": "Dolgaunt", + "source": "ERLW", + "page": 290, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 18, + "con": 12, + "int": 13, + "wis": 14, + "cha": 11, + "skill": { + "acrobatics": "+6", + "perception": "+4", + "stealth": "+6" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 14, + "conditionImmune": [ + "blinded" + ], + "languages": [ + "Deep Speech", + "Goblin" + ], + "cr": "3", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If the dolgaunt is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the dolgaunt instead takes no damage if it succeeds on the saving throw, and only half damage if it fails. It can't use this trait if it's {@condition incapacitated}." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "While the dolgaunt is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dolgaunt makes two tentacle attacks and two unarmed strikes. Up to two tentacle attacks can be replaced by Vitality Drain." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage. The target is {@condition grappled} (escape {@dc 12}) if it is a Large or smaller creature. Until this grapple ends, the dolgaunt can't use the same tentacle on another target. The dolgaunt has two tentacles." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) bludgeoning damage." + ] + }, + { + "name": "Vitality Drain", + "entries": [ + "One creature {@condition grappled} by a tentacle of the dolgaunt must make a {@dc 11} Constitution saving throw. On a failed save, the target takes 9 ({@damage 2d8}) necrotic damage, and the dolgaunt regains a number of hit points equal to half the necrotic damage taken." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "GO" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dolgrim", + "source": "ERLW", + "page": 291, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 12, + "int": 8, + "wis": 10, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Deep Speech", + "Goblin" + ], + "cr": "1/2", + "trait": [ + { + "name": "Dual Consciousness", + "entries": [ + "The dolgrim has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dolgrim makes three attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "morningstar|phb", + "spear|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "GO" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dusk Hag", + "source": "ERLW", + "page": 292, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 17, + "wis": 16, + "cha": 18, + "save": { + "int": "+6", + "wis": "+6" + }, + "skill": { + "deception": "+7", + "insight": "+6", + "perception": "+6" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 16, + "conditionImmune": [ + "blinded", + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Giant", + "Infernal" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hag's spellcasting ability is Charisma (spell save {@dc 15}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}" + ], + "daily": { + "3e": [ + "{@spell dream}", + "{@spell hypnotic pattern}", + "{@spell sleep} ({@dice 9d8})" + ], + "1e": [ + "{@spell legend lore}", + "{@spell scrying}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The hag has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hag makes two Nightmare Touch attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Nightmare Touch", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one creature. {@h}18 ({@damage 4d6 + 4}) psychic damage. If the target is {@condition unconscious}, it takes an extra 10 ({@damage 3d6}) psychic damage and is cursed until the hag dies or the curse is removed. The cursed creature's hit point maximum decreases by 5 ({@dice 1d10}) whenever it finishes a long rest." + ] + } + ], + "reaction": [ + { + "name": "Dream Eater", + "entries": [ + "When an {@condition unconscious} creature the hag can see within 30 feet of her regains consciousness, the hag can force the creature to make a {@dc 15} Wisdom saving throw. Unless the save succeeds, the creature takes 11 ({@damage 2d10}) psychic damage, and the hag regains hit points equal to the amount of damage taken." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "I" + ], + "damageTags": [ + "S", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dyrrn", + "isNamedCreature": true, + "source": "ERLW", + "page": 288, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 325, + "formula": "31d8 + 186" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 26, + "dex": 21, + "con": 22, + "int": 26, + "wis": 23, + "cha": 24, + "save": { + "int": "+15", + "wis": "+13", + "cha": "+14" + }, + "skill": { + "arcana": "+15", + "history": "+15", + "insight": "+13", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "exhaustion", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "24", + "trait": [ + { + "name": "Alien Mind", + "entries": [ + "If a creature tries to read Dyrrn's thoughts or deals psychic damage to it, that creature must succeed on a {@dc 23} Intelligence saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Dyrrn fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Dyrrn has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Dyrrn regains 20 hit points at the start of its turn. If Dyrrn takes radiant damage, this trait doesn't function at the start of its next turn. Dyrrn dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Teleport", + "entries": [ + "As a bonus action, Dyrrn can teleport up to 30 feet to an unoccupied space it can see." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Dyrrn makes one Tentacle Whip attack and uses its Corruption once. Dyrrn can replace its Tentacle Whip attack with Extract Brain if it has a creature {@condition grappled}." + ] + }, + { + "name": "Tentacle Whip", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) slashing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 23}), pulled into an unoccupied space within 5 feet of Dyrrn, and must succeed on a {@dc 23} Intelligence saving throw or be {@condition stunned} until this grapple ends. Dyrrn can't use the same tentacle whip on another target until this grapple ends. Dyrrn has two tentacle whips." + ] + }, + { + "name": "Corruption", + "entries": [ + "Dyrrn targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 23} Constitution saving throw or take 22 ({@damage 4d6 + 8}) necrotic damage and become corrupted for 1 minute.", + "A corrupted creature's flesh twists in alien ways. The creature has disadvantage on attack rolls, its speed is reduced by half, and if it tries to cast a spell, it must first succeed on a {@dc 15} Intelligence check or the spell fails and is wasted. The corrupted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one {@condition incapacitated} creature {@condition grappled} by Dyrrn. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, Dyrrn kills the target by extracting and devouring its brain." + ] + } + ], + "legendary": [ + { + "name": "Tentacle Whip", + "entries": [ + "Dyrrn makes one attack with its Tentacle Whip." + ] + }, + { + "name": "Spawn Aberration (Costs 2 Actions)", + "entries": [ + "Dyrrn regurgitates an intellect devourer in an unoccupied space within 5 feet of it. The intellect devourer is under Dyrrn's control and acts immediately after Dyrrn in the initiative order." + ] + }, + { + "name": "Mind Blast (Costs 3 Actions)", + "entries": [ + "Dyrrn magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 23} Intelligence saving throw or take 30 ({@damage 5d8 + 8}) psychic damage and be {@condition stunned} 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." + ] + } + ], + "legendaryGroup": { + "name": "Dyrrn", + "source": "ERLW" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "N", + "P", + "S", + "Y" + ], + "damageTagsLegendary": [ + "Y" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "intelligence" + ], + "savingThrowForcedLegendary": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Expeditious Messenger", + "group": [ + "Homunculi" + ], + "source": "ERLW", + "page": 293, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 7, + "formula": "2d4 + 2" + }, + "speed": { + "walk": 25, + "fly": 60 + }, + "str": 6, + "dex": 16, + "con": 13, + "int": 8, + "wis": 12, + "cha": 7, + "skill": { + "acrobatics": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "one language spoken by its creator" + ], + "cr": "1/8", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The messenger doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Telepathic Bond", + "entries": [ + "While the messenger is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Fastieth", + "group": [ + "Dinosaurs" + ], + "source": "ERLW", + "page": 289, + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 50 + }, + "str": 12, + "dex": 18, + "con": 10, + "int": 4, + "wis": 11, + "cha": 4, + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Quickness {@recharge 5}", + "entries": [ + "The fastieth can take the Dodge action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Garra", + "isNpc": true, + "isNamedCreature": true, + "source": "ERLW", + "page": 272, + "_copy": { + "name": "Half-Ogre (Ogrillon)", + "source": "MM" + }, + "alignment": [ + "C", + "E" + ], + "int": 14, + "hasToken": true + }, + { + "name": "Hashalaq Quori", + "group": [ + "Quori" + ], + "source": "ERLW", + "page": 305, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 14, + "con": 13, + "int": 18, + "wis": 16, + "cha": 18, + "save": { + "wis": "+7", + "cha": "+8" + }, + "skill": { + "arcana": "+12", + "history": "+12", + "insight": "+11", + "persuasion": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Quori" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The quori's spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell charm person}" + ], + "daily": { + "1": [ + "{@spell dominate person}", + "{@spell dream}" + ], + "3e": [ + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell suggestion}" + ] + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quori uses its Mind Thrust twice." + ] + }, + { + "name": "Idyllic Touch", + "entries": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) force damage. If the target is a creature, it must succeed on a {@dc 16} Wisdom saving throw or fall {@condition prone} in a fit of laughter." + ] + }, + { + "name": "Mind Thrust", + "entries": [ + "The quori targets a creature it can see within 60 feet of it. The target must make a {@dc 16} Wisdom saving throw, taking 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid that the quori can see within 5 feet of it must succeed on a {@dc 16} Charisma saving throw or be possessed by the quori; the quori then disappears, and the target is {@condition incapacitated} and loses control of its body. The quori now controls the body but doesn't deprive the target of awareness. The quori can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the quori ends it as a bonus action, or the quori is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the quori reappears in an unoccupied space within 5 feet of the body. The target is immune to this quori's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "reaction": [ + { + "name": "Empathic Feedback", + "entries": [ + "When the quori takes damage from a creature it can see within 60 feet of it, the quori can force that creature to succeed on a {@dc 16} Intelligence saving throw or take 11 ({@damage 2d10}) psychic damage." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "conditionInflict": [ + "incapacitated", + "prone" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "charisma", + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Inspired", + "source": "ERLW", + "page": 294, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 10, + "int": 16, + "wis": 10, + "cha": 16, + "save": { + "int": "+5", + "wis": "+2" + }, + "skill": { + "deception": "+7", + "insight": "+2", + "persuasion": "+7" + }, + "passive": 10, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Quori" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The Inspired's spellcasting ability is Intelligence (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell mage hand}", + "{@spell vicious mockery} (see \"Actions\" below)" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell dissonant whispers}", + "{@spell hex}", + "{@spell hold person}", + "{@spell mage armor}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Dual Mind", + "entries": [ + "The Inspired has advantage on Wisdom saving throws." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Inspired makes two crysteel dagger attacks. It can replace one attack with vicious mockery." + ] + }, + { + "name": "Crysteel Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 10 ({@damage 3d6}) force damage." + ] + }, + { + "name": "Vicious Mockery (Cantrip)", + "entries": [ + "The Inspired unleashes a string of insults laced with subtle enchantments at one creature it can see within 60 feet of it. If the target can hear the Inspired, the target must succeed on a {@dc 13} Wisdom saving throw or take 2 ({@damage 1d4}) psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Quori Vessel", + "entries": [ + "The Inspired are vessels for quori spirits, allowing the quori to manifest a portion of their power while the vessel is possessed. An Inspired can gain benefits depending on the type of quori possessing it. The quori also gains access to the Inspired's knowledge and features.", + { + "type": "variantInner", + "name": "Hashalaq", + "entries": [ + { + "type": "entries", + "name": "Suggestion (3/Day)", + "entries": [ + "The Inspired can cast the {@spell suggestion} spell (spell save {@dc 13}), requiring no material components." + ] + } + ] + }, + { + "type": "variantInner", + "name": "Kalaraq", + "entries": [ + { + "type": "entries", + "name": "All Around Vision", + "entries": [ + "The Inspired can't be {@status surprised}." + ] + }, + { + "type": "entries", + "name": "Arcane Eye (3/Day)", + "entries": [ + "The Inspired can cast the {@spell arcane eye} spell, requiring no material components." + ] + } + ] + }, + { + "type": "variantInner", + "name": "Tsucora", + "entries": [ + { + "type": "entries", + "name": "Fear (1/Day)", + "entries": [ + "The Inspired can cast the {@spell fear} spell (spell save {@dc 13}), requiring no material components." + ] + } + ] + } + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O", + "P", + "Y" + ], + "damageTagsSpell": [ + "N", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Inspired (Quori Vessel; Hashalaq)", + "source": "EGW", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "3e": [ + "{@spell suggestion}" + ] + } + } + }, + "variant": null + }, + { + "name": "Inspired (Quori Vessel; Kalaraq)", + "source": "EGW", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "3e": [ + "{@spell arcane eye}" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "All Around Vision", + "entries": [ + "The Inspired can't be {@status surprised}." + ] + } + } + }, + "variant": null + }, + { + "name": "Inspired (Quori Vessel; Tsucora)", + "source": "EGW", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell fear}" + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Iron Defender", + "group": [ + "Homunculi" + ], + "source": "ERLW", + "page": 293, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 8, + "wis": 11, + "cha": 7, + "skill": { + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Keen Senses", + "entries": [ + "The defender has advantage on Wisdom ({@skill Perception}) checks." + ] + }, + { + "name": "Telepathic Bond", + "entries": [ + "While the defender is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or take an extra 3 ({@damage 1d6}) piercing damage and be {@condition grappled} (escape {@dc 13}). The defender can have only one creature {@condition grappled} in this way at a time." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kalaraq Quori", + "group": [ + "Quori" + ], + "source": "ERLW", + "page": 306, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "19d8 + 76" + }, + "speed": { + "walk": 30, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 12, + "dex": 21, + "con": 18, + "int": 23, + "wis": 24, + "cha": 25, + "save": { + "int": "+12", + "wis": "+13", + "cha": "+13" + }, + "skill": { + "deception": "+13", + "perception": "+13", + "persuasion": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "cold", + "necrotic", + "poison", + "psychic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "19", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The quori's spellcasting ability is Charisma (spell save {@dc 21}, {@hit 13} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell arcane eye}" + ], + "daily": { + "3e": [ + "{@spell clairvoyance}", + "{@spell confusion}", + "{@spell dream}", + "{@spell eyebite}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "All-Around Vision", + "entries": [ + "The quori can't be {@status surprised} while it isn't {@condition incapacitated}." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The quori can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The quori has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quori makes two Soul Binding attacks. Alternatively, it can make four attacks with Arcane Blast." + ] + }, + { + "name": "Arcane Blast", + "entries": [ + "{@atk rs} {@hit 13} to hit, range 120 ft., one target. {@h}12 ({@damage 1d10 + 7}) force damage." + ] + }, + { + "name": "Soul Binding", + "entries": [ + "{@atk ms} {@hit 13} to hit, reach 5 ft., one target. {@h}29 ({@damage 4d10 + 7}) necrotic damage. A creature reduced to 0 hit points from this attack dies and has its soul imprisoned in one of the quori's eyes. The target can't be revived by any means short of a {@spell wish} spell until the quori is destroyed." + ] + }, + { + "name": "Mind Seed (1/Day)", + "entries": [ + "The quori touches one humanoid, which must succeed on a {@dc 21} Intelligence saving throw or be cursed. The curse lasts until it's removed by a remove curse or {@spell greater restoration} spell.", + "The cursed target suffers 1 level of {@condition exhaustion} every 24 hours, and finishing a long rest doesn't reduce its {@condition exhaustion}. If the cursed target reaches {@condition exhaustion} level 6, it doesn't die; it instead becomes a thrall under the quori's control, and all its {@condition exhaustion} is removed. Only the {@spell wish} spell can free the thrall from this control." + ] + }, + { + "name": "Swarm of Eyes {@recharge}", + "entries": [ + "The quori creates a swarm of spectral eyes that fills a 30-foot-radius sphere centered on a point it can see within 60 feet of it. Each creature in that area must make a {@dc 21} Wisdom saving throw. On a failure, a creature takes 45 ({@damage 10d8}) psychic damage, and it is {@condition blinded} for 1 minute. On a success, a creature takes half as much damage and isn't {@condition blinded}. A {@condition blinded} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid that the quori can see within 5 feet of it must succeed on a {@dc 21} Charisma saving throw or be possessed by the quori; the quori then disappears, and the target is {@condition incapacitated} and loses control of its body. The quori now controls the body but doesn't deprive the target of awareness. The quori can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the quori ends it as a bonus action, or the quori is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the quori reappears in an unoccupied space within 5 feet of the body. The target is immune to this quori's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "N", + "O", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "CUR" + ], + "conditionInflict": [ + "blinded", + "incapacitated" + ], + "conditionInflictSpell": [ + "frightened", + "unconscious" + ], + "savingThrowForced": [ + "charisma", + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kalashtar", + "source": "ERLW", + "page": 317, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kalashtar" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 12, + "int": 13, + "wis": 15, + "cha": 15, + "skill": { + "acrobatics": "+4", + "insight": "+4", + "persuasion": "+6" + }, + "passive": 12, + "resist": [ + "psychic" + ], + "languages": [ + "Common", + "telepathy 20 ft." + ], + "cr": "1/4", + "trait": [ + { + "name": "Dual Mind", + "entries": [ + "The kalashtar has advantage on Wisdom saving throws." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Mind Thrust", + "entries": [ + "The kalashtar targets a creature it can see within 30 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Karrnathi Undead Soldier", + "source": "ERLW", + "page": 295, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 12, + "wis": 13, + "cha": 5, + "skill": { + "athletics": "+5", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "cold", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The soldier has advantage on an attack roll against a creature if at least one of the soldier's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the soldier to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the soldier drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The soldier attacks three times with one of its weapons." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The soldier adds 3 to its AC against one melee attack that would hit it. To do so, the soldier must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Pack Tactics", + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lady Illmarrow", + "isNamedCreature": true, + "source": "ERLW", + "page": 296, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 199, + "formula": "21d8 + 105" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 16, + "dex": 16, + "con": 20, + "int": 27, + "wis": 21, + "cha": 24, + "save": { + "con": "+12", + "int": "+15", + "wis": "+12" + }, + "skill": { + "arcana": "+15", + "history": "+15", + "insight": "+12", + "perception": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "lightning" + ], + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "Common", + "Draconic", + "Elvish" + ], + "cr": "22", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Illmarrow is a 20th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 23}, {@hit 15} to hit with spell attacks). Illmarrow has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell magic missile}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell detect thoughts}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell confusion}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell cone of cold}", + "{@spell hold monster}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 2, + "spells": [ + "{@spell chain lightning}", + "{@spell circle of death}", + "{@spell create undead}" + ] + }, + "7": { + "slots": 2, + "spells": [ + "{@spell finger of death}", + "{@spell forcecage}", + "{@spell prismatic spray}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell incendiary cloud}", + "{@spell maze}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell power word kill}", + "{@spell time stop}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Illmarrow fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Illmarrow has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "Illmarrow's body turns to dust when she drops to 0 hit points, and her equipment is left behind. She gains a new body after {@dice 1d10} days, regaining all her hit points and becoming active again. The new body appears within two hundred miles of the location at which she was destroyed." + ] + } + ], + "action": [ + { + "name": "Chill Touch (Cantrip)", + "entries": [ + "{@atk rs} {@hit 15} to hit, range 120 ft., one creature. {@h}18 ({@damage 4d8}) necrotic damage, and the target can't regain hit points until the start of Illmarrow's next turn. If the target is undead, it also has disadvantage on attack rolls against Illmarrow until the end of her next turn." + ] + }, + { + "name": "Paralyzing Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d6 + 3}) slashing damage plus 10 ({@damage 3d6}) cold damage, and the target must succeed on a {@dc 20} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Poison Breath {@recharge 5}", + "entries": [ + "Illmarrow exhales poisonous gas in a 30-foot cone. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, a creature takes 35 ({@damage 10d6}) poison damage and is {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the creature can't regain hit points. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}.", + "A humanoid reduced to 0 hit points by this damage dies and rises at the start of Illmarrow's next turn as a zombie. The zombie acts immediately after Illmarrow in the initiative count and is permanently under her command, following her verbal orders." + ] + } + ], + "legendary": [ + { + "name": "Cantrip", + "entries": [ + "Illmarrow casts a cantrip." + ] + }, + { + "name": "Paralyzing Claw", + "entries": [ + "Illmarrow uses her Paralyzing Claw." + ] + }, + { + "name": "Frightening Presence (Costs 2 Actions)", + "entries": [ + "Illmarrow targets up to three creatures she can see within 30 feet of her. Each target must succeed on a {@dc 20} Wisdom saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to Illmarrow's Frightening Presence for the next 24 hours." + ] + }, + { + "name": "Poison Breath (Costs 3 Actions)", + "entries": [ + "Illmarrow recharges her Poison Breath and uses it." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Rejuvenation" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "DR", + "E" + ], + "damageTags": [ + "C", + "I", + "N", + "S" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed", + "poisoned" + ], + "conditionInflictSpell": [ + "blinded", + "paralyzed", + "petrified", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Burning Hands", + "source": "ERLW", + "page": 298, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 15, + "formula": "2d8 + 6" + }, + "speed": { + "walk": 25, + "fly": 25 + }, + "str": 10, + "dex": 12, + "con": 16, + "int": 3, + "wis": 6, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "poisoned", + "prone" + ], + "cr": "1", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The living spell can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Magical Strike", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) fire damage." + ] + }, + { + "name": "Spell Mimicry {@recharge 5}", + "entries": [ + "The living spell unleashes a thin sheet of flames in a 15-foot cone. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Amorphous", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "F" + ], + "miscTags": [ + "AOE" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Cloudkill", + "source": "ERLW", + "page": 299, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 73, + "formula": "7d10 + 35" + }, + "speed": { + "walk": 25, + "fly": 25 + }, + "str": 10, + "dex": 15, + "con": 20, + "int": 3, + "wis": 11, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "poisoned", + "prone" + ], + "cr": "7", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The living spell can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The living spell makes two Magical Strike attacks." + ] + }, + { + "name": "Magical Strike", + "entries": [ + "{@atk ms} {@hit 8} to hit, reach 10 ft., one target. {@h}22 ({@dice 5d6 + 5}) poison damage." + ] + }, + { + "name": "Spell Mimicry {@recharge 5}", + "entries": [ + "The living spell creates a 40-foot-diameter sphere of fog within 60 feet of it (the fog spreads around corners). When a creature enters the fog for the first time on a turn or starts its turn there, it must make a {@dc 16} Constitution saving throw, taking 22 ({@damage 5d8}) poison damage on a failed save, or half as much damage on a successful one.", + "The fog moves 10 feet away from the living spell at the start of each of its turns, rolling along the ground and through openings. The fog lasts for 10 minutes or until the living spell's {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "traitTags": [ + "Amorphous", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I" + ], + "miscTags": [ + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Lightning Bolt", + "source": "ERLW", + "page": 299, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 57, + "formula": "6d10 + 24" + }, + "speed": { + "walk": 25, + "fly": 25 + }, + "str": 10, + "dex": 15, + "con": 18, + "int": 3, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "poisoned", + "prone" + ], + "cr": "5", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The living spell can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The living spell makes two Magical Strike attacks." + ] + }, + { + "name": "Magical Strike", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 10 ft., one target. {@h}21 ({@damage 5d6 + 4}) lightning damage." + ] + }, + { + "name": "Spell Mimicry {@recharge 5}", + "entries": [ + "The living spell unleashes a stroke of lightning in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 15} Dexterity saving throw, taking 28 ({@damage 8d6}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Amorphous", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "L" + ], + "miscTags": [ + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Magewright", + "source": "ERLW", + "page": 318, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 13, + "con": 10, + "int": 14, + "wis": 14, + "cha": 12, + "skill": { + "arcana": "+4" + }, + "passive": 12, + "languages": [ + "Common plus any two languages" + ], + "cr": "0", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The magewright's spellcasting ability is Intelligence (spell save {@dc 12}). To cast one of its rituals, the magewright must provide additional material components whose value in gold pieces is 20 times the spell's level. These components are consumed when the ritual is finished. The magewright knows the following spells:" + ], + "will": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "ritual": [ + "{@spell knock}" + ], + "ability": "int" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mordakhesh", + "isNamedCreature": true, + "source": "ERLW", + "page": 301, + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 16, + "con": 18, + "int": 15, + "wis": 17, + "cha": 20, + "save": { + "str": "+10", + "con": "+9", + "wis": "+8", + "cha": "+10" + }, + "skill": { + "athletics": "+10", + "insight": "+8", + "perception": "+8", + "persuasion": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "vulnerable": [ + { + "vulnerable": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "cond": true + } + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Mordakhesh's spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). Mordakhesh can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell chromatic orb} (see \"Actions\" below)", + "{@spell detect thoughts}", + "{@spell disguise self}" + ], + "daily": { + "1e": [ + "{@spell banishing smite}", + "{@spell destructive wave}", + "{@spell fly}", + "{@spell mass suggestion}", + "{@spell staggering smite}", + "{@spell suggestion}", + "{@spell true seeing}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Limited Magic Immunity", + "entries": [ + "Mordakhesh can't be affected or detected by spells of 6th level or lower unless he wishes to be. Mordakhesh has advantage on saving throws against all other spells and magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Mordakhesh makes three greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 5 ({@damage 1d10}) force damage." + ] + }, + { + "name": "Chromatic Orb", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one creature. {@h}13 ({@dice 3d8}) damage of a type chosen by Mordakhesh: acid, cold, fire, lightning, poison, or thunder." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Mordakhesh makes one weapon attack or casts {@spell chromatic orb}." + ] + }, + { + "name": "Chromatic Resistance", + "entries": [ + "Modakhesh gains resistance to one damage type of his choice\u2014acid, cold, fire, lightning, poison, or thunder\u2014until the start of his next turn." + ] + }, + { + "name": "Warlord's Command (Costs 2 Actions)", + "entries": [ + "Mordakhesh targets up to two allies that he can see within 30 feet of him. If a target can see and hear him, the target can make one weapon attack as a reaction and gains advantage on the attack roll." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "O", + "S" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "N", + "O", + "R", + "T", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Radiant Idol", + "source": "ERLW", + "page": 308, + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 18, + "con": 19, + "int": 17, + "wis": 20, + "cha": 21, + "save": { + "wis": "+9", + "cha": "+9" + }, + "skill": { + "deception": "+9", + "insight": "+9", + "perception": "+9", + "persuasion": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "resist": [ + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The radiant idol's spellcasting ability is Charisma (spell save {@dc 17}). The radiant idol can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person}", + "{@spell cure wounds}", + "{@spell disguise self}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell commune}", + "{@spell dominate person}", + "{@spell insect plague}", + "{@spell mass suggestion}", + "{@spell raise dead}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Aura of False Divinity", + "entries": [ + "A creature that starts its turn within 30 feet of the radiant idol must make a {@dc 17} Wisdom saving throw, provided the radiant idol isn't {@condition incapacitated}. On a failed save, the creature is {@condition charmed} by the radiant idol. A creature {@condition charmed} in this way can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it succeeds on the saving throw, a creature is immune to this radiant idol's Aura of False Divinity for 24 hours." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The radiant idol has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The radiant idol makes two melee attacks." + ] + }, + { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage." + ] + }, + { + "name": "Radiant Strike (1/Day)", + "entries": [ + "The radiant idol chooses a point on the ground it can see within 60 feet of it. A 30-foot-radius, 40-foot-high cylinder of bright light appears there until the start of the radiant idol's next turn. Each creature in the cylinder when it appears or that ends its turn there must make a {@dc 17} Constitution saving throw, taking 36 ({@damage 8d8}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "flail|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rak Tulkhesh", + "shortName": true, + "isNamedCreature": true, + "source": "ERLW", + "page": 303, + "size": [ + "H" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 23, + "from": [ + "natural armor" + ] + }, + { + "ac": 25, + "braces": true, + "condition": "versus ranged attacks" + } + ], + "hp": { + "average": 478, + "formula": "33d12 + 264" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 29, + "dex": 19, + "con": 27, + "int": 21, + "wis": 22, + "cha": 26, + "save": { + "str": "+17", + "con": "+16", + "wis": "+14", + "cha": "+16" + }, + "skill": { + "athletics": "+17", + "intimidation": "+16", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "stunned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "28", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Rak Tulkhesh's spellcasting ability is Charisma (spell save {@dc 24}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "daily": { + "1e": [ + "{@spell banishing smite}", + "{@spell blinding smite}", + "{@spell staggering smite}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Deadly Critical", + "entries": [ + "Rak Tulkhesh scores a critical hit on a roll of 19 or 20 and rolls the damage dice three times, instead of twice." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Rak Tulkhesh fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Rak Tulkhesh has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Whirlwind of Weapons", + "entries": [ + "A magical aura of weapons surrounds Rak Tulkhesh in a 10 foot radius. At the start of each of his turns, any other creature in the aura takes 14 ({@damage 4d6}) force damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Rak Tulkhesh makes four weapon attacks." + ] + }, + { + "name": "Spawned Melee Weapon", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) force damage." + ] + }, + { + "name": "Spawned Ranged Weapon", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 150/600 ft., one target. {@h}17 ({@damage 3d8 + 4}) force damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Rak Tulkhesh magically polymorphs into a humanoid, beast, or giant that has a challenge rating no higher than his own, or back into his true form. He reverts to his true form if he dies. Any equipment he is wearing or carrying is absorbed or borne by the new form (his choice).", + "In a new form, Rak Tulkhesh retains his alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, and Intelligence, Wisdom, and Charisma scores, as well as this action. His statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Rak Tulkhesh makes one weapon attack." + ] + }, + { + "name": "End Magic (Costs 2 Actions)", + "entries": [ + "Rak Tulkhesh casts {@spell dispel magic}." + ] + }, + { + "name": "Provoke Rage (Costs 3 Actions)", + "entries": [ + "Each creature within 60 feet of Rak Tulkhesh must succeed on a {@dc 24} Wisdom saving throw or use its reaction to make a melee weapon attack against a random creature within reach. If no creatures are within reach, it makes a ranged weapon attack against a random creature within range, throwing its weapon if necessary. This attack is made with advantage and gains a +4 bonus to the damage roll." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "N", + "O", + "R", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sergeant", + "source": "ERLW", + "page": 197, + "_copy": { + "name": "Guard", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Shifter", + "source": "ERLW", + "page": 319, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "shifter" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 11, + "wis": 15, + "cha": 10, + "skill": { + "acrobatics": "+5", + "insight": "+4", + "nature": "+2", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "Shifting (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the shifter takes on a more bestial form for 1 minute or until it dies. The shifter gains 5 temporary hit points. It can make a bite attack when it activates this trait and also as a bonus action on each of its turns while in its bestial form." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sul Khatesh", + "shortName": true, + "isNamedCreature": true, + "source": "ERLW", + "page": 304, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 475, + "formula": "50d10 + 200" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 21, + "con": 19, + "int": 30, + "wis": 22, + "cha": 25, + "save": { + "con": "+12", + "int": "+18", + "wis": "+14", + "cha": "+15" + }, + "skill": { + "arcana": "+18", + "history": "+18", + "insight": "+14", + "religion": "+18" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "all", + "telepathy 150 ft." + ], + "cr": "28", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sul Khatesh's spellcasting ability is Intelligence (spell save {@dc 26}, {@hit 18} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell counterspell}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell eyebite}", + "{@spell fireball}", + "{@spell lightning bolt}", + "{@spell shield}" + ], + "daily": { + "3e": [ + "{@spell chain lightning}", + "{@spell create undead}", + "{@spell dream}", + "{@spell hold monster}", + "{@spell mass suggestion}", + "{@spell scrying}" + ], + "1e": [ + "{@spell foresight}", + "{@spell gate}", + "{@spell power word kill}", + "{@spell teleport}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Sul Khatesh fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Sul Khatesh has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Master of Magic", + "entries": [ + "Sul Khatesh has advantage on Constitution saving throws to maintain {@status concentration}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Sul Khatesh makes four attacks with Arcane Blast." + ] + }, + { + "name": "Arcane Blast", + "entries": [ + "{@atk rs} {@hit 18} to hit, range 120 ft., one target. {@h}15 ({@damage 1d10 + 10}) force damage." + ] + }, + { + "name": "Magic Staff", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}36 ({@damage 5d12 + 4}) force damage." + ] + }, + { + "name": "Arcane Cataclysm (Recharges after a Long Rest)", + "entries": [ + "Sul Khatesh conjures orbs of magical energy that plummet to the ground at three different points she can see within 1 mile of her. Each creature in a 40-foot-radius sphere centered on each point must make a {@dc 26} Dexterity saving throw, taking 71 ({@damage 11d12}) force damage on a failed save or half as much damage on a successful one. A creature in the area of more than one arcane burst is affected only once. The area of each arcane burst then acts as an {@spell antimagic field} for 1 hour. Sul Khatesh and spells she casts are unaffected by these fields." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Sul Khatesh magically polymorphs into a humanoid, beast, or giant that has a challenge rating no higher than her own, or back into her true form. She reverts to her true form if she dies. Any equipment she is wearing or carrying is absorbed or borne by the new form (Sul Khatesh's choice).", + "In a new form, Sul Khatesh retains her alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, and Intelligence, Wisdom, and Charisma scores, as well as this action. Her statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Sul Khatesh makes two attacks with her Arcane Blast or one attack with her magic staff." + ] + }, + { + "name": "Consume Magic (Costs 2 Actions)", + "entries": [ + "Sul Khatesh targets a creature within 120 feet of her who is {@status concentration||concentrating} on a spell. The target must succeed on a {@dc 26} Constitution saving throw or its {@status concentration} is broken on the spell, and Sul Khatesh gains 5 temporary hit points per level of that spell." + ] + }, + { + "name": "Maddening Secrets (Costs 3 Actions)", + "entries": [ + "Sul Khatesh whispers an arcane secret into the mind of a creature she can see within 60 feet of her. The target must succeed on a {@dc 26} Wisdom saving throw or expend one of its spell slots of 3rd level or lower and deal 26 ({@damage 4d12}) force damage to each creature within 30 feet of it. A creature that fails the saving throw but can't expend a spell slot is instead {@condition stunned} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "F", + "L", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "paralyzed", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tarkanan Assassin", + "source": "ERLW", + "page": 320, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "athletics": "+3", + "deception": "+2", + "perception": "+4", + "sleight of hand": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Thieves' cant" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The assassin's spellcasting ability is Constitution ({@hit 4} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell fire bolt}" + ], + "daily": { + "1": [ + "{@spell chromatic orb}" + ] + }, + "ability": "con" + } + ], + "trait": [ + { + "name": "Unstable Mark", + "entries": [ + "When the assassin casts an innate spell, each creature within 10 feet of the assassin must make a {@dc 12} Constitution saving throw, taking 4 ({@damage 1d8}) force damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The assassin makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Fire Bolt (Cantrip)", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one target. {@h}11 ({@damage 2d10}) fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried." + ] + }, + { + "name": "Chromatic Orb (1/Day)", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 90 ft., one creature. {@h}18 ({@dice 4d8}) damage of a type chosen by the assassin: acid, cold, fire, lightning, poison, or thunder." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC" + ], + "damageTags": [ + "F", + "I", + "O", + "P" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Lord of Blades", + "shortName": true, + "isNamedCreature": true, + "source": "ERLW", + "page": 300, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "warforged" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "23d8 + 92" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 15, + "con": 18, + "int": 19, + "wis": 17, + "cha": 18, + "save": { + "str": "+11", + "con": "+10", + "int": "+10", + "wis": "+9" + }, + "skill": { + "arcana": "+10", + "athletics": "+11", + "history": "+10", + "perception": "+9" + }, + "passive": 19, + "resist": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "disease" + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Lord of Blades is a 20th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). He has the following artificer spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt} (see \"Actions\" below)", + "{@spell mage hand}", + "{@spell mending}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell sanctuary}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell heat metal}", + "{@spell scorching ray}", + "{@spell see invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell haste}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell freedom of movement}", + "{@spell Mordenkainen's faithful hound}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell animate objects}", + "{@spell wall of force}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Adamantine Plating", + "entries": [ + "Any critical hit against the Lord of Blades becomes a normal hit." + ] + }, + { + "name": "Bladed Armor", + "entries": [ + "A creature that grapples the Lord of Blades or is {@condition grappled} by him takes 13 ({@damage 3d8}) slashing damage. A creature takes 13 ({@damage 3d8}) slashing damage if it starts its turn grappling or being {@condition grappled} by the Lord of Blades." + ] + }, + { + "name": "Charge", + "entries": [ + "If the Lord of Blades moves at least 10 feet straight toward a target and then hits it with his adamantine sixblade on the same turn, the target takes an extra 11 ({@damage 2d10}) slashing damage. If the target is a creature, it must succeed on a {@dc 19} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ] + }, + { + "name": "Warforged Resilience", + "entries": [ + "The Lord of Blades has advantage on saving throws against being {@condition poisoned}, is immune to disease, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Lord of Blades makes three attacks: two with his adamantine sixblade and one with his bladed wings." + ] + }, + { + "name": "Adamantine Sixblade", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage plus 7 ({@damage 2d6}) force damage." + ] + }, + { + "name": "Bladed Wings", + "entries": [ + "{@atk mw,rw} {@hit 11} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ] + }, + { + "name": "Fire Bolt (Cantrip)", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}22 ({@damage 4d10}) fire damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The Lord of Blades makes one weapon attack." + ] + }, + { + "name": "Cantrip", + "entries": [ + "The Lord of Blades casts one of his cantrips." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The Lord of Blades casts a spell of 2nd level or lower from his spell list that takes 1 action to cast." + ] + }, + { + "name": "Blade Dash (Costs 3 Actions)", + "entries": [ + "The Lord of Blades moves up to his speed without provoking opportunity attacks, then makes one attack with his adamantine sixblade. He can make one bladed wings attack against each creature he moves past." + ] + } + ], + "traitTags": [ + "Charge" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "F", + "O", + "S" + ], + "damageTagsSpell": [ + "B", + "F", + "P", + "S", + "T" + ], + "spellcastingTags": [ + "CA" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tsucora Quori", + "group": [ + "Quori" + ], + "source": "ERLW", + "page": 307, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 14, + "con": 18, + "int": 14, + "wis": 14, + "cha": 16, + "save": { + "wis": "+5", + "cha": "+6" + }, + "skill": { + "insight": "+5", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Quori" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The quori's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell charm person}" + ], + "daily": { + "1": [ + "{@spell fear}" + ] + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quori makes three attacks: one pincer attack, one attack with its claws, and one stinger attack." + ] + }, + { + "name": "Pincer", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage. The target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. The quori has two pincers, each of which can grapple one target." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 4d4 + 3}) slashing damage." + ] + }, + { + "name": "Stinger", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage, and the target must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the quori for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid that the quori can see within 5 feet of it must succeed on a {@dc 14} Charisma saving throw or be possessed by the quori; the quori then disappears, and the target is {@condition incapacitated} and loses control of its body. The quori now controls the body but doesn't deprive the target of awareness. The quori can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the quori ends it as a bonus action, or the quori is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the quori reappears in an unoccupied space within 5 feet of the body. The target is immune to this quori's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "incapacitated" + ], + "conditionInflictSpell": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Undying Councilor", + "source": "ERLW", + "page": 311, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 14, + "int": 17, + "wis": 21, + "cha": 16, + "save": { + "con": "+6", + "int": "+7", + "wis": "+9" + }, + "skill": { + "arcana": "+7", + "history": "+11", + "insight": "+9", + "perception": "+9", + "religion": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "immune": [ + "poison", + "radiant" + ], + "vulnerable": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The councilor is a 13th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell command}", + "{@spell create or destroy water}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell calm emotions}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell daylight}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell divination}", + "{@spell guardian of faith}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dispel evil and good}", + "{@spell flame strike} (see \"Actions\" below)", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell forbiddance}", + "{@spell planar ally}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell plane shift}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Aura of Radiance", + "entries": [ + "The councilor magically sheds bright light in a 15-foot radius and dim light for an additional 15 feet. The councilor can extinguish or restore this light as a bonus action. If the bright light overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created that darkness is dispelled." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The councilor has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The councilor makes two Radiant Touch attacks." + ] + }, + { + "name": "Radiant Touch", + "entries": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) radiant damage." + ] + }, + { + "name": "Healing Touch (3/Day)", + "entries": [ + "The councilor touches another creature. The target magically regains 18 ({@dice 3d8 + 5}) hit points and is freed from one curse afflicting it (councilor's choice)." + ] + }, + { + "name": "Flame Strike (5th-Level Spell; Requires a Spell Slot)", + "entries": [ + "The councilor chooses a point it can see within 60 feet of it. Each creature in a 10-foot-radius, 40-foot-high cylinder centered on that point must make a {@dc 17} Dexterity saving throw. A creature takes 14 ({@damage 4d6}) fire damage and 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one. If the councilor casts this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (its choice) increases by {@dice 1d6} for each slot level above 5th." + ] + } + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Touch", + "entries": [ + "The councilor makes one attack with its Radiant Touch." + ] + }, + { + "name": "Shimmering Aura (Costs 2 Actions)", + "entries": [ + "The councilor channels positive energy into its Aura of Radiance. Until the end of the councilor's next turn, it sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Any creature that starts its turn in the bright light must succeed on a {@dc 17} Constitution saving throw or be {@condition blinded} until the end of the councilor's next turn." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "F", + "R" + ], + "damageTagsSpell": [ + "F", + "N", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "incapacitated", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Undying Soldier", + "source": "ERLW", + "page": 311, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item breastplate|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 14, + "int": 11, + "wis": 13, + "cha": 14, + "skill": { + "athletics": "+5", + "history": "+4", + "perception": "+3", + "religion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "vulnerable": [ + "necrotic" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "trait": [ + { + "name": "Illumination", + "entries": [ + "The soldier magically sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The soldier can extinguish or restore this light as a bonus action." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The soldier has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The soldier makes two spear attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack, plus 9 ({@damage 2d8}) radiant damage if the target is a fiend or undead." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Illumination", + "Turn Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P", + "R" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Valenar Hawk", + "source": "ERLW", + "page": 312, + "size": [ + "T" + ], + "type": "fey", + "alignment": [ + "N" + ], + "ac": [ + 14 + ], + "hp": { + "average": 10, + "formula": "4d4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 8, + "dex": 18, + "con": 10, + "int": 9, + "wis": 16, + "cha": 11, + "skill": { + "perception": "+5" + }, + "passive": 15, + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "cr": "1/8", + "trait": [ + { + "name": "Bonding", + "entries": [ + "The hawk can magically bond with one creature it can see, immediately after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the hawk bonds with a different creature or until the bonded creature dies. While bonded, the hawk and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet." + ] + }, + { + "name": "Keen Sight", + "entries": [ + "The hawk has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "languageTags": [ + "C", + "CS", + "E", + "S" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Valenar Hound", + "source": "ERLW", + "page": 312, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 15, + "con": 14, + "int": 10, + "wis": 15, + "cha": 11, + "skill": { + "perception": "+4" + }, + "passive": 14, + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Bonding", + "entries": [ + "The hound can magically bond with one creature it can see, immediately after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the hound bonds with a different creature or until the bonded creature dies. While bonded, the hound and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "The hound has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "languageTags": [ + "C", + "CS", + "E", + "S" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Valenar Steed", + "source": "ERLW", + "page": 313, + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "3d10 + 6" + }, + "speed": { + "walk": 60 + }, + "str": 14, + "dex": 16, + "con": 14, + "int": 10, + "wis": 15, + "cha": 11, + "skill": { + "perception": "+4" + }, + "passive": 14, + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Bonding", + "entries": [ + "The steed can magically bond with one creature it can see, immediately after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the steed bonds with a different creature or until the bonded creature dies. While bonded, the steed and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet." + ] + } + ], + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "languageTags": [ + "C", + "CS", + "E", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warforged Colossus", + "source": "ERLW", + "page": 314, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 23, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 410, + "formula": "20d20 + 200" + }, + "speed": { + "walk": 60 + }, + "str": 30, + "dex": 11, + "con": 30, + "int": 3, + "wis": 11, + "cha": 8, + "save": { + "int": "+4", + "wis": "+8", + "cha": "+7" + }, + "senses": [ + "truesight 150 ft." + ], + "passive": 10, + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "incapacitated", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "25", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The colossus is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the colossus fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The colossus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The colossus deals double damage to objects and structures." + ] + }, + { + "name": "Towering Terror", + "entries": [ + "Any enemy outside the colossus that starts its turn within 30 feet of it must succeed on a {@dc 26} Wisdom saving throw or be {@condition frightened} until the start of the enemy's next turn. If the enemy's saving throw is successful, it is immune to this colossus's Towering Terror for the next 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The colossus makes three attacks\u2014one with its slam and two with its eldritch turrets\u2014and then uses Stomp." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}29 ({@damage 3d12 + 10}) bludgeoning damage, and the colossus can push the target up to 20 feet away from it." + ] + }, + { + "name": "Eldritch Turret", + "entries": [ + "{@atk rs} {@hit 18} to hit, range 300 ft., one target. {@h}18 ({@damage 4d8}) force damage, and if the target is a creature, it is knocked {@condition prone}." + ] + }, + { + "name": "Stomp", + "entries": [ + "The colossus stomps one of its feet at a point on the ground within 20 feet of it. Any creature in a 20-foot-radius, 20-foot-high cylinder centered on this point must succeed on a {@dc 26} Dexterity saving throw or take 33 ({@damage 6d10}) bludgeoning damage and fall {@condition prone}. Until the colossus uses its Stomp again or moves, the creature is {@condition restrained}. While {@condition restrained} in this way, the creature (or another creature within 5 feet of it) can use its action to make a {@dc 26} Strength check. On a success, the creature relocates to an unoccupied space of its choice within 5 feet of the colossus and is no longer {@condition restrained}.", + "Structures, as well as nonmagical objects that are neither being worn nor carried, take the same amount of damage if they are in the cylinder (no save)." + ] + }, + { + "name": "Incinerating Beam {@recharge 5}", + "entries": [ + "The colossus fires a beam of light in a 150-foot line that is 10 feet wide. Each creature in the line must make a {@dc 26} Dexterity saving throw, taking 60 ({@damage 11d10}) radiant damage on a failed save, or half as much damage on a successful one. A creature reduced to 0 hit points by this beam is disintegrated, leaving behind anything it was wearing or carrying." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "B", + "O", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warforged Soldier", + "source": "ERLW", + "page": 320, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "warforged" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 16, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "athletics": "+5", + "perception": "+4", + "survival": "+4" + }, + "passive": 14, + "resist": [ + "poison" + ], + "conditionImmune": [ + "disease" + ], + "languages": [ + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Warforged Resilience", + "entries": [ + "The warforged has advantage on saving throws against being {@condition poisoned} and is immune to disease. Magic can't put it to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warforged makes two armblade attacks." + ] + }, + { + "name": "Armblade", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Protection", + "entries": [ + "When an attacker the warforged can see makes an attack roll against a creature within 5 feet of the warforged, the warforged can impose disadvantage on the attack roll." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warforged Titan", + "source": "ERLW", + "page": 315, + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 125, + "formula": "10d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 8, + "con": 22, + "int": 3, + "wis": 11, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Platforms", + "entries": [ + "The warforged titan has two platforms built into its chassis. One Medium or smaller creature can ride on each platform without squeezing. To make a melee attack against a target within 5 feet of the warforged, they must use spears or weapons with reach and the target must be Large or larger." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The warforged titan deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warforged titan makes one axehand attack and one hammerfist attack." + ] + }, + { + "name": "Axehand", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) slashing damage, plus 11 ({@damage 2d10}) slashing damage if the target is {@condition prone}." + ] + }, + { + "name": "Hammerfist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Sweeping Axe {@recharge}", + "entries": [ + "The warforged titan makes a sweep with its axehand, and each creature within 10 feet of it must make a {@dc 17} Dexterity saving throw. A creature takes 19 ({@damage 3d8 + 6}) slashing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zakya Rakshasa", + "source": "ERLW", + "page": 309, + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 12, + "wis": 13, + "cha": 11, + "skill": { + "athletics": "+7", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + { + "vulnerable": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "cond": true + } + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The rakshasa's innate spellcasting ability is Charisma (spell save {@dc 11}). The rakshasa can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell disguise self}" + ], + "daily": { + "1": [ + "{@spell shield}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Limited Magic Immunity", + "entries": [ + "The rakshasa can't be affected or detected by spells of 1st level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The rakshasa's weapon attacks are magical." + ] + }, + { + "name": "Martial Prowess (1/Turn)", + "entries": [ + "When the rakshasa hits a creature with a melee weapon attack, the attack deals an extra 11 ({@dice 2d10}) damage of the weapon's type, and the creature must make a {@dc 15} Strength saving throw. On a failure, the rakshasa can push the creature up to 10 feet away from it, knock the creature {@condition prone}, or make the creature drop one item it is holding of the rakshasa's choice." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The rakshasa makes three melee weapon attacks. Alternatively, it can make two ranged attacks with its javelins." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "javelin|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Expert", + "source": "ESK", + "page": 63, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "expert", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 13, + "wis": 10, + "cha": 14, + "save": { + "dex": "+4" + }, + "skill": { + "acrobatics": "+4", + "performance": "+4", + "persuasion": "+4", + "sleight of hand": "+4", + "stealth": "+4" + }, + "passive": 10, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Helpful", + "entries": [ + "The expert can take the Help action as a bonus action." + ] + }, + { + "name": "Tools", + "entries": [ + "The expert has {@item thieves' tools|phb} and a musical instrument." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "shortbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Spellcaster", + "source": "ESK", + "page": 63, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "spellcaster", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 15, + "wis": 14, + "cha": 13, + "save": { + "wis": "+4" + }, + "skill": { + "arcana": "+4", + "investigation": "+4", + "religion": "+4" + }, + "passive": 12, + "languages": [ + "Common", + "plus one of your choice" + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell cure wounds}" + ] + } + }, + "ability": "wis" + }, + { + "name": "Spellcasting (Mage)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell sleep}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magical Role", + "entries": [ + "Choose a role for the spellcaster: healer or mage. Your choice determines which Spellcasting trait to use below." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "altArt": [ + { + "name": "Spellcaster (Healer)", + "source": "ESK" + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "R" + ], + "spellcastingTags": [ + "CC", + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Warrior", + "source": "ESK", + "page": 63, + "level": 1, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "warrior", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 13, + "con": 14, + "int": 10, + "wis": 12, + "cha": 10, + "save": { + "con": "+4" + }, + "skill": { + "athletics": "+4", + "perception": "+3", + "survival": "+3" + }, + "passive": 13, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Martial Role", + "entries": [ + "The warrior has one of the following traits of your choice:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Attacker", + "entry": "The warrior gains a +2 bonus to attack rolls." + }, + { + "type": "item", + "name": "Defender", + "entry": "The warrior gains the Protection reaction below." + } + ] + } + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Protection (Defender Only)", + "entries": [ + "The warrior imposes disadvantage on the attack roll of a creature within 5 feet of it whose target isn't the warrior. The warrior must be able to see the attacker." + ] + } + ], + "altArt": [ + { + "name": "Warrior (Defender)", + "source": "ESK" + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Adult Amethyst Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 161, + "size": [ + "H" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 229, + "formula": "17d12 + 119" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "swim": 40, + "canHover": true + }, + "str": 25, + "dex": 14, + "con": 25, + "int": 20, + "wis": 17, + "cha": 21, + "save": { + "dex": "+7", + "con": "+12", + "wis": "+8", + "cha": "+10" + }, + "skill": { + "arcana": "+15", + "perception": "+13", + "persuasion": "+10", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "resist": [ + "force", + "psychic" + ], + "conditionImmune": [ + "frightened", + "prone" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "16", + "lair": "17" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "daily": { + "1e": [ + "{@spell blink}", + "{@spell control water}", + "{@spell dispel magic}", + "{@spell protection from evil and good}", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 9 ({@damage 2d8}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d8 + 7}) slashing damage." + ] + }, + { + "name": "Singularity Breath {@recharge 5}", + "entries": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 90-foot cone. Each creature in that area must make a {@dc 20} Strength saving throw. On a failed save, the creature takes 45 ({@damage 10d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Explosive Crystal (Costs 3 Actions)", + "entries": [ + "The dragon spits an amethyst that that explodes at a point it can see within 60 feet of it. Each creature within a 20-foot-radius sphere centered on that point must succeed on a {@dc 20} Dexterity saving throw or take 13 ({@damage 3d8}) force damage and be knocked {@condition prone}." + ] + } + ], + "legendaryGroup": { + "name": "Amethyst Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "adult", + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictLegendary": [ + "charmed" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Crystal Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 171, + "size": [ + "H" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 40, + "burrow": 40, + "climb": 40, + "fly": 80 + }, + "str": 21, + "dex": 12, + "con": 21, + "int": 18, + "wis": 15, + "cha": 19, + "save": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "perception": "+10", + "stealth": "+9", + "survival": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + "cold", + "radiant" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "12", + "lair": "13" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "daily": { + "1e": [ + "{@spell command}", + "{@spell divination}", + "{@spell hypnotic pattern}", + "{@spell lesser restoration}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + }, + { + "name": "Scintillating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a burst of brilliant radiance in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 40 ({@damage 9d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 15 temporary hit points by absorbing a portion of the radiant energy." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Starlight Strike (Costs 3 Actions)", + "entries": [ + "The dragon releases a searing beam of starlight at a creature that it can see within 60 feet of it. The target must succeed on a {@dc 17} Dexterity saving throw or take 31 ({@damage 9d6}) radiant damage." + ] + } + ], + "legendaryGroup": { + "name": "Crystal Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "adult", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "P", + "R", + "S" + ], + "damageTagsLegendary": [ + "R" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Deep Dragon", + "source": "FTD", + "page": 174, + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 147, + "formula": "14d12 + 56" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 80, + "swim": 40 + }, + "str": 20, + "dex": 14, + "con": 18, + "int": 16, + "wis": 16, + "cha": 18, + "save": { + "dex": "+6", + "con": "+8", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "perception": "+7", + "persuasion": "+12", + "stealth": "+10" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 150 ft." + ], + "passive": 17, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Undercommon" + ], + "cr": { + "cr": "11", + "lair": "12" + }, + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ] + }, + { + "name": "Nightmare Breath {@recharge 5}", + "entries": [ + "The dragon exhales a cloud of spores in a 60-foot cone. Each creature in that area must make a {@dc 16} Wisdom saving throw. On a failed save, the creature takes 33 ({@damage 6d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendary": [ + { + "name": "Commanding Spores", + "entries": [ + "The dragon releases spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 16} Wisdom saving throw or use its reaction to make a melee weapon attack against a random creature within reach. If no creatures are within reach, or the target can't take a reaction, it takes 5 ({@damage 1d10}) psychic damage." + ] + }, + { + "name": "Tail", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Spore Salvo (Costs 2 Actions)", + "entries": [ + "The dragon releases poisonous spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 16} Constitution saving throw or take 17 ({@damage 5d6}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendaryGroup": { + "name": "Deep Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "deep", + "dragonAge": "adult", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "U" + ], + "damageTags": [ + "B", + "I", + "P", + "S", + "Y" + ], + "damageTagsLegendary": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "poisoned", + "prone" + ], + "conditionInflictLegendary": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Emerald Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 196, + "size": [ + "H" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 80 + }, + "str": 23, + "dex": 12, + "con": 21, + "int": 18, + "wis": 16, + "cha": 18, + "save": { + "dex": "+6", + "con": "+10", + "wis": "+8", + "cha": "+9" + }, + "skill": { + "arcana": "+9", + "deception": "+9", + "perception": "+13", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "resist": [ + "fire", + "psychic" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "14", + "lair": "15" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell invisibility}", + "{@spell major image}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Shift Perception (1/Day)", + "entries": [ + "The dragon can cast {@spell hallucinatory terrain}, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17})." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 15-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 7 ({@damage 2d6}) psychic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage." + ] + }, + { + "name": "Disorienting Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of psychic dissonance in a 60-foot cone. Each creature in that area must make a {@dc 18} Intelligence saving throw. On a failed save, the creature takes 42 ({@damage 12d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d6} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Emerald Embers (Costs 3 Actions)", + "entries": [ + "The dragon creates a dancing mote of green flame around a creature it can see within 60 feet of it. The target must succeed on a {@dc 17} Dexterity saving throw or take 31 ({@damage 9d6}) fire damage." + ] + } + ], + "legendaryGroup": { + "name": "Emerald Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 17} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "adult", + "traitTags": [ + "Legendary Resistances", + "Tunneler" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "F", + "P", + "S", + "Y" + ], + "damageTagsLegendary": [ + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity", + "intelligence" + ], + "savingThrowForcedLegendary": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Moonstone Dragon", + "source": "FTD", + "page": 212, + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 20, + "dex": 18, + "con": 20, + "int": 22, + "wis": 20, + "cha": 23, + "save": { + "int": "+11", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "perception": "+10", + "persuasion": "+11", + "stealth": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Gnomish", + "Sylvan" + ], + "cr": { + "cr": "15", + "lair": "16" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell faerie fire}" + ], + "daily": { + "1e": [ + "{@spell calm emotions}", + "{@spell invisibility}", + "{@spell revivify}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 7 ({@damage 2d6}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Dream Breath", + "entries": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 18} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ] + }, + { + "type": "item", + "name": "Moonlight Breath", + "entries": [ + "The dragon exhales a beam of moonlight in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 49 ({@damage 9d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Tail", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The dragon uses Spellcasting." + ] + } + ], + "legendaryGroup": { + "name": "Moonstone Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "adult", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "G", + "S" + ], + "damageTags": [ + "B", + "P", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "unconscious" + ], + "conditionInflictLegendary": [ + "incapacitated", + "stunned" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "charisma", + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Sapphire Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 215, + "size": [ + "H" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108" + }, + "speed": { + "walk": 40, + "burrow": 30, + "climb": 40, + "fly": 80 + }, + "str": 23, + "dex": 14, + "con": 22, + "int": 18, + "wis": 17, + "cha": 18, + "save": { + "dex": "+7", + "con": "+11", + "wis": "+8", + "cha": "+9" + }, + "skill": { + "history": "+9", + "perception": "+13", + "persuasion": "+14", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "resist": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "15", + "lair": "16" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "daily": { + "1e": [ + "{@spell dissonant whispers}", + "{@spell hold monster}", + "{@spell meld into stone}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 5 ({@damage 1d10}) thunder damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage." + ] + }, + { + "name": "Debilitating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw. On a failed save, the creature takes 44 ({@damage 8d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Telekinetic Fling (Costs 3 Actions)", + "entries": [ + "The dragon chooses one Small or smaller object that isn't being worn or carried that it can see within 60 feet of it, and it magically hurls the object at a creature it can see within 60 feet of the object. The target must succeed on a {@dc 17} Dexterity saving throw or take 31 ({@damage 9d6}) bludgeoning damage." + ] + } + ], + "legendaryGroup": { + "name": "Sapphire Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "adult", + "traitTags": [ + "Legendary Resistances", + "Spider Climb", + "Tunneler" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "B", + "P", + "S", + "T" + ], + "damageTagsLegendary": [ + "T" + ], + "damageTagsSpell": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictLegendary": [ + "charmed", + "stunned" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Topaz Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 221, + "size": [ + "H" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 210, + "formula": "20d12 + 80" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 19, + "dex": 12, + "con": 19, + "int": 18, + "wis": 17, + "cha": 18, + "save": { + "dex": "+6", + "con": "+9", + "wis": "+8", + "cha": "+9" + }, + "skill": { + "intimidation": "+14", + "perception": "+13", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "resist": [ + "cold", + "necrotic" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "13", + "lair": "14" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "daily": { + "1e": [ + "{@spell bane}", + "{@spell control water}", + "{@spell create or destroy water}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + }, + { + "name": "Fabricate (1/Day)", + "entries": [ + "The dragon can cast {@spell fabricate}, requiring no spell components and using Intelligence as the spellcasting ability." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 3 ({@damage 1d6}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + }, + { + "name": "Desiccating Breath {@recharge 5}", + "entries": [ + "The dragon exhales yellowish necrotic energy in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw. On a failed save, the creature takes 35 ({@damage 10d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Essential Reduction (Costs 3 Actions)", + "entries": [ + "The dragon targets a creature or an object not being worn or carried that it can see within 60 feet of it. The target must succeed on a {@dc 17} Constitution saving throw or take 28 ({@damage 8d6}) necrotic damage. If this damage reduces the target to 0 hit points, it crumbles to dust." + ] + } + ], + "legendaryGroup": { + "name": "Topaz Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "adult", + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "damageTagsLegendary": [ + "N" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amethyst Dragon Wyrmling", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 162, + "size": [ + "M" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "swim": 30, + "canHover": true + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 16, + "wis": 13, + "cha": 17, + "save": { + "dex": "+2", + "con": "+5", + "wis": "+3", + "cha": "+5" + }, + "skill": { + "arcana": "+7", + "perception": "+5", + "persuasion": "+5", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "force", + "psychic" + ], + "conditionImmune": [ + "frightened", + "prone" + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "1e": [ + "{@spell protection from evil and good}", + "{@spell Tenser's floating disk}", + "{@spell unseen servant}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 4 ({@damage 1d8}) force damage." + ] + }, + { + "name": "Singularity Breath {@recharge 5}", + "entries": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 15-foot cone. Each creature in that area must make a {@dc 13} Strength saving throw. On a failed save, the creature takes 22 ({@damage 5d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "TP" + ], + "damageTags": [ + "O", + "P" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amethyst Greatwyrm", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 201, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "swim": 60, + "canHover": true + }, + "str": 28, + "dex": 14, + "con": 29, + "int": 30, + "wis": 24, + "cha": 25, + "save": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "skill": { + "arcana": "+26", + "history": "+18", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "immune": [ + "force" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Gem Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ] + }, + { + "name": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "entries": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The greatwyrm makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Psychic Beam (Costs 3 Actions)", + "entries": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 15} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "intelligence", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ancient Amethyst Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 160, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "swim": 40, + "canHover": true + }, + "str": 26, + "dex": 14, + "con": 27, + "int": 26, + "wis": 19, + "cha": 23, + "save": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+13" + }, + "skill": { + "arcana": "+22", + "perception": "+18", + "persuasion": "+13", + "stealth": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 28, + "resist": [ + "force", + "psychic" + ], + "conditionImmune": [ + "frightened", + "prone" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "23", + "lair": "24" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 23}, {@hit 15} to hit with spell attacks):" + ], + "daily": { + "1e": [ + "{@spell blink}", + "{@spell control water}", + "{@spell dispel magic}", + "{@spell freedom of movement}", + "{@spell globe of invulnerability}", + "{@spell plane shift}", + "{@spell protection from evil and good}", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 13 ({@damage 3d8}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Singularity Breath {@recharge 5}", + "entries": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 90-foot cone. Each creature in that area must make a {@dc 23} Strength saving throw. On a failed save, the creature takes 63 ({@damage 14d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Explosive Crystal (Costs 3 Actions)", + "entries": [ + "The dragon spits an amethyst that that explodes at a point it can see within 60 feet of it. Each creature within a 20-foot-radius sphere centered on that point must succeed on a {@dc 23} Dexterity saving throw or take 18 ({@damage 4d8}) force damage and be knocked {@condition prone}." + ] + } + ], + "legendaryGroup": { + "name": "Amethyst Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictLegendary": [ + "charmed" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Crystal Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 170, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 222, + "formula": "12d20 + 96" + }, + "speed": { + "walk": 40, + "burrow": 40, + "climb": 40, + "fly": 80 + }, + "str": 25, + "dex": 12, + "con": 26, + "int": 20, + "wis": 16, + "cha": 21, + "save": { + "dex": "+7", + "con": "+14", + "wis": "+9", + "cha": "+11" + }, + "skill": { + "perception": "+15", + "stealth": "+13", + "survival": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 25, + "resist": [ + "cold", + "radiant" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "19", + "lair": "20" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "daily": { + "1e": [ + "{@spell command}", + "{@spell divination}", + "{@spell greater restoration}", + "{@spell hypnotic pattern}", + "{@spell invisibility}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 9 ({@damage 2d8}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Scintillating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a burst of brilliant radiance in a 90-foot cone. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 49 ({@damage 11d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 25 temporary hit points by absorbing a portion of the radiant energy." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Starlight Strike (Costs 3 Actions)", + "entries": [ + "The dragon releases a searing beam of starlight at a creature that it can see within 60 feet of it. The target must succeed on a {@dc 19} Dexterity saving throw or take 38 ({@damage 11d6}) radiant damage." + ] + } + ], + "legendaryGroup": { + "name": "Crystal Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "P", + "R", + "S" + ], + "damageTagsLegendary": [ + "R" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "invisible", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Deep Dragon", + "source": "FTD", + "page": 173, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 201, + "formula": "13d20 + 65" + }, + "speed": { + "walk": 40, + "burrow": 40, + "fly": 80, + "swim": 40 + }, + "str": 23, + "dex": 16, + "con": 20, + "int": 19, + "wis": 18, + "cha": 21, + "save": { + "dex": "+9", + "con": "+11", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "perception": "+10", + "persuasion": "+17", + "stealth": "+15" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 300 ft." + ], + "passive": 20, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Undercommon" + ], + "cr": { + "cr": "18", + "lair": "19" + }, + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ] + }, + { + "name": "Nightmare Breath {@recharge 5}", + "entries": [ + "The dragon exhales a cloud of spores in a 90-foot cone. Each creature in that area must make a {@dc 19} Wisdom saving throw. On a failed save, the creature takes 49 ({@damage 9d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendary": [ + { + "name": "Commanding Spores", + "entries": [ + "The dragon releases spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 19} Wisdom saving throw or use its reaction to make a melee weapon attack against a random creature within reach. If no creatures are within reach, or the target can't take a reaction, it takes 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Tail", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Spore Salvo (Costs 2 Actions)", + "entries": [ + "The dragon releases poisonous spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 19} Constitution saving throw or take 28 ({@damage 8d6}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendaryGroup": { + "name": "Deep Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "deep", + "dragonAge": "ancient", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "U" + ], + "damageTags": [ + "B", + "I", + "P", + "S", + "Y" + ], + "damageTagsLegendary": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "poisoned", + "prone" + ], + "conditionInflictLegendary": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Dragon Turtle", + "source": "FTD", + "page": 191, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 409, + "formula": "21d20 + 189" + }, + "speed": { + "walk": 30, + "swim": 60 + }, + "str": 28, + "dex": 12, + "con": 29, + "int": 14, + "wis": 19, + "cha": 15, + "save": { + "dex": "+8", + "con": "+16", + "wis": "+11" + }, + "skill": { + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "immune": [ + "cold", + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Aquan", + "Draconic" + ], + "cr": "24", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon turtle can breathe air and water." + ] + }, + { + "name": "Blessing of the Sea (Recharges after a Short or Long Rest)", + "entries": [ + "If the dragon turtle would be reduced to 0 hit points, its current hit point total instead resets to 350 hit points, and it recharges its Steam Breath. Additionally, the dragon turtle can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 62,000 XP (124,000 XP total) for defeating the dragon turtle after its Blessing of the Sea activates." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon turtle fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon turtle doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon turtle makes one Bite or Tail attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}15 ({@damage 1d12 + 9}) piercing damage plus 13 ({@damage 2d12}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 24} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Steam Breath {@recharge 5}", + "entries": [ + "The dragon turtle exhales steam in a 90-foot cone. Each creature in that area must make a {@dc 24} Constitution saving throw, taking 67 ({@damage 15d8}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The dragon turtle makes one Claw or Tail attack." + ] + }, + { + "name": "Move", + "entries": [ + "The dragon turtle moves up to its speed. If the dragon turtle is swimming, this movement doesn't provoke opportunity attacks." + ] + }, + { + "name": "Boiling Aura (Costs 3 Actions)", + "entries": [ + "The dragon turtle radiates intense heat. Until the start of the dragon turtle's next turn, whenever a creature starts its turn within 20 feet of the dragon turtle, that creature must succeed on a {@dc 24} Constitution saving throw or take 40 ({@damage 9d8}) fire damage. Being underwater doesn't grant resistance against this damage." + ] + } + ], + "mythicHeader": [ + "If the dragon turtle's Blessing of the Sea trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The dragon turtle makes one Bite attack." + ] + }, + { + "name": "Armor of Storms (Costs 2 Actions)", + "entries": [ + "Lightning temporarily surrounds the dragon turtle, and it gains 40 temporary hit points until the start of its next turn. Until all these temporary hit points are gone, any creature that touches the dragon turtle or hits it with a melee attack takes 26 ({@damage 4d12}) lightning damage." + ] + } + ], + "legendaryGroup": { + "name": "Ancient Dragon Turtle", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "AQ", + "DR" + ], + "damageTags": [ + "B", + "F", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Emerald Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 195, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 332, + "formula": "19d20 + 133" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 80 + }, + "str": 25, + "dex": 12, + "con": 25, + "int": 20, + "wis": 18, + "cha": 20, + "save": { + "dex": "+8", + "con": "+14", + "wis": "+11", + "cha": "+12" + }, + "skill": { + "arcana": "+12", + "deception": "+12", + "perception": "+18", + "stealth": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 28, + "resist": [ + "fire", + "psychic" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "21", + "lair": "22" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell etherealness}", + "{@spell major image}", + "{@spell mislead}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 20-foot-diameter tunnel in its wake." + ] + }, + { + "name": "Warp Perception (1/Day)", + "entries": [ + "The dragon can cast {@spell mirage arcane}, requiring no spell components and using Intelligence as the spellcasting ability." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Disorienting Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of psychic dissonance in a 90-foot cone. Each creature in that area must make a {@dc 22} Intelligence saving throw. On a failed save, the creature takes 56 ({@damage 16d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d8} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Emerald Embers (Costs 3 Actions)", + "entries": [ + "The dragon creates a dancing mote of green flame around a creature it can see within 60 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or take 42 ({@damage 12d6}) fire damage." + ] + } + ], + "legendaryGroup": { + "name": "Emerald Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 20} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Legendary Resistances", + "Tunneler" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "F", + "P", + "S", + "Y" + ], + "damageTagsLegendary": [ + "Y" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "invisible" + ], + "savingThrowForced": [ + "dexterity", + "intelligence" + ], + "savingThrowForcedLegendary": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Moonstone Dragon", + "source": "FTD", + "page": 211, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 330, + "formula": "20d20 + 120" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 22, + "dex": 18, + "con": 23, + "int": 20, + "wis": 22, + "cha": 26, + "save": { + "int": "+12", + "wis": "+13", + "cha": "+15" + }, + "skill": { + "perception": "+13", + "persuasion": "+15", + "stealth": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": { + "cr": "21", + "lair": "22" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "will": [ + "{@spell faerie fire}" + ], + "daily": { + "2e": [ + "{@spell calm emotions}", + "{@spell dispel magic}", + "{@spell invisibility}", + "{@spell revivify}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 11 ({@damage 2d10}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Dream Breath", + "entries": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ] + }, + { + "type": "item", + "name": "Moonlight Breath", + "entries": [ + "The dragon exhales a beam of moonlight in a 120-foot line that is 10 feet wide. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 60 ({@damage 11d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Tail", + "entries": [ + "The dragon makes one Tail attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The dragon uses Spellcasting." + ] + } + ], + "legendaryGroup": { + "name": "Moonstone Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "P", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "unconscious" + ], + "conditionInflictLegendary": [ + "incapacitated", + "stunned" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "charisma", + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Sapphire Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 214, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 370, + "formula": "20d20 + 160" + }, + "speed": { + "walk": 40, + "burrow": 40, + "climb": 40, + "fly": 80 + }, + "str": 27, + "dex": 14, + "con": 27, + "int": 21, + "wis": 19, + "cha": 20, + "save": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+12" + }, + "skill": { + "history": "+12", + "perception": "+18", + "persuasion": "+19", + "stealth": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 28, + "resist": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "22", + "lair": "23" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "daily": { + "1e": [ + "{@spell dissonant whispers}", + "{@spell hold monster}", + "{@spell meld into stone}", + "{@spell telekinesis}", + "{@spell teleport}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 20-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 11 ({@damage 2d10}) thunder damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Debilitating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, the creature takes 55 ({@damage 10d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Telekinetic Fling (Costs 3 Actions)", + "entries": [ + "The dragon chooses one Medium or smaller object that isn't being worn or carried that it can see within 60 feet of it, and it magically hurls the object at a creature it can see within 60 feet of the object. The target must succeed on a {@dc 20} Dexterity saving throw or take 42 ({@damage 12d6}) bludgeoning damage." + ] + } + ], + "legendaryGroup": { + "name": "Sapphire Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Legendary Resistances", + "Spider Climb", + "Tunneler" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "B", + "P", + "S", + "T" + ], + "damageTagsLegendary": [ + "T" + ], + "damageTagsSpell": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictLegendary": [ + "charmed", + "stunned" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Sea Serpent", + "source": "FTD", + "page": 219, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 170, + "formula": "11d20 + 55" + }, + "speed": { + "walk": 20, + "swim": 60 + }, + "str": 24, + "dex": 15, + "con": 20, + "int": 13, + "wis": 16, + "cha": 12, + "save": { + "str": "+12", + "con": "+10" + }, + "skill": { + "perception": "+8", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "14", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The sea serpent can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the sea serpent fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The sea serpent deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sea serpent makes one Bite attack and one Constrict or Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d12 + 7}) piercing damage plus 6 ({@damage 1d12}) cold damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one creature. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 20}). Until this grapple ends, the target is {@condition restrained}, and the sea serpent can't constrict another target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}13 ({@damage 1d12 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be pushed up to 30 feet away from the sea serpent and knocked {@condition prone}." + ] + }, + { + "name": "Rime Breath {@recharge 5}", + "entries": [ + "The sea serpent exhales a 60-foot cone of cold. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 49 ({@damage 9d10}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Tail", + "entries": [ + "The sea serpent makes one Tail attack." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "The sea serpent makes one Bite attack" + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Topaz Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 220, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 280, + "formula": "17d20 + 102" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 23, + "dex": 12, + "con": 23, + "int": 20, + "wis": 19, + "cha": 20, + "save": { + "dex": "+7", + "con": "+12", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "intimidation": "+17", + "perception": "+16", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 26, + "resist": [ + "cold", + "necrotic" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": { + "cr": "20", + "lair": "21" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "daily": { + "1e": [ + "{@spell antilife shell}", + "{@spell bane}", + "{@spell control water}", + "{@spell create or destroy water}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + }, + { + "name": "Fabricate (1/Day)", + "entries": [ + "The dragon can cast {@spell fabricate}, requiring no spell components and using Intelligence as the spellcasting ability." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 10 ({@damage 3d6}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Desiccating Breath {@recharge 5}", + "entries": [ + "The dragon exhales yellowish necrotic energy in a 90-foot cone. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, the creature takes 49 ({@damage 14d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dragon makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The dragon uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Essential Reduction (Costs 3 Actions)", + "entries": [ + "The dragon targets a creature or an object not being worn or carried that it can see within 60 feet of it. The target must succeed on a {@dc 19} Constitution saving throw or take 40 ({@damage 9d8}) necrotic damage. If this damage reduces the target to 0 hit points, it crumbles to dust." + ] + } + ], + "legendaryGroup": { + "name": "Topaz Dragon", + "source": "FTD" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "ancient", + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "damageTagsLegendary": [ + "N" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Animated Breath", + "source": "FTD", + "page": 163, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + }, + { + "ac": 17, + "condition": "cold form only", + "braces": true + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 19, + "dex": 11, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "special": "damage of the type matching the animated breath's form (acid, cold, fire, lightning, or poison)" + } + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "restrained", + "unconscious" + ], + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Chromatic Form", + "entries": [ + "When created, the animated breath takes one of five forms, matching its creator's breath weapon: Acid, Cold, Fire, Lightning, or Poison. This form determines the creature's AC, damage resistance, traits, and attacks." + ] + }, + { + "name": "Fire Aura (Fire Form Only)", + "entries": [ + "At the start of each of the animated breath's turns, each creature within 5 feet of it takes 3 ({@damage 1d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the animated breath or hits it with a melee attack takes 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Putrid Aura (Acid and Poison Forms Only)", + "entries": [ + "A creature that starts its turn within 5 feet of the animated breath must succeed on a {@dc 15} Constitution saving throw or be {@condition poisoned} until the start of its next turn. A creature that touches the animated breath or hits it with a melee attack takes 3 ({@damage 1d6}) acid damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The animated breath makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 11 ({@damage 2d10}) damage of a type determined by the animated breath's form: acid, cold, fire, lightning, or poison." + ] + } + ], + "bonus": [ + { + "name": "Lightning Burst (Lightning Form Only)", + "entries": [ + "The animated breath magically teleports to an unoccupied space it can see within 30 feet of it. Each creature within 5 feet of the animated breath after it teleports takes 3 ({@damage 1d6}) lightning damage." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "A", + "B", + "F", + "L" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aspect of Bahamut", + "source": "FTD", + "page": 165, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "metallic" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 23, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 585, + "formula": "30d20 + 270" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 18, + "con": 29, + "int": 25, + "wis": 28, + "cha": 30, + "save": { + "con": "+18", + "int": "+16", + "wis": "+18", + "cha": "+19" + }, + "skill": { + "insight": "+18", + "perception": "+18", + "persuasion": "+19" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 28, + "immune": [ + "acid", + "cold", + "fire", + "lightning", + "radiant", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "deafened", + "frightened", + "paralyzed", + "stunned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "30", + "trait": [ + { + "name": "Platinum Brilliance (Recharges after a Short or Long Rest)", + "entries": [ + "If the aspect would be reduced to 0 hit points, his current hit point total instead resets to 500 hit points, he recharges his Breath Weapon, and he regains any expended uses of Legendary Resistance. Additionally, the aspect can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 155,000 XP (310,000 XP total) for defeating the aspect of Bahamut after his Platinum Brilliance activates." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the aspect fails a saving throw, he can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aspect makes one Bite attack, one Claw attack, and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}23 ({@damage 2d12 + 10}) piercing damage plus 22 ({@damage 4d10}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The aspect can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}23 ({@damage 2d12 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 27} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The aspect uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Exalting Breath", + "entries": [ + "The aspect exhales the restoring winds of Mount Celestia in a 300-foot cone. Each creature in that area of the aspect's choice regains 71 ({@dice 13d10}) hit points, and each creature in that area of the aspect's choice that has been dead for no longer than 1 hour is restored to life with all its hit points." + ] + }, + { + "type": "item", + "name": "Platinum Breath", + "entries": [ + "The aspect exhales radiant platinum flames in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw, taking 66 ({@damage 12d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The aspect magically transforms into any Humanoid or Beast, while retaining his game statistics (other than his size). This transformation ends if the aspect is reduced to 0 hit points or if he uses a bonus action to end it." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The aspect makes one Claw or Tail attack." + ] + }, + { + "name": "Furious Bite (Costs 2 Actions)", + "entries": [ + "The aspect makes one Bite attack. If the attack hits a creature, the target must succeed on a {@dc 27} Wisdom saving throw or become {@condition frightened} of the aspect until the end of the target's next turn." + ] + } + ], + "mythicHeader": [ + "If the aspect's Platinum Brilliance trait has activated in the last hour, he can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Celestial Shield (Costs 2 Actions)", + "entries": [ + "The aspect manifests seven spectral {@creature ancient gold dragon||ancient gold dragons} around himself that protect him; he gains 77 temporary hit points until the start of his next turn." + ] + }, + { + "name": "Celestial Lances (Costs 3 Actions)", + "entries": [ + "The aspect conjures four enormous lances of magical force that plummet to the ground at four different points he can see within 150 feet of him and then disappear. Each creature in a 20-foot-radius, 100-foot-high cylinder centered on each point must succeed on a {@dc 27} Dexterity saving throw or take 24 ({@damage 7d6}) force damage. A creature in the area of more than one lance is affected only once." + ] + } + ], + "dragonAge": "aspect", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "O", + "P", + "R", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aspect of Tiamat", + "source": "FTD", + "page": 166, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "chromatic" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 23, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 574, + "formula": "28d20 + 280" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 14, + "con": 30, + "int": 21, + "wis": 20, + "cha": 26, + "save": { + "dex": "+11", + "con": "+19", + "wis": "+14", + "cha": "+17" + }, + "skill": { + "intimidation": "+26", + "perception": "+23" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 33, + "immune": [ + "acid", + "cold", + "fire", + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "poisoned", + "stunned" + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "cr": "30", + "trait": [ + { + "name": "Chromatic Wrath (Recharges after a Short or Long Rest)", + "entries": [ + "If the aspect would be reduced to 0 hit points, her current hit point total instead resets to 500 hit points, she recharges her Chromatic Flames, and she regains any expended uses of Legendary Resistance. Additionally, the aspect can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 155,000 XP (310,000 XP total) for defeating the aspect of Tiamat after her Chromatic Wrath activates." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the aspect fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aspect makes one Bite attack, one Claw attack, and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}23 ({@damage 2d12 + 10}) piercing damage plus 19 ({@damage 3d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The aspect can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}23 ({@damage 2d12 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 27} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Chromatic Flames {@recharge 5}", + "entries": [ + "The aspect exhales multicolored flames in a 300-foot cone. Each creature in that area must make a {@dc 27} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) damage of a type of the aspect's choosing: acid, cold, fire, lightning, or poison. On a successful save, the creature takes half as much damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The aspect makes one Claw or Tail attack." + ] + }, + { + "name": "Furious Bite (Costs 2 Actions)", + "entries": [ + "The aspect makes one Bite attack. If the attack hits a creature, the target must succeed on a {@dc 27} Wisdom saving throw or become {@condition frightened} of the aspect until the end of its next turn." + ] + } + ], + "mythicHeader": [ + "If the aspect's Chromatic Wrath trait has activated in the last hour, she can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Hurl Through Avernus (Costs 2 Actions)", + "entries": [ + "The aspect targets a creature she is grappling. The creature must succeed on a {@dc 25} Charisma saving throw or take 44 ({@damage 8d10}) psychic damage and be banished to Avernus (the first layer of the Nine Hells). At the start of the aspect's next turn, the creature reappears in an unoccupied space within 10 feet of the aspect." + ] + }, + { + "name": "Chromatic Flare (Costs 3 Actions)", + "entries": [ + "The aspect flares with elemental energy. Each creature of the aspect's choice in a 60-foot-radius sphere centered on her must make a {@dc 27} Dexterity saving throw. On a failed save, the creature takes 39 ({@damage 6d12}) damage of a type chosen by the aspect: acid, cold, fire, lightning, or poison. On a successful save, the creature takes half as much damage." + ] + } + ], + "dragonAge": "aspect", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "I" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "charisma", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Black Greatwyrm", + "group": [ + "Chromatic Dragon" + ], + "source": "FTD", + "page": 168, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "chromatic" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 14, + "con": 30, + "int": 21, + "wis": 20, + "cha": 26, + "save": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "skill": { + "intimidation": "+16", + "perception": "+21", + "stealth": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 31, + "immune": [ + "acid" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "27", + "trait": [ + { + "name": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) acid damage. On a successful save, the creature takes half as much damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + }, + { + "name": "Arcane Spear (Costs 3 Actions)", + "entries": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Chromatic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Chromatic Flare (Costs 2 Actions)", + "entries": [ + "The greatwyrm flares with elemental energy. Each creature in a 60-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Dexterity saving throw or take 22 ({@damage 5d8}) acid damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "black", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "O", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Blue Greatwyrm", + "group": [ + "Chromatic Dragon" + ], + "source": "FTD", + "page": 168, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "chromatic" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 14, + "con": 30, + "int": 21, + "wis": 20, + "cha": 26, + "save": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "skill": { + "intimidation": "+16", + "perception": "+21", + "stealth": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 31, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "27", + "trait": [ + { + "name": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) lightning damage. On a successful save, the creature takes half as much damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + }, + { + "name": "Arcane Spear (Costs 3 Actions)", + "entries": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Chromatic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Chromatic Flare (Costs 2 Actions)", + "entries": [ + "The greatwyrm flares with elemental energy. Each creature in a 60-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Dexterity saving throw or take 22 ({@damage 5d8}) lightning damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "blue", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "O", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Brass Greatwyrm", + "group": [ + "Metallic Dragon" + ], + "source": "FTD", + "page": 208, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "metallic" + ] + }, + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 16, + "con": 29, + "int": 21, + "wis": 22, + "cha": 30, + "save": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "skill": { + "insight": "+14", + "perception": "+22", + "persuasion": "+18" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 32, + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "28", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Metallic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Elemental Breath", + "entries": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "type": "item", + "name": "Sapping Breath", + "entries": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Metallic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Shattering Roar (Costs 2 Actions)", + "entries": [ + "The greatwyrm unleashes a magical roar. Each creature in a 120-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Constitution saving throw or take 19 ({@damage 3d12}) thunder damage and be {@condition incapacitated} until the end of its next turn." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 18} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "brass", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "O", + "P", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "incapacitated", + "prone", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Bronze Greatwyrm", + "group": [ + "Metallic Dragon" + ], + "source": "FTD", + "page": 208, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "metallic" + ] + }, + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 16, + "con": 29, + "int": 21, + "wis": 22, + "cha": 30, + "save": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "skill": { + "insight": "+14", + "perception": "+22", + "persuasion": "+18" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 32, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "28", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Metallic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Elemental Breath", + "entries": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "type": "item", + "name": "Sapping Breath", + "entries": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Metallic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Shattering Roar (Costs 2 Actions)", + "entries": [ + "The greatwyrm unleashes a magical roar. Each creature in a 120-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Constitution saving throw or take 19 ({@damage 3d12}) thunder damage and be {@condition incapacitated} until the end of its next turn." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 18} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "bronze", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "O", + "P", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "incapacitated", + "prone", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Copper Greatwyrm", + "group": [ + "Metallic Dragon" + ], + "source": "FTD", + "page": 208, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "metallic" + ] + }, + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 16, + "con": 29, + "int": 21, + "wis": 22, + "cha": 30, + "save": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "skill": { + "insight": "+14", + "perception": "+22", + "persuasion": "+18" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 32, + "immune": [ + "acid" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "28", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Metallic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Elemental Breath", + "entries": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) acid damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "type": "item", + "name": "Sapping Breath", + "entries": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Metallic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Shattering Roar (Costs 2 Actions)", + "entries": [ + "The greatwyrm unleashes a magical roar. Each creature in a 120-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Constitution saving throw or take 19 ({@damage 3d12}) thunder damage and be {@condition incapacitated} until the end of its next turn." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 18} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "copper", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "O", + "P", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "incapacitated", + "prone", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Crystal Dragon Wyrmling", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 172, + "size": [ + "M" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "burrow": 15, + "climb": 30, + "fly": 60 + }, + "str": 14, + "dex": 12, + "con": 14, + "int": 14, + "wis": 13, + "cha": 15, + "save": { + "dex": "+3", + "con": "+4", + "wis": "+3", + "cha": "+4" + }, + "skill": { + "perception": "+5", + "stealth": "+5", + "survival": "+3" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "radiant" + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) radiant damage." + ] + }, + { + "name": "Scintillating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a burst of brilliant radiance in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 18 ({@damage 4d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 5 temporary hit points by absorbing a portion of the radiant energy." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "TP" + ], + "damageTags": [ + "P", + "R" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Crystal Greatwyrm", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 201, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "swim": 60, + "canHover": true + }, + "str": 28, + "dex": 14, + "con": 29, + "int": 30, + "wis": 24, + "cha": 25, + "save": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "skill": { + "arcana": "+26", + "history": "+18", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Gem Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ] + }, + { + "name": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "entries": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The greatwyrm makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Psychic Beam (Costs 3 Actions)", + "entries": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 15} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "intelligence", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Deep Dragon Wyrmling", + "source": "FTD", + "page": 175, + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30, + "burrow": 15, + "fly": 60, + "swim": 30 + }, + "str": 14, + "dex": 11, + "con": 12, + "int": 11, + "wis": 12, + "cha": 13, + "save": { + "dex": "+2", + "con": "+3", + "wis": "+3", + "cha": "+3" + }, + "skill": { + "perception": "+3", + "persuasion": "+3", + "stealth": "+4" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 90 ft." + ], + "passive": 13, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Draconic" + ], + "cr": "1", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Nightmare Breath {@recharge 5}", + "entries": [ + "The dragon exhales a cloud of spores in a 15-foot cone. Each creature in that area must make a {@dc 11} Wisdom saving throw. On a failed save, the creature takes 5 ({@damage 1d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dracohydra", + "source": "FTD", + "page": 176, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 218, + "formula": "19d12 + 95" + }, + "speed": { + "walk": 30, + "swim": 30, + "fly": 30 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 6, + "wis": 12, + "cha": 12, + "skill": { + "perception": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "11", + "trait": [ + { + "name": "Multiple Heads", + "entries": [ + "The dracohydra has five heads. While it has more than one head, the dracohydra has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}.", + "Whenever the dracohydra takes 30 or more damage in a single turn, one of its heads dies. If all its heads die, the dracohydra dies.", + "At the end of its turn, the dracohydra grows two heads for each of its heads that died since its last turn, unless it has taken radiant damage since its last turn. The dracohydra regains 10 hit points for each head regrown this way." + ] + }, + { + "name": "Reactive Heads", + "entries": [ + "For each head the dracohydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks." + ] + }, + { + "name": "Wakeful", + "entries": [ + "While the dracohydra sleeps, at least one of its heads is awake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dracohydra makes as many Bite attacks as it has heads." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) damage of a type chosen by the dracohydra: acid, cold, fire, lightning, or poison." + ] + }, + { + "name": "Prismatic Breath {@recharge 4}", + "entries": [ + "The dracohydra's heads exhale a single breath of multicolored energy in a 60-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, the creature takes 33 ({@damage 6d10}) damage of a type chosen by the dracohydra: acid, cold, fire, lightning, or poison. On a successful save, the creature takes half as much damage." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draconian Dreadnought", + "source": "FTD", + "page": 177, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 57, + "formula": "6d10 + 24" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 18, + "dex": 10, + "con": 18, + "int": 10, + "wis": 10, + "cha": 10, + "save": { + "str": "+6", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "4", + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, it bursts into flames and is reduced to ashes. Each creature in a 10-foot-radius sphere centered on the draconian must succeed on a {@dc 13} Dexterity saving throw or take 10 ({@damage 3d6}) fire damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Serrated Sword attacks and one Tail attack." + ] + }, + { + "name": "Serrated Sword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Shape Theft", + "entries": [ + "After the draconian kills a Medium or smaller Humanoid, the draconian can magically transform itself to look and feel like that creature while retaining its game statistics (other than its size). This transformation lasts until the draconian dies or uses an action to end it." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draconian Foot Soldier", + "source": "FTD", + "page": 178, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 11, + "con": 13, + "int": 8, + "wis": 8, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/2", + "trait": [ + { + "name": "Controlled Fall", + "entries": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage." + ] + }, + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, its body turns to stone and releases a petrifying gas. Each creature within 5 feet of the draconian must succeed on a {@dc 11} Constitution saving throw or be {@condition restrained} as it begins to turn to stone. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a success, the effect ends; otherwise the creature is {@condition petrified} for 1 minute. After 1 minute, the body of the draconian crumbles to dust." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draconian Infiltrator", + "source": "FTD", + "page": 178, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 11, + "dex": 17, + "con": 14, + "int": 9, + "wis": 13, + "cha": 11, + "save": { + "dex": "+5" + }, + "skill": { + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "3", + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, it turns into a puddle of acid and splashes acid on those around it. Each creature within 5 feet of the draconian must succeed on a {@dc 12} Dexterity saving throw or be covered in acid for 1 minute. A creature can use its action to scrape or wash the acid off itself or another creature. A creature covered in the acid takes 7 ({@damage 2d6}) acid damage at the start of each of its turns." + ] + }, + { + "name": "Glide", + "entries": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Dagger attacks. If both attacks hit the same creature, the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} until the end of the target's next turn. While {@condition poisoned} in this way, the target is also {@condition paralyzed}." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draconian Mage", + "source": "FTD", + "page": 179, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 11, + "int": 11, + "wis": 10, + "cha": 14, + "save": { + "int": "+2", + "wis": "+2", + "cha": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "daily": { + "1e": [ + "{@spell enlarge/reduce}", + "{@spell invisibility}", + "{@spell stinking cloud}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, its scales and flesh immediately shrivel away and its bones explode. Each creature within 10 feet of it must succeed on a {@dc 10} Dexterity saving throw or take 9 ({@damage 2d8}) force damage." + ] + }, + { + "name": "Glide", + "entries": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes two Trident or Necrotic Ray attacks." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Necrotic Ray", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage." + ] + } + ], + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "N", + "O", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draconian Mastermind", + "source": "FTD", + "page": 180, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 35 + }, + "str": 13, + "dex": 14, + "con": 16, + "int": 15, + "wis": 11, + "cha": 17, + "save": { + "int": "+5", + "wis": "+3", + "cha": "+6" + }, + "skill": { + "perception": "+3" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell invisibility}", + "{@spell mage hand}" + ], + "daily": { + "2e": [ + "{@spell dimension door}", + "{@spell disguise self}", + "{@spell sending}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the draconian is reduced to 0 hit points, its magical essence lashes out as a ball of lightning at the closest creature within 30 feet of it before arcing out to up to two other creatures within 15 feet of the first. Each creature must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) lightning damage and is {@condition stunned} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draconian makes three Rend or Energy Ray attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Energy Ray", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ] + }, + { + "name": "Noxious Breath {@recharge 5}", + "entries": [ + "The draconian exhales a 15-foot cone of noxious gas. Each creature in that area must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 21 ({@damage 6d6}) poison damage and gains 1 level of {@condition exhaustion}. On a successful save, the creature takes half as much damage, doesn't gain {@condition exhaustion}, and is immune to all draconians' Noxious Breath for 24 hours." + ] + } + ], + "reaction": [ + { + "name": "Magic Shield (3/Day)", + "entries": [ + "When the draconian is hit by an attack roll, it can create an {@condition invisible} barrier of magical force around itself, granting it a +5 bonus to its AC against that attack and potentially causing the attack to miss." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "I", + "L", + "O", + "S" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "exhaustion", + "stunned" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draconic Shard", + "source": "FTD", + "page": 181, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "deflection" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64" + }, + "speed": { + "walk": 0, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 12, + "con": 18, + "int": 22, + "wis": 18, + "cha": 22, + "save": { + "dex": "+7", + "int": "+12", + "wis": "+10", + "cha": "+12" + }, + "skill": { + "arcana": "+12", + "history": "+12", + "perception": "+16", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 26, + "resist": [ + "acid", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The shard casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell telekinesis}" + ], + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Deflection", + "entries": [ + "The shard's AC includes its Intelligence modifier." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The shard can move through creatures and objects as if they were {@quickref difficult terrain||3}. If it ends its turn inside an object, it takes 5 ({@damage 1d10}) force damage." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the shard fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "When it drops to 0 hit points, the shard disappears and leaves a Tiny cracked gemstone in its space. The gemstone matches the kind of gem dragon it was in life and has AC 20, 15 hit points, and immunity to all damage except force. Unless the gemstone is destroyed, after {@dice 1d20} days, the gemstone dissipates and the shard re-forms, regaining all its hit points and appearing in the place the gemstone once occupied or in the nearest unoccupied space." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The shard doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shard makes two Telekinetic Rend attacks." + ] + }, + { + "name": "Telekinetic Rend", + "entries": [ + "{@atk ms,rs} {@hit 12} to hit, reach 10 ft. or range 120 ft., one target. {@h}15 ({@damage 2d8 + 6}) force damage." + ] + }, + { + "name": "Inhabit Object", + "entries": [ + "The shard disappears as it pours its psychic essence into a Medium or smaller nonsentient object it can see within 30 feet of it, magically possessing it. The object uses the shard's AC, and any damage dealt to the object applies to the shard's hit points. The shard inhabits the object until it uses an action to leave; until it is turned; until it is reduced to 0 hit points; or until an effect that ends possession, such as a {@spell dispel evil and good} spell, is used on it. When it leaves the object, it reappears in the nearest unoccupied space.", + "While inhabited, the object becomes a magic item if it wasn't already, and a Tiny cracked gemstone matching the kind of gem dragon the shard was in life appears somewhere on the object. The shard can cause the object to fly using the shard's own flying speed, use its senses, speak verbally or telepathically, cast spells, and use its legendary actions.", + "If a creature wears or carries the inhabited object, the shard can grant the creature the following benefits:", + "Each of the creature's attacks deals an extra {@damage 1d8} force damage on a hit.", + "The creature gains resistance to psychic damage." + ] + }, + { + "name": "Psychic Crush {@recharge 5}", + "entries": [ + "The shard unleashes a pulse of psychic power. Each creature of the shard's choice in a 60-foot-radius sphere centered on it must make a {@dc 20} Intelligence saving throw. On a failed save, the creature takes 55 ({@damage 10d10}) psychic damage and is {@condition stunned} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "legendary": [ + { + "name": "Rend", + "entries": [ + "The shard makes one Telekinetic Rend attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The shard uses Spellcasting." + ] + }, + { + "name": "Commanding Thought (Costs 2 Actions)", + "entries": [ + "The shard targets a creature it can see within 30 feet of it. The target must succeed on a {@dc 20} Wisdom saving throw or be {@condition charmed} until the end of its next turn. While {@condition charmed} in this way, the target becomes the shard's puppet, acting and moving in accordance with its telepathic commands. While under the shard's control, the target can take only the Attack (shard chooses the target) or Dash action on its turn." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances", + "Rejuvenation", + "Unusual Nature" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "O", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "conditionInflict": [ + "charmed", + "stunned" + ], + "conditionInflictSpell": [ + "invisible", + "restrained" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draconic Spirit", + "source": "FTD", + "page": 21, + "reprintedAs": [ + "Draconic Spirit|XPHB" + ], + "summonedBySpell": "Summon Draconic Spirit|FTD", + "summonedBySpellLevel": 5, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + { + "alignment": [ + "N" + ] + } + ], + "ac": [ + { + "special": "14 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "50 + 10 for each spell level above 5th (the dragon has a number of Hit Dice [d10s] equal to the level of the spell)" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 19, + "dex": 14, + "con": 17, + "int": 10, + "wis": 14, + "cha": 14, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "cond": true, + "note": "(Chromatic and Metallic Only)" + }, + { + "resist": [ + "force", + "necrotic", + "psychic", + "radiant", + "thunder" + ], + "cond": true, + "note": "(Gem Only)" + } + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Draconic", + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Shared Resistances", + "entries": [ + "When you summon the dragon, choose one of its damage resistances. You have resistance to the chosen damage type until the spell ends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes a number of Rend attacks equal to half the spell's level (rounded down), and it uses Breath Weapon." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} your spell attack modifier to hit, reach 10 ft., one target. {@h}{@damage 1d6 + 4 + summonSpellLevel} piercing damage." + ] + }, + { + "name": "Breath Weapon", + "entries": [ + "The dragon exhales destructive energy in a 30-foot cone. Each creature in that area must make a Dexterity saving throw against your spell save DC. A creature takes {@damage 2d6} damage of a type this dragon has resistance to (your choice) on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "hasToken": true, + "_versions": [ + { + "name": "Draconic Spirit (Chromatic)", + "source": "FTD", + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ] + }, + { + "name": "Draconic Spirit (Gem)", + "source": "FTD", + "resist": [ + "force", + "necrotic", + "psychic", + "radiant", + "thunder" + ] + }, + { + "name": "Draconic Spirit (Metallic)", + "source": "FTD", + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ] + } + ] + }, + { + "name": "Dragon Blessed", + "source": "FTD", + "page": 188, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item scale mail|PHB}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 10, + "con": 16, + "int": 14, + "wis": 17, + "cha": 10, + "save": { + "con": "+6", + "wis": "+6" + }, + "skill": { + "medicine": "+6", + "religion": "+5" + }, + "passive": 13, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic", + "and any two languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The blessed casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell light}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell enhance ability}", + "{@spell flame strike}", + "{@spell mass cure wounds}", + "{@spell revivify}", + "{@spell tongues}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blessed makes two Mace or Radiant Bolt attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage." + ] + }, + { + "name": "Radiant Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}22 ({@damage 5d8}) radiant damage, and the blessed regains 5 ({@dice 1d10}) hit points." + ] + } + ], + "attachedItems": [ + "mace|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "X" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "F", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragon Chosen", + "source": "FTD", + "page": 189, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 14, + "int": 10, + "wis": 13, + "cha": 14, + "save": { + "str": "+6", + "dex": "+6", + "con": "+4" + }, + "skill": { + "athletics": "+6", + "perception": "+3" + }, + "passive": 13, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chosen makes one Handaxe attack and two Shortsword attacks." + ] + }, + { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage. {@hom}The handaxe magically returns to the chosen's hand immediately after a ranged attack." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Biting Rebuke", + "entries": [ + "Immediately after the chosen takes damage from a creature within 5 feet of it, it can make a Shortsword attack with advantage against that creature." + ] + } + ], + "attachedItems": [ + "handaxe|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragon Speaker", + "source": "FTD", + "page": 189, + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 13, + "wis": 11, + "cha": 17, + "save": { + "dex": "+4", + "cha": "+5" + }, + "skill": { + "persuasion": "+5", + "religion": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Draconic", + "and any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The speaker casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell calm emotions}", + "{@spell charm person}", + "{@spell command}", + "{@spell comprehend languages}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The speaker makes two Thunder Bolt attacks." + ] + }, + { + "name": "Thunder Bolt", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 3d8}) thunder damage, and the target is pushed horizontally up to 10 feet away from the speaker." + ] + } + ], + "reaction": [ + { + "name": "Disarming Words (3/Day)", + "entries": [ + "When a creature the speaker can see within 60 feet of it makes a damage roll, the speaker can roll a {@dice d6} and subtract the number rolled from that damage roll." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "X" + ], + "damageTags": [ + "T" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragon Turtle Wyrmling", + "source": "FTD", + "page": 192, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 20, + "swim": 30 + }, + "str": 17, + "dex": 10, + "con": 15, + "int": 8, + "wis": 10, + "cha": 10, + "save": { + "dex": "+2", + "con": "+4", + "wis": "+2" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "fire" + ], + "languages": [ + "Draconic" + ], + "cr": "4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon turtle can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 3}) piercing damage." + ] + }, + { + "name": "Steam Breath {@recharge 5}", + "entries": [ + "The dragon turtle exhales steam in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 17 ({@damage 5d6}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 8} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dragonblood Ooze", + "source": "FTD", + "page": 182, + "size": [ + "L" + ], + "type": "ooze", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 18, + "dex": 6, + "con": 17, + "int": 2, + "wis": 12, + "cha": 10, + "skill": { + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 14, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "prone", + "restrained" + ], + "languages": [ + "understands Draconic and the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The ooze can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The ooze can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ooze makes two Pseudopod attacks. The ooze can replace one Pseudopod attack with its Slime Breath, if available." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage plus 14 ({@damage 4d6}) acid damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target takes 7 ({@damage 2d6}) acid damage at the start of each of its turns." + ] + }, + { + "name": "Slime Breath {@recharge}", + "entries": [ + "The ooze expels a spray of its gelatinous mass in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) acid damage and is pulled up to 30 feet straight toward the ooze. On a successful save, the creature takes half as much damage and isn't pulled." + ] + } + ], + "traitTags": [ + "Amorphous", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "A", + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragonbone Golem", + "source": "FTD", + "page": 183, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "19d10 + 57" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 10, + "con": 17, + "int": 3, + "wis": 11, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Draconic and the languages of its creator but can't speak" + ], + "cr": "11", + "trait": [ + { + "name": "Fear Aura", + "entries": [ + "Each creature of the golem's choice that starts its turn within 20 feet of the golem must make a {@dc 15} Wisdom saving throw unless the golem is {@condition incapacitated}. On a failed save, the creature is {@condition frightened} until the start of its next turn. On a successful save, the creature is immune to this golem's Fear Aura for the next 24 hours." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The golem doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes one Pinion attack and two Rend attacks." + ] + }, + { + "name": "Pinion", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage. If the target is a Medium or smaller creature, it is pinned beneath the bony pinion and {@condition restrained}. The golem has two pinions, each of which can restrain one target. If a creature is {@condition restrained} by one of the pinions, the golem can't attack with it. Any creature {@condition restrained} by a pinion can free itself at the start of its turn with a successful {@dc 17} Strength ({@skill Athletics}) check." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 5 ({@damage 1d10}) necrotic damage." + ] + }, + { + "name": "Petrifying Breath {@recharge 5}", + "entries": [ + "The golem emits a 60-foot cone of petrifying gas from its mouth. Each creature in that area must succeed on a {@dc 15} Constitution saving throw or take 35 ({@damage 10d6}) poison damage and be {@condition restrained} as it begins to turn to stone. The {@condition restrained} target must repeat the saving throw at the end of its next turn. On a successful save, the effect ends on the target. On a failed save, the target is {@condition petrified}." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "I", + "N", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened", + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragonborn of Bahamut", + "source": "FTD", + "page": 184, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item half plate armor|PHB|half plate}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 19, + "dex": 13, + "con": 18, + "int": 12, + "wis": 14, + "cha": 17, + "save": { + "con": "+7", + "int": "+4", + "wis": "+5", + "cha": "+6" + }, + "skill": { + "athletics": "+7", + "perception": "+5", + "persuasion": "+6" + }, + "passive": 15, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "8", + "trait": [ + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If the dragonborn fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonborn makes three Longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands, plus 13 ({@damage 3d8}) radiant damage. The dragonborn can cause the sword to flare with bright light, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition blinded} until the start of the dragonborn's next turn. The sword can flare in this way only once per turn." + ] + }, + { + "name": "Healing Touch (1/Day)", + "entries": [ + "The dragonborn touches another creature within 5 feet of it. The target magically regains 40 hit points. In addition, all diseases and poisons affecting the target are removed." + ] + }, + { + "name": "Radiant Breath {@recharge}", + "entries": [ + "The dragonborn exhales fiery radiance in a 30-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 44 ({@damage 8d10}) radiant damage on a failed save, or half as much damage on a successful one. When the dragonborn uses this action, it can choose up to three creatures in the cone. These creatures take no damage from the radiance and instead regain 22 ({@dice 4d10}) hit points each." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "R", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragonborn of Sardior", + "source": "FTD", + "page": 185, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "mental defense" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 14, + "dex": 16, + "con": 17, + "int": 18, + "wis": 14, + "cha": 12, + "save": { + "con": "+6", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "skill": { + "arcana": "+7", + "history": "+7", + "perception": "+5" + }, + "passive": 15, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragonborn casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}, {@hit 7} to hit with spell attacks):" + ], + "daily": { + "1e": [ + "{@spell Bigby's hand}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If the dragonborn fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Mental Defense", + "entries": [ + "While the dragonborn is wearing no armor, its AC includes its Intelligence modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonborn makes three Mind Blade attacks." + ] + }, + { + "name": "Mind Blade", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Heat Breath {@recharge}", + "entries": [ + "The dragonborn exhales a wave of intense heat in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 27 ({@damage 6d8}) fire damage on a failed save, or half as much damage on a successful one. Metal objects in that area glow red-hot until the end of the dragonborn's next turn. Any creature in physical contact with a heated object at the start of its turn must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) fire damage and has disadvantage on attack rolls until the start of its next turn." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P", + "Y" + ], + "damageTagsSpell": [ + "B", + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragonborn of Tiamat", + "source": "FTD", + "page": 185, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 11, + "con": 18, + "int": 10, + "wis": 12, + "cha": 16, + "save": { + "str": "+8", + "con": "+7", + "wis": "+4", + "cha": "+6" + }, + "skill": { + "athletics": "+8", + "intimidation": "+6", + "perception": "+4" + }, + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "7", + "trait": [ + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If the dragonborn fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonborn makes two Greataxe attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage plus 13 ({@damage 3d8}) necrotic damage." + ] + }, + { + "name": "Necrotic Breath {@recharge}", + "entries": [ + "The dragonborn exhales shadowy fire in a 30-foot cone. Each creature in that area must make a {@dc 15} Wisdom saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) necrotic damage and is {@condition frightened} of the dragonborn for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition frightened}. A {@condition frightened} creature can repeat the saving throw at end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragonflesh Abomination", + "source": "FTD", + "page": 187, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 5, + "wis": 12, + "cha": 6, + "save": { + "str": "+7", + "con": "+6" + }, + "passive": 11, + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Cloying Miasma", + "entries": [ + "The abomination is surrounded by a noxious stench. At the start of the abomination's turn, any creature within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of the abomination's next turn." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The abomination regains 10 hit points at the start of its turns if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abomination makes three attacks using Claw, Acidic Spit, or a combination of them. It can replace one of the attacks with a Tail attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Acidic Spit", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) acid damage." + ] + }, + { + "name": "Acid Belch {@recharge 5}", + "entries": [ + "The abomination belches forth a cloud of acidic gas in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 28 ({@damage 8d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "A", + "B", + "I", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "poisoned", + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragonflesh Grafter", + "source": "FTD", + "page": 186, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 6, + "save": { + "str": "+5", + "con": "+4" + }, + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The grafter makes one Claw attack and one Greatclub attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage." + ] + }, + { + "name": "Acid Retch {@recharge 5}", + "entries": [ + "The grafter retches forth a spray of acidic bile in a 30-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "greatclub|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "I", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dragonnel", + "source": "FTD", + "page": 190, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 16, + "dex": 15, + "con": 12, + "int": 8, + "wis": 13, + "cha": 10, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "understands Draconic and Common but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The dragonnel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonnel makes two Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drake Companion", + "source": "FTD", + "page": 15, + "summonedByClass": "Ranger|PHB", + "size": [ + "S" + ], + "type": "dragon", + "ac": [ + { + "special": "14 + PB (natural armor)" + } + ], + "hp": { + "special": "5 + five times your ranger level (the drake has a number of Hit Dice [d10s] equal to your ranger level)" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 12, + "con": 15, + "int": 8, + "wis": 14, + "cha": 8, + "save": { + "dex": "+1 + PB", + "wis": "+2 + PB" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + { + "special": "determined by the drake's draconic essence trait" + } + ], + "languages": [ + "Draconic" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Draconic Essence", + "entries": [ + "When you summon the drake, choose a damage type: acid, cold, fire, lightning, or poison. The chosen type determines the drake's damage immunity and the damage of its Infused Strikes trait." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} +3 plus PB to hit, reach 5 ft., one target. {@h}{@damage 1d6} plus PB piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Infused Strikes", + "entries": [ + "When another creature within 30 feet of the drake that it can see hits a target with a weapon attack, the drake infuses the strike with its essence, causing the target to take an extra {@damage 1d6} damage of the type determined by its Draconic Essence." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "DR" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Egg Hunter Adult", + "source": "FTD", + "page": 193, + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d6 + 24" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 14, + "dex": 20, + "con": 16, + "int": 3, + "wis": 13, + "cha": 5, + "save": { + "dex": "+8", + "wis": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "conditionImmune": [ + "frightened", + "poisoned" + ], + "cr": "5", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The egg hunter can breathe air and water." + ] + }, + { + "name": "False Appearance", + "entries": [ + "If the egg hunter is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the egg hunter move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the egg hunter is animate. Dragons have disadvantage on this check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The egg hunter makes two Barbed Proboscis attacks, and it can use Torpor Spores if it's available." + ] + }, + { + "name": "Barbed Proboscis", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage, and the egg hunter regains hit points equal to the necrotic damage dealt." + ] + }, + { + "name": "Torpor Spores {@recharge 5}", + "entries": [ + "The egg hunter releases a billow of sparkling blue spores. Each creature in a 30-foot-radius sphere centered on the egg hunter must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the creature can take either an action or a bonus action on its turn but not both, and it can't take reactions. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this egg hunter's Torpor Spores for the next 24 hours." + ] + } + ], + "reaction": [ + { + "name": "Rapid Adaptation", + "entries": [ + "When the egg hunter takes damage, it gives itself resistance to that damage." + ] + } + ], + "traitTags": [ + "Amphibious", + "False Appearance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Egg Hunter Hatchling", + "source": "FTD", + "page": 193, + "size": [ + "T" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 28, + "formula": "8d4 + 8" + }, + "speed": { + "walk": 30, + "burrow": 10, + "climb": 30 + }, + "str": 8, + "dex": 17, + "con": 13, + "int": 1, + "wis": 10, + "cha": 5, + "save": { + "dex": "+5", + "wis": "+2" + }, + "skill": { + "perception": "+2", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "conditionImmune": [ + "frightened" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The egg hunter can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The egg hunter makes two Egg Tooth attacks." + ] + }, + { + "name": "Egg Tooth", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, or 17 ({@damage 4d6 + 3}) piercing damage if the target is an object." + ] + } + ], + "bonus": [ + { + "name": "Rapid Movement", + "entries": [ + "The egg hunter takes the Dash or Disengage action." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elder Brain Dragon", + "source": "FTD", + "page": 194, + "size": [ + "G" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 350, + "formula": "20d20 + 140" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 27, + "dex": 13, + "con": 25, + "int": 21, + "wis": 19, + "cha": 24, + "save": { + "con": "+14", + "int": "+12", + "wis": "+11", + "cha": "+14" + }, + "skill": { + "arcana": "+12", + "insight": "+18", + "perception": "+18" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 28, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Deep Speech", + "Draconic", + "telepathy 5 miles" + ], + "cr": "22", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The dragon deals double damage to objects and structures." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack, two Claw attacks, and one Tentacle attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d6 + 8}) slashing damage." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one creature. {@h}12 ({@damage 1d8 + 8}) psychic damage. If the target is Huge or smaller, it is {@condition grappled} (escape {@dc 18}). The dragon can have up to four targets {@condition grappled} at a time." + ] + }, + { + "name": "Tadpole Brine Breath {@recharge 5}", + "entries": [ + "The dragon exhales brine in a 120-foot line that is 15 feet wide. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 55 ({@damage 10d10}) psychic damage on a failed save, or half as much damage on a successful one. On a success or failure, if the creature isn't a Construct or an Undead, it becomes infested with illithid tadpoles.", + "While infested, the creature takes 16 ({@damage 3d10}) psychic damage at the start of each of its turns. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on three of these saves. If the creature is targeted by magic that ends a curse or restores 40 hit points or more, the tadpoles infesting the creature are killed instantly, ending the effect on the creature.", + "If a Humanoid is reduced to 0 hit points while infested, the creature is stable but remains {@condition unconscious} for {@dice 6d12} hours. When the period of unconsciousness ends, the creature transforms into a {@creature mind flayer} (see the Monster Manual) with all its hit points. Casting a {@spell wish} spell on the {@condition unconscious} creature rids it of the infestation and prevents it from turning into a mind flayer." + ] + } + ], + "legendary": [ + { + "name": "Tentacle", + "entries": [ + "The dragon makes one Tentacle attack." + ] + }, + { + "name": "Shatter Concentration (Costs 2 Actions)", + "entries": [ + "The dragon targets a creature it is grappling. The target's {@status concentration} on a spell it has cast or an ability it is maintaining ends, and the target takes 19 ({@damage 3d12}) psychic damage." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Siege Monster", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DR", + "DS", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Emerald Dragon Wyrmling", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 197, + "size": [ + "M" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30, + "burrow": 20, + "fly": 60 + }, + "str": 15, + "dex": 12, + "con": 15, + "int": 14, + "wis": 12, + "cha": 14, + "save": { + "dex": "+3", + "con": "+4", + "wis": "+3", + "cha": "+4" + }, + "skill": { + "arcana": "+4", + "deception": "+4", + "perception": "+5", + "stealth": "+3" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "fire", + "psychic" + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 3 ({@damage 1d6}) psychic damage." + ] + }, + { + "name": "Disorienting Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of psychic dissonance in a 15-foot cone. Each creature in that area must make a {@dc 12} Intelligence saving throw. On a failed save, the creature takes 17 ({@damage 5d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d4} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "traitTags": [ + "Tunneler" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Emerald Greatwyrm", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 201, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "swim": 60, + "canHover": true + }, + "str": 28, + "dex": 14, + "con": 29, + "int": 30, + "wis": 24, + "cha": 25, + "save": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "skill": { + "arcana": "+26", + "history": "+18", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Gem Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ] + }, + { + "name": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "entries": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The greatwyrm makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Psychic Beam (Costs 3 Actions)", + "entries": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 15} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "intelligence", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Eyedrake", + "source": "FTD", + "page": 199, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 10, + "con": 16, + "int": 14, + "wis": 14, + "cha": 16, + "save": { + "con": "+6", + "wis": "+5" + }, + "skill": { + "perception": "+8", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Draconic" + ], + "cr": "8", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The eyedrake doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage." + ] + }, + { + "name": "Antimagic Breath {@recharge}", + "entries": [ + "The eyedrake emits a magic wave in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 39 ({@damage 6d12}) force damage on a failed save, or half as much damage on a successful one. Every spell of 3rd level or lower ends on creatures and objects of the eyedrake's choice in that area." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The eyedrake shoots three of the following magical eye rays at random (reroll duplicates), each ray targeting one creature it can see within 60 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1: Freezing Ray", + "entries": [ + "The target must make a {@dc 14} Constitution saving throw. On a failed save, the target takes 17 ({@damage 5d6}) cold damage, and its speed is halved until the end of its next turn. On a successful save, the target takes half as much damage with no additional effects." + ], + "type": "item" + }, + { + "name": "2: Debilitating Ray", + "entries": [ + "The target must succeed on a {@dc 14} Constitution saving throw or take 7 ({@damage 2d6}) thunder damage and become {@condition incapacitated} until the end of its next turn." + ], + "type": "item" + }, + { + "name": "3: Repulsion Ray", + "entries": [ + "The target must succeed on a {@dc 14} Strength saving throw or take 14 ({@damage 4d6}) force damage and be pushed up to 60 feet away from the eyedrake." + ], + "type": "item" + }, + { + "name": "4: Fire Ray", + "entries": [ + "The target must make a {@dc 14} Dexterity saving throw, taking 21 ({@damage 6d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "type": "item" + }, + { + "name": "5: Paralyzing Ray", + "entries": [ + "The target must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "type": "item" + }, + { + "name": "6: Death Ray", + "entries": [ + "The target must make a {@dc 14} Dexterity saving throw, taking 28 ({@damage 8d6}) necrotic damage on a failed save, or half as much damage on a successful one. The target dies if the ray reduces it to 0 hit points." + ], + "type": "item" + } + ] + } + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "DS" + ], + "damageTags": [ + "C", + "F", + "N", + "O", + "P", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gem Stalker", + "source": "FTD", + "page": 202, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 17, + "dex": 15, + "con": 14, + "int": 15, + "wis": 10, + "cha": 6, + "save": { + "dex": "+5", + "int": "+5" + }, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "psychic" + ], + "languages": [ + "telepathy 60 ft. understands Draconic but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The gem stalker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The gem stalker doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gem stalker makes four Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Crystal Dart", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 30 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage, and one of the following effects occurs, determined by the kind of dragon that created the gem stalker:" + ] + }, + { + "name": "Amethyst", + "entries": [ + "The gem stalker can teleport to an unoccupied space it can see within 30 feet of it." + ] + }, + { + "name": "Crystal", + "entries": [ + "The gem stalker gains a number of temporary hit points equal to the damage dealt." + ] + }, + { + "name": "Emerald", + "entries": [ + "The target must roll a {@dice d4} and subtract the number rolled from the next attack roll it makes before the start of the gem stalker's next turn." + ] + }, + { + "name": "Sapphire", + "entries": [ + "The target must succeed on a {@dc 13} Strength saving throw or be pushed horizontally up to 10 feet away from the gem stalker and be knocked {@condition prone}." + ] + }, + { + "name": "Topaz", + "entries": [ + "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the start of the gem stalker's next turn." + ] + } + ], + "reaction": [ + { + "name": "Protective Link", + "entries": [ + "When another creature the gem stalker can see within 30 feet of it is about to take damage, the gem stalker reduces that damage by 10 ({@dice 3d6}). The gem stalker then takes damage equal to that amount." + ] + } + ], + "traitTags": [ + "Spider Climb", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR", + "TP" + ], + "damageTags": [ + "O", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned", + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ghost Dragon", + "source": "FTD", + "page": 203, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 10 + ], + "hp": { + "average": 324, + "formula": "24d12 + 168" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 20, + "dex": 10, + "con": 25, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "con": "+13", + "wis": "+8", + "cha": "+10" + }, + "skill": { + "perception": "+14", + "stealth": "+12" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 24, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "immune": [ + "acid", + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "17", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The ghost dragon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the ghost dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The ghost dragon doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ghost dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}32 ({@damage 6d8 + 5}) cold damage, and the target's speed is halved until the start of the dragon's next turn." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) necrotic damage." + ] + }, + { + "name": "Terrifying Breath {@recharge}", + "entries": [ + "The ghost dragon exhales shadowy mist in a 90-foot cone. Each creature in that area must make a {@dc 21} Constitution saving throw. On a failed save, the creature takes 40 ({@damage 9d8}) cold damage and is {@condition frightened} of the ghost dragon for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition frightened}.", + "While {@condition frightened} of the ghost dragon, a creature is {@condition paralyzed}. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If a creature's saving throw is successful or the effect ends for it, the creature is immune to this ghost dragon's Terrifying Breath for the next 24 hours." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "C", + "N", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Canary", + "source": "FTD", + "page": 23, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 2, + "wis": 10, + "cha": 6, + "passive": 10, + "cr": "1/2", + "action": [ + { + "name": "Peck", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Gold Greatwyrm", + "group": [ + "Metallic Dragon" + ], + "source": "FTD", + "page": 208, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "metallic" + ] + }, + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 16, + "con": 29, + "int": 21, + "wis": 22, + "cha": 30, + "save": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "skill": { + "insight": "+14", + "perception": "+22", + "persuasion": "+18" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 32, + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "28", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Metallic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Elemental Breath", + "entries": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "type": "item", + "name": "Sapping Breath", + "entries": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Metallic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Shattering Roar (Costs 2 Actions)", + "entries": [ + "The greatwyrm unleashes a magical roar. Each creature in a 120-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Constitution saving throw or take 19 ({@damage 3d12}) thunder damage and be {@condition incapacitated} until the end of its next turn." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 18} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "gold", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "O", + "P", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "incapacitated", + "prone", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Green Greatwyrm", + "group": [ + "Chromatic Dragon" + ], + "source": "FTD", + "page": 168, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "chromatic" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 14, + "con": 30, + "int": 21, + "wis": 20, + "cha": 26, + "save": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "skill": { + "intimidation": "+16", + "perception": "+21", + "stealth": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 31, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "27", + "trait": [ + { + "name": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) poison damage. On a successful save, the creature takes half as much damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + }, + { + "name": "Arcane Spear (Costs 3 Actions)", + "entries": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Chromatic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Chromatic Flare (Costs 2 Actions)", + "entries": [ + "The greatwyrm flares with elemental energy. Each creature in a 60-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Dexterity saving throw or take 22 ({@damage 5d8}) poison damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "green", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "I", + "O", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hoard Mimic", + "source": "FTD", + "page": 204, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d12 + 39" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 12, + "con": 17, + "int": 10, + "wis": 16, + "cha": 10, + "save": { + "con": "+6", + "wis": "+6" + }, + "skill": { + "persuasion": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "8", + "trait": [ + { + "name": "False Appearance (Hoard Form Only)", + "entries": [ + "If the mimic is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the mimic move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the mimic is animate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mimic makes one Bite attack and two Pseudopod attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage, and the mimic adheres to the target. A creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}. Ability checks made to escape this grapple have disadvantage." + ] + }, + { + "name": "Caustic Mist {@recharge 5}", + "entries": [ + "The mimic sprays a fine mist of acid in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 27 ({@damage 6d8}) acid damage and is {@condition blinded} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition blinded}." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "The mimic transforms into a hoard or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hoard Scarab", + "source": "FTD", + "page": 205, + "size": [ + "T" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 7, + "formula": "3d4" + }, + "speed": { + "walk": 20, + "burrow": 20, + "fly": 20 + }, + "str": 4, + "dex": 16, + "con": 11, + "int": 3, + "wis": 8, + "cha": 6, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 9, + "cr": "1/8", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the scarab is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the scarab move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the scarab is animate." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. If the target is a creature, it has disadvantage on attack rolls until the start of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Scale Dust (1/Day)", + "entries": [ + "The scarab releases magical glittering dust from its wings. Each creature within 5 feet of the scarab must succeed on a {@dc 13} Dexterity saving throw or be outlined in blue light for 10 minutes. While outlined in this way, a creature sheds dim light in a 10-foot radius and can't benefit from being {@condition invisible}. In addition, every Dragon within 1 mile of the creature becomes aware of it and can unerringly track the creature. Casting {@spell dispel magic} on the creature ends the effect on it." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D", + "T" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hollow Dragon", + "source": "FTD", + "page": 206, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 241, + "formula": "21d12 + 105" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 23, + "dex": 12, + "con": 21, + "int": 16, + "wis": 13, + "cha": 21, + "save": { + "con": "+11", + "int": "+9", + "wis": "+7", + "cha": "+11" + }, + "skill": { + "arcana": "+9", + "history": "+15", + "perception": "+13" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "resist": [ + "necrotic" + ], + "immune": [ + "poison", + "radiant" + ], + "conditionImmune": [ + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "18", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the hollow dragon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Reconstruction", + "entries": [ + "When the hollow dragon is reduced to 0 hit points, its body breaks into nine pieces: two arms, two legs, two wings, a tail, a torso, and a head. Each piece is a Large object with AC 19, 27 hit points, and immunity to psychic and poison damage. After {@dice 1d6} days, if all pieces are still within 6 miles of each other, they all teleport to the location of the head piece and merge with it, whereupon the hollow dragon regains all its hit points and becomes active again." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hollow dragon makes one Bite attack and two Claw attacks, and it can use Sapping Presence." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 9 ({@damage 2d8}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Sapping Presence", + "entries": [ + "Each creature of the hollow dragon's choice within 60 feet of it must make a {@dc 19} Wisdom saving throw. On a failed save, the creature's speed is halved and it has disadvantage on attack rolls until the end of its next turn. On a successful save, the creature is immune to this hollow dragon's Sapping Presence for 24 hours." + ] + }, + { + "name": "Radiant Breath {@recharge 5}", + "entries": [ + "The hollow dragon exhales radiant flames in a 60-foot cone. Each creature in that area must make a {@dc 19} Dexterity saving throw, taking 54 ({@damage 12d8}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The hollow dragon makes one Claw attack." + ] + }, + { + "name": "Ghostly Binding (Costs 2 Actions)", + "entries": [ + "The hollow dragon creates ethereal bindings around a creature it can see within 60 feet of it. The target must succeed on a {@dc 19} Strength saving throw or be {@condition restrained} until the end of the dragon's next turn." + ] + }, + { + "name": "Booming Scales (Costs 3 Actions)", + "entries": [ + "A sudden loud ringing noise, painfully intense, erupts from the hollow dragon's frame. Each creature within 10 feet of the hollow dragon must make a {@dc 19} Constitution saving throw, taking 24 ({@damage 7d6}) thunder damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P", + "R", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Liondrake", + "source": "FTD", + "page": 207, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 19, + "dex": 15, + "con": 17, + "int": 6, + "wis": 12, + "cha": 12, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "languages": [ + "Draconic" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The liondrake makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Blood-Chilling Roar {@recharge 4}", + "entries": [ + "The liondrake lets out a terrifying roar audible out to 300 feet. Any creature within 30 feet of the liondrake that can hear its roar must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the liondrake for 1 minute. A creature that fails the save by 5 or more is also {@condition paralyzed} for the same duration. A creature can repeat the saving throw at the end of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this liondrake's Blood-Chilling Roar for the next 24 hours." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Metallic Peacekeeper", + "source": "FTD", + "page": 210, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 18, + "int": 14, + "wis": 12, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 30 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The peacekeeper is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Telepathic Bond", + "entries": [ + "While the peacekeeper is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The peacekeeper makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d8 + 3}) bludgeoning damage." + ] + }, + { + "name": "Calming Mist {@recharge 5}", + "entries": [ + "The peacekeeper releases a calming gas in a 30-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 14} Charisma saving throw or become {@condition charmed} by the peacekeeper for 1 minute. While {@condition charmed} in this way, the creature is {@condition incapacitated} and has a speed of 0." + ] + } + ], + "traitTags": [ + "Immutable Form" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Metallic Warbler", + "source": "FTD", + "page": 210, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 4, + "dex": 15, + "con": 12, + "int": 9, + "wis": 10, + "cha": 12, + "save": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The warbler is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Telepathic Bond", + "entries": [ + "While the warbler is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Calming Mist {@recharge 5}", + "entries": [ + "The warbler releases a calming gas in a 5-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 11} Charisma saving throw or become {@condition charmed} by the warbler for 1 minute. While {@condition charmed} in this way, the creature is {@condition incapacitated} and has a speed of 0." + ] + } + ], + "traitTags": [ + "Immutable Form" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Moonstone Dragon Wyrmling", + "source": "FTD", + "page": 213, + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 16, + "wis": 14, + "cha": 17, + "save": { + "int": "+5", + "wis": "+4", + "cha": "+5" + }, + "skill": { + "perception": "+4", + "persuasion": "+5", + "stealth": "+4" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage plus 3 ({@damage 1d6}) radiant damage." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Dream Breath", + "entries": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 12} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ] + }, + { + "type": "item", + "name": "Moonlight Breath", + "entries": [ + "The dragon exhales a beam of moonlight in a 30-foot line that is 5 feet wide. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Red Greatwyrm", + "group": [ + "Chromatic Dragon" + ], + "source": "FTD", + "page": 168, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "chromatic" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 14, + "con": 30, + "int": 21, + "wis": 20, + "cha": 26, + "save": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "skill": { + "intimidation": "+16", + "perception": "+21", + "stealth": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 31, + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "27", + "trait": [ + { + "name": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) fire damage. On a successful save, the creature takes half as much damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + }, + { + "name": "Arcane Spear (Costs 3 Actions)", + "entries": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Chromatic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Chromatic Flare (Costs 2 Actions)", + "entries": [ + "The greatwyrm flares with elemental energy. Each creature in a 60-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Dexterity saving throw or take 22 ({@damage 5d8}) fire damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "red", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "O", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sapphire Dragon Wyrmling", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 216, + "size": [ + "M" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30, + "burrow": 15, + "climb": 30, + "fly": 60 + }, + "str": 17, + "dex": 14, + "con": 16, + "int": 14, + "wis": 13, + "cha": 14, + "save": { + "dex": "+4", + "con": "+5", + "wis": "+3", + "cha": "+4" + }, + "skill": { + "history": "+4", + "perception": "+5", + "persuasion": "+6", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell alarm}", + "{@spell Tenser's floating disk}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 5-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 3 ({@damage 1d6}) thunder damage." + ] + }, + { + "name": "Debilitating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 15-foot cone. Each creature in that area must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "traitTags": [ + "Spider Climb", + "Tunneler" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "TP" + ], + "damageTags": [ + "P", + "T" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sapphire Greatwyrm", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 201, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "swim": 60, + "canHover": true + }, + "str": 28, + "dex": 14, + "con": 29, + "int": 30, + "wis": 24, + "cha": 25, + "save": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "skill": { + "arcana": "+26", + "history": "+18", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "immune": [ + "thunder" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Gem Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ] + }, + { + "name": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "entries": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The greatwyrm makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Psychic Beam (Costs 3 Actions)", + "entries": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 15} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "intelligence", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Silver Greatwyrm", + "group": [ + "Metallic Dragon" + ], + "source": "FTD", + "page": 208, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "metallic" + ] + }, + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 16, + "con": 29, + "int": 21, + "wis": 22, + "cha": 30, + "save": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "skill": { + "insight": "+14", + "perception": "+22", + "persuasion": "+18" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 32, + "immune": [ + "cold" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "28", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Metallic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Elemental Breath", + "entries": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) cold damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "type": "item", + "name": "Sapping Breath", + "entries": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Metallic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Shattering Roar (Costs 2 Actions)", + "entries": [ + "The greatwyrm unleashes a magical roar. Each creature in a 120-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Constitution saving throw or take 19 ({@damage 3d12}) thunder damage and be {@condition incapacitated} until the end of its next turn." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 18} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "silver", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "O", + "P", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "incapacitated", + "prone", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Hoard Scarabs", + "source": "FTD", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 20, + "burrow": 20, + "fly": 20 + }, + "str": 6, + "dex": 16, + "con": 11, + "int": 3, + "wis": 8, + "cha": 6, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 9, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the swarm is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the swarm move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the swarm is animate." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny scarab. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Swarm of Bites", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one creature in the swarm's space. {@h}13 ({@damage 3d6 + 3}) piercing damage, or 6 ({@damage 1d6 + 3}) piercing damage if the swarm is at half of its hit points or fewer, and the target has disadvantage on attack rolls until the start of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Scale Dust (1/Day)", + "entries": [ + "The swarm releases magical glittering dust from its wings. Each creature within 10 feet of the swarm must succeed on a {@dc 13} Dexterity saving throw or be outlined in blue light for 10 minutes. While outlined in this way, a creature sheds dim light in a 10-foot radius and can't benefit from being {@condition invisible}. In addition, every Dragon within 1 mile of the creature becomes aware of it and can unerringly track the creature. Casting {@spell dispel magic} on the creature ends the effect on it." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D", + "T" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Topaz Dragon Wyrmling", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 223, + "size": [ + "M" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 14, + "wis": 13, + "cha": 14, + "save": { + "dex": "+3", + "con": "+3", + "wis": "+3", + "cha": "+4" + }, + "skill": { + "intimidation": "+6", + "perception": "+5", + "stealth": "+3" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "necrotic" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "daily": { + "1e": [ + "{@spell bane}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) necrotic damage." + ] + }, + { + "name": "Desiccating Breath {@recharge 5}", + "entries": [ + "The dragon exhales yellowish necrotic energy in a 15-foot cone. Each creature in that area must make a {@dc 11} Constitution saving throw. On a failed save, the creature takes 21 ({@damage 6d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "N", + "P" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Topaz Greatwyrm", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 201, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "swim": 60, + "canHover": true + }, + "str": 28, + "dex": 14, + "con": 29, + "int": 30, + "wis": 24, + "cha": 25, + "save": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "skill": { + "arcana": "+26", + "history": "+18", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "immune": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Gem Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ] + }, + { + "name": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "entries": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ] + }, + { + "name": "Psychic Step", + "entries": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The greatwyrm makes one Claw attack." + ] + }, + { + "name": "Psionics (Costs 2 Actions)", + "entries": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ] + }, + { + "name": "Psychic Beam (Costs 3 Actions)", + "entries": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 15} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "intelligence", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "White Greatwyrm", + "group": [ + "Chromatic Dragon" + ], + "source": "FTD", + "page": 168, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "chromatic" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260" + }, + "speed": { + "walk": 60, + "burrow": 60, + "fly": 120, + "swim": 60 + }, + "str": 30, + "dex": 14, + "con": 30, + "int": 21, + "wis": 20, + "cha": 26, + "save": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "skill": { + "intimidation": "+16", + "perception": "+21", + "stealth": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 31, + "immune": [ + "cold" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "27", + "trait": [ + { + "name": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "entries": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The greatwyrm doesn't require food or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) cold damage. On a successful save, the creature takes half as much damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The greatwyrm makes one Claw or Tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ] + }, + { + "name": "Arcane Spear (Costs 3 Actions)", + "entries": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ] + } + ], + "mythicHeader": [ + "If the greatwyrm's Chromatic Awakening trait has activated in the last hour, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Bite", + "entries": [ + "The greatwyrm makes one Bite attack." + ] + }, + { + "name": "Chromatic Flare (Costs 2 Actions)", + "entries": [ + "The greatwyrm flares with elemental energy. Each creature in a 60-foot-radius sphere centered on the greatwyrm must succeed on a {@dc 26} Dexterity saving throw or take 22 ({@damage 5d8}) cold damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "white", + "dragonAge": "greatwyrm", + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "O", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Young Amethyst Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 161, + "size": [ + "L" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "swim": 40, + "canHover": true + }, + "str": 21, + "dex": 12, + "con": 21, + "int": 18, + "wis": 15, + "cha": 19, + "save": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "arcana": "+12", + "perception": "+10", + "persuasion": "+8", + "stealth": "+5" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + "force", + "psychic" + ], + "conditionImmune": [ + "frightened", + "prone" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "daily": { + "1e": [ + "{@spell blink}", + "{@spell dispel magic}", + "{@spell protection from evil and good}", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + }, + { + "name": "Singularity Breath {@recharge 5}", + "entries": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 30-foot cone. Each creature in that area must make a {@dc 17} Strength saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Crystal Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 172, + "size": [ + "L" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 40, + "burrow": 20, + "climb": 40, + "fly": 80 + }, + "str": 17, + "dex": 12, + "con": 18, + "int": 16, + "wis": 14, + "cha": 17, + "save": { + "dex": "+4", + "con": "+7", + "wis": "+5", + "cha": "+6" + }, + "skill": { + "perception": "+8", + "stealth": "+7", + "survival": "+5" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "cold", + "radiant" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "daily": { + "1e": [ + "{@spell hypnotic pattern}", + "{@spell lesser restoration}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage plus 4 ({@damage 1d8}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Scintillating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a burst of brilliant radiance in a 30-foot cone. Each creature in that area must make a {@dc 15} Constitution saving throw, taking 27 ({@damage 6d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 10 temporary hit points by absorbing a portion of the radiant energy." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "young", + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "P", + "R", + "S" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Deep Dragon", + "source": "FTD", + "page": 175, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 40, + "burrow": 20, + "fly": 80, + "swim": 40 + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 12, + "wis": 14, + "cha": 16, + "save": { + "dex": "+4", + "con": "+6", + "wis": "+5", + "cha": "+6" + }, + "skill": { + "perception": "+5", + "persuasion": "+6", + "stealth": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 150 ft." + ], + "passive": 15, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Undercommon" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Nightmare Breath {@recharge 5}", + "entries": [ + "The dragon exhales a cloud of spores in a 30-foot cone. Each creature in that area must make a {@dc 14} Wisdom saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonCastingColor": "deep", + "dragonAge": "young", + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "U" + ], + "damageTags": [ + "I", + "P", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Dragon Turtle", + "source": "FTD", + "page": 192, + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d12 + 68" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 21, + "dex": 10, + "con": 19, + "int": 10, + "wis": 12, + "cha": 12, + "save": { + "dex": "+4", + "con": "+8", + "wis": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Aquan", + "Draconic" + ], + "cr": "10", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon turtle can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon turtle makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 6 ({@damage 1d12}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + }, + { + "name": "Steam Breath {@recharge 5}", + "entries": [ + "The dragon turtle exhales steam in a 30-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw, taking 42 ({@damage 12d6}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "AQ", + "DR" + ], + "damageTags": [ + "F", + "L", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Young Emerald Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 197, + "size": [ + "L" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 60 + }, + "str": 21, + "dex": 12, + "con": 19, + "int": 16, + "wis": 14, + "cha": 16, + "save": { + "dex": "+4", + "con": "+7", + "wis": "+5", + "cha": "+6" + }, + "skill": { + "arcana": "+6", + "deception": "+6", + "perception": "+8", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "fire", + "psychic" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell silent image}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 3 ({@damage 1d6}) psychic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ] + }, + { + "name": "Disorienting Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of psychic dissonance in a 30-foot cone. Each creature in that area must make a {@dc 15} Intelligence saving throw. On a failed save, the creature takes 31 ({@damage 9d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d6} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Tunneler" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Moonstone Dragon", + "source": "FTD", + "page": 213, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d10 + 51" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 18, + "dex": 16, + "con": 17, + "int": 18, + "wis": 17, + "cha": 19, + "save": { + "con": "+6", + "int": "+7", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "perception": "+6", + "persuasion": "+7", + "stealth": "+6" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 16, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Draconic", + "Sylvan" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "daily": { + "1e": [ + "{@spell calm emotions}", + "{@spell faerie fire}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 5 ({@damage 1d10}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Dream Breath", + "entries": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 14} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ] + }, + { + "type": "item", + "name": "Moonlight Breath", + "entries": [ + "The dragon exhales a beam of moonlight in a 60-foot line that is 5 feet wide. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 38 ({@damage 7d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "young", + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "S" + ], + "damageTags": [ + "P", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Sapphire Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 216, + "size": [ + "L" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75" + }, + "speed": { + "walk": 40, + "burrow": 20, + "climb": 40, + "fly": 80 + }, + "str": 21, + "dex": 14, + "con": 20, + "int": 16, + "wis": 15, + "cha": 16, + "save": { + "dex": "+6", + "con": "+9", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "history": "+7", + "perception": "+10", + "persuasion": "+11", + "stealth": "+6" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "daily": { + "1e": [ + "{@spell dissonant whispers}", + "{@spell hold person}", + "{@spell meld into stone}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) thunder damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ] + }, + { + "name": "Debilitating Breath {@recharge 5}", + "entries": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 30-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw. On a failed save, the creature takes 33 ({@damage 6d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Spider Climb", + "Tunneler" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "P", + "S", + "T" + ], + "damageTagsSpell": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Sea Serpent", + "source": "FTD", + "page": 219, + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d12 + 39" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 19, + "dex": 12, + "con": 17, + "int": 11, + "wis": 13, + "cha": 10, + "save": { + "str": "+7", + "con": "+6" + }, + "skill": { + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "8", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The sea serpent can breathe air and water." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The sea serpent deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sea serpent makes one Bite attack and one Constrict or Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 5 ({@damage 1d10}) cold damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 20 ft., one creature. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the sea serpent can't constrict another target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be pushed up to 20 feet away and knocked {@condition prone}." + ] + }, + { + "name": "Rime Breath {@recharge 5}", + "entries": [ + "The sea serpent exhales a 30-foot cone of cold. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 38 ({@damage 7d10}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Amphibious", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Topaz Dragon", + "group": [ + "Gem Dragon" + ], + "source": "FTD", + "page": 223, + "size": [ + "L" + ], + "type": { + "type": "dragon", + "tags": [ + "gem" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 34" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 16, + "wis": 15, + "cha": 16, + "save": { + "dex": "+4", + "con": "+5", + "wis": "+5", + "cha": "+6" + }, + "skill": { + "intimidation": "+9", + "perception": "+8", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "cold", + "necrotic" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "daily": { + "1e": [ + "{@spell bane}", + "{@spell create or destroy water}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe both air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage plus 3 ({@damage 1d6}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Desiccating Breath {@recharge 5}", + "entries": [ + "The dragon exhales yellowish necrotic energy in a 30-foot cone. Each creature in that area must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 28 ({@damage 8d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "young", + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Anarch", + "source": "GGR", + "page": 239, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 13, + "con": 12, + "int": 9, + "wis": 11, + "cha": 10, + "skill": { + "perception": "+2", + "survival": "+2" + }, + "passive": 12, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/4", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the anarch can move up to its speed toward a hostile creature it can see." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The anarch deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Spiked Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 7 ({@damage 1d10 + 2}) piercing damage if used with two hands." + ] + } + ], + "traitTags": [ + "Aggressive", + "Siege Monster" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Archon of the Triumvirate", + "source": "GGR", + "page": 192, + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 19, + "int": 15, + "wis": 21, + "cha": 18, + "save": { + "con": "+9", + "wis": "+10", + "cha": "+9" + }, + "skill": { + "insight": "+10", + "perception": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archon's innate spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The archon can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell calm emotions}", + "{@spell command}", + "{@spell compelled duel}" + ], + "ability": "wis" + } + ], + "trait": [ + { + "name": "Eye of the Law", + "entries": [ + "As a bonus action, the archon can target a creature it can see within 120 feet of it and determine which laws that creature has broken in the last 24 hours." + ] + }, + { + "name": "Mount", + "entries": [ + "If the archon isn't mounted, it can use a bonus action to magically teleport onto the creature serving as its mount, provided the archon and its mount are on the same plane of existence. When it teleports, the archon appears astride the mount along with any equipment it is wearing or carrying. While mounted and not {@condition incapacitated}, the archon can't be {@status surprised}, and both it and its mount gain advantage on Dexterity saving throws. If the archon is reduced to 0 hit points while riding its mount, the mount is reduced to 0 hit points as well." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archon makes two Hammer of Justice attacks." + ] + }, + { + "name": "Hammer of Justice", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 18 ({@damage 4d8}) force damage. If the target is a creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Pacifying Presence", + "entries": [ + "Each creature of the archon's choice that the archon can see within 120 feet of it must succeed on a {@dc 18} Wisdom saving throw, or else the target drops any weapons it is holding, ends its {@status concentration} on any spells or other effects, and becomes {@condition charmed} by the archon for 1 minute. The {@condition charmed} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the archon's Pacifying Presence for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Rejoin Mount", + "entries": [ + "If the archon isn't mounted, it magically teleports to its steed and mounts it as long as the archon and its steed are on the same plane of existence." + ] + }, + { + "name": "Smite (Costs 2 Actions)", + "entries": [ + "The archon makes a Hammer of Justice attack, and then its mount can use its reaction to make a melee weapon attack." + ] + }, + { + "name": "Detention (Costs 3 Actions)", + "entries": [ + "The archon targets a creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Charisma saving throw or be magically teleported to a harmless demiplane until the end of the archon's next turn, whereupon the target reappears in the space it left or the nearest unoccupied space if that space is occupied." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "B", + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "prone" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "charisma", + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Arclight Phoenix", + "source": "GGR", + "page": 193, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "ac": [ + 16 + ], + "hp": { + "average": 142, + "formula": "19d8 + 57" + }, + "speed": { + "walk": 0, + "fly": 120 + }, + "str": 15, + "dex": 22, + "con": 17, + "int": 5, + "wis": 12, + "cha": 7, + "save": { + "dex": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "restrained", + "unconscious" + ], + "cr": "12", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The arclight phoenix doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "name": "Grounded Lightning", + "entries": [ + "The first time on a turn that the arclight phoenix touches the ground, it takes 11 ({@damage 2d10}) force damage." + ] + }, + { + "name": "Illumination", + "entries": [ + "The arclight phoenix sheds bright light in a 15-foot radius and dim light for an additional 15 feet." + ] + }, + { + "name": "Lightning Form", + "entries": [ + "The arclight phoenix can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the phoenix or hits it with a melee attack while within 5 feet of it takes 9 ({@damage 2d8}) lightning damage. In addition, the arclight phoenix can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 9 ({@damage 2d8}) lightning damage." + ] + }, + { + "name": "Crackling Death", + "entries": [ + "When the arclight phoenix dies, it explodes. Each creature within 30 feet of it must make a {@dc 18} Dexterity saving throw, taking 36 ({@damage 8d8}) lightning damage on a failed save, or half as much damage on a successful one. The explosion destroys the phoenix but leaves behind a Tiny, warm egg with a mizzium shell. The egg contains the embryo of a new arclight phoenix. It hatches when it is in the area of a spell that deals lightning damage, or if a creature touches the egg and expends spell slots whose combined levels equal 13 or more. When it hatches, the egg releases a new arclight phoenix that appears in the egg's space." + ] + } + ], + "action": [ + { + "name": "Arclight Touch", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}27 ({@damage 6d8}) lightning damage, and lightning jumps from the target to one creature of the phoenix's choice that it can see within 30 feet of the target. That second creature must succeed on a {@dc 18} Dexterity saving throw or take 27 ({@damage 6d8}) lightning damage." + ] + } + ], + "traitTags": [ + "Flyby", + "Illumination" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "L", + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aurelia", + "isNamedCreature": true, + "source": "GGR", + "page": 230, + "size": [ + "M" + ], + "type": { + "type": "celestial", + "tags": [ + "angel" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 287, + "formula": "25d8 + 175" + }, + "speed": { + "walk": 50, + "fly": 150 + }, + "str": 26, + "dex": 24, + "con": 25, + "int": 17, + "wis": 25, + "cha": 30, + "save": { + "dex": "+14", + "con": "+14", + "cha": "+17" + }, + "skill": { + "insight": "+14", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "necrotic", + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "all" + ], + "cr": "23", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Aurelia fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Aurelia has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Aurelia makes three longsword attacks and uses Leadership." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}12 ({@damage 1d8 + 8}) slashing damage, or 13 ({@damage 1d10 + 8}) slashing damage when used with two hands, plus 27 ({@damage 6d8}) radiant damage." + ] + }, + { + "name": "Leadership", + "entries": [ + "Aurelia utters a few inspiring words to one creature she can see within 30 feet of her. If the creature can hear her, it can add a {@dice d10} to one attack roll or saving throw it makes before the start of Aurelia's next turn." + ] + }, + { + "name": "Warleader's Helix {@recharge 5}", + "entries": [ + "{@atk rs} {@hit 17} to hit, range 60 ft., one creature. {@h}54 ({@damage 12d8}) radiant damage, and Aurelia can choose another creature she can see within 10 feet of the target. The second creature regains 27 ({@dice 6d8}) hit points." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Aurelia adds 7 to her AC against one melee attack that would hit her. To do so, Aurelia must see the attacker and be wielding a melee weapon." + ] + }, + { + "name": "Unyielding", + "entries": [ + "When Aurelia is subjected to an effect that would move her, knock her {@condition prone}, or both, she can use her reaction to be neither moved nor knocked {@condition prone}." + ] + } + ], + "legendary": [ + { + "name": "Command Allies", + "entries": [ + "Aurelia chooses up to three creatures she can see within 30 feet of her. If a chosen creature can see or hear Aurelia, it can immediately use its reaction to make one weapon attack, with advantage on the attack roll." + ] + }, + { + "name": "Longsword Attack (Costs 2 Actions)", + "entries": [ + "Aurelia makes one longsword attack." + ] + }, + { + "name": "Frighten Foes (Costs 3 Actions)", + "entries": [ + "Aurelia targets up to five creatures she can see within 30 feet of her. Each target must succeed on a {@dc 25} Wisdom saving throw or be {@condition frightened} of her until the end of her next turn. Any target within 5 feet of Aurelia has disadvantage on the saving throw." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "R", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Battleforce Angel", + "source": "GGR", + "page": 189, + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30, + "fly": 90 + }, + "str": 16, + "dex": 12, + "con": 13, + "int": 11, + "wis": 17, + "cha": 18, + "save": { + "wis": "+6", + "cha": "+7" + }, + "skill": { + "investigation": "+3", + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "passive": 16, + "resist": [ + "fire", + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all" + ], + "cr": "5", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The angel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The angel has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The angel makes two melee attacks. It also uses Battlefield Inspiration." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands, plus 18 ({@damage 4d8}) radiant damage. If the target is within 5 feet of any of the angel's allies, the target takes an extra 2 ({@damage 1d4}) radiant damage." + ] + }, + { + "name": "Battlefield Inspiration", + "entries": [ + "The angel chooses up to three creatures it can see within 30 feet of it. Until the end of the angel's next turn, each target can add a {@dice d4} to its attack rolls and saving throws." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Flyby", + "Magic Resistance" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "R", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Biomancer", + "source": "GGR", + "page": 256, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 14, + "int": 20, + "wis": 14, + "cha": 15, + "save": { + "int": "+9", + "wis": "+6" + }, + "skill": { + "arcana": "+9", + "nature": "+9" + }, + "passive": 12, + "languages": [ + "Common plus any one language" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The biomancer is a 16th-level Simic spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The biomancer has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell light}", + "{@spell mending}", + "{@spell poison spray}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell grease}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell alter self}", + "{@spell darkvision}", + "{@spell enlarge/reduce}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell haste}", + "{@spell protection from energy}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell conjure minor elementals}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell creation}", + "{@spell hold monster}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell move earth}", + "{@spell wall of ice}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell prismatic spray}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell control weather}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Bolstering Presence", + "entries": [ + "The biomancer magically emanates life-giving energy within 30 feet of itself. Any ally of the biomancer that starts its turn there regains 5 ({@dice 1d10}) hit points." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The biomancer has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "P", + "S" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blistercoil Weird", + "source": "GGR", + "page": 207, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 40, + "swim": 60 + }, + "str": 16, + "dex": 16, + "con": 15, + "int": 5, + "wis": 10, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Draconic" + ], + "cr": "4", + "trait": [ + { + "name": "Feed on Fire", + "entries": [ + "If the weird takes fire damage from a spell or other magical effect, its size increases by one category. If there isn't enough room for the weird to increase in size, it attains the maximum size possible in the space available. While the weird is Large or bigger, it makes Strength checks and saving throws with advantage. If the weird starts its turn at Gargantuan size, the weird releases energy in an explosion. Each creature within 30 feet of the weird must make a {@dc 12} Dexterity saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save, or half as much damage on a successful one. The explosion ignites flammable objects in the area that aren't being worn or carried. The weird's size then becomes Medium." + ] + }, + { + "name": "Form of Fire and Water", + "entries": [ + "The weird can move through a space as narrow as 1 inch wide without squeezing. In addition, the weird can enter a hostile creature's space and stop there. The first time the weird enters another creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage and catches fire; until someone takes an action to douse the fire, the burning creature takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ] + }, + { + "name": "Heated Body", + "entries": [ + "A creature that touches the weird or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage." + ] + }, + { + "name": "Illumination", + "entries": [ + "The weird sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage, or 11 ({@damage 2d8 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage if the weird is Large or bigger." + ] + } + ], + "traitTags": [ + "Illumination" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blood Drinker Vampire", + "source": "GGR", + "page": 223, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 18, + "con": 17, + "int": 16, + "wis": 13, + "cha": 19, + "save": { + "dex": "+7", + "con": "+6", + "wis": "+4" + }, + "skill": { + "intimidation": "+7", + "perception": "+4", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vampire makes three melee attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. If the target is humanoid, it must succeed on a {@dc 15} Charisma saving throw or be {@condition charmed} by the vampire for 1 minute. While {@condition charmed} in this way, the target is infatuated with the vampire. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. The vampire can also grapple the target (escape {@dc 14}) if it is a creature and the vampire has a hand free." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The vampire adds 3 to its AC against one melee attack that would hit it. To do so, the vampire must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N", + "P" + ], + "miscTags": [ + "HPR", + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blood Witch", + "source": "GGR", + "page": 248, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 15, + "int": 13, + "wis": 9, + "cha": 19, + "save": { + "wis": "+2", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "intimidation": "+7", + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "psychic" + ], + "languages": [ + "Abyssal plus any one language (usually Common)" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The witch's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The witch can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self}", + "{@spell detect magic}", + "{@spell eldritch blast} (at 11th level)", + "{@spell false life}", + "{@spell levitate} (self only)", + "{@spell mage armor} (self only)" + ], + "daily": { + "1e": [ + "{@spell circle of death}", + "{@spell enthrall}", + "{@spell suggestion}" + ], + "3e": [ + "{@spell hellish rebuke}", + "{@spell hex}", + "{@spell scorching ray} (at 3rd level)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Blood Witch Dance", + "entries": [ + "The witch can use a bonus action to control the movement of one creature cursed by its {@spell hex} spell that it can see within 30 feet of it. The creature must succeed on a {@dc 15} Charisma saving throw or use its reaction to move up to 30 feet in a direction of the witch's choice." + ] + }, + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the witch's darkvision." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The witch makes two attacks: one with its longsword and one with its shortsword." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "longsword|phb", + "shortsword|phb" + ], + "traitTags": [ + "Devil's Sight" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "F", + "N", + "O", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bloodfray Giant", + "source": "GGR", + "page": 200, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 103, + "formula": "9d12 + 45" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 9, + "con": 20, + "int": 7, + "wis": 8, + "cha": 9, + "save": { + "str": "+9", + "con": "+8", + "wis": "+2" + }, + "skill": { + "athletics": "+9", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Giant" + ], + "cr": "6", + "action": [ + { + "name": "Chain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 20 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage. If the target is a creature, it is {@condition grappled} (escape {@dc 17}). Until the grapple ends, the target is {@condition restrained}, and the giant can't use this attack on anyone else." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Furious Defense", + "entries": [ + "After a creature the giant can see is dealt damage by a foe within 20 feet of the giant, the giant makes a chain attack against that foe." + ] + } + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Borborygmos", + "isNamedCreature": true, + "source": "GGR", + "page": 238, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 270, + "formula": "20d12 + 140" + }, + "speed": { + "walk": 40 + }, + "str": 24, + "dex": 11, + "con": 24, + "int": 8, + "wis": 17, + "cha": 16, + "save": { + "str": "+13", + "con": "+13", + "wis": "+9" + }, + "skill": { + "athletics": "+13", + "insight": "+9", + "survival": "+9" + }, + "senses": [ + "tremorsense 60 ft." + ], + "passive": 13, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "18", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Borborygmos fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Poor Depth Perception", + "entries": [ + "Borborygmos has disadvantage on any attack roll against a target more than 30 feet away." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "Borborygmos deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Borborygmos can use his Frightful Presence. He also makes two attacks: one with his maul and one with his stomp." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 30/120 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Borborygmos's choice that is within 60 feet of him and can see or hear him must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of him for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Borborygmos's Frightful Presence for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Borborygmos makes a weapon attack." + ] + }, + { + "name": "Bellow (Costs 2 Actions)", + "entries": [ + "Borborygmos yells menacingly at one creature he can see within 60 feet of him. That creature must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of him for 1 minute. If the creature is already {@condition frightened}, it becomes {@condition stunned} instead. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Borborygmos's Bellow for the next 24 hours." + ] + }, + { + "name": "Wide Berth (Costs 3 Actions)", + "entries": [ + "Borborygmos moves up to half his speed and can move through the space of any creature smaller than Huge. The first time Borborygmos enters a creature's space during this move, the creature must make a {@dc 21} Dexterity saving throw. If the saving throw succeeds, the creature is pushed 5 feet away from Borborygmos. If the saving throw fails, that creature is knocked {@condition prone}, and Borborygmos can make a stomp attack against it." + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "T" + ], + "actionTags": [ + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "frightened", + "prone", + "stunned" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cackler", + "source": "GGR", + "page": 195, + "size": [ + "S" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 16, + "con": 11, + "int": 11, + "wis": 7, + "cha": 12, + "skill": { + "deception": "+3", + "perception": "+0", + "performance": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The cackler's innate spellcasting ability is Charisma (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The cackler can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell fire bolt}" + ], + "daily": { + "1": [ + "{@spell Tasha's hideous laughter}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Last Laugh", + "entries": [ + "When the cackler dies, it releases a dying laugh that scars the minds of other nearby creatures. Each creature within 10 feet of the cackler must succeed on a {@dc 11} Wisdom saving throw or take 2 ({@damage 1d4}) psychic damage." + ] + }, + { + "name": "Mimicry", + "entries": [ + "The cackler can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Spiked Chain", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "traitTags": [ + "Mimicry" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Category 1 Krasis", + "source": "GGR", + "page": 210, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 15, + "con": 14, + "int": 2, + "wis": 13, + "cha": 8, + "passive": 11, + "cr": "1", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The krasis can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The krasis makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Category 2 Krasis", + "source": "GGR", + "page": 211, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 14, + "con": 16, + "int": 2, + "wis": 13, + "cha": 8, + "passive": 11, + "cr": "6", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The krasis can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The krasis makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}17 ({@damage 2d12 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Category 3 Krasis", + "source": "GGR", + "page": 212, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 287, + "formula": "25d12 + 125" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 12, + "con": 21, + "int": 2, + "wis": 13, + "cha": 8, + "passive": 11, + "cr": "16", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The krasis can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The krasis makes three attacks: one with its bite, one with its claws, and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one creature. {@h}27 ({@damage 6d6 + 6}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}33 ({@damage 6d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 19} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Conclave Dryad", + "source": "GGR", + "page": 194, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 19, + "con": 14, + "int": 19, + "wis": 20, + "cha": 21, + "save": { + "int": "+8", + "wis": "+9", + "cha": "+9" + }, + "skill": { + "arcana": "+8", + "nature": "+8", + "perception": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dryad's innate spellcasting ability is Charisma (spell save {@dc 17}). The dryad can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell druidcraft}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell entangle}", + "{@spell plant growth}", + "{@spell spike growth}" + ], + "1e": [ + "{@spell moonbeam}", + "{@spell grasping vine}", + "{@spell wall of thorns}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The dryad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "type": "entries", + "name": "Speak with Beasts and Plants", + "entries": [ + "The dryad can communicate with beasts and plants as if they and the dryad shared a language." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dryad makes three attacks, using its vine staff, its longbow, or both." + ] + }, + { + "name": "Vine Staff", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Dexterity saving throw or become {@condition restrained} by twisting vines for 1 minute. A target {@condition restrained} in this way can use an action to make a {@dc 17} Strength ({@skill Athletics}) or Dexterity ({@skill Acrobatics}) check, ending the effect on itself on a success." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Summon Mount (1/Day)", + "entries": [ + "The dryad magically summons a mount, which appears in an unoccupied space within 60 feet of the dryad. The mount remains for 8 hours, until it or the dryad dies, or until the dryad dismisses it as an action. The mount uses the stat block of an {@creature elk} (see the Monster Manual) with these changes: it is a plant instead of a beast, it has an Intelligence of 6, and it understands Sylvan but can't speak. While within 1 mile of the mount, the dryad can communicate with it telepathically." + ] + }, + { + "name": "Suppress Magic {@recharge 5}", + "entries": [ + "The dryad targets one magic item it can see within 120 feet of it. If the magic item isn't an artifact, its magical properties are suppressed for 10 minutes, until the dryad is {@condition incapacitated} or dies, or until the dryad uses a bonus action to end the effect." + ] + } + ], + "attachedItems": [ + "longbow|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "P", + "R", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cosmotronic Blastseeker", + "source": "GGR", + "page": 242, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 15, + "con": 16, + "int": 18, + "wis": 9, + "cha": 12, + "save": { + "dex": "+4", + "con": "+5" + }, + "skill": { + "arcana": "+6", + "intimidation": "+3", + "perception": "+1" + }, + "passive": 11, + "languages": [ + "any one language (usually Common)" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "daily": { + "2": [ + "{@spell fireball}" + ], + "3e": [ + "{@spell scorching ray}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Empowered Spell (3/Day)", + "entries": [ + "When the blastseeker rolls damage for a spell, it can reroll up to four dice of damage. It must use the new dice." + ] + }, + { + "name": "Tides of Chaos (1/Day)", + "entries": [ + "The blastseeker makes one attack roll, ability check, or saving throw with advantage." + ] + } + ], + "action": [ + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, or 7 ({@damage 1d10 + 2}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "warhammer|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Counterflux Blastseeker", + "source": "GGR", + "page": 242, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 16, + "con": 15, + "int": 18, + "wis": 11, + "cha": 14, + "save": { + "con": "+4", + "wis": "+2" + }, + "skill": { + "arcana": "+6", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common plus any one language" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "daily": { + "3e": [ + "{@spell enlarge/reduce}", + "{@spell mage armor} (self only)", + "{@spell scorching ray}" + ], + "1e": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell protection from energy}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Counterflux Overcast {@recharge 5}", + "entries": [ + "The blastseeker can create an additional effect immediately after casting a spell. Roll a {@dice d6} to determine the effect:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1\u20133.", + "entry": "The blastseeker creates a 15-foot-radius {@condition invisible} sphere centered on itself that lasts until the end of its next turn. Creatures in the sphere have disadvantage on saving throws against spells and other magical effects." + }, + { + "type": "item", + "name": "4\u20136.", + "entry": "The blastseeker creates a 15-foot-radius {@condition invisible} sphere centered on itself that lasts until the end of its next turn. Creatures in the sphere have advantage on saving throws against spells and other magical effects." + } + ] + } + ] + } + ], + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deathpact Angel", + "source": "GGR", + "page": 192, + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 175, + "formula": "27d8 + 54" + }, + "speed": { + "walk": 30, + "fly": 90 + }, + "str": 16, + "dex": 18, + "con": 14, + "int": 19, + "wis": 20, + "cha": 23, + "save": { + "int": "+9", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "insight": "+10", + "intimidation": "+11", + "perception": "+10", + "persuasion": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "resist": [ + "necrotic", + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The angel's innate spellcasting ability is Charisma (spell save {@dc 19}, {@hit 11} to hit with spell attacks). The angel can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell command} (as a 2nd-level spell)", + "{@spell detect evil and good}" + ], + "daily": { + "1": [ + "{@spell raise dead}" + ], + "3e": [ + "{@spell charm person} (as a 5th-level spell)", + "{@spell darkness}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Exploitation of the Debtors", + "entries": [ + "As a bonus action, the angel targets a creature {@condition charmed} by it that it can see within 30 feet of it. The angel deals 11 ({@damage 2d10}) necrotic damage to the target, and the angel gains temporary hit points equal to the damage dealt." + ] + }, + { + "name": "Flyby", + "entries": [ + "The angel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The angel has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The angel makes two attacks with its scythe. It can substitute Chains of Obligation for one of these attacks." + ] + }, + { + "name": "Scythe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage plus 27 ({@damage 6d8}) necrotic damage." + ] + }, + { + "name": "Chains of Obligation", + "entries": [ + "The angel targets one creature {@condition charmed} by it that it can see within 90 feet of it. The target must succeed on a {@dc 19} Charisma saving throw or become {@condition paralyzed} for 1 minute or until it takes any damage." + ] + } + ], + "traitTags": [ + "Flyby", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "N", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Devkarin Lich", + "source": "GGR", + "page": 198, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 14, + "int": 19, + "wis": 16, + "cha": 15, + "save": { + "con": "+7", + "int": "+9", + "wis": "+8" + }, + "skill": { + "arcana": "+14", + "insight": "+8", + "perception": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 18, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Elvish", + "Kraul" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lich is a 14th-level Golgari spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The lich has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell magic missile}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell Melf's acid arrow}", + "{@spell ray of enfeeblement}", + "{@spell spider climb}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell bestow curse}", + "{@spell fear}", + "{@spell vampiric touch}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell Evard's black tentacles}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell insect plague}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}", + "{@spell create undead}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the lich fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The lich regains 10 hit points at the start of its turn. If the lich takes fire or radiant damage, this trait doesn't function at the start of the lich's next turn. The lich dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The lich has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the lich to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the lich drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Noxious Touch", + "entries": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one creature. {@h}14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 17} Constitution saving throw or be {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendary": [ + { + "name": "Cantrip", + "entries": [ + "The lich casts one of its cantrips." + ] + }, + { + "name": "Noxious Touch (Costs 2 Actions)", + "entries": [ + "The lich uses Noxious Touch." + ] + }, + { + "name": "Disrupt Life (Costs 3 Actions)", + "entries": [ + "Each creature within 30 feet of the lich must make a {@dc 17} Constitution saving throw, taking 21 ({@damage 6d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Turn Resistance", + "Undead Fortitude" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "I", + "N" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "N", + "O", + "P", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "frightened", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Druid of the Old Ways", + "source": "GGR", + "page": 239, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 15, + "con": 16, + "int": 10, + "wis": 20, + "cha": 14, + "save": { + "dex": "+5", + "con": "+6", + "wis": "+8" + }, + "skill": { + "nature": "+3", + "perception": "+8", + "survival": "+8" + }, + "passive": 18, + "languages": [ + "Common", + "Druidic" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The druid is a 12th-level Gruul spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell resistance}", + "{@spell thorn whip}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell faerie fire}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell beast sense}", + "{@spell flame blade}", + "{@spell pass without trace}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell conjure animals}", + "{@spell dispel magic}", + "{@spell plant growth}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell freedom of movement}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell commune with nature}", + "{@spell conjure elemental}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell transport via plants}", + "{@spell wall of thorns}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Siege Monster", + "entries": [ + "The druid deals double damage to objects and structures." + ] + }, + { + "name": "Speak with Beasts and Plants", + "entries": [ + "The druid can communicate with beasts and plants as if they shared a language." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Siege Monster" + ], + "languageTags": [ + "C", + "DU" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "P", + "S", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Felidar", + "source": "GGR", + "page": 199, + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 16, + "con": 17, + "int": 10, + "wis": 17, + "cha": 14, + "save": { + "dex": "+6", + "wis": "+6", + "cha": "+5" + }, + "skill": { + "insight": "+6", + "perception": "+6" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "languages": [ + "understands Celestial and Common but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Bonding", + "entries": [ + "The felidar can magically bond with one creature it can see, right after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the felidar bonds with a different creature or until the bonded creature dies. This bond has the following effects: The felidar and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet. The felidar can sense the direction and distance to the bonded creature if they're on the same plane of existence. As an action, the felidar or the bonded creature can sense what the other sees and hears, during which time it loses its own sight and hearing. This effect lasts until the start of its next turn." + ] + }, + { + "name": "Keen Hearing and Sight", + "entries": [ + "The felidar has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the felidar moves at least 20 feet straight toward a creature and hits it with a claw attack on the same turn, that target must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the felidar can make one claw attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The felidar makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d8 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Winged Felidars", + "entries": [ + "Some felidars boast huge, feathered wings. A winged felidar uses the same stat block as an ordinary felidar, with the addition of a flying speed of 40 feet." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Pounce" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Winged Felidar", + "source": "GGR", + "speed": { + "walk": 40, + "fly": 40 + }, + "variant": null + } + ] + }, + { + "name": "Firefist", + "source": "GGR", + "page": 231, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 14, + "int": 11, + "wis": 17, + "cha": 13, + "save": { + "con": "+5", + "wis": "+6" + }, + "skill": { + "intimidation": "+4", + "religion": "+3" + }, + "passive": 13, + "languages": [ + "any one language (usually Common)" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The firefist is a 9th-level Boros spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell heroism}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell blinding smite}", + "{@spell crusader's mantle}", + "{@spell revivify}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell flame strike}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The firefist makes two greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "reaction": [ + { + "name": "Guided Attack (Recharges after a Short or Long Rest)", + "entries": [ + "When the firefist or one creature it can see within 30 feet of it makes an attack roll, the firefist grants a +10 bonus to that roll." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "F", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Firemane Angel", + "source": "GGR", + "page": 190, + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 40, + "fly": 120 + }, + "str": 22, + "dex": 15, + "con": 17, + "int": 12, + "wis": 14, + "cha": 23, + "save": { + "str": "+10", + "wis": "+6", + "cha": "+10" + }, + "skill": { + "insight": "+6", + "perception": "+6" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "resist": [ + "fire", + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The angel's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The angel can innately cast the following spells, requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell compelled duel}", + "{@spell guiding bolt} (as a 5th-level spell)" + ], + "1e": [ + "{@spell daylight}", + "{@spell fireball} (as a 6th-level spell)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Flyby", + "entries": [ + "The angel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The angel has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Relentless (Recharges after a Short or Long Rest)", + "entries": [ + "If the angel takes 21 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The angel makes two melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage, or 11 ({@damage 1d10 + 6}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) fire or radiant damage (angel's choice)." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Flyby", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "F", + "R", + "S" + ], + "damageTagsSpell": [ + "F", + "R" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flux Blastseeker", + "source": "GGR", + "page": 242, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 20, + "wis": 9, + "cha": 14, + "save": { + "dex": "+5", + "int": "+8" + }, + "skill": { + "arcana": "+8", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common plus any one language" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "daily": { + "3e": [ + "{@spell mage armor} (self only)", + "{@spell scorching ray}" + ], + "1e": [ + "{@spell banishment}", + "{@spell cone of cold}", + "{@spell dimension door}", + "{@spell fireball}", + "{@spell ice storm}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Fluxbending Overcast {@recharge 5}", + "entries": [ + "The blastseeker can create an additional effect immediately after casting a spell. Roll a {@dice d6} to determine the effect: 1-3. The blastseeker teleports, swapping places with a creature it can see within 30 feet of it. 4-6. The blastseeker and each creature within 10 feet of it must succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) thunder damage." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "T" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Fluxcharger", + "source": "GGR", + "page": 208, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16" + }, + "speed": { + "walk": 0, + "fly": 60 + }, + "str": 15, + "dex": 18, + "con": 15, + "int": 6, + "wis": 10, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Draconic" + ], + "cr": "7", + "trait": [ + { + "name": "Amplify Lightning", + "entries": [ + "Whenever a spell that deals lightning damage includes one or more fluxchargers in its area, the spell deals an extra 9 ({@damage 2d8}) lightning damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fluxcharger makes two slam attacks or uses Arc Lightning twice." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage." + ] + }, + { + "name": "Arc Lightning", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 30 ft., one target. {@h}16 ({@damage 3d10}) lightning damage, and lightning jumps from the target to one creature of the fluxcharger's choice that it can see within 30 feet of the target. That second creature must succeed on a {@dc 15} Dexterity saving throw or take 13 ({@damage 3d8}) lightning damage. {@hom}The fluxcharger takes 5 ({@damage 1d10}) force damage after resolving the attack." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "F", + "L", + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flying Horror", + "source": "GGR", + "page": 203, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 9, + "dex": 20, + "con": 12, + "int": 2, + "wis": 15, + "cha": 16, + "skill": { + "perception": "+4", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "frightened" + ], + "cr": "3", + "trait": [ + { + "name": "Fear Frenzy", + "entries": [ + "The horror has advantage on attack rolls against {@condition frightened} creatures." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the horror has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 14 ({@damage 4d6}) psychic damage." + ] + }, + { + "name": "Frightening Screech {@recharge 5}", + "entries": [ + "The horror screeches. Each creature within 30 feet of it that can hear it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of it for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the horror's Frightening Screech for the next 24 hours." + ] + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frontline Medic", + "source": "GGR", + "page": 231, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 14, + "int": 10, + "wis": 13, + "cha": 12, + "skill": { + "medicine": "+5", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The medic is a 3rd-level Boros spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}). The medic has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mending}", + "{@spell resistance}", + "{@spell spare the dying}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Galvanic Blastseeker", + "source": "GGR", + "page": 243, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 17, + "con": 14, + "int": 19, + "wis": 10, + "cha": 13, + "save": { + "dex": "+6" + }, + "skill": { + "acrobatics": "+6", + "arcana": "+7", + "perception": "+3" + }, + "passive": 13, + "resist": [ + "lightning", + "thunder" + ], + "languages": [ + "Common and Primordial", + "plus any one language" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "daily": { + "1": [ + "{@spell stoneskin}" + ], + "3e": [ + "{@spell levitate}", + "{@spell lightning bolt}", + "{@spell thunderwave}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Galvanic Overcast {@recharge 5}", + "entries": [ + "When the blastseeker casts {@spell lightning bolt} or thunderwave, it can roll a die. On an odd number, the blastseeker takes 9 ({@damage 2d8}) force damage. On an even number, the spell also deals 9 ({@damage 2d8}) lightning damage to each target that fails its saving throw." + ] + }, + { + "name": "Heart of the Storm", + "entries": [ + "When the blastseeker casts {@spell lightning bolt} or thunderwave, all other creatures within 10 feet of the blastseeker each take 3 lightning damage." + ] + }, + { + "name": "Gust-Propelled Leap", + "entries": [ + "The blastseeker can use a bonus action to fly up to 10 feet without provoking opportunity attacks." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d6}) piercing damage, or 4 ({@damage 1d8}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "languageTags": [ + "C", + "P", + "X" + ], + "damageTags": [ + "L", + "O", + "P" + ], + "damageTagsSpell": [ + "L", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Galvanice Weird", + "source": "GGR", + "page": 209, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "3d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 17, + "int": 3, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "cr": "1", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the galvanice weird dies, it explodes in a burst of ice and lightning. Each creature within 10 feet of the exploding weird must make a {@dc 13} Dexterity saving throw, taking 7 ({@damage 2d6}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 5 ({@damage 2d4}) lightning damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or lose the ability to use reactions until the start of the weird's next turn." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B", + "L" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gloamwing", + "source": "GGR", + "page": 215, + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 20, + "dex": 16, + "con": 17, + "int": 2, + "wis": 11, + "cha": 6, + "save": { + "str": "+8", + "dex": "+6" + }, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "understands Common" + ], + "cr": "8", + "trait": [ + { + "name": "Death Link", + "entries": [ + "If its specter rider is reduced to 0 hit points, the gloamwing is destroyed." + ] + }, + { + "name": "Flyby", + "entries": [ + "The gloamwing doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the gloamwing has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gloamwing makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ] + } + ], + "traitTags": [ + "Flyby", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Golgari Shaman", + "source": "GGR", + "page": 236, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 15, + "con": 12, + "int": 12, + "wis": 17, + "cha": 16, + "save": { + "con": "+4", + "wis": "+6" + }, + "skill": { + "arcana": "+4", + "insight": "+6", + "nature": "+4", + "religion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Elvish" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The shaman is an 8th-level Golgari spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The shaman has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell poison spray}", + "{@spell shillelagh}", + "{@spell thorn whip}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell pass without trace}", + "{@spell ray of enfeeblement}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}", + "{@spell plant growth}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell blight}", + "{@spell giant insect}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The shaman has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Fungal Rot", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) necrotic damage, and the target must make a {@dc 14} Constitution saving throw, taking 18 ({@damage 4d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "reaction": [ + { + "name": "Feed on Death", + "entries": [ + "When a creature within 30 feet of the shaman drops to 0 hit points, the shaman gains 5 ({@dice 1d10}) temporary hit points." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B", + "I", + "N" + ], + "damageTagsSpell": [ + "I", + "N", + "P" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Guardian Giant", + "source": "GGR", + "page": 201, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item half plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 137, + "formula": "11d12 + 66" + }, + "speed": { + "walk": 40 + }, + "str": 24, + "dex": 17, + "con": 22, + "int": 10, + "wis": 18, + "cha": 12, + "save": { + "dex": "+6", + "wis": "+7" + }, + "skill": { + "insight": "+7", + "perception": "+10" + }, + "passive": 20, + "languages": [ + "Common", + "Giant" + ], + "cr": "8", + "trait": [ + { + "name": "Vigilant", + "entries": [ + "The giant can't be {@status surprised}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes three spear attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 10} to hit, reach 10 ft. or range 60/240 ft., one target. {@h}17 ({@damage 3d6 + 7}) piercing damage, or 20 ({@damage 3d8 + 7}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "reaction": [ + { + "name": "Protection", + "entries": [ + "When an attacker the giant can see makes an attack roll against a creature within 10 feet of the giant, the giant can impose disadvantage on the attack roll." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Horncaller", + "source": "GGR", + "page": 253, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 14, + "int": 10, + "wis": 14, + "cha": 13, + "skill": { + "animal handling": "+4", + "nature": "+2", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Common plus any one language" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The horncaller's innate spellcasting ability is Wisdom (spell save {@dc 14}). The horncaller can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell bless}", + "{@spell conjure animals}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Speak with Beasts", + "entries": [ + "The horncaller can communicate with beasts as if they shared a language." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The horncaller makes two melee attacks with its staff and uses One with the Worldsoul." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "One with the Worldsoul", + "entries": [ + "The horncaller chooses one beast it can see within 30 feet of it. If the beast can hear the horncaller, the beast uses its reaction to make one melee attack against a target that the horncaller can see." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hybrid Brute", + "source": "GGR", + "page": 217, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "Simic hybrid" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 15, + "int": 8, + "wis": 11, + "cha": 9, + "passive": 10, + "languages": [ + "Common plus any one language" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The hybrid can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hybrid makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hybrid Flier", + "source": "GGR", + "page": 217, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "Simic hybrid" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 11, + "wis": 10, + "cha": 11, + "passive": 10, + "resist": [ + "acid" + ], + "languages": [ + "Common plus any one language" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hybrid makes two javelin attacks. It can replace one javelin attack with Spit Acid." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Spit Acid", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}10 ({@damage 4d4}) acid damage." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hybrid Poisoner", + "source": "GGR", + "page": 217, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "Simic hybrid" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 14 + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 19, + "con": 14, + "int": 12, + "wis": 13, + "cha": 12, + "save": { + "dex": "+6", + "con": "+4" + }, + "skill": { + "athletics": "+3", + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common plus any one language" + ], + "cr": "1", + "trait": [ + { + "name": "Assassinate", + "entries": [ + "During its first turn, the hybrid poisoner has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the hybrid scores against a {@status surprised} creature is a critical hit." + ] + }, + { + "name": "Poisonous Skin", + "entries": [ + "Any creature that touches the hybrid or hits it with a melee attack while within 5 feet of it takes 3 ({@damage 1d6}) poison damage." + ] + } + ], + "action": [ + { + "name": "Toxic Touch", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. At the end of each of the {@condition poisoned} target's turns, it must repeat the save, taking 3 ({@damage 1d6}) poison damage on a failed save, or ending the effect on itself on a successful one." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hybrid Shocker", + "source": "GGR", + "page": 218, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "Simic hybrid" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 14, + "con": 14, + "int": 10, + "wis": 12, + "cha": 9, + "passive": 11, + "immune": [ + "lightning" + ], + "languages": [ + "Common plus any one language" + ], + "cr": "1", + "trait": [ + { + "name": "Electrified Body", + "entries": [ + "Any creature that touches the hybrid or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) lightning damage." + ] + }, + { + "name": "Illumination", + "entries": [ + "The hybrid sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hybrid makes two attacks: one with its shocking touch and one with its tentacles." + ] + }, + { + "name": "Shocking Touch", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) lightning damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 15 ft., one creature. {@h}The target is {@condition grappled} (escape {@dc 11}), and the hybrid pulls the target up to 15 feet straight toward it. Until this grapple ends, the target takes 5 ({@damage 1d10}) lightning damage at the start of each of its turns, and the hybrid shocker can't use its tentacles on another creature." + ] + } + ], + "traitTags": [ + "Illumination" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "L" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hybrid Spy", + "source": "GGR", + "page": 218, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "Simic hybrid" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 11, + "dex": 17, + "con": 12, + "int": 13, + "wis": 14, + "cha": 9, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common plus any one language" + ], + "cr": "1/2", + "trait": [ + { + "name": "Chameleon Skin", + "entries": [ + "The hybrid has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The hybrid can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hybrid makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Indentured Spirit", + "source": "GGR", + "page": 206, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 7, + "dex": 13, + "con": 10, + "int": 10, + "wis": 12, + "cha": 11, + "passive": 11, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "1", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The spirit can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Withering Touch", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Isperia", + "isNamedCreature": true, + "source": "GGR", + "page": 227, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 261, + "formula": "18d20 + 72" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 20, + "dex": 14, + "con": 18, + "int": 23, + "wis": 26, + "cha": 20, + "save": { + "dex": "+9", + "con": "+11", + "int": "+13", + "wis": "+15" + }, + "skill": { + "arcana": "+13", + "history": "+13", + "insight": "+15", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "immune": [ + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Sphinx" + ], + "cr": "21", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Isperia's innate spellcasting ability is Wisdom (spell save {@dc 23}). Isperia can innately cast {@spell imprisonment} twice per day, requiring no material components." + ], + "daily": { + "2": [ + "{@spell imprisonment}" + ] + }, + "ability": "wis", + "hidden": [ + "daily" + ] + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Isperia is a 15th-level Azorius spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 23}, {@hit 14} to hit with spell attacks). Isperia has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell ensnaring strike}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell augury}", + "{@spell calm emotions}", + "{@spell hold person}", + "{@spell silence}", + "{@spell zone of truth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell clairvoyance}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell locate creature}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dispel evil and good}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell word of recall}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell divine word}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell antimagic field}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Inscrutable", + "entries": [ + "Isperia is immune to any effect that would sense her emotions or read her thoughts, as well as any divination spell that she refuses. Wisdom ({@skill Insight}) checks made to ascertain her intentions or sincerity have disadvantage." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Isperia fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Isperia has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Isperia makes two claw attacks. She can cast a spell with a casting time of 1 action in place of one claw attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage. If the target is a creature, it must succeed on a {@dc 23} Wisdom saving throw or take 14 ({@damage 4d6}) psychic damage after each attack it makes against Isperia before the start of her next turn." + ] + }, + { + "name": "Supreme Legal Authority", + "entries": [ + "Isperia chooses up to three creatures she can see within 90 feet of her. Each target must succeed on a {@dc 23} Intelligence saving throw or Isperia chooses an action for that target: Attack, Cast a Spell, Dash, Disengage, Dodge, Help, Hide, Ready, Search, or Use an Object. The affected target can't take that action for 1 minute. At the end of each of the target's turns, it can end the effect on itself with a successful {@dc 23} Intelligence saving throw. A target that succeeds on the saving throw becomes immune to Isperia's Supreme Legal Authority for 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Claw Attack", + "entries": [ + "Isperia makes one claw attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Isperia casts a spell of 3rd level or lower from her list of prepared spells, using a spell slot as normal." + ] + }, + { + "name": "Supreme Legal Authority (Costs 3 Actions)", + "entries": [ + "Isperia uses Supreme Legal Authority." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "S", + "Y" + ], + "damageTagsSpell": [ + "N", + "P", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jarad Vod Savo", + "isNamedCreature": true, + "source": "GGR", + "page": 235, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 180, + "formula": "24d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 16, + "int": 20, + "wis": 16, + "cha": 15, + "save": { + "con": "+10", + "int": "+12", + "wis": "+10" + }, + "skill": { + "arcana": "+12", + "insight": "+10", + "perception": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Elvish", + "Kraul" + ], + "cr": "22", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Jarad is a 14th-level Golgari spellcaster. His spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). Jarad has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell ray of sickness}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell Melf's acid arrow}", + "{@spell ray of enfeeblement}", + "{@spell spider climb}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell plant growth}", + "{@spell vampiric touch}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell giant insect}", + "{@spell grasping vine}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell insect plague}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}", + "{@spell create undead}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell forcecage}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Jarad fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Jarad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Jarad regains 25 hit points at the start of his turn. If he takes fire or radiant damage, this trait doesn't function at the start of his next turn. He dies only if he starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Spore Infusion", + "entries": [ + "Jarad is surrounded by a cloud of spores. As a bonus action, he can cause the spores to deal 11 ({@damage 2d10}) poison damage to a creature he can see within 10 feet of him." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "Jarad has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces Jarad to 0 hit points, he must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, he drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jarad makes two attacks: one with his Noxious Touch and one with his Staff of Svogthir. He can cast a spell with a casting time of 1 action in place of one of these attacks." + ] + }, + { + "name": "Noxious Touch", + "entries": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}28 ({@damage 8d6}) poison damage, and the target must succeed on a {@dc 20} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Staff of Svogthir", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 13 ({@damage 3d8}) poison damage and 13 ({@damage 3d8}) necrotic damage." + ] + } + ], + "legendary": [ + { + "name": "Cantrip", + "entries": [ + "Jarad casts one of his cantrips." + ] + }, + { + "name": "Noxious Touch (Costs 2 Actions)", + "entries": [ + "Jarad uses Noxious Touch." + ] + }, + { + "name": "Disrupt Life (Costs 3 Actions)", + "entries": [ + "Each creature within 30 feet of Jarad must make a {@dc 20} Constitution saving throw, taking 35 ({@damage 10d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration", + "Turn Resistance", + "Undead Fortitude" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B", + "I", + "N" + ], + "damageTagsSpell": [ + "A", + "F", + "I", + "N", + "P" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "poisoned", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kraul Death Priest", + "source": "GGR", + "page": 214, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kraul" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30, + "climb": 30, + "fly": 40 + }, + "str": 16, + "dex": 12, + "con": 14, + "int": 12, + "wis": 15, + "cha": 10, + "save": { + "con": "+4", + "wis": "+4" + }, + "skill": { + "insight": "+4", + "nature": "+3", + "religion": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Kraul" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The kraul's innate spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The kraul can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell chill touch}", + "{@spell poison spray}" + ], + "daily": { + "3e": [ + "{@spell ray of enfeeblement}", + "{@spell ray of sickness}" + ], + "1e": [ + "{@spell animate dead}", + "{@spell blight}", + "{@spell vampiric touch}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Feed on Death", + "entries": [ + "When a creature within 30 feet of the kraul drops to 0 hit points, the kraul or another creature of its choice within 30 feet of it gains 5 ({@dice 1d10}) temporary hit points, provided the kraul isn't {@condition incapacitated}." + ] + }, + { + "name": "Hive Mind", + "entries": [ + "The kraul is immune to the {@condition charmed} and {@condition frightened} conditions while within 30 feet of at least one other kraul." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kraul has advantage on an attack roll against a creature if at least one of the kraul's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The kraul can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kraul makes one attack with its quarterstaff and casts one of its spells with a casting time of 1 action." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, or 7 ({@damage 1d8 + 3}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Pack Tactics", + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "I", + "N" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "poisoned" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kraul Warrior", + "source": "GGR", + "page": 213, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kraul" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 10, + "wis": 11, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Kraul", + "understands Common but can't speak it" + ], + "cr": "1/2", + "trait": [ + { + "name": "Hive Mind", + "entries": [ + "The kraul is immune to the {@condition charmed} and {@condition frightened} conditions while within 30 feet of at least one other kraul." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kraul has advantage on an attack roll against a creature if at least one of the kraul's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The kraul can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Winged Kraul Warriors", + "entries": [ + "Some kraul warriors have a flying speed of 40 feet, as a result of possessing gossamer wings. Their wings give them a higher station among the kraul soldiers. Winged kraul warriors serve the guild as scouts and shock troops." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Pack Tactics", + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Winged Kraul Warrior", + "source": "GGR", + "speed": { + "walk": 30, + "climb": 30, + "fly": 40 + }, + "variant": null + } + ] + }, + { + "name": "Lawmage", + "source": "GGR", + "page": 228, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 14, + "int": 17, + "wis": 14, + "cha": 13, + "save": { + "int": "+6", + "wis": "+5" + }, + "skill": { + "arcana": "+6", + "perception": "+5", + "persuasion": "+4" + }, + "passive": 15, + "languages": [ + "Common plus any one language" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lawmage is an 8th-level Azorius spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The lawmage has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell friends}", + "{@spell light}", + "{@spell message}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell alarm}", + "{@spell expeditious retreat}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell detect thoughts}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell slow}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell locate creature}", + "{@spell stoneskin}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Lazav", + "isNamedCreature": true, + "source": "GGR", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 204, + "formula": "24d8 + 96" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 24, + "con": 18, + "int": 22, + "wis": 20, + "cha": 22, + "save": { + "dex": "+13", + "int": "+12", + "wis": "+11", + "cha": "+12" + }, + "skill": { + "deception": "+18", + "insight": "+11", + "perception": "+11", + "stealth": "+19" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "resist": [ + "necrotic", + "psychic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Thieves' cant" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Lazav's innate spellcasting ability is Intelligence (spell save {@dc 20}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell encode thoughts|GGR} (see chapter 2)", + "{@spell freedom of movement}", + "{@spell vicious mockery} ({@damage 4d4} psychic damage)" + ], + "daily": { + "3e": [ + "{@spell blur}", + "{@spell confusion}", + "{@spell mirror image}" + ], + "1e": [ + "{@spell modify memory}", + "{@spell Rary's telepathic bond}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Elusive", + "entries": [ + "No attack roll has advantage against Lazav unless he is {@condition incapacitated}." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Lazav fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Shapechanger Savant", + "entries": [ + "Lazav can use a bonus action to polymorph into a Small or Medium humanoid he has seen. His statistics, other than his size, are the same in each form. Any equipment he is wearing or carrying isn't transformed." + ] + }, + { + "name": "Psychic Defenses", + "entries": [ + "Unless Lazav is {@condition incapacitated}, he is immune to magic that allows other creatures to read his thoughts, determine whether he is lying, know his alignment, or know his creature type. Creatures can telepathically communicate with Lazav only if he allows it." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Lazav makes three shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d6 + 7}) piercing damage plus 10 ({@damage 3d6}) psychic damage, and the target has disadvantage on the next attack roll it makes before Lazav's next turn." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Lazav makes a weapon attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Lazav casts one of his innate spells." + ] + }, + { + "name": "Shifting Nightmare (Costs 3 Actions)", + "entries": [ + "Lazav rapidly takes the form of several nightmarish creatures, lashing out at all nearby. Each creature within 10 feet of Lazav must succeed on a {@dc 21} Dexterity saving throw or take 18 ({@damage 4d8}) damage of a type chosen by Lazav: acid, cold, fire, lightning, or necrotic." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Master of Cruelties", + "source": "GGR", + "page": 196, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 17, + "con": 16, + "int": 19, + "wis": 16, + "cha": 21, + "save": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "deception": "+9", + "intimidation": "+9", + "performance": "+9", + "persuasion": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The master's innate spellcasting ability is Charisma (spell save {@dc 17}). The master can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person} (as a 3rd-level spell)", + "{@spell crown of madness}" + ], + "daily": { + "1": [ + "{@spell dominate person}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Aura of Blood Lust", + "entries": [ + "When any other creature starts its turn within 30 feet of the master, that creature must succeed on a {@dc 17} Wisdom saving throw, or it must immediately take the Attack action, making one melee attack against a random creature within reach. If no creatures are within reach, it makes a ranged attack against a random creature within range, throwing its weapon if necessary." + ] + }, + { + "name": "Feed on the Crowd", + "entries": [ + "Whenever a creature within 60 feet of the master dies, the master gains 15 temporary hit points and has advantage on all attack rolls, ability checks, and saving throws until the end of its next turn." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The master has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The master makes two melee attacks with its spear." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 13 ({@damage 3d8}) psychic damage." + ] + }, + { + "name": "Captivating Presence {@recharge}", + "entries": [ + "Each creature within 120 feet of the master must succeed on a {@dc 17} Wisdom saving throw or be {@condition charmed} by the master for 1 hour. While {@condition charmed} in this way, a creature's speed is 0. If the {@condition charmed} creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. A target that succeeds on the saving throw is immune to the Captivating Presence of all masters of cruelties for the next 24 hours." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mind Drinker Vampire", + "source": "GGR", + "page": 224, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 18, + "con": 12, + "int": 19, + "wis": 13, + "cha": 14, + "save": { + "dex": "+6", + "int": "+6", + "wis": "+3" + }, + "skill": { + "deception": "+4", + "insight": "+3", + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The vampire's innate spellcasting ability is Intelligence (spell save {@dc 14}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell message}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell hold person}", + "{@spell mirror image}", + "{@spell sleep}" + ], + "1e": [ + "{@spell gaseous form}", + "{@spell major image}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the vampire can take the Hide action as a bonus action." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the vampire has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. The vampire can also grapple the target (escape {@dc 13}) if it is a creature and the vampire has a hand free." + ] + }, + { + "name": "Mind Siphon {@recharge 5}", + "entries": [ + "The vampire targets a creature it can see within 30 feet of it. The target must make a {@dc 14} Intelligence saving throw, with disadvantage if the vampire has previously consumed the target's blood. On a failed save, the target takes 28 ({@damage 8d6}) psychic damage, and the vampire discerns the target's surface emotions and thoughts. On a successful save, the target takes half as much damage, and the vampire discerns the target's general emotional state but not its thoughts." + ] + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N", + "P", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "paralyzed", + "unconscious" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mind Mage", + "source": "GGR", + "page": 233, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 49, + "formula": "11d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 20, + "wis": 15, + "cha": 16, + "save": { + "int": "+8", + "wis": "+5" + }, + "skill": { + "arcana": "+8", + "deception": "+6", + "insight": "+5", + "persuasion": "+6" + }, + "passive": 12, + "languages": [ + "Common plus any four languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The mage's spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell encode thoughts|GGR} (see chapter 2)", + "{@spell friends}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell detect thoughts}", + "{@spell mage armor}", + "{@spell sleep}", + "{@spell suggestion}" + ], + "1e": [ + "{@spell dominate person}", + "{@spell mass suggestion}", + "{@spell modify memory}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "The mage wears a {@item Spies' Murmur|GGR|spies' murmur} (see chapter 5)." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Nightveil Specter", + "source": "GGR", + "page": 215, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 19, + "con": 16, + "int": 6, + "wis": 17, + "cha": 11, + "save": { + "dex": "+8", + "wis": "+7" + }, + "skill": { + "insight": "+7", + "perception": "+7", + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "10", + "trait": [ + { + "name": "Mount", + "entries": [ + "If the specter isn't mounted, it can use a bonus action to magically teleport onto its gloamwing mount, provided the specter and the gloamwing are on the same plane of existence. When it teleports, the specter appears astride the gloamwing along with any equipment it is wearing or carrying. While mounted and not {@condition incapacitated}, the specter can't be {@status surprised}, and both it and its mount gain advantage on Dexterity saving throws." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The specter makes two scythe attacks." + ] + }, + { + "name": "Scythe", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 13 ({@damage 3d8}) psychic damage." + ] + }, + { + "name": "Mind Twist {@recharge 5}", + "entries": [ + "The specter magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Wisdom saving throw or take 22 ({@damage 5d8}) psychic damage and be {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Reap Memory (3/Day)", + "entries": [ + "The specter touches one {@condition incapacitated} creature and chooses 1 hour from among the past 24. Unless the creature succeeds on a {@dc 15} Intelligence saving throw, the creature loses all memory of that hour. The creature regains the memory only if the specter dies within the next 24 hours." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Niv-Mizzet", + "isNamedCreature": true, + "source": "GGR", + "page": 241, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 370, + "formula": "19d20 + 171" + }, + "speed": { + "walk": 40, + "climb": 30, + "fly": 80 + }, + "str": 29, + "dex": 14, + "con": 29, + "int": 30, + "wis": 17, + "cha": 25, + "save": { + "con": "+17", + "int": "+18", + "wis": "+11" + }, + "skill": { + "arcana": "+18", + "insight": "+11", + "perception": "+11" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + "psychic", + "thunder" + ], + "immune": [ + "fire", + "lightning" + ], + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Niv-Mizzet is a 20th-level Izzet spellcaster. His spellcasting ability is Intelligence (spell save {@dc 26}, {@hit 18} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}", + "{@spell unseen servant}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell enlarge/reduce}", + "{@spell flaming sphere}", + "{@spell hold person}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell lightning bolt}", + "{@spell slow}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell dimension door}", + "{@spell fabricate}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell conjure elemental}", + "{@spell polymorph}", + "{@spell wall of fire}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}", + "{@spell disintegrate}", + "{@spell true seeing}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell project image}", + "{@spell reverse gravity}", + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell control weather}", + "{@spell maze}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell prismatic wall}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Niv-Mizzet fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Locus of the Firemind", + "entries": [ + "Niv-Mizzet can maintain {@status concentration} on two different spells at the same time. In addition, he has advantage on saving throws to maintain {@status concentration} on spells." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Niv-Mizzet has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Master Chemister", + "entries": [ + "When Niv-Mizzet casts a spell that deals damage, he can change the spell's damage to cold, fire, force, lightning, or thunder." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Niv-Mizzet makes three attacks: one with his bite and two with his claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d8 + 9}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d4 + 9}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}16 ({@damage 2d6 + 9}) bludgeoning damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "Niv-Mizzet exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Cantrip", + "entries": [ + "Niv-Mizzet casts one of his cantrips." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "Niv-Mizzet makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "Niv-Mizzet beats his wings. Each creature within 15 feet of him must succeed on a {@dc 25} Dexterity saving throw or take 14 ({@damage 2d4 + 9}) bludgeoning damage and be knocked {@condition prone}. Niv-Mizzet can then fly up to half his flying speed." + ] + }, + { + "name": "Dracogenius (Costs 3 Actions)", + "entries": [ + "Niv-Mizzet regains a spell slot of 3rd level or lower." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "paralyzed", + "petrified", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nivix Cyclops", + "source": "GGR", + "page": 216, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 115, + "formula": "10d10 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 24, + "dex": 9, + "con": 22, + "int": 7, + "wis": 10, + "cha": 9, + "save": { + "con": "+9", + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "8", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The cyclops has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cyclops makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Spell Vitalization", + "entries": [ + "Immediately after a creature casts a spell of 1st level or higher within 120 feet of the cyclops, the cyclops can move up to twice its speed without provoking opportunity attacks. It can then make one slam attack against a target of its choice." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Obzedat Ghost", + "source": "GGR", + "page": 245, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ], + "condition": "plus 1 for each other Obzedat" + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 10, + "con": 13, + "int": 18, + "wis": 20, + "cha": 17, + "save": { + "int": "+7", + "wis": "+8" + }, + "skill": { + "insight": "+8", + "perception": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ghost's innate spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell chill touch} (at 5th level, and the ghost regains hit points equal to half the amount of damage the target takes)" + ], + "daily": { + "1e": [ + "{@spell sanctuary}", + "{@spell spirit guardians} (at 4th level)" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Council of Five", + "entries": [ + "The ghost has a trait based on who it is, as shown below:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Enezesku: Enfeebling Ray", + "entry": "Enezesku's Innate Spellcasting trait includes {@spell ray of enfeeblement}, which he can cast at will." + }, + { + "type": "item", + "name": "Fautomni: Undead Fortitude", + "entry": "If damage reduces Fautomni to 0 hit points, he must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, Fautomni drops to 1 hit point instead." + }, + { + "type": "item", + "name": "Karlov: Unnatural Vigor", + "entry": "When Karlov regains hit points, he has advantage on attack rolls he makes on his next turn." + }, + { + "type": "item", + "name": "Vuliev: Teleportation", + "entry": "Vuliev's Innate Spellcasting trait includes {@spell misty step}, which he can cast at will." + }, + { + "type": "item", + "name": "Xil Xaxosz: Lingering Spite", + "entry": "When Xil Xaxosz is reduced to 0 hit points, his incorporeal form explodes in a burst of necrotic energy. Each creature within 5 feet of him must make a {@dc 16} Constitution saving throw, taking 14 ({@damage 4d6}) necrotic damage on a failed save, or half as much damage on a successful one." + } + ] + } + ] + }, + { + "name": "Ethereal Sight", + "entries": [ + "The ghost can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If the ghost fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}18 ({@damage 4d8}) necrotic damage, and the ghost regains hit points equal to half the amount of damage the target takes. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. The target dies if its hit point maximum is reduced to 0. This reduction to the target's hit point maximum lasts until the target finishes a long rest." + ] + }, + { + "name": "Convene the Ghost Council", + "entries": [ + "The ghost summons the other four members of the Obzedat. At the start of the ghost's next turn, the other members appear in unoccupied spaces within 30 feet of the summoner. The ghosts each roll initiative when they appear." + ] + } + ], + "legendaryHeader": [ + "If five Obzedat ghosts are all within 30 feet of each other, they can collectively take 3 legendary actions, choosing from the options below. Only one legendary action option can be used at a time, and only at the end of another creature's turn. Obzedat ghosts regain spent legendary actions at the start of the turn of the ghost with the highest initiative." + ], + "legendary": [ + { + "name": "Forced Obedience", + "entries": [ + "A target that all of the Obzedat ghosts can see must succeed on a {@dc 16} Wisdom saving throw or bow until the end of its next turn. Until this bow ends, the target can't take actions or reactions, and its speed is 0 and can't be increased." + ] + }, + { + "name": "Indentured Spirits (Costs 3 Actions)", + "entries": [ + "The Obzedat ghosts conjure {@dice 1d6} {@creature indentured spirit|ggr|indentured spirits} (described in this chapter) within 60 feet of one of them." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "O" + ], + "damageTagsSpell": [ + "N", + "R" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orzhov Giant", + "source": "GGR", + "page": 202, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 13, + "con": 21, + "int": 12, + "wis": 13, + "cha": 8, + "save": { + "dex": "+4", + "con": "+8", + "wis": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Giant" + ], + "cr": "6", + "trait": [ + { + "name": "Focus", + "entries": [ + "As a bonus action, the giant can target a creature it can see within 30 feet of it and make that creature its focus. The target remains the giant's focus for 1 minute, or until either the target or the giant drops to 0 hit points. When the giant makes an attack roll against its focus, it adds a {@dice d4} to its attack roll. If the giant attacks a different target while it has a focus, it subtracts a {@dice d4} from its attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two greataxe attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage. If the Orzhov giant scores a critical hit, it rolls the damage dice three times, instead of twice." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Precognitive Mage", + "source": "GGR", + "page": 228, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 63, + "formula": "14d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 13, + "con": 10, + "int": 18, + "wis": 13, + "cha": 11, + "save": { + "int": "+6", + "wis": "+3" + }, + "skill": { + "perception": "+3" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 13, + "languages": [ + "Common plus any one language" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage's innate spellcasting ability is Intelligence (spell save {@dc 14}). It can cast the following spells, requiring no material components:" + ], + "daily": { + "3": [ + "{@spell detect thoughts}", + "{@spell mage armor}" + ], + "1e": [ + "{@spell clairvoyance}", + "{@spell locate object}" + ] + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Glimpse the Temporal Flood {@recharge 5}", + "entries": [ + "The mage targets one creature within 120 feet of it that it can see. The target takes 18 ({@damage 4d8}) psychic damage, and it must succeed on a {@dc 14} Intelligence saving throw or be {@condition stunned} until the end of its next turn." + ] + } + ], + "reaction": [ + { + "name": "Precognitive Insight (3/Day)", + "entries": [ + "When the mage or a creature it can see makes an attack roll, a saving throw, or an ability check, the mage can cause the roll to be made with advantage or disadvantage." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rakdos", + "isNamedCreature": true, + "source": "GGR", + "page": 247, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 26, + "dex": 15, + "con": 22, + "int": 14, + "wis": 18, + "cha": 30, + "save": { + "str": "+15", + "con": "+13", + "wis": "+11", + "cha": "+17" + }, + "skill": { + "intimidation": "+17", + "performance": "+17", + "persuasion": "+17" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Common" + ], + "cr": "24", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Rakdos's spellcasting ability is Charisma (spell save {@dc 25}). He can innately cast {@spell hellish rebuke} (at 5th level) at will, requiring no material components." + ], + "will": [ + "{@spell hellish rebuke}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Captivating Presence", + "entries": [ + "Any creature that starts its turn within 30 feet of Rakdos must make a {@dc 25} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by Rakdos for 1 minute or until the creature is farther than 30 feet away from him. On a successful save, the creature becomes immune to Rakdos's Captivating Presence for 24 hours." + ] + }, + { + "name": "Cruel Entertainment", + "entries": [ + "When a creature Rakdos can see within 60 feet of him is reduced to 0 hit points, Rakdos gains 25 temporary hit points." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Rakdos fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Rakdos has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Rakdos's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Rakdos makes two attacks with his Curtain-Call Scythe or his claws." + ] + }, + { + "name": "Curtain-Call Scythe", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) slashing damage plus 13 ({@damage 3d8}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ] + } + ], + "legendary": [ + { + "name": "Sadistic Revelry", + "entries": [ + "Each creature within 60 feet of Rakdos that is his ally or is {@condition charmed} by him must use its reaction to move up to half its speed toward the creature closest to it that it can see, provided it isn't already within 5 feet of that creature. It then must make one melee attack against that creature if it is able to do so." + ] + }, + { + "name": "Scythe (Costs 2 Actions)", + "entries": [ + "Rakdos uses Curtain-Call Scythe." + ] + }, + { + "name": "Touch of Pain (Costs 3 Actions)", + "entries": [ + "Rakdos makes a claw attack against one creature within 10 feet of him. The target must succeed on a {@dc 25} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the creature can't maintain {@status concentration} on a spell or any other effect that requires {@status concentration}. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "F", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rakdos Lampooner", + "source": "GGR", + "page": 248, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 13, + "int": 12, + "wis": 9, + "cha": 18, + "skill": { + "deception": "+6", + "performance": "+6" + }, + "passive": 9, + "languages": [ + "Common plus any one language" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lampooner is a 4th-level Rakdos spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It knows the following bard spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell dancing lights}", + "{@spell minor illusion}", + "{@spell vicious mockery}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell dissonant whispers}", + "{@spell silent image}", + "{@spell Tasha's hideous laughter}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell enthrall}", + "{@spell suggestion}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "T", + "Y" + ], + "spellcastingTags": [ + "CB" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rakdos Performer, Blade Juggler", + "source": "GGR", + "page": 249, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 13, + "dex": 17, + "con": 12, + "int": 10, + "wis": 8, + "cha": 15, + "save": { + "dex": "+5", + "cha": "+4" + }, + "skill": { + "acrobatics": "+7", + "performance": "+4" + }, + "passive": 9, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1", + "trait": [ + { + "name": "Nimble", + "entries": [ + "The performer can take the Disengage action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The juggler makes three dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rakdos Performer, Fire Eater", + "source": "GGR", + "page": 249, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 13, + "dex": 17, + "con": 12, + "int": 10, + "wis": 8, + "cha": 15, + "save": { + "dex": "+5", + "cha": "+4" + }, + "skill": { + "acrobatics": "+7", + "performance": "+4" + }, + "passive": 9, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1", + "trait": [ + { + "name": "Nimble", + "entries": [ + "The performer can take the Disengage action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fire eater makes two attacks with its bladed chain." + ] + }, + { + "name": "Bladed Chain", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Spew Flame {@recharge 4}", + "entries": [ + "The fire eater exhales flames. Each creature in a 15-foot cone must make a {@dc 13} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "F", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rakdos Performer, High-Wire Acrobat", + "source": "GGR", + "page": 249, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 13, + "dex": 17, + "con": 12, + "int": 10, + "wis": 8, + "cha": 15, + "save": { + "dex": "+5", + "cha": "+4" + }, + "skill": { + "acrobatics": "+7", + "performance": "+4" + }, + "passive": 9, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1", + "trait": [ + { + "name": "Nimble", + "entries": [ + "The performer can take the Disengage action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The acrobat makes two attacks with its barbed pole." + ] + }, + { + "name": "Barbed Pole", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the acrobat can jump up to 20 feet. This movement doesn't provoke opportunity attacks." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Reckoner", + "source": "GGR", + "page": 231, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 16, + "dex": 12, + "con": 15, + "int": 15, + "wis": 12, + "cha": 10, + "skill": { + "arcana": "+4", + "intimidation": "+2", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "Common plus any one language" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The reckoner is a 5th-level Boros spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The reckoner has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell message}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell guiding bolt}", + "{@spell shield}", + "{@spell thunderwave}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell levitate}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell lightning bolt}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "First Strike", + "entries": [ + "The reckoner has advantage on initiative rolls." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Lightning Backlash {@recharge 5}", + "entries": [ + "When a creature hits the reckoner with an attack, the attacker takes lightning damage equal to half the damage dealt by the attack." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "L", + "R", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rubblebelt Stalker", + "source": "GGR", + "page": 239, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "piecemeal armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 10, + "wis": 14, + "cha": 8, + "skill": { + "athletics": "+2", + "perception": "+4", + "stealth": "+4" + }, + "passive": 14, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Ambusher", + "entries": [ + "In the first round of a combat, the stalker has advantage on attack rolls against any creature that hasn't taken a turn yet." + ] + }, + { + "name": "Nimble Escape", + "entries": [ + "The stalker can take the Disengage or Hide action as a bonus action on each of its turns." + ] + }, + { + "name": "Ruin Dweller", + "entries": [ + "The stalker has advantage on Dexterity ({@skill Stealth}) checks made to hide in ruins, and its speed is not reduced in {@quickref difficult terrain||3} composed of rubble." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The stalker deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The stalker makes three attacks with its shortsword." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk m} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Ambusher", + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Scorchbringer Guard", + "source": "GGR", + "page": 243, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 14, + "con": 12, + "int": 10, + "wis": 9, + "cha": 10, + "passive": 9, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Explosive Tank", + "entries": [ + "When the guard dies, or if it rolls a 1 when checking whether its Scorchbringer action recharges, the tank on its back explodes in a 10-foot radius sphere. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one. The explosion ignites flammable objects that aren't being worn or carried, and it destroys the scorchbringer." + ] + } + ], + "action": [ + { + "name": "Light Hammer", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Scorchbringer {@recharge 4}", + "entries": [ + "The guard's scorchbringer spouts a stream of flame in a line that is 30 feet long and 5 feet wide. Each creature in the line must make a {@dc 12} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "light hammer|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Servitor Thrull", + "source": "GGR", + "page": 221, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 22, + "formula": "4d6 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 13, + "con": 14, + "int": 6, + "wis": 6, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "1/4", + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + } + ], + "reaction": [ + { + "name": "Self-Sacrifice", + "entries": [ + "When a creature within 5 feet of the thrull is hit by an attack, the thrull swaps places with that creature and is hit instead." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Shadow Horror", + "source": "GGR", + "page": 205, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 120, + "formula": "16d10 + 32" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 2, + "wis": 17, + "cha": 18, + "skill": { + "perception": "+7", + "stealth": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "frightened" + ], + "cr": "9", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The horror can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the horror can take the Hide action as a bonus action." + ] + }, + { + "name": "Shadow Stride", + "entries": [ + "As a bonus action, the horror can step into a shadow within 5 feet of it and magically appear in an unoccupied space within 5 feet of a second shadow that is up to 60 feet away. Both shadows must be cast by a Small or larger creature or object." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the horror has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The horror makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}21 ({@damage 4d8 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) slashing damage, and the target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} of the horror until the end of the target's next turn." + ] + }, + { + "name": "Lashing Shadows {@recharge 5}", + "entries": [ + "Each creature within 60 feet of the horror, except other horrors, must succeed on a {@dc 16} Dexterity saving throw or take 27 ({@damage 6d8}) necrotic damage." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N", + "O", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Simic Merfolk", + "source": "GGR", + "page": 187, + "_copy": { + "name": "Merfolk", + "source": "MM" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "languages": [ + "Common", + "Merfolk" + ], + "languageTags": [ + "C" + ], + "hasToken": true + }, + { + "name": "Sire of Insanity", + "source": "GGR", + "page": 197, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 6, + "con": 19, + "int": 14, + "wis": 19, + "cha": 22, + "save": { + "con": "+8", + "int": "+6", + "wis": "+8", + "cha": "+10" + }, + "skill": { + "deception": "+10", + "intimidation": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sire's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The sire can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell clairvoyance}", + "{@spell crown of madness}", + "{@spell major image}", + "{@spell suggestion}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell mass suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Aura of Mind Erosion", + "entries": [ + "Any creature that starts its turn within 30 feet of the sire must make a {@dc 18} Wisdom saving throw. On a successful save, the creature is immune to this aura for the next 24 hours. On a failed save, the creature has disadvantage for 1 minute on Wisdom and Charisma checks and on Wisdom and Charisma saves. At the start of each of its turns, the sire can suppress this aura until the start of its next turn." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The sire has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sire makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}25 ({@damage 3d12 + 6}) piercing damage plus 16 ({@damage 3d10}) psychic damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage plus 9 ({@damage 2d8}) psychic damage." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skittering Horror", + "source": "GGR", + "page": 205, + "size": [ + "H" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 228, + "formula": "24d12 + 72" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 22, + "dex": 16, + "con": 17, + "int": 2, + "wis": 14, + "cha": 18, + "skill": { + "perception": "+7", + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "frightened" + ], + "cr": "15", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The horror can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the horror has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The horror can use its Maddening Presence and make three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 4d10 + 6}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}24 ({@damage 4d8 + 6}) slashing damage." + ] + }, + { + "name": "Maddening Presence", + "entries": [ + "The horror targets one creature it can see within 30 feet of it. If the target can see or hear the horror, the target must make a {@dc 17} Wisdom saving throw. On a failed saving throw, the target becomes {@condition paralyzed} until the end of its next turn. If a creature's saving throw is successful, the creature is immune to the horror's Maddening Presence for the next 24 hours." + ] + } + ], + "traitTags": [ + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skyjek Roc", + "source": "GGR", + "page": 219, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 37, + "formula": "5d10 + 10" + }, + "speed": { + "walk": 20, + "fly": 90 + }, + "str": 20, + "dex": 13, + "con": 14, + "int": 3, + "wis": 10, + "cha": 8, + "save": { + "dex": "+3", + "wis": "+2" + }, + "skill": { + "perception": "+2" + }, + "passive": 12, + "cr": "2", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The roc has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The roc makes two attacks: one with its beak and one with its talons." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skyswimmer", + "source": "GGR", + "page": 220, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 216, + "formula": "16d20 + 48" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 23, + "dex": 15, + "con": 16, + "int": 7, + "wis": 12, + "cha": 6, + "save": { + "con": "+8" + }, + "skill": { + "perception": "+6" + }, + "passive": 16, + "cr": "13", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The skyswimmer can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skyswimmer makes three attacks: one with its bite and two with its slam." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Dexterity saving throw or be swallowed by the skyswimmer. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the skyswimmer, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the skyswimmer's turns. If the skyswimmer takes 30 damage or more on a single turn from the swallowed creature, the skyswimmer must succeed on a {@dc 18} Constitution saving throw at the end of that turn or regurgitate the creature, which falls {@condition prone} in a space within 10 feet of the skyswimmer. If the skyswimmer dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 30 ft., one target. {@h}19 ({@damage 2d12 + 6}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Soldier", + "source": "GGR", + "page": 226, + "otherSources": [ + { + "source": "MOT" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 10, + "wis": 11, + "cha": 11, + "skill": { + "perception": "+2", + "athletics": "+3" + }, + "passive": 12, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Formation Tactics", + "entries": [ + "The soldier has advantage on saving throws against being {@condition charmed}, {@condition frightened}, {@condition grappled}, or {@condition restrained} while it is within 5 feet of at least one ally." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The soldier makes two melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sphinx of Judgment", + "source": "GGR", + "page": 183, + "_copy": { + "name": "Gynosphinx", + "source": "MM" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sphinx is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell message}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell ensnaring strike}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell hold person}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell counterspell}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell divination}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell dominate person}" + ] + } + }, + "ability": "int" + } + ], + "damageTagsLegendary": [], + "damageTagsSpell": [ + "P" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Sunder Shaman", + "source": "GGR", + "page": 202, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 20, + "from": [ + "stone armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 15, + "con": 21, + "int": 10, + "wis": 12, + "cha": 9, + "save": { + "dex": "+6", + "con": "+9", + "wis": "+5" + }, + "skill": { + "athletics": "+10", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Giant" + ], + "cr": "10", + "trait": [ + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the giant can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The giant deals double damage to objects and structures." + ] + }, + { + "name": "Stone Camouflage", + "entries": [ + "The giant has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two slam attacks. The first of those attacks that hits deals an extra 18 ({@damage 4d8}) damage if the giant has taken damage since its last turn." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}24 ({@damage 4d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Camouflage", + "Reckless", + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thought Spy", + "source": "GGR", + "page": 233, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 10, + "int": 16, + "wis": 13, + "cha": 14, + "skill": { + "deception": "+6", + "insight": "+3", + "investigation": "+5", + "perception": "+3", + "sleight of hand": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 13, + "languages": [ + "Common plus any one language" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The thought spy's innate spellcasting ability is Intelligence (spell save {@dc 13}). The thought spy can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell encode thoughts|GGR} (see chapter 2)" + ], + "daily": { + "1e": [ + "{@spell blur}", + "{@spell detect thoughts}", + "{@spell gaseous form}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of its turns, the thought spy can use a bonus action to take the Dash, Disengage, or Hide action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thought spy makes two melee attacks, or it makes three ranged attacks with its daggers." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "rapier|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Trostani", + "isNamedCreature": true, + "source": "GGR", + "page": 252, + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 252, + "formula": "24d10 + 120" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 14, + "con": 20, + "int": 16, + "wis": 30, + "cha": 25, + "save": { + "con": "+11", + "wis": "+16", + "cha": "+13" + }, + "skill": { + "arcana": "+9", + "insight": "+16", + "nature": "+9", + "perception": "+16", + "persuasion": "+13" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 26, + "conditionImmune": [ + "charmed", + "grappled" + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Trostani's innate spellcasting ability is Wisdom (spell save {@dc 24}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dispel magic}", + "{@spell druidcraft}" + ], + "daily": { + "3e": [ + "{@spell bless}", + "{@spell conjure animals}", + "{@spell giant insect}", + "{@spell moonbeam}", + "{@spell plant growth}", + "{@spell spike growth}", + "{@spell suggestion}" + ], + "1e": [ + "{@spell conjure fey}", + "{@spell mass cure wounds}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Trostani fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Trostani has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Trostani's weapon attacks are magical." + ] + }, + { + "name": "Speak with Beasts and Plants", + "entries": [ + "Trostani can communicate with beasts and plants as if they shared a language." + ] + }, + { + "name": "Tree Stride", + "entries": [ + "Once on her turn, Trostani can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Trostani takes three actions: she uses Constrict and Touch of Order, and she casts a spell with a casting time of 1 action." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one creature. {@h}15 ({@damage 3d6 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}. Trostani can grapple no more than three targets at a time." + ] + }, + { + "name": "Touch of Order", + "entries": [ + "{@atk ms} {@hit 16} to hit, reach 5 ft., one creature. {@h}23 ({@damage 3d8 + 10}) radiant damage, and Trostani can choose one magic item she can see in the target's possession. Unless it's an artifact, the item's magic is suppressed until the start of Trostani's next turn." + ] + }, + { + "name": "Wrath of Mat'Selesnya {@recharge 5}", + "entries": [ + "Trostani conjures a momentary whirl of branches and vines at a point she can see within 60 feet of her. Each creature in a 30-foot cube on that point must make a {@dc 24} Dexterity saving throw, taking 21 ({@damage 6d6}) bludgeoning damage and 21 ({@damage 6d6}) slashing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Voice of Harmony", + "entries": [ + "Trostani makes one melee attack, with advantage on the attack roll." + ] + }, + { + "name": "Voice of Life", + "entries": [ + "Trostani bestows 20 temporary hit points on another creature she can see within 120 feet of her." + ] + }, + { + "name": "Voice of Order", + "entries": [ + "Trostani casts {@spell dispel magic}." + ] + }, + { + "name": "Chorus of the Conclave (Costs 2 Actions)", + "entries": [ + "Trostani casts {@spell suggestion}. This counts as one of her daily uses of the spell." + ] + }, + { + "name": "Awaken Grove Guardians (Costs 3 Actions)", + "entries": [ + "Trostani animates one or two trees she can see within 120 feet of her, causing them to uproot themselves and become awakened trees (see the Monster Manual for their stat blocks) for 1 minute or until Trostani uses a bonus action to end the effect. These trees understand Druidic and obey Trostani's spoken commands, but can't speak. If she issues no commands to them, the trees do nothing but follow her and take the Dodge action." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Tree Stride" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU", + "E", + "S" + ], + "damageTags": [ + "B", + "R", + "S" + ], + "damageTagsSpell": [ + "P", + "R" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Undercity Medusa", + "source": "GGR", + "page": 222, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 18, + "con": 16, + "int": 17, + "wis": 12, + "cha": 15, + "skill": { + "deception": "+5", + "insight": "+4", + "perception": "+4", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Elvish" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The medusa's innate spellcasting ability is Intelligence (spell save {@dc 14}). The medusa can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell expeditious retreat}", + "{@spell fog cloud}", + "{@spell misty step}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The medusa has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Surprise Attack", + "entries": [ + "During the first round of combat, the medusa has advantage on attack rolls against any creature that is {@status surprised}, and it deals an extra 10 ({@damage 3d6}) damage each time it hits such a creature with an attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The medusa makes two claw attacks. It can also use Petrifying Gaze before or after making these attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Petrifying Gaze", + "entries": [ + "The medusa fixes its gaze on one creature within 60 feet of it that it can see and that can see its eyes. The target must make a {@dc 14} Constitution saving throw. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, a creature that fails the save begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by a {@spell greater restoration} spell or similar magic." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Winged Thrull", + "source": "GGR", + "page": 221, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 31, + "formula": "7d6 + 7" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 9, + "dex": 15, + "con": 12, + "int": 8, + "wis": 9, + "cha": 8, + "save": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "1/2", + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Self-Sacrifice", + "entries": [ + "When a creature within 5 feet of the thrull is hit by an attack, the thrull swaps places with that creature and is hit instead." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wurm", + "source": "GGR", + "page": 225, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 50, + "burrow": 30 + }, + "str": 24, + "dex": 10, + "con": 22, + "int": 3, + "wis": 12, + "cha": 4, + "save": { + "con": "+11", + "wis": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "tremorsense 60 ft." + ], + "passive": 11, + "cr": "14", + "trait": [ + { + "name": "Siege Monster", + "entries": [ + "The wurm deals double damage to objects and structures." + ] + }, + { + "name": "Earth Tremors", + "entries": [ + "The wurm creates earth tremors as it moves overland or underground. Any creature that comes within 30 feet of the moving wurm for the first time on a turn must succeed on a {@dc 20} Dexterity saving throw or take 10 ({@damage 3d6}) bludgeoning damage and fall {@condition prone}. Any structure or object anchored to the ground that comes within 30 feet of the moving wurm for the first time on a turn takes 10 ({@damage 3d6}) force damage." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The wurm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}24 ({@damage 5d6 + 7}) piercing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 20} Dexterity saving throw or be swallowed by the wurm. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the wurm, and takes 17 ({@damage 5d6}) acid damage at the start of each of the wurm's turns. If the wurm takes 30 damage or more on a single turn from a creature inside it, the wurm must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the wurm. If the wurm dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ] + } + ], + "traitTags": [ + "Siege Monster", + "Tunneler" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Swallow" + ], + "damageTags": [ + "A", + "B", + "O", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zegana", + "isNamedCreature": true, + "source": "GGR", + "page": 255, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "merfolk" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 130, + "formula": "20d8 + 40" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 20, + "wis": 18, + "cha": 16, + "save": { + "int": "+10", + "wis": "+9" + }, + "skill": { + "insight": "+9", + "nature": "+10", + "perception": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "resist": [ + "cold", + "poison" + ], + "languages": [ + "Common", + "Elvish", + "Merfolk" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zegana is a 15th-level Simic spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell druidcraft}", + "{@spell ray of frost}", + "{@spell shape water|XGE}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell color spray}", + "{@spell expeditious retreat}", + "{@spell fog cloud}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell gust of wind}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell slow}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell control water}", + "{@spell ice storm}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell conjure elemental}", + "{@spell creation}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell move earth}", + "{@spell wall of ice}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell prismatic spray}", + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell control weather}", + "{@spell dominate monster}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Zegana can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Zegana fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Zegana has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Prime Speaker's Trident", + "entries": [ + "{@atk mw,rw} {@hit 10} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and the trident emits a thunderous boom. Each creature in a 15-foot cube originating from the prongs of the trident must make a {@dc 18} Constitution saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) thunder damage and is pushed 10 feet away from Zegana. If the creature is underwater, the damage is increased to 13 ({@dice 3d8}). On a successful save, the creature takes half as much damage and isn't pushed." + ] + }, + { + "name": "Deluge {@recharge 4}", + "entries": [ + "Zegana conjures a wave of water that crashes down on an area within 120 feet of her. The area can be up to 30 feet long, up to 10 feet wide, and up to 10 feet tall. Each creature in that area must make a {@dc 18} Dexterity saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}. The water spreads out across the ground, extinguishing unprotected flames it comes in contact with, and then vanishes." + ] + } + ], + "legendary": [ + { + "name": "Adaptive Skin", + "entries": [ + "Zegana gains resistance to one damage type of her choice-acid, fire, lightning, or thunder-until the start of her next turn." + ] + }, + { + "name": "Trident", + "entries": [ + "Zegana makes one melee attack with the Prime Speaker's Trident." + ] + }, + { + "name": "Enlarge (Costs 2 Actions)", + "entries": [ + "Zegana casts {@spell enlarge/reduce} on herself, using the enlarge option, without expending a spell slot." + ] + }, + { + "name": "Deluge (Costs 3 Actions)", + "entries": [ + "Zegana uses Deluge, if available." + ] + } + ], + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B", + "P", + "T" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amphisbaena", + "source": "GoS", + "page": 230, + "otherSources": [ + { + "source": "MOT" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 14, + "dex": 18, + "con": 12, + "int": 3, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+2" + }, + "senses": [ + "blindsight 10 ft." + ], + "passive": 12, + "cr": "1/2", + "trait": [ + { + "name": "Two Heads", + "entries": [ + "The amphisbaena has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The amphisbaena makes two bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 3 ({@damage 1d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "altArt": [ + { + "name": "Amphisbaena", + "source": "MOT" + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Barnacle Bess", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 220, + "_copy": { + "name": "Giant Crab", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the crab", + "with": "Bess", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "int": 10, + "languages": [ + "Common" + ], + "languageTags": [ + "C" + ], + "hasToken": true + }, + { + "name": "Bullywug Croaker", + "source": "GoS", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bullywug" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item hide armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 14, + "dex": 12, + "con": 12, + "int": 7, + "wis": 15, + "cha": 10, + "save": { + "con": "+3" + }, + "skill": { + "perception": "+4", + "stealth": "+3" + }, + "passive": 14, + "languages": [ + "Bullywug" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The croaker can breathe air and water." + ] + }, + { + "name": "Speak with Frogs and Toads", + "entries": [ + "The croaker can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The croaker's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + }, + { + "name": "Swamp Camouflage", + "entries": [ + "The croaker has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Glaaar-pat (3/Day)", + "entries": [ + "The croaker sings a song of marshy doom. Each chosen creature within 30 feet of the croaker that can hear the song must make a {@dc 12} Wisdom saving throw, taking 9 ({@damage 2d8}) psychic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw also has disadvantage on Constitution saving throws until the end of its next turn." + ] + }, + { + "name": "Rooooo-glog (1/Day)", + "entries": [ + "The croaker sings an ode to an elder froghemoth. Each bullywug within 30 feet of the croaker that can hear the song gains 10 temporary hit points." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Amphibious", + "Camouflage" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Bullywug Royal", + "source": "GoS", + "page": 232, + "otherSources": [ + { + "source": "WBtW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bullywug" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item hide armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 16, + "dex": 12, + "con": 14, + "int": 10, + "wis": 11, + "cha": 14, + "save": { + "str": "+5", + "dex": "+3" + }, + "skill": { + "athletics": "+5", + "intimidation": "+4", + "stealth": "+3" + }, + "passive": 10, + "languages": [ + "Bullywug" + ], + "cr": "3", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The royal can breathe air and water." + ] + }, + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when the royal hits with it (included in the attack)." + ] + }, + { + "name": "Frog Rider", + "entries": [ + "The royal has advantage on melee attacks made while riding a frog mount." + ] + }, + { + "name": "Speak with Frogs and Toads", + "entries": [ + "The royal can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The royal's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + }, + { + "name": "Swamp Camouflage", + "entries": [ + "The royal has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The royal makes two attacks: one with its royal spear and one with its bite." + ] + }, + { + "name": "Royal Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 10 ft. or range 20/60 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, or 12 ({@damage 2d8 + 3}) piercing damage if used with two hands to make a melee attack. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Croaked Decree (1/Day)", + "entries": [ + "The royal makes a loud pronouncement. Each bullywug within 60 feet of the royal that can hear the pronouncement has advantage on its next attack roll." + ] + } + ], + "traitTags": [ + "Amphibious", + "Brute", + "Camouflage" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Captain Xendros", + "shortName": "Xendros", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 14, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Xendros", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "I", + "X" + ], + "damageTagsSpell": [ + "F", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Drowned Ascetic", + "source": "GoS", + "page": 233, + "otherSources": [ + { + "source": "LR" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 16, + "int": 3, + "wis": 9, + "cha": 5, + "save": { + "dex": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Bottom Treader", + "entries": [ + "The drowned ascetic cannot swim, and it sinks to the bottom of any body of water. It takes no penalties to its movement or attacks underwater. It is immune to the effects of being underwater at a depth greater than 100 feet." + ] + }, + { + "name": "Bound Together", + "entries": [ + "The drowned ascetic shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the drowned ascetic to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned ascetic drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drowned ascetic makes three unarmed strikes." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ] + } + ], + "reaction": [ + { + "name": "Dexterous Target", + "entries": [ + "The drowned ascetic adds 3 to its AC against one ranged attack that would hit it. To do so, the drowned ascetic must see the attacker." + ] + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drowned Assassin", + "source": "GoS", + "page": 234, + "otherSources": [ + { + "source": "LR" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 16, + "int": 9, + "wis": 9, + "cha": 16, + "save": { + "dex": "+5", + "con": "+5" + }, + "skill": { + "intimidation": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Bottom Treader", + "entries": [ + "The drowned assassin cannot swim, and it sinks to the bottom of any body of water. It takes no penalties to its movement or attacks underwater. It is immune to the effects of being underwater at a depth greater than 100 feet." + ] + }, + { + "name": "Bound Together", + "entries": [ + "The drowned assassin shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the drowned assassin to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned assassin drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drowned assassin makes two hand crossbow attacks or two dagger attacks. It can then take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 9 ({@damage 2d8}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ] + }, + { + "name": "Reveal (1/Day)", + "entries": [ + "The drowned assassin removes its mask, revealing its rotting face. Each creature of the assassin's choice within 30 feet of it that can see the assassin must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} until the end of its next turn." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "hand crossbow|phb" + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drowned Blade", + "source": "GoS", + "page": 235, + "otherSources": [ + { + "source": "LR" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 10, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 8, + "con": 16, + "int": 3, + "wis": 9, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Bottom Treader", + "entries": [ + "The drowned blade cannot swim, and it sinks to the bottom of any body of water. It takes no penalties to its movement or attacks underwater. It is immune to the effects of being underwater at a depth greater than 100 feet." + ] + }, + { + "name": "Bound Together", + "entries": [ + "The drowned blade shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the drowned blade to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned blade drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drowned blade makes two rusted longsword attacks." + ] + }, + { + "name": "Rusted Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ] + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drowned Master", + "source": "GoS", + "page": 235, + "otherSources": [ + { + "source": "LR" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "21d8 + 63" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 12, + "con": 16, + "int": 9, + "wis": 14, + "cha": 12, + "save": { + "con": "+7", + "wis": "+6" + }, + "skill": { + "perception": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 20, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "9", + "trait": [ + { + "name": "Bound Together", + "entries": [ + "The drowned master shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ] + }, + { + "name": "Cold Aura", + "entries": [ + "At the start of each of the drowned master's turns, each creature within 5 feet of it takes 5 ({@damage 1d10}) cold damage. A creature that touches the drowned master or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) cold damage." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the drowned master to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned master drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drowned master makes two attacks: one with its greatsword and one with its Life-Draining Tentacle." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 14 ({@damage 4d6}) cold damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ] + }, + { + "name": "Life-Draining Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d6 + 3}) necrotic damage. The target must succeed on a {@dc 15} Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this effect reduces its hit point maximum to 0. This reduction lasts until the target finishes a long rest. On a failed save, the target also contracts bluerot (see the \"Bluerot\" in notes)." + ] + }, + { + "name": "Necrotic Ink {@recharge 5}", + "entries": [ + "The drowned master discharges foul ink in front of itself in a 30-foot cone. Each creature caught in the ink must make a {@dc 15} Constitution saving throw, taking 27 ({@damage 6d8}) necrotic damage on a failed save or half as much damage on a successful one. A creature that fails this saving throw is {@condition blinded} until the end of its next turn and contracts bluerot (see the \"Bluerot\" in notes)." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "C", + "N", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fish", + "source": "GoS", + "page": 224, + "_copy": { + "name": "Quipper", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "quipper", + "with": "fish", + "flags": "i" + }, + "trait": { + "mode": "removeArr", + "names": "Blood Frenzy" + } + } + }, + "action": null, + "damageTags": [], + "miscTags": [], + "hasToken": true + }, + { + "name": "Giant Coral Snake", + "source": "GoS", + "page": 236, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 2, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+2" + }, + "senses": [ + "blindsight 10 ft." + ], + "passive": 12, + "cr": "4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition stunned} until the end of its next turn. On a failed save, the target begins to hallucinate and is afflicted with a {@table short-term madness|DMG} effect (determined randomly or by the DM; see \"Madness\" in chapter 8 of the {@book Dungeon Master's Guide|dmg|8|madness}). The effect lasts 10 minutes." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Sea Eel", + "source": "GoS", + "page": 237, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 0, + "swim": 40 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 7, + "wis": 10, + "cha": 7, + "save": { + "dex": "+4" + }, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "cr": "1/2", + "trait": [ + { + "name": "Water Breathing", + "entries": [ + "The eel can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage." + ] + } + ], + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant White Moray Eel", + "source": "GoS", + "page": 216, + "_copy": { + "name": "Giant Constrictor Snake", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "snake", + "with": "eel", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Water Breathing", + "entries": [ + "The eel can breathe only underwater." + ] + } + }, + "action": { + "mode": "removeArr", + "names": "Constrict" + } + } + }, + "speed": { + "walk": 0, + "swim": 40 + }, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "traitTags": [ + "Water Breathing" + ], + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Harpy Matriarch", + "source": "GoS", + "page": 237, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "str": 13, + "dex": 16, + "con": 12, + "int": 9, + "wis": 10, + "cha": 16, + "save": { + "dex": "+6", + "cha": "+6" + }, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Luring Maestro", + "entries": [ + "While within 60 feet of the matriarch, creatures have disadvantage on saving throws against the matriarch's Luring Song." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The matriarch has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The matriarch makes two claws attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) slashing damage." + ] + }, + { + "name": "Fleeting Form", + "entries": [ + "The matriarch can magically disguise itself to resemble a humanoid of roughly similar size and shape for up to 1 hour. It can revert to its true form as a bonus action. This illusion does not hold up to close scrutiny." + ] + }, + { + "name": "Luring Song", + "entries": [ + "The matriarch sings a magical melody. Every humanoid and giant within 300 feet of the matriarch that can hear the song must succeed on a {@dc 14} Wisdom saving throw or be {@condition charmed} until the song ends. The matriarch must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the matriarch is {@condition incapacitated}.", + "While {@condition charmed} by the matriarch, a target is {@condition incapacitated} and ignores the songs of other harpies. If the {@condition charmed} target is more than 5 feet away from the matriarch, the target must move on its turn toward the matriarch by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the matriarch, the target can repeat the saving throw. A {@condition charmed} target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", + "A target that successfully saves is immune to this matriarch's song for the next 24 hours." + ] + }, + { + "name": "Visage of Desire (1/Day)", + "entries": [ + "The matriarch projects a vision into the minds of creatures within 30 feet of it that aren't constructs or undead, showing each creature achieving whatever it most desires. An affected creature must succeed on a {@dc 14} Wisdom saving throw or drop whatever it is holding and become {@condition paralyzed} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Juvenile Kraken", + "source": "GoS", + "page": 238, + "size": [ + "H" + ], + "type": { + "type": "monstrosity", + "tags": [ + "titan" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90" + }, + "speed": { + "walk": 20, + "swim": 50 + }, + "str": 24, + "dex": 11, + "con": 20, + "int": 19, + "wis": 15, + "cha": 17, + "save": { + "str": "+12", + "dex": "+5", + "con": "+10", + "int": "+9", + "wis": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning" + ], + "conditionImmune": [ + "frightened", + "paralyzed" + ], + "languages": [ + "Abyssal", + "Celestial", + "Infernal", + "Primordial", + "telepathy 60 ft. but can't speak" + ], + "cr": "14", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kraken can breathe air and water." + ] + }, + { + "name": "Freedom of Movement", + "entries": [ + "The kraken ignores {@quickref difficult terrain||3}, and magical effects can't reduce its speed or cause it to be {@condition restrained}. It can spend 5 feet of movement to escape from nonmagical restraints or being {@condition grappled}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kraken makes two tentacle attacks, each of which it can replace with a use of Fling." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d8 + 7}) piercing damage. If the target is a Medium or smaller creature {@condition grappled} by the kraken, that creature is swallowed and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the kraken, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the kraken's turns. One Medium or two smaller creatures can be swallowed at the same time.", + "If the kraken takes 35 damage or more on a single turn from a creature inside it, the kraken must succeed on a {@dc 23} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in spaces within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 20}). Until the grapple ends, the target is {@condition restrained}. The kraken has ten tentacles, each of which can grapple one target." + ] + }, + { + "name": "Fling", + "entries": [ + "One Medium or smaller object held or creature {@condition grappled} by the kraken is thrown up to 40 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 13} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ] + }, + { + "name": "Lightning Strike", + "entries": [ + "The kraken magically create a bolt of lightning, which can strike a target the kraken can see within 90 feet of it. The target must make a {@dc 18} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Tentacle Attack (Costs 2 Actions)", + "entries": [ + "The kraken makes one tentacle attack." + ] + }, + { + "name": "Fling", + "entries": [ + "The kraken uses Fling." + ] + }, + { + "name": "Ink Cloud (Costs 3 Actions)", + "entries": [ + "While underwater, the kraken expels an ink cloud in a 40-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than the kraken. Each creature other than the kraken that ends its turn there must succeed on a {@dc 18} Constitution saving throw, taking 11 ({@damage 2d10}) poison damage on a failed save or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of the kraken's next turn." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Swallow", + "Tentacles" + ], + "languageTags": [ + "AB", + "CE", + "CS", + "I", + "P", + "TP" + ], + "damageTags": [ + "A", + "B", + "I", + "L", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Koalinth", + "source": "GoS", + "page": 239, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30, + "swim": 20 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 11, + "wis": 10, + "cha": 11, + "save": { + "dex": "+2" + }, + "skill": { + "athletics": "+3", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1/2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The koalinth can breathe air and water." + ] + }, + { + "name": "Martial Advantage", + "entries": [ + "Once per turn, the koalinth can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the koalinth that isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Koalinth Sergeant", + "source": "GoS", + "page": 239, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 14, + "dex": 11, + "con": 12, + "int": 11, + "wis": 10, + "cha": 12, + "save": { + "dex": "+2", + "wis": "+2" + }, + "skill": { + "athletics": "+4", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Goblin" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The koalinth can breathe air and water." + ] + }, + { + "name": "Martial Advantage", + "entries": [ + "Once per turn, the sergeant can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the sergeant that isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sergeant makes two melee attacks with its trident." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Hooked Net", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 10/30 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target is {@condition restrained}. A creature can use its action to make a {@dc 12} Strength check to free itself or another creature in a hooked net, ending the effect on a success. Dealing 5 slashing damage to the net (AC 12) frees the target without harming it and destroys the net." + ] + } + ], + "reaction": [ + { + "name": "Spear the Helpless (2/Day)", + "entries": [ + "Whenever a creature within 30 feet of the sergeant becomes {@condition restrained}, the sergeant can move its speed toward the {@condition restrained} creature. If the sergeant ends its move within reach of the {@condition restrained} creature, it can make a melee attack against it." + ] + } + ], + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Krell Grohlg", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 92, + "_copy": { + "name": "Druid", + "source": "MM", + "_templates": [ + { + "name": "Half-Orc", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the druid", + "with": "Krell", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "2": [ + { + "replace": "{@spell animal messenger}", + "with": "{@spell flaming sphere}" + } + ] + } + } + } + }, + "alignment": [ + "C", + "E" + ], + "str": 18, + "languages": [ + "Common", + "Orc" + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 6} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, 8 ({@damage 1d8 + 4}) bludgeoning damage if wielded with two hands, or 6 ({@damage 1d8 + 2}) bludgeoning damage with {@spell shillelagh}." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "O" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kysh", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 240, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "triton" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 14, + "dex": 16, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "skill": { + "persuasion": "+4", + "survival": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Primordial" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kysh's spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He can cast the following spell, requiring only verbal components:" + ], + "daily": { + "1": [ + "{@spell fog cloud}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Kysh can breathe air and water." + ] + }, + { + "name": "Emissary of the Sea", + "entries": [ + "Kysh can communicate simple ideas with amphibious and water-breathing beasts. They understand the meaning of his words, but he cannot understand them in return." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Kysh makes two melee attacks with his spear." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft, one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "P" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Living Iron Statue", + "source": "GoS", + "page": 241, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48" + }, + "speed": { + "walk": 20 + }, + "str": 16, + "dex": 14, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison" + ], + "vulnerable": [ + "acid" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The statue is immune to any spell or effect that would alter its form." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The statue makes two attacks: one with its blade and one with its hammer." + ] + }, + { + "name": "Blade", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Hammer", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is knocked {@condition prone}." + ] + }, + { + "name": "Whirl {@recharge 5}", + "entries": [ + "The statue can use its action to spin at the waist, targeting creatures of its choice within 10 feet of it. Each target must make a {@dc 13} Dexterity saving throw, taking 19 ({@damage 3d10 + 3}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Immutable Form" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Lizardfolk Commoner", + "source": "GoS", + "page": 241, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 10, + "con": 12, + "int": 7, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+2", + "survival": "+3" + }, + "passive": 13, + "languages": [ + "Draconic" + ], + "cr": "1/4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The lizardfolk can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Lizardfolk Render", + "source": "GoS", + "page": 241, + "otherSources": [ + { + "source": "SLW" + }, + { + "source": "IMR" + } + ], + "size": [ + "L" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 16, + "dex": 10, + "con": 14, + "int": 7, + "wis": 12, + "cha": 7, + "skill": { + "athletics": "+5", + "perception": "+3", + "survival": "+5" + }, + "passive": 13, + "languages": [ + "Draconic" + ], + "cr": "3", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The render has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The render can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The render makes two attacks: one with its claws and one with its bite." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Rend the Field {@recharge 5}", + "entries": [ + "The render makes a claw attack against each creature of its choice within 10 feet of it. A creature hit by this attack must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lizardfolk Scaleshield", + "source": "GoS", + "page": 242, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 10, + "con": 14, + "int": 7, + "wis": 12, + "cha": 7, + "skill": { + "athletics": "+4", + "perception": "+3", + "survival": "+5" + }, + "passive": 13, + "languages": [ + "Draconic" + ], + "cr": "1", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The scaleshield can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scaleshield makes two melee attacks, each one with a different weapon." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Spiked Shield", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Shield Block", + "entries": [ + "If an ally within 5 feet of the scaleshield is hit by an attack, the scaleshield can reduce that attack's damage by half." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Lizardfolk Subchief", + "source": "GoS", + "page": 242, + "otherSources": [ + { + "source": "SLW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 14, + "dex": 12, + "con": 14, + "int": 10, + "wis": 16, + "cha": 12, + "save": { + "wis": "+5" + }, + "skill": { + "athletics": "+4", + "perception": "+5", + "survival": "+5" + }, + "passive": 15, + "languages": [ + "Draconic" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The subchief is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell purify food and drink}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell lesser restoration}", + "{@spell silence}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell bestow curse}", + "{@spell dispel magic}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The subchief can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Tooth Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Jaws of Semuanya {@recharge 5}", + "entries": [ + "The subchief invokes the primal magic of Semuanya, summoning a spectral maw around a target it can see within 60 feet of it. The target must make a {@dc 13} Dexterity saving throw, taking 22 ({@damage 5d8}) piercing damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw is also {@condition frightened} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "deafened", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Locathah", + "source": "GoS", + "page": 243, + "otherSources": [ + { + "source": "IMR" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "locathah" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 11, + "wis": 10, + "cha": 11, + "save": { + "dex": "+3" + }, + "skill": { + "athletics": "+3", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Aquan", + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "Leviathan Will", + "entries": [ + "The locathah has advantage on saving throws against being {@condition charmed}, {@condition frightened}, {@condition paralyzed}, {@condition poisoned}, {@condition stunned}, or put to sleep." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The locathah can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The locathah makes two melee attacks with its spear." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Locathah Hunter", + "source": "GoS", + "page": 243, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "locathah" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 13, + "dex": 14, + "con": 12, + "int": 11, + "wis": 14, + "cha": 11, + "save": { + "dex": "+4", + "wis": "+4" + }, + "skill": { + "athletics": "+3", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Aquan", + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "Leviathan Will", + "entries": [ + "The hunter has advantage on saving throws against spells and effects that control its actions." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The hunter can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hunter makes two attacks with its envenomed crossbow." + ] + }, + { + "name": "Envenomed Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ] + }, + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Master Refrum", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 165, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Refrum", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Maw of Sekolah", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 244, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d12 + 36" + }, + "speed": { + "walk": 0, + "swim": 50 + }, + "str": 21, + "dex": 12, + "con": 17, + "int": 2, + "wis": 14, + "cha": 7, + "save": { + "str": "+8", + "con": "+6" + }, + "skill": { + "athletics": "+8", + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Sahuagin", + "telepathy 100 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the maw of Sekolah fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The maw of Sekolah can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The maw of Sekolah makes one attack with its bite and one attack with its tail smash." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ] + }, + { + "name": "Tail Smash", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The maw of Sekolah makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Speed of Sekolah", + "entries": [ + "The maw of Sekolah moves up to its speed." + ] + }, + { + "name": "Feed (Costs 2 Actions)", + "entries": [ + "The ferocious spirit of Sekolah flashes through the water, tearing through the foes of the maw of Sekolah. Each creature of the maw's choosing within 60 feet of it must make a {@dc 16} Dexterity saving throw, taking 7 ({@damage 2d6}) slashing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Water Breathing" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Merfolk Salvager", + "source": "GoS", + "page": 244, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "merfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 12, + "dex": 14, + "con": 12, + "int": 11, + "wis": 10, + "cha": 13, + "save": { + "dex": "+4" + }, + "skill": { + "athletics": "+3", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Aquan", + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The salvager can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The salvager makes two attacks with its coral rapier." + ] + }, + { + "name": "Coral Rapier", + "entries": [ + "{@atk m} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Inject Toxin (2/Day)", + "entries": [ + "{@atk m} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the creature must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Merfolk Scout", + "source": "GoS", + "page": 216, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "Merfolk", + "source": "DMG" + } + ], + "_mod": { + "action": { + "mode": "removeArr", + "names": "Longbow" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "merfolk" + ] + }, + "alignment": [ + "C", + "E" + ], + "traitTags": [ + "Amphibious", + "Keen Senses" + ], + "languageTags": [ + "AQ", + "C", + "X" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Minotaur Living Crystal Statue", + "source": "GoS", + "page": 245, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 9, + "con": 16, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison" + ], + "vulnerable": [ + "force" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The statue is immune to any spell or effect that would alter its form." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The statue makes two attacks: one with its greataxe and one gore attack." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Flying Shards", + "entries": [ + "In response to a creature hitting the statue with a melee weapon attack, the statue deals 11 ({@damage 2d10}) piercing damage to the attacker." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Immutable Form" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Monstrous Peryton", + "source": "GoS", + "page": 245, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d10 + 51" + }, + "speed": { + "walk": 20, + "fly": 60 + }, + "str": 19, + "dex": 14, + "con": 16, + "int": 9, + "wis": 14, + "cha": 10, + "save": { + "str": "+8", + "dex": "+6", + "wis": "+6" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "understands Common and Elvish but can't speak" + ], + "cr": "11", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The peryton doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Keen Sight and Smell", + "entries": [ + "The peryton has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the peryton fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The peryton makes two attacks: one with its gore and one with its talons." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ] + }, + { + "name": "Warp Shadow", + "entries": [ + "The peryton chooses up to three creatures within 60 feet of it that it can see. Each creature must succeed on a {@dc 14} Wisdom saving throw or become cursed. While cursed, whenever the creature makes an attack roll, an ability check, or a saving throw, it must roll a {@dice d4} and subtract that number from the roll. A cursed creature can repeat this saving throw at the end of each of its turns, ending the effect on itself with a success. A creature that succeeds on this saving throw is immune to this peryton's Warp Shadow for 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The peryton makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Talons Attack", + "entries": [ + "The peryton makes one attack with its talons." + ] + }, + { + "name": "Dive Attack (Costs 2 Actions)", + "entries": [ + "The peryton moves up to its speed toward one target of its choosing. It then makes a gore attack that deals an extra 9 ({@damage 2d8}) piercing damage on a hit." + ] + } + ], + "traitTags": [ + "Flyby", + "Keen Senses", + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "E" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mr. Dory", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 246, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 20, + "con": 19, + "int": 14, + "wis": 14, + "cha": 16, + "save": { + "con": "+8", + "wis": "+6" + }, + "skill": { + "athletics": "+5", + "perception": "+6", + "stealth": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "immune": [ + "necrotic" + ], + "languages": [ + "Abyssal", + "Common", + "Deep Speech", + "telepathy 60 ft." + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Mr. Dory's innate spellcasting ability is Charisma (save {@dc 15}, {@hit 7} to hit with spell attacks). Mr. Dory can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell invisibility} (self only)" + ], + "daily": { + "2e": [ + "{@spell fear}", + "{@spell fireball}", + "{@spell fly}" + ], + "1e": [ + "{@spell cloudkill}", + "{@spell etherealness}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "Mr. Dory has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Water Dependency", + "entries": [ + "Mr. Dory takes 6 ({@damage 1d12}) acid damage at the end of every hour he goes without exposure to water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Mr. Dory makes three attacks with his rapier." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage and 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Eye of Corruption {@recharge 5}", + "entries": [ + "Mr. Dory glares at a creature he can see within 30 feet of him. The target must make a {@dc 15} Constitution saving throw. On a failed save, it takes 27 ({@damage 5d10}) necrotic damage and 27 ({@damage 5d10}) poison damage and then gains vulnerability to both necrotic and poison damage for 1 minute. On a successful save, it takes half damage and does not gain the vulnerabilities." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DS", + "TP" + ], + "damageTags": [ + "A", + "I", + "N", + "P" + ], + "damageTagsSpell": [ + "F", + "I", + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oceanus", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 246, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 12, + "con": 16, + "int": 11, + "wis": 12, + "cha": 10, + "save": { + "con": "+5" + }, + "skill": { + "athletics": "+4", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Aquan", + "Elvish" + ], + "cr": "1/2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Oceanus can breathe air and water." + ] + }, + { + "name": "Friend of the Sea", + "entries": [ + "Using gestures and sounds, Oceanus can communicate simple ideas with any beast that has an innate swimming speed." + ] + } + ], + "action": [ + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "light crossbow|phb", + "trident|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AQ", + "E" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Othokent", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 81, + "_copy": { + "name": "Lizard Queen", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the lizardfolk", + "with": "Othokent", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "languages": [ + "Common", + "Abyssal", + "Draconic" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "hasToken": true + }, + { + "name": "Pirate Bosun", + "source": "GoS", + "page": 247, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 13, + "int": 11, + "wis": 10, + "cha": 13, + "skill": { + "athletics": "+5", + "intimidation": "+3" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Cargo Hauler", + "entries": [ + "The bosun has advantage on Strength checks." + ] + }, + { + "name": "Sea Legs", + "entries": [ + "The bosun has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Light Hammer", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + }, + { + "name": "Hook", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 13})." + ] + } + ], + "attachedItems": [ + "light hammer|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Pirate Captain", + "source": "GoS", + "page": 247, + "reprintedAs": [ + "Pirate Captain|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 11, + "wis": 10, + "cha": 14, + "skill": { + "athletics": "+5", + "intimidation": "+4" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "2", + "trait": [ + { + "name": "Flourish", + "entries": [ + "The captain adds its Charisma modifier to the damage roll for its longsword attacks (included in the attack)." + ] + }, + { + "name": "Sea Legs", + "entries": [ + "The captain has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The captain makes two attacks: one with its hand crossbow and one with its longsword." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage if used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Shape Up, Ye Dog (2/Day)", + "entries": [ + "Whenever a friendly creature within 30 feet of the captain that can hear it misses with an attack, the captain can yell perilous threats to allow that creature to reroll the attack roll." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Pirate Deck Wizard", + "source": "GoS", + "page": 248, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 14, + "int": 16, + "wis": 13, + "cha": 11, + "skill": { + "arcana": "+5", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deck wizard is a 4th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell fog cloud}", + "{@spell mage armor}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell Melf's acid arrow}", + "{@spell misty step}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Sea Legs", + "entries": [ + "The deck wizard has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "C", + "L" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Pirate First Mate", + "source": "GoS", + "page": 248, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 13, + "skill": { + "athletics": "+4", + "intimidation": "+3" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1", + "trait": [ + { + "name": "Sea Legs", + "entries": [ + "The first mate has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The first mate makes two attacks with its longsword." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands. If the target is a creature, the first mate can choose to deal no damage with the attack to disarm the target. The target must succeed on a {@dc 14} Strength saving throw or drop one item it is holding on the ground." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Rip Tide Priest", + "source": "GoS", + "page": 248, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 11, + "cha": 16, + "skill": { + "deception": "+5", + "religion": "+2", + "stealth": "+2" + }, + "passive": 10, + "languages": [ + "Aquan", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell sleet storm}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "C", + "N", + "O" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sahuagin Blademaster", + "source": "GoS", + "page": 249, + "otherSources": [ + { + "source": "SDW" + }, + { + "source": "LR" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 16, + "dex": 12, + "con": 14, + "int": 12, + "wis": 11, + "cha": 12, + "save": { + "str": "+6", + "con": "+5" + }, + "skill": { + "athletics": "+6", + "intimidation": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "languages": [ + "Sahuagin" + ], + "cr": "6", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The blademaster has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The blademaster can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The blademaster can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blademaster makes three attacks with its wavecutter blade, or one attack with its bite and two with its claws." + ] + }, + { + "name": "Wavecutter Blade", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sahuagin Champion", + "source": "GoS", + "page": 249, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 16, + "dex": 14, + "con": 12, + "int": 12, + "wis": 13, + "cha": 9, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Sahuagin" + ], + "cr": "3", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The champion has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The champion can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The champion can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes three attacks with its spear, or one attack with its bite and two with its claws." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sahuagin Coral Smasher", + "source": "GoS", + "page": 249, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 16, + "dex": 12, + "con": 12, + "int": 12, + "wis": 13, + "cha": 9, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Sahuagin" + ], + "cr": "1", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The coral smasher has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The coral smasher can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The coral smasher can magically command any shark within 120 feet of it, using a limited telepathy." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The coral smasher deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The coral smasher makes two attacks with its warhammer, or one attack with its bite and one with its claws." + ] + }, + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ] + } + ], + "attachedItems": [ + "warhammer|phb" + ], + "traitTags": [ + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sahuagin Deep Diver", + "source": "GoS", + "page": 250, + "otherSources": [ + { + "source": "LR" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 14, + "dex": 16, + "con": 15, + "int": 12, + "wis": 13, + "cha": 9, + "save": { + "con": "+4", + "wis": "+3" + }, + "skill": { + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Sahuagin" + ], + "cr": "4", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The deep diver has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Brine Lurker", + "entries": [ + "The deep diver has advantage on Dexterity ({@skill Stealth}) checks made while submerged in water." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The deep diver can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Lure", + "entries": [ + "The deep diver can cause its lure to light up or darken at will. While the lure is lit, the deep diver sheds bright light in a 30-foot radius centered on itself and dim light for an additional 20 feet." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The deep diver can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deep diver makes two attacks with its glaive, or one attack with its bite and two with its claws." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d10 + 2}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ] + }, + { + "name": "Light of Sekolah", + "entries": [ + "The deep diver pulses magical light from its lure. Any creature within 30 feet of the deep diver that can see the light must succeed on a {@dc 11} Wisdom saving throw or be {@condition charmed} until the end of its next turn. A creature {@condition charmed} in this way is {@condition incapacitated} as it stares at the light." + ] + } + ], + "attachedItems": [ + "glaive|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sahuagin Hatchling Swarm", + "source": "GoS", + "page": 250, + "otherSources": [ + { + "source": "LR" + } + ], + "size": [ + "L" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 52, + "formula": "8d10 + 8" + }, + "speed": { + "walk": 0, + "swim": 40 + }, + "str": 9, + "dex": 18, + "con": 12, + "int": 3, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "3", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The swarm has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Seething", + "entries": [ + "Once it enters combat, the swarm deals 10 slashing damage to itself at the end of its turn if it did not make an attack on that turn. This damage ignores resistance, and it cannot reduce the swarm to 0 hit points." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and it can move through any opening large enough for a Tiny creature. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The swarm can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 0 ft., one creature in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sahuagin High Priestess", + "source": "GoS", + "page": 251, + "otherSources": [ + { + "source": "SDW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 14, + "dex": 12, + "con": 14, + "int": 12, + "wis": 16, + "cha": 10, + "save": { + "wis": "+6" + }, + "skill": { + "insight": "+6", + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Sahuagin" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The high priestess is a 7th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell detect magic}", + "{@spell guiding bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon} (trident)" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell fear}", + "{@spell mass healing word}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell banishment}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The high priestess has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The high priestess can breathe air and water, but she needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The high priestess can magically command any shark within 120 feet of her, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The high priestess makes two attacks with her toothsome staff, or one attack with her bite and one with her claws." + ] + }, + { + "name": "Toothsome Staff", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sahuagin Wave Shaper", + "source": "GoS", + "page": 251, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 10, + "dex": 12, + "con": 12, + "int": 16, + "wis": 14, + "cha": 12, + "save": { + "int": "+6" + }, + "skill": { + "arcana": "+6", + "intimidation": "+4", + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Sahuagin" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The wave shaper's spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can cast the following spells, requiring only verbal components:" + ], + "will": [ + "{@spell message}" + ], + "daily": { + "1": [ + "{@spell comprehend languages}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The wave shaper has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The wave shaper can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The wave shaper can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wave shaper makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) piercing damage plus 13 ({@damage 3d8}) cold damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) slashing damage plus 13 ({@damage 3d8}) cold damage." + ] + }, + { + "name": "Whirlpool (1/Day)", + "entries": [ + "The wave shaper targets a body of water at least 50 feet square and 25 feet deep, causing a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, 25 feet tall, and lasts for 1 minute or until the wave shaper is {@condition incapacitated}. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by succeeding on a {@dc 14} Strength ({@skill Athletics}) check.", + "When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a {@dc 14} Strength saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) bludgeoning damage and is caught in the vortex until it ends. On a success, the creature takes half damage and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but it has disadvantage on the Strength ({@skill Athletics}) check to do so.", + "The first time each turn that an object enters the vortex, the object takes 9 ({@damage 2d8}) bludgeoning damage. This damage occurs each round it remains in the vortex." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sanbalet", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 252, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 11, + "int": 16, + "wis": 13, + "cha": 14, + "skill": { + "arcana": "+5" + }, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sanbalet is a 3rd-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell dancing lights}", + "{@spell minor illusion}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell color spray}", + "{@spell magic missile}", + "{@spell silent image}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell magic mouth}", + "{@spell scorching ray}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sauriv", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 79, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Lizardfolk", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Sauriv", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "wis": 18, + "skill": { + "deception": "+7", + "insight": "+6", + "persuasion": "+7" + }, + "passive": 14, + "languages": [ + "Common", + "Draconic" + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "C", + "DR" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Shell Shark", + "source": "GoS", + "page": 252, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "shell plate armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 0, + "swim": 40 + }, + "str": 15, + "dex": 12, + "con": 14, + "int": 3, + "wis": 10, + "cha": 7, + "save": { + "str": "+6" + }, + "skill": { + "athletics": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "cr": "2", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The shark has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The shark can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shark makes two bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Water Breathing" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Skeletal Alchemist", + "source": "GoS", + "page": 253, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 13, + "con": 15, + "int": 14, + "wis": 10, + "cha": 9, + "skill": { + "arcana": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands all languages it knew in life but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The skeletal alchemist has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skeletal alchemist makes two Lob Acid attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft. one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + }, + { + "name": "Lob Acid", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d8 + 1}) acid damage." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "A", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skeletal Juggernaut", + "source": "GoS", + "page": 253, + "otherSources": [ + { + "source": "IMR" + } + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "armor scraps" + ] + } + ], + "hp": { + "average": 142, + "formula": "19d10 + 38" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 15, + "int": 6, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "cr": "5", + "trait": [ + { + "name": "Disassemble", + "entries": [ + "If the juggernaut is reduced to 0 hit points, twelve skeletons rise from its remains." + ] + }, + { + "name": "Falling Apart", + "entries": [ + "If the juggernaut does not have all of its hit points at the start of its turn, it loses 10 hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The juggernaut makes two claws attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ] + }, + { + "name": "Avalanche of Bones {@recharge 5}", + "entries": [ + "The juggernaut collapses into a large heap before quickly reforming. Each creature within 10 feet of the juggernaut must make a {@dc 14} Dexterity saving throw, taking 18 ({@damage 4d8}) bludgeoning damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw is also knocked {@condition prone}." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Skeletal Swarm", + "source": "GoS", + "page": 254, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "IMR" + } + ], + "size": [ + "L" + ], + "type": { + "type": "undead", + "swarmSize": "M" + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "armor scraps" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 15, + "int": 6, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "slashing", + "piercing" + ], + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "2", + "trait": [ + { + "name": "Deafening Clatter", + "entries": [ + "Creatures are {@condition deafened} while in the swarm's space." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Small humanoid. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Slash", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}11 ({@damage 2d8 + 2}) slashing damage, or 6 ({@damage 1d8 + 2}) slashing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Skum", + "source": "GoS", + "page": 254, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 19, + "dex": 11, + "con": 18, + "int": 7, + "wis": 12, + "cha": 9, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "psychic" + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 60 ft." + ], + "cr": "5", + "trait": [ + { + "name": "Abolethic Vassal", + "entries": [ + "The skum is permanently {@condition charmed} by its aboleth master." + ] + }, + { + "name": "Amphibious", + "entries": [ + "The skum can breathe air and water." + ] + }, + { + "name": "Psychic Conditioning", + "entries": [ + "The skum is immune to the {@condition frightened} and {@condition charmed} conditions unless they are from effects created by an aboleth." + ] + }, + { + "name": "Water Dependency", + "entries": [ + "The skum takes 6 ({@damage 1d12}) acid damage every 10 minutes it goes without exposure to water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skum makes three attacks: two with its trident and one with its Mind-Breaking Touch." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Mind-Breaking Touch", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d8}) psychic damage, and the target has disadvantage on Wisdom saving throws until the end of the skum's next turn." + ] + } + ], + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "TP" + ], + "damageTags": [ + "A", + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thousand Teeth", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 256, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 30, + "swim": 50 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 2, + "wis": 10, + "cha": 7, + "save": { + "str": "+7", + "con": "+6" + }, + "skill": { + "athletics": "+7", + "stealth": "+3" + }, + "passive": 10, + "cr": "6", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "Thousand Teeth can hold its breath for 30 minutes." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Thousand Teeth fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Thousand Teeth makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "Thousand Teeth makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Lunge", + "entries": [ + "Thousand Teeth moves up to half its speed." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "Thousand Teeth makes a bite attack." + ] + } + ], + "traitTags": [ + "Hold Breath", + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampiric Jade Statue", + "source": "GoS", + "page": 256, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison" + ], + "vulnerable": [ + "force" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The statue is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the statue fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The statue makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, that creature becomes cursed by the statue. The curse lasts for 10 minutes. While the creature is cursed, the statue has advantage on all attacks against it." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "legendary": [ + { + "name": "Bite", + "entries": [ + "The statue makes one bite attack." + ] + }, + { + "name": "Blood Reaper", + "entries": [ + "All creatures currently cursed by the statue and within 20 feet of it take 5 necrotic damage." + ] + }, + { + "name": "Move", + "entries": [ + "The statue moves up to its speed without provoking opportunity attacks." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Yalaga Maladwyn", + "isNpc": true, + "isNamedCreature": true, + "source": "GoS", + "page": 226, + "_copy": { + "name": "Drow Priestess of Lolth", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Yalaga", + "flags": "i" + }, + "trait": { + "mode": "removeArr", + "names": "Fey Ancestry" + }, + "action": { + "mode": "removeArr", + "names": "Summon Demon (1/Day)" + } + } + }, + "type": "undead", + "traitTags": [ + "Sunlight Sensitivity" + ], + "damageTags": [ + "I", + "P" + ], + "hasToken": true + }, + { + "name": "Apprentice", + "source": "HoL", + "page": 201, + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + 10 + ], + "hp": { + "average": 7, + "formula": "2d8 - 2" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 10, + "con": 9, + "int": 13, + "wis": 11, + "cha": 12, + "save": { + "int": "+3" + }, + "skill": { + "arcana": "+3", + "history": "+3" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "pbNote": "+2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "You cast one of the following wizard spells (spell save {@dc 11}), using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell minor illusion}", + { + "entry": "{@spell Fire Bolt}", + "hidden": true + } + ], + "daily": { + "2": [ + "{@spell grease}" + ], + "2e": [ + { + "entry": "{@spell Burning Hands}", + "hidden": true + } + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Burning Hands (1st-Level Spell; 2/Day)", + "entries": [ + "You shoot forth a 15-foot cone of fire. Each creature in that area must make a {@dc 11} Dexterity saving throw. A creature takes 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one The fire ignites any flammable objects in the area that aren't being worn or carried." + ] + }, + { + "name": "Fire Bolt (Cantrip)", + "entries": [ + "{@atk rs} Ranged Spell Attack: {@hit 3} to hit, range 120 ft., one target. {@h}5 ({@damage 1d10}) fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "F" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Disciple", + "source": "HoL", + "page": 201, + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + { + "ac": 11, + "from": [ + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 9, + "con": 10, + "int": 11, + "wis": 13, + "cha": 9, + "save": { + "wis": "+3" + }, + "skill": { + "perception": "+3", + "religion": "+2" + }, + "passive": 13, + "languages": [ + "any one language (usually Common)" + ], + "pbNote": "+2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "You cast one the following cleric spells (spell save {@dc 11}), using Wisdom as the spellcasting ability:" + ], + "will": [ + "{@spell guidance}", + { + "entry": "{@spell Sacred Flame}", + "hidden": true + } + ], + "daily": { + "2": [ + "{@spell cure wounds}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + }, + { + "name": "Sacred Flame (Cantrip)", + "entries": [ + "You target one creature you can see within 60 feet of you. The target must succeed on a {@dc 11} Dexterity saving throw or take 4 ({@damage 1d8}) radiant damage. The target gains no benefit from cover for this saving throw." + ] + } + ], + "attachedItems": [ + "mace|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Sneak", + "source": "HoL", + "page": 201, + "size": [ + "S" + ], + "type": "humanoid", + "ac": [ + { + "ac": 13, + "from": [ + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 13, + "con": 12, + "int": 11, + "wis": 12, + "cha": 9, + "save": { + "dex": "+3" + }, + "skill": { + "sleight of hand": "+3", + "stealth": "+3" + }, + "passive": 11, + "languages": [ + "any one language (usually Common)" + ], + "pbNote": "+2", + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Disengage", + "entries": [ + "You take the Disengage action." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Squire", + "source": "HoL", + "page": 201, + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + { + "ac": 12, + "from": [ + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 10, + "con": 12, + "int": 8, + "wis": 11, + "cha": 9, + "save": { + "str": "+3" + }, + "skill": { + "athletics": "+3" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "pbNote": "+2", + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ] + } + ], + "bonus": [ + { + "name": "Shove", + "entries": [ + "While wielding a shield, you try to shove one creature within 5 feet of you." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Ambush Drake", + "source": "HotDQ", + "page": 88, + "otherSources": [ + { + "source": "ToD", + "page": 180 + } + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d6 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 15, + "con": 14, + "int": 4, + "wis": 11, + "cha": 6, + "skill": { + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "poison" + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "cr": "1/2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The drake has advantage on an attack roll against a creature if at least one of the drake's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Surprise Attack", + "entries": [ + "If the drake surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 ({@damage 2d6}) damage from the attack." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Azbara Jos", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 88, + "otherSources": [ + { + "source": "ToD", + "page": 180 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 16, + "con": 14, + "int": 16, + "wis": 13, + "cha": 11, + "save": { + "int": "+5", + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "deception": "+2", + "insight": "+3", + "stealth": "+5" + }, + "passive": 11, + "languages": [ + "Common", + "Draconic", + "Infernal", + "Primordial", + "Thayan" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Azbara is a 6th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Azbara has the following spells prepared from the wizard spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell fog cloud}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell misty step}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Azbara has two {@item spell scroll (1st level)||scrolls} of {@spell mage armor}." + ] + }, + { + "name": "Potent Cantrips", + "entries": [ + "When Azbara casts an evocation Cantrips and misses, or the target succeeds on its saving throw, the target still takes half the cantrip's damage but suffers no other effect." + ] + }, + { + "name": "Sculpt Spells", + "entries": [ + "When Azbara casts an evocation spell that affects other creatures that he can see, he can choose a number of them equal to 1+the spell's level to succeed on their saving throws against the spell. Those creatures take no damage if they would normally take half damage from the spell." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "DR", + "I", + "OTH", + "P" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "F", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Blagothkus", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 89, + "otherSources": [ + { + "source": "ToD", + "page": 181 + } + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "cloud giant" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 13, + "con": 20, + "int": 16, + "wis": 15, + "cha": 15, + "save": { + "con": "+9", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+7", + "insight": "+6", + "intimidation": "+6", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Common", + "Draconic", + "Giant" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Blagothkus can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell fog cloud}", + "{@spell levitate}" + ] + } + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Blagothkus is a 5th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Blagothkus has the following spells prepared from the wizard spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell misty step}", + "{@spell shatter}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell fly}", + "{@spell lightning bolt}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "Blagothkus has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Blagothkus attacks twice with his morningstar." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "GI" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Captain Othelstan", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 89, + "otherSources": [ + { + "source": "ToD", + "page": 181 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item splint armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 10, + "con": 16, + "int": 13, + "wis": 14, + "cha": 12, + "save": { + "str": "+7", + "con": "+6" + }, + "skill": { + "athletics": "+7", + "intimidation": "+7", + "perception": "+5", + "religion": "+4" + }, + "passive": 15, + "languages": [ + "Common", + "Draconic", + "Giant" + ], + "cr": "5", + "trait": [ + { + "name": "Action Surge (Recharges on a Short or Long Rest)", + "entries": [ + "On his turn, Othelstan can take one additional action." + ] + }, + { + "name": "Tiamat's Blessing of Retribution", + "entries": [ + "When Othelstan takes damage that reduces him to 0 hit points, he immediately regains 20 hit points. If he has 20 hit points or fewer at the end of his next turn, he dies." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Othelstan attacks twice with his flail or spear, or makes two ranged attacks with his spears." + ] + }, + { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "flail|phb", + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Dragonclaw", + "source": "HotDQ", + "page": 89, + "otherSources": [ + { + "source": "RoT", + "page": 89 + }, + { + "source": "ToD", + "page": 182 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 16, + "con": 13, + "int": 11, + "wis": 10, + "cha": 12, + "save": { + "wis": "+2" + }, + "skill": { + "deception": "+3", + "stealth": "+5" + }, + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "trait": [ + { + "name": "Dragon Fanatic", + "entries": [ + "The dragonclaw has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonclaw can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonclaw ignores the effects of being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Fanatic Advantage", + "entries": [ + "Once per turn, if the dragonclaw makes a weapon attack with advantage on the attack roll and hits, it deals an extra 7 ({@damage 2d6}) damage." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The dragonclaw has advantage on an attack roll against a creature if at least one of the dragonclaw's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonclaw attacks twice with its scimitar." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Dragonwing", + "source": "HotDQ", + "page": 90, + "otherSources": [ + { + "source": "RoT", + "page": 89 + }, + { + "source": "ToD", + "page": 183 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 13, + "int": 11, + "wis": 11, + "cha": 13, + "save": { + "wis": "+2" + }, + "skill": { + "deception": "+3", + "stealth": "+5" + }, + "passive": 10, + "resist": [ + { + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "preNote": "one of the following:" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "2", + "trait": [ + { + "name": "Dragon Fanatic", + "entries": [ + "The dragonwing has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonwing can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonwing ignores the effects of being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Fanatic Advantage", + "entries": [ + "Once per turn, if the dragonwing makes a weapon attack with advantage on the attack roll and hits, the target takes an extra 7 ({@damage 2d6}) damage." + ] + }, + { + "name": "Limited Flight", + "entries": [ + "The dragonwing can use a bonus action to gain a flying speed of 30 feet until the end of its turn." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The dragonwing has advantage on an attack roll against a creature if at least one of the dragonwing's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragonwing attacks twice with its scimitar." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 3 ({@damage 1d6}) damage of the type to which the cultist has resistance." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Dralmorrer Borngray", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 90, + "otherSources": [ + { + "source": "ToD", + "page": 184 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "elf", + "prefix": "High" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 16, + "wis": 10, + "cha": 8, + "save": { + "str": "+6", + "con": "+4" + }, + "skill": { + "arcana": "+5", + "deception": "+1", + "insight": "+2", + "perception": "+2", + "religion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Bullywug", + "Draconic", + "Elvish", + "Goblin", + "Sylvan" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Dralmorrer is a 7th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Dralmorrer has the following spells prepared from the wizard spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell longstrider}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell magic weapon}", + "{@spell misty step}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Dralmorrer has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "War Magic", + "entries": [ + "When Dralmorrer uses his action to cast a cantrip, he can also take a bonus action to make one weapon attack." + ] + }, + { + "name": "Weapon Bond", + "entries": [ + "Provided his longsword is on the same plane Dralmorrer can take a bonus action to teleport it to his hand." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Dralmorrer attacks twice, either with his longsword or dagger." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "longsword|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "GO", + "OTH", + "S" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "F", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Four-Armed Troll", + "source": "HotDQ", + "page": 65, + "otherSources": [ + { + "source": "ToD", + "page": 81 + } + ], + "_copy": { + "name": "Troll", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The troll attacks five times, once with its bite and four times with its claws. If two or more claws hit the same target, the troll rends the target, dealing an extra {@damage 2d6} slashing damage." + ] + } + } + } + }, + "cr": "6", + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frulam Mondath", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 90, + "otherSources": [ + { + "source": "ToD", + "page": 184 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 13, + "int": 11, + "wis": 18, + "cha": 15, + "save": { + "wis": "+6", + "cha": "+4" + }, + "skill": { + "deception": "+4", + "history": "+2", + "religion": "+2" + }, + "passive": 14, + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Frulam is a 5th-level spellcaster that uses Wisdom as her spellcasting ability (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Frulam has the following spells prepared from the cleric spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell healing word}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell mass healing word}", + "{@spell spirit guardians}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Frulam attacks twice with her halberd." + ] + }, + { + "name": "Halberd", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage." + ] + } + ], + "attachedItems": [ + "halberd|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "I" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Golden Stag", + "source": "HotDQ", + "page": 35, + "otherSources": [ + { + "source": "ToD", + "page": 51 + } + ], + "_copy": { + "name": "Elk", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Guard Drake", + "source": "HotDQ", + "page": 91, + "otherSources": [ + { + "source": "RoT", + "page": 90 + }, + { + "source": "ToD", + "page": 185 + } + ], + "reprintedAs": [ + "Guard Drake|MPMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 4, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "lightning" + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drake attacks twice, once with its bite and once with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard-drake.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Jamna Gleamsilver", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 91, + "otherSources": [ + { + "source": "ToD", + "page": 185 + } + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d6 + 8" + }, + "speed": { + "walk": 25 + }, + "str": 8, + "dex": 17, + "con": 14, + "int": 15, + "wis": 10, + "cha": 12, + "save": { + "dex": "+5", + "int": "+4" + }, + "skill": { + "acrobatics": "+5", + "deception": "+3", + "insight": "+2", + "perception": "+4", + "persuasion": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Gnomish", + "Goblin", + "Sylvan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Jamna is a 4th-level spellcaster that uses Intelligence as her spellcasting ability (spell save {@dc 12}, {@hit 4} to hit with spell attacks). Jamna has the following spells prepared from the wizard spell list." + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell charm person}", + "{@spell color spray}", + "{@spell disguise self}", + "{@spell longstrider}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "Jamna can take a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Gnome Cunning", + "entries": [ + "Jamna has advantage on Intelligence, Wisdom and Charisma saving throws against magic." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jamna attacks twice with her shortswords." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 9 ({@damage 1d6 + 3}) plus ({@damage 1d6}) piercing damage if the target is Medium or larger." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "G", + "GO", + "S" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Langdedrosa Cyanwrath", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 91, + "otherSources": [ + { + "source": "ToD", + "page": 186 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-dragon" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 57, + "formula": "6d12 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 13, + "con": 16, + "int": 10, + "wis": 14, + "cha": 12, + "save": { + "str": "+6", + "con": "+5" + }, + "skill": { + "athletics": "+6", + "intimidation": "+3", + "perception": "+4" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "4", + "trait": [ + { + "name": "Action Surge (Recharges on a Short or Long Rest)", + "entries": [ + "On his turn, Langdedrosa can take one additional action." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "Langdedrosa's weapon attacks score a critical hit on a roll of 19 or 20." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Langdedrosa attacks twice, either with his greatsword or spear." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "Langdedrosa breathes lightning in a 30-foot line that is 5 feet wide. Each creature in the line must make a {@dc 13} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "spear|phb" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "L", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Leosin Erlanthar", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 87, + "otherSources": [ + { + "source": "ToD", + "page": 34 + } + ], + "_copy": { + "name": "Martial Arts Adept", + "source": "VGM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "5etools Note", + "entries": [ + "Leosin Erlanthar is presented in {@adventure Hoard of the Dragon Queen|HotDQ} as a half-elf monk. The {@creature martial arts adept|vgm} stat block from {@book Volo's Guide to Monsters|VGM} has been provided here for ease of use." + ] + } + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Linan Swift", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 8, + "otherSources": [ + { + "source": "ToD", + "page": 24 + } + ], + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hp": { + "average": 8, + "formula": "1d8" + }, + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "THW" + ], + "hasToken": true + }, + { + "name": "Ontharr Frume", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 28, + "otherSources": [ + { + "source": "ToD", + "page": 15 + } + ], + "_copy": { + "name": "War Priest", + "source": "VGM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "5etools Note", + "entries": [ + "Ontharr Frume is presented in {@adventure Hoard of the Dragon Queen|HotDQ} and The {@adventure Rise of Tiamat|RoT} as a lawful good, human paladin of Torm. The {@creature war priest|vgm} stat block from {@book Volo's Guide to Monsters|VGM} has been provided here for ease of use." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Pharblex Spattergoo", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 91, + "otherSources": [ + { + "source": "ToD", + "page": 187 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bullywug" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d8 + 28" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 15, + "dex": 12, + "con": 18, + "int": 11, + "wis": 16, + "cha": 7, + "save": { + "str": "+4", + "con": "+6" + }, + "skill": { + "perception": "+5", + "religion": "+2", + "stealth": "+3" + }, + "passive": 15, + "languages": [ + "Common", + "Bullywug" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Pharblex is a 6th-level spellcaster that uses Wisdom as his spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Pharblex has the following spells prepared from the druid spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell poison spray}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell healing word}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell beast sense}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell plant growth}", + "{@spell water walk}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Pharblex can breathe air and water." + ] + }, + { + "name": "Poison Strike (3/Day)", + "entries": [ + "Once per turn, when Pharblex hits with a melee attack, he can expend a use of this trait to deal an extra 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "As part of his movement and without a running start, Pharblex can long jump up to 20 feet and high jump up to 10 feet." + ] + }, + { + "name": "Swamp Camouflage", + "entries": [ + "Pharblex has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Pharblex attacks twice. Once with his bite and once with his spear." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit. reach 5 ft. or ranged 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Amphibious", + "Camouflage" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "I", + "P", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Raggnar Redtooth", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 74, + "otherSources": [ + { + "source": "ToD", + "page": 90 + } + ], + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Raggnar", + "flags": "i" + } + } + }, + "ac": [ + 11 + ], + "hasToken": true + }, + { + "name": "Rath Modar", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 92, + "otherSources": [ + { + "source": "RoT", + "page": 91 + }, + { + "source": "ToD", + "page": 188 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 14, + "int": 18, + "wis": 14, + "cha": 10, + "save": { + "int": "+7", + "wis": "+5" + }, + "skill": { + "arcana": "+7", + "deception": "+3", + "insight": "+5", + "stealth": "+6" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Infernal", + "Primordial", + "Thayan" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Rath is an 11th-level spellcaster who uses Intelligence as his spellcasting ability (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Rath has the following spells prepared from the wizard spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell color spray}", + "{@spell mage armor}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell phantasmal force}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell major image}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell greater invisibility}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell mislead}", + "{@spell seeming}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell globe of invulnerability}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Rath has a {@item staff of fire}, and scrolls of {@spell dimension door}, {@spell feather fall}, and {@spell fireball}." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Illusory Self (Recharges on a Short or Long Rest)", + "entries": [ + "When a creature Rath can see makes an attack roll against him, he can interpose an illusory duplicate between the attacker and him. The attack automatically misses Rath, then the illusion dissipates." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "DR", + "I", + "OTH", + "P" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "O", + "T", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Rezmir", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 93, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToD", + "page": 180 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-black dragon" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 13, + { + "ac": 15, + "condition": "with the Black Dragon Mask", + "braces": true + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 16, + "con": 16, + "int": 15, + "wis": 12, + "cha": 14, + "save": { + "dex": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+5", + "stealth": "+9" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "passive": 11, + "immune": [ + "acid" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Draconic", + "Infernal", + "Giant", + "Netherese" + ], + "cr": "7", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Rezmir has the {@item Black Dragon Mask|hotdq}, {@item Hazirawn|hotdq}, and an {@item insignia of claws|hotdq}." + ] + }, + { + "name": "Amphibious", + "entries": [ + "Rezmir can breathe air and water." + ] + }, + { + "name": "Dark Advantage", + "entries": [ + "Once per turn, Rezmir can deal an extra 10 ({@damage 3d6}) damage when she hits with a weapon attack, provided Rezmir has advantage on the attack roll." + ] + }, + { + "name": "Draconic Majesty", + "entries": [ + "While wearing no armor and wearing the Black Dragon Mask, Rezmir adds her Charisma bonus to her AC (included)." + ] + }, + { + "name": "Immolation", + "entries": [ + "When Rezmir is reduced to 0 hit points, her body disintegrates into a pile of ash." + ] + }, + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If Rezmir fails a saving throw while wearing the Black Dragon Mask, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Greatsword (Hazirawn)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) necrotic damage. If the target is a creature, it can't regain hit points for 1 minute. The target can make a {@dc 15} Constitution saving throw at the end of each of its turns, ending this effect early on a success." + ] + }, + { + "name": "Caustic Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 90 ft., one target. {@h}18 ({@damage 4d8}) acid damage." + ] + }, + { + "name": "Acid Breath {@recharge 5}", + "entries": [ + "Rezmir breathes acid in a 30-foot line that is 5 feet wide. Each creature in the line must make a {@dc 14} Dexterity saving throw, taking 22 ({@damage 5d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendaryHeader": [ + "If she is wearing the Black Dragon Mask, Rezmir can take up to two legendary actions between each of her turns, taking the actions all at once or spreading them over the round. A legendary action can be taken only at the start or end of a turn." + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Darkness (Costs 2 Actions)", + "entries": [ + "A 15-foot radius of magical darkness extends from a point Rezmir can see within 60 feet of her and spreads around corners. The darkness lasts as long as Rezmir maintains {@status concentration}, up to 1 minute. A creature with darkvision can't see through this darkness, and no natural light can illuminate it. If any of the area overlaps with a area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled." + ] + }, + { + "name": "Melee Attack", + "entries": [ + "Rezmir makes one melee attack." + ] + }, + { + "name": "Hide", + "entries": [ + "Rezmir takes the Hide action." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "DR", + "GI", + "I", + "OTH" + ], + "damageTags": [ + "A", + "N", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sandesyl Morgia", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 81, + "otherSources": [ + { + "source": "ToD", + "page": 98 + } + ], + "_copy": { + "name": "Vampire", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Sandesyl", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Talis the White", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 93, + "otherSources": [ + { + "source": "ToD", + "page": 189 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item +1 scale mail}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 14, + "int": 10, + "wis": 16, + "cha": 16, + "save": { + "wis": "+6", + "cha": "+6" + }, + "skill": { + "deception": "+6", + "insight": "+6", + "perception": "+6", + "persuasion": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Talis is a 9th-level spellcaster that uses Wisdom as her spellcasting ability (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Talis has the following spells prepared from the cleric spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell healing word}", + "{@spell inflict wounds}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell lesser restoration}", + "{@spell spiritual weapon} (spear)" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell mass healing word}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell death ward}", + "{@spell freedom of movement}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell insect plague}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Talis has {@item +1 scale mail} and a {@item wand of winter|hotdq}." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Talis has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + }, + { + "name": "Winter Strike (3/Day)", + "entries": [ + "Once per turn, when Talis hits with a melee attack, she can expend a use of this trait to deal an extra 9 ({@damage 2d8}) cold damage." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}6 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "E", + "I" + ], + "damageTags": [ + "C", + "P" + ], + "damageTagsSpell": [ + "N", + "O", + "P" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "prone" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Trepsin", + "isNpc": true, + "isNamedCreature": true, + "source": "HotDQ", + "page": 63, + "otherSources": [ + { + "source": "ToD", + "page": 79 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 20, + "int": 7, + "wis": 9, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Giant" + ], + "cr": "6", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll attacks five times, once with its bite and four times with its claws. If two or more claws hit the same target, the troll rends the target, dealing an extra {@damage 2d6} slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit +7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit +7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aruk Thundercaller Thuunlakalaga", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 169, + "_copy": { + "name": "Goliath Warrior", + "source": "IDRotF", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the goliath", + "with": "Aruk", + "flags": "i" + }, + "_": [ + { + "mode": "addSkills", + "skills": { + "insight": 1, + "medicine": 1 + } + } + ] + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Auril (First Form)", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 275, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 95, + "formula": "10d8 + 50" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 14, + "dex": 16, + "con": 21, + "int": 24, + "wis": 26, + "cha": 28, + "save": { + "con": "+9", + "wis": "+12" + }, + "skill": { + "deception": "+13", + "insight": "+12", + "intimidation": "+13", + "perception": "+16" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "passive": 26, + "immune": [ + "cold", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "all", + "telepathy 1000 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Auril's innate spellcasting ability is Charisma (spell save {@dc 21}, {@hit 13} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell chromatic orb} (cold orb only; see \"Actions\" below)", + "{@spell detect magic}", + "{@spell misty step}" + ], + "daily": { + "2e": [ + "{@spell control weather}", + "{@spell detect thoughts}", + "{@spell ice storm}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Divine Being", + "entries": [ + "Auril can't be {@status surprised} and can't be changed into another form against her will." + ] + }, + { + "name": "Divine Rejuvenation", + "entries": [ + "When Auril drops to 0 hit points, her body turns to slush and melts away. Auril instantly reappears in her {@creature Auril (second form)|idrotf|second form}, in an unoccupied space within 60 feet of where her first form disappeared. Her initiative count doesn't change." + ] + }, + { + "name": "Legendary Resistance (2/Day in This Form)", + "entries": [ + "If Auril fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Auril has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Auril doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Auril attacks twice with her talons." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Touch of Frost", + "entries": [ + "{@atk ms} {@hit 13} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d8}) cold damage, and the target can't take reactions until the start of its next turn." + ] + }, + { + "name": "Chromatic Orb", + "entries": [ + "{@atk rs} {@hit 13} to hit, range 90 ft., one creature. {@h}13 ({@damage 3d8}) cold damage." + ] + } + ], + "legendary": [ + { + "name": "Talons", + "entries": [ + "Auril attacks once with her talons." + ] + }, + { + "name": "Teleport", + "entries": [ + "Auril teleports to an unoccupied space she can see within 30 feet of her." + ] + }, + { + "name": "Touch of Frost (Costs 2 Actions)", + "entries": [ + "Auril uses Touch of Frost." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "C", + "P" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Auril (Second Form)", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 277, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 21, + "int": 24, + "wis": 26, + "cha": 28, + "save": { + "con": "+9", + "wis": "+12" + }, + "skill": { + "deception": "+13", + "insight": "+12", + "intimidation": "+13", + "perception": "+16" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "passive": 26, + "immune": [ + "cold", + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "all", + "telepathy 1000 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Divine Being", + "entries": [ + "Auril can't be {@status surprised} and can't be changed into another form against her will." + ] + }, + { + "name": "Divine Rejuvenation", + "entries": [ + "When Auril drops to 0 hit points, her body collapses into shards of ice, whereupon Auril instantly reappears in her {@creature Auril (third form)|idrotf|third form}, in an unoccupied space within 60 feet of where her second form was destroyed. Her initiative count doesn't change." + ] + }, + { + "name": "Legendary Resistance (2/Day in This Form)", + "entries": [ + "If Auril fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Auril has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Auril doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Auril attacks twice with her ice morningstar or hurls three ice darts." + ] + }, + { + "name": "Ice Morningstar", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 9 ({@damage 2d8}) cold damage." + ] + }, + { + "name": "Ice Dart", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Cone of Cold (Recharges after a Short or Long Rest)", + "entries": [ + "Auril causes a magical blast of cold air to erupt from her hand. Each creature in a 60-foot cone must make a {@dc 21} Constitution saving throw, taking 36 ({@damage 8d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Create Ice Mephit (3/Day)", + "entries": [ + "Auril breaks off an icicle from her body and hurls it into an unoccupied space she can see within 20 feet of her, where it magically transforms into an {@creature ice mephit} (see its entry in the Monster Manual). The mephit acts immediately after Auril in the initiative order and obeys her commands." + ] + }, + { + "name": "Ice Stasis {@recharge 5}", + "entries": [ + "Auril magically creates a gem-sized ice crystal that hovers in a space within 5 feet of her. Auril then targets a creature she can see within 60 feet of the crystal. The target must succeed on a {@dc 21} Charisma saving throw or become trapped in the crystal, which is immovable. If the saving throw succeeds, the crystal shatters and nothing else happens. A creature trapped in the crystal is {@condition stunned}, has {@quickref Cover||3||total cover} against attacks and other effects outside the crystal, and takes 21 ({@damage 6d6}) cold damage at the start of each of its turns. The creature can repeat the saving throw at the end of each of its turns, freeing itself on a success. The creature is also freed if the crystal is destroyed, which is a Tiny object with AC 18, 9 hit points, and immunity to all damage except fire damage. The freed creature appears in an unoccupied space of its choice within 30 feet of the shattered crystal." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Auril makes one weapon attack." + ] + }, + { + "name": "Ice Flurry (Costs 2 Actions)", + "entries": [ + "Each creature within 30 feet of Auril takes 5 ({@damage 2d4}) piercing damage from swirling ice, and nonmagical, open flames in that area are extinguished." + ] + }, + { + "name": "Splinter (Costs 3 Actions)", + "entries": [ + "Auril uses Create Ice Mephit or causes one to ice mephit she can see within 60 feet of her to explode and die. A mephit that dies in this way does not use its Death Burst. Instead, each creature within 10 feet of the exploding mephit must succeed on a {@dc 21} Dexterity saving throw, taking 13 ({@damage 3d8}) piercing damage on a failed saving throw, and half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Auril (Third Form)", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 278, + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d6 + 80" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 12, + "con": 21, + "int": 24, + "wis": 26, + "cha": 28, + "save": { + "con": "+9", + "wis": "+12" + }, + "skill": { + "deception": "+13", + "insight": "+12", + "intimidation": "+13", + "perception": "+16" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)", + "truesight 120 ft." + ], + "passive": 26, + "immune": [ + "cold", + "poison" + ], + "vulnerable": [ + "thunder" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "stunned" + ], + "languages": [ + "all", + "telepathy 1,000 ft." + ], + "cr": "11", + "trait": [ + { + "name": "Divine Being", + "entries": [ + "Auril can't be {@status surprised} and can't be changed into another form against her will." + ] + }, + { + "name": "Divine Resurrection", + "entries": [ + "When Auril drops to 0 hit points, her crystalline form shatters and her divine spark vanishes. She is dead until the next winter solstice, when she reappears at full health in a cold, remote location of her choosing." + ] + }, + { + "name": "Frigid Aura", + "entries": [ + "So long as Auril has at least 1 hit point in this form, each creature within 10 feet of her takes 10 cold damage at the start of each of her turns." + ] + }, + { + "name": "Legendary Resistance (1/Day in This Form)", + "entries": [ + "If Auril fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Auril has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Auril doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Auril uses Polar Ray twice." + ] + }, + { + "name": "Polar Ray", + "entries": [ + "{@atk rs} {@hit 13} to hit, range 120 ft., one target. {@h}14 ({@damage 4d6}) cold damage." + ] + }, + { + "name": "Blizzard Veil", + "entries": [ + "Auril creates a magical blizzard in a 30-foot-radius sphere centered on herself. The area within the sphere is heavily obscured, and the sphere moves with Auril. The effect lasts until Auril drops to 0 hit points in this form, until she chooses to end the effect (no action required), or until her {@status concentration} is broken (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "legendary": [ + { + "name": "Polar Ray", + "entries": [ + "Auril uses Polar Ray." + ] + }, + { + "name": "Intensify Aura (Costs 2 Actions)", + "entries": [ + "Auril's Frigid Aura deals an extra 10 cold damage until the end of her next turn." + ] + }, + { + "name": "Blinding Gleam (Costs 2 Actions)", + "entries": [ + "Auril's form flares with a blue light. Each creature that can see Auril and is within 10 feet of her must succeed on a {@dc 17} Wisdom saving throw or be {@condition blinded} by Auril's magical gleam for 1 minute. The {@condition blinded} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "B", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "C" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Avarice", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 269, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tiefling" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 16, + "con": 14, + "int": 17, + "wis": 10, + "cha": 9, + "save": { + "int": "+6", + "wis": "+3" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire" + ], + "languages": [ + "Common", + "Draconic", + "Infernal", + "Orc", + "Yeti" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Avarice is a 10th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}; {@hit 6} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt} (see \"Actions\" below)", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell knock}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell fire shield}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell Bigby's hand}", + "{@spell Rary's telepathic bond}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Icy Doom", + "entries": [ + "When Avarice dies, her corpse freezes for 9 days, during which time it can't be thawed, harmed by fire, animated, or raised from the dead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Avarice wields a {@item staff of frost} with 10 charges (see \"Actions\" below)." + ] + } + ], + "action": [ + { + "name": "Fire Bolt (Cantrip)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}11 ({@damage 2d10}) fire damage." + ] + }, + { + "name": "Staff of Frost", + "entries": [ + "While holding this staff, Avarice can expend 1 or more of its charges to cast one of the following spells from it (spell save {@dc 14}): {@spell cone of cold} (5 charges), {@spell fog cloud} (1 charge), {@spell ice storm} (4 charges), or {@spell wall of ice} (4 charges). The staff regains {@dice 1d6 + 4} charges daily at dawn. If its last charge is expended, roll a {@dice d20}; on a 1, the staff turns to water and is destroyed." + ] + } + ], + "reaction": [ + { + "name": "Banishing Rebuke (Recharges after a Long Rest)", + "entries": [ + "When Avarice is damaged by a creature that she can see within 60 feet of her, she can banish that creature to a frigid extradimensional prison for 1 minute. While there, the creature is {@condition incapacitated} and takes 5 ({@damage 1d10}) cold damage at the start of each of its turns. At the end of each of its turns, the creature can make a {@dc 14} Charisma saving throw, escaping the prison on a success and reappearing in the space it left or in the nearest unoccupied space if that space is occupied. A creature that dies in the prison is trapped there indefinitely." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "I", + "O", + "OTH" + ], + "damageTags": [ + "C", + "F" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Awakened White Moose", + "source": "IDRotF", + "page": 82, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 11, + "con": 16, + "int": 10, + "wis": 12, + "cha": 6, + "passive": 11, + "languages": [ + "Druidic" + ], + "cr": "3", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the moose moves at least 20 feet straight toward a target and then hits it with an antlers attack on the same turn, the target takes an extra 9 ({@damage 2d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The moose has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The moose makes two attacks: one with its antlers and one with its hooves." + ] + }, + { + "name": "Antlers", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Charge" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DU" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Battlehammer Dwarf", + "source": "IDRotF", + "page": 107, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "scout", + "with": "dwarf" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Longbow", + "items": { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, ranged 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Shortsword", + "items": { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d6 + 0}) slashing damage." + ] + } + } + ] + } + }, + "alignment": [ + "L", + "G" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "miscTags": [ + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Bjornhild Solvigsdottir", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 306, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 18, + "int": 14, + "wis": 11, + "cha": 14, + "skill": { + "athletics": "+7", + "intimidation": "+5", + "survival": "+3" + }, + "passive": 10, + "languages": [ + "Common", + "Yeti" + ], + "cr": "5", + "trait": [ + { + "name": "Auril's Blessing (3/Day)", + "entries": [ + "When Bjornhild hits a creature with a weapon attack, the attack deals an extra 11 ({@damage 2d10}) cold damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bjornhild makes two melee attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage, plus 11 ({@damage 2d10}) cold damage if Bjornhild uses Auril's Blessing." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 11 ({@damage 2d10}) cold damage if Bjornhild uses Auril's Blessing." + ] + } + ], + "attachedItems": [ + "greataxe|phb", + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chardalyn Berserker", + "source": "IDRotF", + "page": 280, + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 17, + "int": 9, + "wis": 11, + "cha": 9, + "skill": { + "survival": "+4" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "4", + "trait": [ + { + "name": "Chardalyn Madness", + "entries": [ + "The berserker must roll a {@dice d6} at the start of each of its turns. On a 1, the berserker does nothing on its turn except speak to a nonexistent, evil master whom it has pledged to serve." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the berserker can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The berserker attacks three times with a melee weapon." + ] + }, + { + "name": "Chardalyn Flail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ] + }, + { + "name": "Chardalyn Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Reckless" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chardalyn Dragon", + "source": "IDRotF", + "page": 281, + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 147, + "formula": "14d12 + 56" + }, + "speed": { + "walk": 30, + "fly": 90 + }, + "str": 24, + "dex": 11, + "con": 19, + "int": 10, + "wis": 10, + "cha": 3, + "save": { + "str": "+11", + "con": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "the languages known by its creator" + ], + "cr": "11", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The dragon is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The dragon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The dragon deals double damage to objects and structures." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dragon doesn't require air, food, drink, or sleep, and it gains no benefit from finishing a short or long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon uses its Malevolent Presence. It then makes three attacks: two with its claws and one with its tail. If the dragon isn't flying, it can also make one attack with its wings." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage." + ] + }, + { + "name": "Wings", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d4 + 7}) bludgeoning damage." + ] + }, + { + "name": "Malevolent Presence", + "entries": [ + "Any creature with an Intelligence of 4 or more that is within 30 feet of the dragon must succeed on a {@dc 16} Wisdom saving throw or be {@condition charmed} by it 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Malevolent Presence for the next 24 hours. A creature {@condition charmed} in this way fixates on another creature or object that the dragon mentally chooses and must, on each of its turns, move as close as it can to that target and use its action to make a melee attack against it. If the dragon doesn't choose a target, the {@condition charmed} creature can act normally on its turn." + ] + }, + { + "name": "Radiant Breath {@recharge 5}", + "entries": [ + "The dragon exhales a ray of radiant energy in a 120-foot line that is 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 31 ({@damage 7d8}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Siege Monster", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "damageTags": [ + "B", + "R", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chimeric Baboon", + "source": "IDRotF", + "page": 246, + "_copy": { + "name": "Baboon", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Bite", + "items": { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage, plus an extra 3 ({@damage 1d6}) poison damage." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Chimeric Cat", + "source": "IDRotF", + "page": 246, + "_copy": { + "name": "Cat", + "source": "MM" + }, + "senses": [ + "blindsight 60 ft.", + "tremorsense 60 ft." + ], + "senseTags": [ + "B", + "T" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Chimeric Fox", + "source": "IDRotF", + "page": 246, + "_copy": { + "name": "Fox", + "source": "IDRotF", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Chimeric Creation", + "entries": [ + "The fox has fur that changes color to match its surroundings, giving it advantage on Dexterity (Stealth) checks." + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Chimeric Hare", + "source": "IDRotF", + "page": 246, + "_copy": { + "name": "Hare", + "source": "IDRotF" + }, + "speed": { + "walk": 20, + "burrow": 5, + "fly": 30 + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Chimeric Rat", + "source": "IDRotF", + "page": 246, + "_copy": { + "name": "Rat", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Chimeric Creation", + "entries": [ + "The rat has gills, iridescent scales, and the ability to breathe air and water." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Chimeric Weasel", + "source": "IDRotF", + "page": 246, + "_copy": { + "name": "Weasel", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Chimeric Creation", + "entries": [ + "The weasel has glowing eyes that emit bright light out in a 20-foot radius and dim light for an additional 20 feet." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Bite", + "items": { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + } + } + }, + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true + }, + { + "name": "Chwinga", + "source": "IDRotF", + "page": 282, + "_copy": { + "name": "Chwinga", + "source": "ToA" + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Coldlight Walker", + "source": "IDRotF", + "page": 284, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 17, + "int": 8, + "wis": 10, + "cha": 8, + "save": { + "int": "+2", + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "cold" + ], + "conditionImmune": [ + "blinded", + "charmed", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "5", + "trait": [ + { + "name": "Blinding Light", + "entries": [ + "The walker sheds bright light in a 20-foot radius and dim light for an additional 20 feet. As a bonus action, the walker can target one creature in its bright light that it can see and force it to succeed on a {@dc 14} Constitution saving throw or be {@condition blinded} until the start of the walker's next turn." + ] + }, + { + "name": "Icy Doom", + "entries": [ + "Any creature killed by the walker freezes for 9 days, during which time it can't be thawed, harmed by fire, animated, or raised from the dead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The walker doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The walker makes two attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) bludgeoning damage plus 14 ({@damage 4d6}) cold damage." + ] + }, + { + "name": "Cold Ray", + "entries": [ + "{@atk rs} {@hit 3} to hit, range 60 ft., one target. {@h}25 ({@damage 4d10 + 3}) cold damage." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "C" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Demos Magen", + "source": "IDRotF", + "page": 300, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|PHB}" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 18, + "int": 10, + "wis": 10, + "cha": 7, + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Fiery End", + "entries": [ + "If the magen dies, its body disintegrates in a harmless burst of fire and smoke, leaving behind anything it was wearing or carrying." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The magen has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The magen doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The magen makes two melee attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "light crossbow|phb" + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dzaan", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 271, + "_copy": { + "name": "Dzaan's Simulacrum", + "source": "IDRotF", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the simulacrum", + "with": "Dzaan", + "flags": "i" + } + } + }, + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Dzaan is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "will": [ + { + "entry": "{@spell Shocking Grasp}", + "hidden": true + }, + { + "entry": "{@spell Acid Splash}", + "hidden": true + } + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash} *", + "{@spell light}", + "{@spell minor illusion}", + "{@spell shocking grasp} *" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell magic missile} *" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell levitate}", + "{@spell phantasmal force}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell sending}", + "{@spell slow}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell arcane eye}", + "{@spell confusion}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell animate objects}" + ] + } + }, + "footerEntries": [ + "*See \"Actions\" below." + ], + "ability": "int" + } + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dzaan's Simulacrum", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 270, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 24, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 11, + "con": 12, + "int": 16, + "wis": 13, + "cha": 15, + "save": { + "int": "+5", + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "deception": "+4", + "history": "+5" + }, + "passive": 11, + "languages": [ + "Abyssal", + "Common", + "Giant", + "Infernal" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The simulacrum is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}*", + "{@spell light}", + "{@spell minor illusion}", + "{@spell shocking grasp}*" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell magic missile}*" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell invisibility}", + "{@spell levitate}", + "{@spell phantasmal force}" + ] + } + }, + "footerEntries": [ + "*See \"Actions\" below." + ], + "ability": "int" + } + ], + "action": [ + { + "name": "Shocking Grasp (Cantrip)", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one creature (the attack roll has advantage if the target is wearing armor made of metal). {@h}9 ({@damage 2d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ] + }, + { + "name": "Acid Splash (Cantrip)", + "entries": [ + "The simulacrum hurls a bubble of acid at one creature it can see within 60 feet of it, or at two such creatures that are within 5 feet of each other. A target must succeed on a {@dc 13} Dexterity saving throw or take 7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Magic Missile (1st-Level Spell; Requires a Spell Slot)", + "entries": [ + "The simulacrum creates three darts of magical force. Each dart unerringly strikes one creature the simulacrum can see within 120 feet of it, dealing 3 ({@damage 1d4 + 1}) force damage. If the simulacrum casts this spell using a 2nd-level spell slot, it creates one more dart." + ] + } + ], + "languageTags": [ + "AB", + "C", + "GI", + "I" + ], + "damageTags": [ + "A", + "L", + "O" + ], + "damageTagsSpell": [ + "A", + "L", + "O", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "F'yorl", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 183, + "_copy": { + "name": "Mind Flayer", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "F'yorl", + "flags": "i" + } + } + }, + "ac": [ + 11 + ], + "hp": { + "average": 9, + "formula": "13d8 + 13" + }, + "cr": "0", + "spellcasting": null, + "action": null, + "actionTags": [], + "spellcastingTags": [], + "miscTags": [], + "conditionInflict": [], + "conditionInflictSpell": [], + "hasToken": true + }, + { + "name": "Fox", + "source": "IDRotF", + "page": 288, + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 30, + "burrow": 5 + }, + "str": 2, + "dex": 16, + "con": 11, + "int": 3, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Keen Hearing", + "entries": [ + "The fox has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + } + ], + "familiar": true, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Druid", + "source": "IDRotF", + "page": 288, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": { + "number": 40, + "condition": "(wolf form only)" + }, + "burrow": { + "number": 5, + "condition": "(fox form only)" + }, + "climb": { + "number": 30, + "condition": "(goat form only)" + }, + "fly": { + "number": 60, + "condition": "(owl form only)" + } + }, + "str": 12, + "dex": 13, + "con": 16, + "int": 10, + "wis": 16, + "cha": 9, + "save": { + "int": "+3", + "wis": "+6" + }, + "skill": { + "nature": "+3", + "perception": "+6", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft. (beast form only)" + ], + "passive": 16, + "resist": [ + "cold" + ], + "languages": [ + "Common", + "Druidic" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Humanoid Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The druid is a 9th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}; {@hit 6} to hit with spell attacks). It has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell resistance}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell fog cloud}", + "{@spell speak with animals}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell moonbeam}", + "{@spell pass without trace}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell conjure animals}", + "{@spell sleet storm}", + "{@spell wind wall}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell hallucinatory terrain}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell awaken}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The druid makes two melee attacks." + ] + }, + { + "name": "Ice Sickle (Humanoid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage plus 5 ({@damage 2d4}) cold damage." + ] + }, + { + "name": "Maul (Beast Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The druid magically polymorphs into a beast form\u2014fox, mountain goat, owl, or wolf\u2014or back into its humanoid form. Any equipment it is wearing or carrying is absorbed or borne by the beast form (the druid's choice). It reverts to its humanoid form when it dies. The druid's statistics are the same in each form, except where noted in this stat block." + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DU" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "C", + "R" + ], + "spellcastingTags": [ + "CD", + "F" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Giant Skeleton", + "source": "IDRotF", + "page": 288, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "armor scraps" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d12 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 9, + "con": 15, + "int": 6, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "cold", + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Giant but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The skeleton doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skeleton makes two greataxe attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ] + }, + { + "name": "Freezing Stare", + "entries": [ + "The skeleton targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 13} Constitution saving throw or take 35 ({@damage 10d6}) cold damage and be {@condition paralyzed} until the end of its next turn." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "GI" + ], + "damageTags": [ + "C", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Galvan Magen", + "source": "IDRotF", + "page": 301, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 68, + "formula": "8d8 + 32" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 18, + "con": 18, + "int": 12, + "wis": 10, + "cha": 7, + "passive": 10, + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Fiery End", + "entries": [ + "If the magen dies, its body disintegrates in a harmless burst of fire and smoke, leaving behind anything it was wearing or carrying." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The magen has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The magen doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The magen makes two Shocking Touch attacks." + ] + }, + { + "name": "Shocking Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target (the magen has advantage on the attack roll if the target is wearing armor made of metal). {@h}7 ({@damage 1d6 + 4}) lightning damage." + ] + }, + { + "name": "Static Discharge {@recharge 5}", + "entries": [ + "The magen discharges a lightning bolt in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw (with disadvantage if the creature is wearing armor made of metal), taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "L" + ], + "miscTags": [ + "AOE" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Walrus", + "source": "IDRotF", + "page": 312, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 9 + ], + "hp": { + "average": 85, + "formula": "9d12 + 27" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 22, + "dex": 9, + "con": 16, + "int": 3, + "wis": 11, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The walrus can hold its breath for 30 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The walrus makes two attacks: one with its body flop and one with its tusks." + ] + }, + { + "name": "Body Flop", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Tusks", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d6 + 6}) piercing damage." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnoll Vampire", + "source": "IDRotF", + "page": 290, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 18, + "con": 18, + "int": 6, + "wis": 12, + "cha": 9, + "save": { + "dex": "+7", + "con": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Abyssal", + "Gnoll" + ], + "cr": "8", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The vampire has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Rampage", + "entries": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the vampire can take a bonus action to move up to half its speed and make a bite attack." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "If the vampire isn't in sunlight, it can use its action to polymorph into a Large hyena or a Medium cloud of mist, or back into its true form.", + "While in hyena form, the vampire can't speak, and its walking speed is 50 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. it is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The vampire doesn't require air." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "The vampire has the following flaws:", + "{@i Enraged by Celestial.} If it hears words of Celestial spoken, the vampire must try to attack the source of those spoken words on its next turn. If these words come from multiple sources and from opposite directions, the vampire is {@condition restrained}. Otherwise, it moves to attack what it perceives to be the closest source.", + "{@i Repulsed by Perfume.} The vampire has disadvantage on melee attack rolls made against any creature wearing perfume or carrying an open container of it.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack (Vampire Form Only)", + "entries": [ + "The vampire makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite (Hyena or Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. the target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Claws (Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage." + ] + }, + { + "name": "Frightful Cackle (Hyena or Vampire Form Only)", + "entries": [ + "The vampire emits a bone-chilling cackle. Each creature of the vampire's choice that is within 120 feet of the vampire and can hear its cackle must succeed on a {@dc 15} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the vampire's Frightful Cackle for the next 24 hours." + ] + }, + { + "name": "Sickening Gaze (Hyena or Vampire Form Only)", + "entries": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 15} Constitution saving throw against this magic or be {@condition poisoned} for 24 hours. A creature whose saving throw is successful is immune to this vampire's Sickening Gaze for 24 hours." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Rampage", + "Regeneration", + "Shapechanger", + "Sunlight Sensitivity", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "frightened", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnome Ceremorph", + "source": "IDRotF", + "page": 303, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 58, + "formula": "13d6 + 13" + }, + "speed": { + "walk": 25 + }, + "str": 6, + "dex": 14, + "con": 12, + "int": 19, + "wis": 17, + "cha": 17, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+7", + "deception": "+6", + "insight": "+6", + "perception": "+6", + "persuasion": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Deep Speech", + "Gnomish", + "telepathy 120 ft.", + "Undercommon" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The ceremorph's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The ceremorph has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 9}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the ceremorph. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ceremorph kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Laser Pistol", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 40/120 ft., one target. {@h}12 ({@damage 3d6 + 2}) radiant damage." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The ceremorph magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ] + } + ], + "attachedItems": [ + "laser pistol|dmg" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "G", + "TP", + "U" + ], + "damageTags": [ + "P", + "R", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnome Squidling", + "source": "IDRotF", + "page": 303, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 15 + }, + "str": 4, + "dex": 7, + "con": 10, + "int": 4, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "understands Deep Speech and Gnomish but can't speak", + "telepathy 60 ft." + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The squidling's innate spellcasting ability is Intelligence (spell save {@dc 7}). It can innately cast {@spell levitate} at will, requiring no components." + ], + "will": [ + "{@spell levitate}" + ], + "ability": "int", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The squidling has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one creature. {@h}5 ({@damage 2d4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 7}) and must succeed on a {@dc 7} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one {@condition incapacitated} creature {@condition grappled} by the squidling. {@h}27 ({@damage 5d10}) piercing damage. If this damage reduces the target to 0 hit points, the squidling kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Tickle {@recharge 5}", + "entries": [ + "The squidling magically emits psychic energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 7} Intelligence saving throw or take 2 ({@damage 1d4}) psychic damage and be {@condition stunned} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "CS", + "DS", + "G", + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goliath Warrior", + "source": "IDRotF", + "page": 292, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goliath" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 16, + "int": 10, + "wis": 15, + "cha": 10, + "skill": { + "athletics": "+6", + "perception": "+4", + "survival": "+4" + }, + "passive": 14, + "resist": [ + "cold" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "3", + "trait": [ + { + "name": "Mountain Born", + "entries": [ + "The goliath is acclimated to high altitude, including elevations above 20,000 feet." + ] + }, + { + "name": "Powerful Build", + "entries": [ + "The goliath counts as one size larger when determining its carrying capacity and the weight it can push, drag, or lift." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The goliath makes two attacks with its greataxe or hurls two javelins." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Stone's Endurance (Recharges after a Short or Long Rest)", + "entries": [ + "When the goliath takes damage, it reduces the damage taken by 9 ({@dice 1d12 + 3})." + ] + } + ], + "attachedItems": [ + "greataxe|phb", + "javelin|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goliath Werebear", + "source": "IDRotF", + "page": 293, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goliath", + "shapechanger" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 10, + "condition": "in humanoid form" + }, + { + "ac": 12, + "condition": "in bear or hybrid form", + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "19d8 + 76" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft. swim 30 ft. in bear or hybrid form)" + } + }, + "str": 20, + "dex": 10, + "con": 18, + "int": 10, + "wis": 15, + "cha": 10, + "skill": { + "athletics": "+8", + "perception": "+8", + "survival": "+5" + }, + "passive": 18, + "resist": [ + "cold" + ], + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "Common", + "Giant (can't speak in bear form)" + ], + "cr": "8", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The werebear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Mountain Born", + "entries": [ + "The werebear is acclimated to high altitude, including elevations above 20,000 feet." + ] + }, + { + "name": "Powerful Build (Humanoid Form Only)", + "entries": [ + "The werebear counts as one size larger when determining its carrying capacity and the weight it can push, drag, or lift." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "The werebear can use its action to polymorph into a Large bear-humanoid hybrid or into a Large polar bear, or back into its goliath form. Its statistics, other than its size and AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The werebear makes two melee attacks." + ] + }, + { + "name": "Bite (Bear or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 15} Constitution saving throw or be cursed with werebear lycanthropy, as described in the Monster Manual." + ] + }, + { + "name": "Claw (Bear or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ] + }, + { + "name": "Greataxe (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage." + ] + } + ], + "reaction": [ + { + "name": "Stone's Endurance (Recharges after a Short or Long Rest)", + "entries": [ + "When the werebear takes damage, it reduces the damage taken by 10 ({@dice 1d12 + 4})." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Keen Senses", + "Shapechanger" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "GI" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grandolpha Muzgardt", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 176, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 9 + ], + "hp": { + "average": 59, + "formula": "7d8 + 28" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 9, + "con": 18, + "int": 13, + "wis": 17, + "cha": 16, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "Grandolpha's innate spellcasting ability is Wisdom (spell save {@dc 13}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell mending}", + "{@spell poison spray} (see \"Actions\" below)" + ], + "daily": { + "3e": [ + "{@spell detect magic}", + "{@spell enlarge/reduce} (self only)", + "{@spell faerie fire}", + "{@spell invisibility} (self only)", + "{@spell polymorph}", + "{@spell stoneskin} (self only)" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "Grandolpha has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Grandolpha has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Poison Spray (Cantrip)", + "entries": [ + "Grandolpha extends her hand toward a creature she can see within 10 feet of her and projects a puff of noxious gas from her palm. The creature must succeed on a {@dc 13} Constitution saving throw or take 13 ({@damage 2d12}) poison damage." + ] + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "D", + "U" + ], + "damageTags": [ + "I" + ], + "damageTagsSpell": [ + "I" + ], + "spellcastingTags": [ + "I", + "P" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gunvald Halraggson", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 305, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 76, + "formula": "9d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 8, + "con": 18, + "int": 9, + "wis": 10, + "cha": 16, + "skill": { + "athletics": "+8", + "intimidation": "+6", + "survival": "+3" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Indomitable (3/Day)", + "entries": [ + "Gunvald can reroll a saving throw he fails. He must use the new roll." + ] + }, + { + "name": "Menacing Blows (1/Turn)", + "entries": [ + "Gunvald deals an extra 6 ({@damage 1d12}) damage when he hits a target with a weapon attack. If the target is a creature, it must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} until the start of Gunvald's next turn." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, Gunvald can regain 15 hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Gunvald makes three melee attacks." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage when used with two hands, plus 6 ({@damage 1d12}) slashing damage if Gunvald uses Menacing Blows." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, plus 6 ({@damage 1d12}) piercing damage if Gunvald uses Menacing Blows." + ] + } + ], + "attachedItems": [ + "battleaxe|phb", + "javelin|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hare", + "source": "IDRotF", + "page": 294, + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 20, + "burrow": 5 + }, + "str": 1, + "dex": 17, + "con": 9, + "int": 2, + "wis": 11, + "cha": 4, + "skill": { + "perception": "+2", + "stealth": "+5" + }, + "passive": 12, + "cr": "0", + "trait": [ + { + "name": "Escape", + "entries": [ + "The hare can take the Dash, Disengage, or Hide action as a bonus action on each of its turns." + ] + } + ], + "familiar": true, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Headless Iron Golem", + "source": "IDRotF", + "page": 244, + "_copy": { + "name": "Iron Golem", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Headless", + "entries": [ + "The golem is {@condition blinded} and {@condition deafened}, giving it disadvantage on all its attack rolls, and it can't use its Poison Breath." + ] + } + }, + "action": { + "mode": "removeArr", + "names": "Poison Breath {@recharge 5}" + } + } + }, + "hp": { + "average": 150, + "formula": "10d10 + 50" + }, + "cr": "10", + "actionTags": [ + "Multiattack" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hengar Aesnvaard", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 215, + "_copy": { + "name": "Gladiator", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "the gladiator", + "with": "Hengar", + "flags": "i" + } + ], + "_": [ + { + "mode": "addSkills", + "skills": { + "survival": 1 + } + } + ] + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hypnos Magen", + "source": "IDRotF", + "page": 301, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 34, + "formula": "4d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 18, + "int": 14, + "wis": 10, + "cha": 7, + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak", + "telepathy 30 ft." + ], + "cr": "1", + "trait": [ + { + "name": "Fiery End", + "entries": [ + "If the magen dies, its body disintegrates in a harmless burst of fire and smoke, leaving behind anything it was wearing or carrying." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The magen has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The magen doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Psychic Lash", + "entries": [ + "The magen's eyes glow silver as it targets one creature that it can see within 60 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Suggestion", + "entries": [ + "The magen casts the {@spell suggestion} spell (save {@dc 12}), requiring no material components. The target must be a creature that the magen can communicate with telepathically. If it succeeds on its saving throw, the target is immune to this magen's {@spell suggestion} spell for the next 24 hours. The magen's spellcasting ability is Intelligence." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "languageTags": [ + "CS", + "TP" + ], + "damageTags": [ + "Y" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ice Piercer", + "source": "IDRotF", + "page": 226, + "_copy": { + "name": "Piercer", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "piercer", + "with": "ice piercer" + }, + "action": { + "mode": "replaceArr", + "replace": "Drop", + "items": { + "name": "Drop", + "entries": [ + "{@atk mw} {@hit 3} to hit, one creature directly underneath the piercer. {@h}10 ({@damage 3d6}) piercing damage plus 10 ({@damage 3d6}) cold damage. Miss: The piercer takes half the normal falling damage for the distance fallen." + ] + } + } + } + }, + "immune": [ + "cold" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ice Troll", + "source": "IDRotF", + "page": 295, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 115, + "formula": "10d10 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 8, + "con": 22, + "int": 7, + "wis": 9, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "cold" + ], + "languages": [ + "Giant" + ], + "cr": "8", + "trait": [ + { + "name": "Cold Aura", + "entries": [ + "While it's alive, the troll generates an aura of bitter cold that fills the area within 10 feet of it. At the start of the troll's turn, all nonmagical flames in the aura are extinguished. Any creature that starts its turn within 10 feet of the troll takes 10 ({@damage 3d6}) cold damage." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The ice troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The ice troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The ice troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 9 ({@damage 2d8}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 9 ({@damage 2d8}) cold damage. If the target takes any of the cold damage, the target must succeed on a {@dc 15} Constitution saving throw or have disadvantage on its attack rolls until the end of its next turn." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Icewind Kobold", + "source": "IDRotF", + "page": 296, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 30, + "climb": 20 + }, + "str": 7, + "dex": 15, + "con": 12, + "int": 8, + "wis": 8, + "cha": 8, + "save": { + "dex": "+4", + "con": "+3" + }, + "skill": { + "perception": "+1", + "stealth": "+4", + "survival": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/8", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 0} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}1 ({@damage 1d6 - 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "javelin|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Icewind Kobold Zombie", + "source": "IDRotF", + "page": 297, + "size": [ + "S" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 9, + "from": [ + "scraps of hide armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d6 + 9" + }, + "speed": { + "walk": 20 + }, + "str": 8, + "dex": 6, + "con": 16, + "int": 3, + "wis": 6, + "cha": 3, + "save": { + "wis": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "cr": "1/8", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The zombie doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Javelin", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "traitTags": [ + "Undead Fortitude", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Isarr Kronenstrom", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 307, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 15, + "int": 14, + "wis": 15, + "cha": 16, + "skill": { + "athletics": "+6", + "intimidation": "+6", + "perception": "+5", + "stealth": "+6", + "survival": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Common" + ], + "cr": "8", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "Isarr has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Indomitable (3/Day)", + "entries": [ + "Isarr can reroll a saving throw he fails. He must use the new roll." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "Isarr has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Isarr makes three melee attacks." + ] + }, + { + "name": "Sickle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, plus 13 ({@damage 2d12}) piercing damage if the target has no allies it can see within 10 feet of it." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 100/400 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "sickle|phb" + ], + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Jarund Elkhardt", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 305, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 15, + "int": 12, + "wis": 14, + "cha": 18, + "save": { + "con": "+5", + "wis": "+5" + }, + "skill": { + "athletics": "+7", + "intimidation": "+7", + "survival": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "5", + "trait": [ + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when Jarund hits with it (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jarund makes three melee attacks." + ] + }, + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, or 15 ({@damage 2d10 + 4}) bludgeoning damage when used with two hands." + ] + }, + { + "name": "Shield", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and Jarund pushes the target 5 feet away from him if it's Large or smaller. Jarund then enters the space vacated by the target. If the target is pushed to within 5 feet of a creature friendly to Jarund, that creature can make an attack against the target as a reaction." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "javelin|phb", + "warhammer|phb" + ], + "traitTags": [ + "Brute" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kadroth", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 42, + "_copy": { + "name": "Cult Fanatic", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the fanatic", + "with": "Kadroth", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "E" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "I", + "X" + ], + "damageTagsSpell": [ + "F", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kingsport", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 243, + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 5, + "formula": "1d8 + 1" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 6, + "dex": 12, + "con": 12, + "int": 10, + "wis": 10, + "cha": 4, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 10, + "languages": [ + "Common" + ], + "cr": "0", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "Kingsport can hold its breath for 20 minutes." + ] + } + ], + "action": [ + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Knight of the Black Sword", + "source": "IDRotF", + "page": 259, + "_copy": { + "name": "Cult Fanatic", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Icy Doom", + "entries": [ + "When the cultist dies, its corpse freezes for 9 days, during which time it can't be thawed, harmed by fire, animated, or raised from the dead." + ] + } + } + } + }, + "languages": [ + "Common", + "Infernal" + ], + "languageTags": [ + "C", + "I" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Knucklehead Trout", + "source": "IDRotF", + "page": 295, + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 0, + "swim": 30 + }, + "str": 14, + "dex": 14, + "con": 11, + "int": 1, + "wis": 6, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "cr": "0", + "trait": [ + { + "name": "Water Breathing", + "entries": [ + "The trout can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kobold Vampire Spawn", + "source": "IDRotF", + "page": 297, + "size": [ + "S" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 39, + "formula": "6d6 + 18" + }, + "speed": { + "walk": 30, + "climb": 20 + }, + "str": 10, + "dex": 18, + "con": 16, + "int": 8, + "wis": 8, + "cha": 8, + "save": { + "dex": "+6", + "wis": "+1" + }, + "skill": { + "perception": "+1", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "3", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The vampire has advantage on an attack roll against a creature if at least one of the vampire's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of its next turn." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The vampire doesn't require air." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage when it starts its turn in running water.", + "{@i Stake to the Heart.} The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is {@condition incapacitated} in its resting place.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 5 ({@damage 2d4}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "traitTags": [ + "Pack Tactics", + "Regeneration", + "Sunlight Sensitivity", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "HPR", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Bigby's Hand", + "source": "IDRotF", + "page": 298, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "5d10 + 25" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 26, + "dex": 10, + "con": 20, + "int": 1, + "wis": 10, + "cha": 1, + "save": { + "dex": "+2", + "wis": "+2" + }, + "skill": { + "perception": "+2", + "stealth": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "unconscious" + ], + "cr": "4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The living spell doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Force Fist", + "entries": [ + "{@atk ms} {@hit 10} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d8 + 8}) force damage. If the target is a Large or smaller creature, the living spell can move it up to 5 feet and move with it, without provoking opportunity attacks." + ] + }, + { + "name": "Grasping Hand", + "entries": [ + "The living spell attempts to grab a Huge or smaller creature within 5 feet of it. The target must succeed on a {@dc 15} Dexterity saving throw or be {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target takes 15 ({@damage 2d6 + 8}) bludgeoning damage at the start of each of its turns. The living spell can grapple only one creature at a time and can't use Force Fist until the grapple ends." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B", + "O" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Blade of Disaster", + "source": "IDRotF", + "page": 299, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d6 + 36" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 16, + "con": 19, + "int": 6, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "restrained", + "unconscious" + ], + "cr": "8", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unfettered", + "entries": [ + "The living spell can move through any barrier, even a wall of magical force." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The living spell doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Force Blade", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d12}) force damage, unless the living spell rolled an 18 or higher on the {@dice d20} for the attack, in which case the attack is a critical hit that deals 78 ({@damage 12d12}) force damage instead." + ] + } + ], + "reaction": [ + { + "name": "Preemptive Strike", + "entries": [ + "The living spell makes a melee attack against a creature that starts its turn within 5 feet of the living spell." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "O" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Demiplane", + "source": "IDRotF", + "page": 299, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 1, + "dex": 10, + "con": 10, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned", + "unconscious" + ], + "cr": "0", + "trait": [ + { + "name": "Dimensional Form", + "entries": [ + "The living spell can enter another creature's space and vice versa, and it can move through a space as narrow as 1 inch wide without squeezing. The living spell can't detach from a solid surface, such as a wall, ceiling, or floor. If it has no surface to attach to, the living spell is destroyed (see \"Planar Destruction\" below)." + ] + }, + { + "name": "Extradimensional Chamber", + "entries": [ + "When the living spell enters another creature's space (or vice versa) for the first time on a turn, the other creature must succeed on a {@dc 10} Dexterity saving throw or be pulled into the living spell's extradimensional space, an unfurnished stone chamber 30 feet in every dimension. A creature too big to fit in this space succeeds on the saving throw automatically. Creatures in the chamber never run out of breathable air. Magic that enables transit between planes, such as plane shift, can be used to escape the chamber, which has no exits otherwise. Creatures trapped inside the extradimensional chamber can't see, target, or deal damage to the living spell; however, they can damage the room around them. Each 5-foot-square section of ceiling, wall, and floor in the chamber has AC 17, 50 hit points, immunity to poison and psychic damage, and immunity to bludgeoning, piercing, and slashing damage that is nonmagical. If any section is reduced to 0 hit points, the living spell and its chamber are destroyed (see \"Planar Destruction\" below)." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Planar Destruction", + "entries": [ + "The living spell is destroyed when it or a 5-foot-square section of its extradimensional chamber is reduced to 0 hit points, or when the living spell has no surface to attach to. When the living spell is destroyed, the contents of its extradimensional chamber are expelled, appearing as close to the living spell's previous location as possible. Each expelled creature appears in a randomly determined unoccupied space, along with whatever it is wearing or carrying." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The living spell doesn't require air, food, drink, or sleep." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lonelywood Banshee", + "source": "IDRotF", + "page": 81, + "_copy": { + "name": "Banshee", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Corrupting Touch", + "items": { + "name": "Spectral Longbow", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 150/600 ft., one target. {@h}12 ({@damage 3d6 + 2}) necrotic damage." + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mjenir", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 215, + "_copy": { + "name": "Druid", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "the druid", + "with": "Mjenir", + "flags": "i" + } + ], + "_": [ + { + "mode": "addSkills", + "skills": { + "survival": 1 + } + } + ] + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mountain Goat", + "source": "IDRotF", + "page": 304, + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 14, + "dex": 12, + "con": 14, + "int": 2, + "wis": 10, + "cha": 5, + "passive": 10, + "cr": "1/8", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the goat moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 3 ({@damage 1d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Charge" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nass Lantomir's Ghost", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 272, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 7, + "dex": 13, + "con": 10, + "int": 17, + "wis": 12, + "cha": 17, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Orc" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ghost is a 6th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}). The ghost has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Ethereal Sight", + "entries": [ + "The ghost can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Withering Touch", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ] + }, + { + "name": "Etherealness", + "entries": [ + "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ] + }, + { + "name": "Horrifying Visage", + "entries": [ + "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If the target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed by a {@spell greater restoration} spell, but only if it is cast within 24 hours." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid that the ghost can see within 5 feet of it must succeed on a {@dc 14} Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is {@condition incapacitated} and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies. The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C", + "DR", + "O" + ], + "damageTags": [ + "N", + "O" + ], + "damageTagsSpell": [ + "C", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Prisoner 237", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 160, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(10 ft. while shackled)" + } + }, + "str": 9, + "dex": 13, + "con": 14, + "int": 17, + "wis": 10, + "cha": 15, + "skill": { + "arcana": "+5", + "deception": "+4", + "persuasion": "+4" + }, + "passive": 10, + "languages": [ + "Common", + "Draconic", + "Infernal", + "Orc" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Prisoner 237 is a 5th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}; {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}*", + "{@spell message}*", + "{@spell prestidigitation}", + "{@spell shocking grasp} (see \"Actions\" below)" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell mage armor}*", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell arcane lock}*", + "{@spell detect thoughts}*", + "{@spell suggestion}*" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell counterspell}", + "{@spell lightning bolt}*" + ] + } + }, + "footerEntries": [ + "*Prisoner 237 needs material components to cast these spells." + ], + "ability": "int" + } + ], + "action": [ + { + "name": "Shocking Grasp (Cantrip)", + "entries": [ + "{@atk ms} {@hit 5} to hit (with advantage on the attack if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}9 ({@damage 2d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ] + } + ], + "languageTags": [ + "C", + "DR", + "I", + "O" + ], + "damageTags": [ + "L" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflictSpell": [ + "unconscious" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Reghed Chieftain", + "source": "IDRotF", + "page": 152, + "_copy": { + "name": "Gladiator", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "gladiator", + "with": "chieftain" + } + ], + "_": [ + { + "mode": "addSkills", + "skills": { + "survival": 1 + } + } + ] + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Reghed Great Warrior", + "source": "IDRotF", + "page": 152, + "_copy": { + "name": "Gladiator", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "gladiator", + "with": "great warrior" + } + ], + "_": [ + { + "mode": "addSkills", + "skills": { + "survival": 1 + } + } + ] + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Reghed Shaman", + "source": "IDRotF", + "page": 152, + "_copy": { + "name": "Druid", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "druid", + "with": "shaman" + } + ], + "_": [ + { + "mode": "addSkills", + "skills": { + "survival": 1 + } + } + ] + } + }, + "languages": [ + "Common", + "Druidic" + ], + "languageTags": [ + "C", + "DU" + ], + "spellcastingTags": [ + "O" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Reghed Warrior", + "source": "IDRotF", + "page": 152, + "_copy": { + "name": "Tribal Warrior", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "tribal warrior", + "with": "warrior" + } + ], + "_": [ + { + "mode": "addSkills", + "skills": { + "survival": 1 + } + } + ] + } + }, + "skill": { + "survival": "+4" + }, + "languages": [ + "Common" + ], + "languageTags": [ + "C" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Reindeer", + "source": "IDRotF", + "page": 107, + "_copy": { + "name": "Elk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "elk", + "with": "reindeer" + } + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Seal", + "source": "IDRotF", + "page": 308, + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 10, + "dex": 12, + "con": 11, + "int": 3, + "wis": 12, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "cr": "0", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The seal can hold its breath for 15 minutes." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The seal has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "traitTags": [ + "Hold Breath", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sephek Kaltro", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 23, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 11, + "wis": 16, + "cha": 18, + "skill": { + "perception": "+5", + "survival": "+5" + }, + "passive": 15, + "immune": [ + "cold" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sephek can innately cast {@spell misty step} up to three times per day, requiring no components. His innate spellcasting ability is Charisma." + ], + "will": [ + "{@spell misty step}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Cold Regeneration", + "entries": [ + "If the temperature around him is 0 degrees Fahrenheit or lower, Sephek regains 5 hit points at the start of his turn. If he takes fire damage, this trait doesn't function at the start of Sephek's next turn. Sephek dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Sephek attacks twice with a weapon." + ] + }, + { + "name": "Ice Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if Sephek uses the weapon with two hands, plus 5 ({@damage 2d4}) cold damage." + ] + }, + { + "name": "Ice Dagger", + "entries": [ + "{@atk rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 5 ({@damage 2d4}) cold damage." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Snow Golem", + "source": "IDRotF", + "page": 308, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 10 + }, + "str": 15, + "dex": 6, + "con": 14, + "int": 1, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 8, + "immune": [ + "cold", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "3", + "trait": [ + { + "name": "Cold Absorption", + "entries": [ + "Whenever the golem is subjected to cold damage, it takes no damage and instead regains a number of hit points equal to the cold damage dealt." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Melt", + "entries": [ + "While in an area of extreme heat, the golem loses {@dice 1d6} hit points at the start of each of its turns." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The golem doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes three melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 7 ({@damage 2d6}) cold damage." + ] + }, + { + "name": "Snowball", + "entries": [ + "{@atk rw} {@hit 0} to hit, range 60 ft., one target. {@h}9 ({@damage 2d6 + 2}) cold damage." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "C" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Snowy Owlbear", + "source": "IDRotF", + "page": 309, + "_copy": { + "name": "Owlbear", + "source": "MM" + }, + "speed": { + "walk": 40, + "swim": 30 + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spellix Romwod", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 144, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 6, + "dex": 15, + "con": 14, + "int": 15, + "wis": 9, + "cha": 16, + "skill": { + "arcana": "+4", + "deception": "+5", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Gnomish", + "Goblin" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Spellix's spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell fire bolt}*", + "{@spell mage hand}", + "{@spell shocking grasp}*" + ], + "daily": { + "3": [ + "{@spell silent image}" + ], + "1e": [ + "{@spell chromatic orb}", + "{@spell crown of madness}", + "{@spell shield}" + ] + }, + "footerEntries": [ + "*See \"Actions\" below." + ], + "ability": "cha" + } + ], + "trait": [ + { + "name": "Gnome Cunning", + "entries": [ + "Spellix has advantage on all Intelligence, Wisdom, and Charisma saving throws against magic." + ] + } + ], + "action": [ + { + "name": "Shocking Grasp (Cantrip)", + "entries": [ + "{@atk ms} {@hit 5} to hit (with advantage on the attack roll if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}4 ({@damage 1d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ] + }, + { + "name": "Fire Bolt (Cantrip)", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}5 ({@damage 1d10}) fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "E", + "G", + "GO" + ], + "damageTags": [ + "F", + "L" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sperm Whale", + "source": "IDRotF", + "page": 309, + "size": [ + "G" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "14d20 + 42" + }, + "speed": { + "walk": 0, + "swim": 60 + }, + "str": 26, + "dex": 8, + "con": 17, + "int": 3, + "wis": 12, + "cha": 5, + "senses": [ + "blindsight 120 ft." + ], + "passive": 11, + "cr": "8", + "trait": [ + { + "name": "Echolocation", + "entries": [ + "The whale can't use its blindsight while {@condition deafened}." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The whale can hold its breath for 90 minutes." + ] + }, + { + "name": "Keen Hearing", + "entries": [ + "The whale has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The whale makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Dexterity saving throw or be swallowed by the whale. A swallowed creature has {@quickref Cover||3||total cover} against attacks and other effects outside the whale, and it takes 3 ({@damage 1d6}) acid damage at the start of each of the whale's turns. If the whale takes 30 damage or more on a single turn from a creature inside it, the whale must succeed on a {@dc 16} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the whale. If the whale dies, a swallowed creature can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}18 ({@damage 3d6 + 8}) bludgeoning damage, or 37 ({@damage 6d6 + 16}) bludgeoning damage if the target is an object." + ] + } + ], + "traitTags": [ + "Hold Breath", + "Keen Senses" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spitting Mimic", + "source": "IDRotF", + "page": 302, + "size": [ + "L" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 20 + }, + "str": 21, + "dex": 12, + "con": 17, + "int": 9, + "wis": 15, + "cha": 10, + "skill": { + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "acid" + ], + "conditionImmune": [ + "prone" + ], + "cr": "5", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Adhesive (Object Form Only)", + "entries": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 16}). Ability checks made to escape this grapple have disadvantage." + ] + }, + { + "name": "False Appearance (Object Form Only)", + "entries": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ] + }, + { + "name": "Grappler", + "entries": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The mimic has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mimic attacks three times: twice with its pseudopods and once with its bite." + ] + }, + { + "name": "Pseudopods", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Spit Acid {@recharge 5}", + "entries": [ + "The mimic spits acid at one creature it can see within 30 feet of it. The target must make a {@dc 14} Dexterity saving throw, taking 32 ({@damage 9d6 + 1}) acid damage on failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "False Appearance", + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Telepathic Pentacle", + "source": "IDRotF", + "page": 244, + "_copy": { + "name": "Hydra", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "hydra", + "with": "Telepathic Pentacle" + } + } + }, + "speed": { + "walk": 30, + "swim": 30, + "climb": 30 + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Tomb Tapper", + "source": "IDRotF", + "page": 310, + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90" + }, + "speed": { + "walk": 30, + "burrow": 10 + }, + "str": 22, + "dex": 10, + "con": 21, + "int": 14, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+6" + }, + "senses": [ + "blindsight 240 ft. (blind beyond this radius)" + ], + "passive": 16, + "resist": [ + "lightning" + ], + "immune": [ + "cold", + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "understands Common and Undercommon but doesn't speak", + "telepathy 60 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Petrified Death", + "entries": [ + "A tomb tapper reduced to 0 hit points turns into a lifeless stone statue. Anything it's wearing or carrying is not transformed." + ] + }, + { + "name": "Sense Magic", + "entries": [ + "The tomb tapper senses magic within 30 feet of it and can use an action to pinpoint the location of any creature, object, or area in that range that bears magic. This sense penetrates barriers but is blocked by a thin sheet of lead." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The tomb tapper can burrow through solid rock at half its burrowing speed and leaves a 10-foot-wide, 20-foot-tall tunnel in its wake." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The tomb tapper doesn't require air or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tomb tapper makes two melee attacks with its sledgehammer or with its claws. If it hits the same creature with both claws, it can pull that creature within 5 feet of its mouth and make a bite attack against it." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) slashing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) slashing damage." + ] + }, + { + "name": "Sledgehammer", + "entries": [ + "{@atk mw,rw} {@hit 10} to hit, reach 15 ft. or range 30/120 ft., one target. {@h}27 ({@damage 6d6 + 6}) bludgeoning or force damage (tomb tapper's choice). If thrown, the hammer returns to the tomb tapper at the end of its turn, landing at the tomb tapper's feet if it doesn't have a hand free to catch the weapon." + ] + } + ], + "traitTags": [ + "Tunneler", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TP", + "U" + ], + "damageTags": [ + "B", + "O", + "S" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tribal Warrior Spore Servant", + "source": "IDRotF", + "page": 52, + "_copy": { + "name": "Tribal Warrior", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "tribal warrior", + "with": "spore servant", + "flags": "i" + } + ] + } + }, + "type": "plant", + "alignment": [ + "U" + ], + "speed": { + "walk": 20 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed" + ], + "languages": null, + "trait": null, + "traitTags": [], + "senseTags": [ + "B" + ], + "languageTags": [], + "hasToken": true + }, + { + "name": "Vellynne Harpell", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 273, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item bracers of defense}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 20 + }, + "str": 10, + "dex": 12, + "con": 17, + "int": 18, + "wis": 15, + "cha": 13, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Orc" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Vellynne is an 8th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell ray of sickness}", + "{@spell Tasha's hideous laughter}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell hold person}", + "{@spell ray of enfeeblement}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell Leomund's tiny hut}", + "{@spell vampiric touch} (see \"Actions\" below)" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell arcane eye}", + "{@spell blight}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Vellynne wears {@item bracers of defense} and carries a {@item wand of magic missiles} (see \"Actions\" below)." + ] + } + ], + "action": [ + { + "name": "Vampiric Touch (3rd-Level Spell; Requires a Spell Slot)", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) necrotic damage, and Vellynne regains hit points equal to half the necrotic damage dealt. If Vellynne casts this spell using a spell slot of 4th level or higher, the necrotic damage increases by {@damage 1d6} for each slot level above 3rd." + ] + }, + { + "name": "Chill Touch (Cantrip)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}9 ({@damage 2d8}) necrotic damage, and the target can't regain hit points until the start of Vellynne's next turn." + ] + }, + { + "name": "Wand of Magic Missiles", + "entries": [ + "While holding this wand, Vellynne can expend 1 or more of its 7 charges to cast the {@spell magic missile} spell from it. She can expend 1 charge to cast the 1st-level version of the spell. She can increase the spell slot level by one for each additional charge she expends. The wand regains {@dice 1d6 + 1} expended charges daily at dawn. If the wand's last charge is expended, roll a {@dice d20}; on a 1, the wand crumbles into ashes and is destroyed." + ] + } + ], + "languageTags": [ + "C", + "D", + "DR", + "E", + "O" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "I", + "N" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflictSpell": [ + "incapacitated", + "paralyzed", + "poisoned", + "prone" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Verbeeg Longstrider", + "source": "IDRotF", + "page": 311, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42" + }, + "speed": { + "walk": 50 + }, + "str": 19, + "dex": 15, + "con": 16, + "int": 13, + "wis": 14, + "cha": 10, + "save": { + "dex": "+5", + "con": "+6", + "wis": "+5" + }, + "skill": { + "animal handling": "+5", + "athletics": "+7", + "stealth": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Giant" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The verbeeg's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no components:" + ], + "daily": { + "1e": [ + "{@spell animal messenger}", + "{@spell fog cloud}", + "{@spell freedom of movement}", + "{@spell pass without trace}", + "{@spell silence}", + "{@spell water walk}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Simple Weapon Wielder", + "entries": [ + "A simple weapon deals one extra die of its damage when the verbeeg hits with it (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The verbeeg makes two melee attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, or 17 ({@damage 3d8 + 4}) piercing damage if used to make a ranged attack or used with two hands to make a melee attack." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}9 ({@damage 3d4 + 2}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of its next turn." + ] + } + ], + "attachedItems": [ + "sling|phb", + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "deafened" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Verbeeg Marauder", + "source": "IDRotF", + "page": 311, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 11, + "con": 16, + "int": 11, + "wis": 10, + "cha": 9, + "save": { + "dex": "+2", + "con": "+5" + }, + "skill": { + "animal handling": "+2", + "athletics": "+6", + "stealth": "+2" + }, + "passive": 10, + "languages": [ + "Common", + "Giant" + ], + "cr": "4", + "trait": [ + { + "name": "Simple Weapon Wielder", + "entries": [ + "A simple weapon deals one extra die of its damage when the verbeeg hits with it (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The verbeeg makes two melee attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, or 17 ({@damage 3d8 + 4}) piercing damage if used to make a ranged attack or used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Walrus", + "source": "IDRotF", + "page": 312, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 9 + ], + "hp": { + "average": 22, + "formula": "3d10 + 6" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 15, + "dex": 9, + "con": 14, + "int": 3, + "wis": 11, + "cha": 4, + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The walrus can hold its breath for 10 minutes." + ] + } + ], + "action": [ + { + "name": "Tusks", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Xardorok Sunblight", + "isNpc": true, + "isNamedCreature": true, + "source": "IDRotF", + "page": 287, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|PHB}" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 25 + }, + "str": 16, + "dex": 11, + "con": 18, + "int": 12, + "wis": 13, + "cha": 18, + "save": { + "wis": "+4", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "deception": "+7", + "intimidation": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Xardorok's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell eldritch blast} (see \"Actions\" below)", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell hold person}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "Xardorok has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Xardorok has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Xardorok attacks twice with a weapon or casts {@spell eldritch blast} twice." + ] + }, + { + "name": "Spiked Gauntlet", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, or 8 ({@damage 2d4 + 3}) piercing damage while Xardorok is enlarged." + ] + }, + { + "name": "Eldritch Blast (Cantrip)", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one creature. {@h}9 ({@damage 1d10 + 4}) force damage." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, Xardorok magically increases in size, along with anything he is wearing or carrying. While enlarged, Xardorok is Large, doubles his damage dice on Strength-based weapon attacks (included in his attacks), and makes Strength checks and Strength saving throws with advantage. If Xardorok lacks the room to become Large, he attains the maximum size possible in the space available." + ] + }, + { + "name": "Invisibility {@recharge 4}", + "entries": [ + "Xardorok magically turns {@condition invisible} until he attacks, he casts a spell, he uses his Enlarge, or his {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment Xardorok wears or carries is {@condition invisible} with him." + ] + } + ], + "reaction": [ + { + "name": "Hellish Rebuke (2/Day)", + "entries": [ + "When Xardorok is damaged by a creature within 60 feet of him that he can see, the creature that damaged him is engulfed in hellish flames and must make a {@dc 15} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "F", + "O", + "P" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yeti Tyke", + "source": "IDRotF", + "page": 313, + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 10, + "dex": 11, + "con": 12, + "int": 6, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "cold" + ], + "languages": [ + "understands Yeti but can't speak" + ], + "cr": "1/8", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The yeti has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Snow Camouflage", + "entries": [ + "The yeti has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage plus 2 ({@damage 1d4}) cold damage." + ] + } + ], + "traitTags": [ + "Camouflage", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "OTH" + ], + "damageTags": [ + "C", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Griffon (Medium)", + "source": "IDRotF", + "page": 163, + "_copy": { + "name": "Griffon", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Beak", + "items": { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Claws", + "items": { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage." + ] + } + } + ] + } + }, + "size": [ + "M" + ], + "hp": { + "average": 32, + "formula": "5d6 + 15" + }, + "str": 12, + "dex": 15, + "con": 16, + "cr": "1", + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Griffon (Small)", + "source": "IDRotF", + "page": 163, + "_copy": { + "name": "Griffon", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Beak", + "items": { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Claws", + "items": { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ] + } + } + ] + } + }, + "size": [ + "S" + ], + "hp": { + "average": 13, + "formula": "2d6 + 6" + }, + "str": 8, + "cr": "1/4", + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Griffon (Tiny)", + "source": "IDRotF", + "page": 163, + "_copy": { + "name": "Griffon", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Beak", + "items": { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Claws", + "items": { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + } + } + ] + } + }, + "size": [ + "T" + ], + "hp": { + "average": 5, + "formula": "1d4 + 3" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 2, + "dex": 15, + "con": 16, + "cr": "0", + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Afsoun Ghorbani", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 162, + "_copy": { + "name": "Archmage", + "source": "MM", + "_templates": [ + { + "name": "High Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Afsoun", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "traitTags": [ + "Fey Ancestry", + "Magic Resistance" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Amanisha Manivarshi", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 127, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Amanisha", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ameyali", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 108, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Ameyali", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ashen Heir Anarchist", + "source": "JttRC", + "page": 150, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "spy", + "with": "anarchist" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ashen Heir Assassin", + "source": "JttRC", + "page": 158, + "_copy": { + "name": "Assassin", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Ashen Heir Mage", + "source": "JttRC", + "page": 158, + "_copy": { + "name": "Mage", + "source": "MM" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ashen Heir Veteran", + "source": "JttRC", + "page": 158, + "_copy": { + "name": "Veteran", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Atash", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 166, + "_copy": { + "name": "Solar", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the solar", + "with": "Atash", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Atiba-Pa", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 171, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Atiba-Pa", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Aunt Dellie", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 36, + "_copy": { + "name": "Commoner", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the commoner", + "with": "Aunt Dellie", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Aurumvorax", + "source": "JttRC", + "page": 105, + "otherSources": [ + { + "source": "QftIS" + } + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8" + }, + "speed": { + "walk": 30, + "burrow": 20 + }, + "str": 14, + "dex": 13, + "con": 12, + "int": 3, + "wis": 12, + "cha": 6, + "save": { + "str": "+4", + "con": "+3" + }, + "skill": { + "perception": "+3", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "petrified" + ], + "cr": "2", + "trait": [ + { + "name": "Tunneler", + "entries": [ + "The aurumvorax can burrow through solid rock and metal at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aurumvorax makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. If the target is a creature wearing armor of any type, the aurumvorax regains 4 ({@dice 1d6 + 1}) hit points." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the aurumvorax can't use its Claw attack on another target, and when it moves, it can drag the {@condition grappled} creature with it, without the aurumvorax's speed being halved." + ] + } + ], + "traitTags": [ + "Tunneler" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Aurumvorax Den Leader", + "source": "JttRC", + "page": 105, + "otherSources": [ + { + "source": "QftIS" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 40, + "burrow": 20 + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 3, + "wis": 13, + "cha": 8, + "save": { + "str": "+6", + "con": "+4" + }, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "petrified" + ], + "cr": "4", + "trait": [ + { + "name": "Pack Leader", + "entries": [ + "The aurumvorax's allies have advantage on attack rolls while within 10 feet of the aurumvorax, provided it isn't {@condition incapacitated}." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The aurumvorax can burrow through solid rock and metal at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aurumvorax makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage. If the target is a creature wearing armor of any type, the aurumvorax gains one of the following benefits of its choice:" + ] + }, + { + "name": "Frenzy", + "entries": [ + "The aurumvorax has advantage on attack rolls until start of its next turn." + ] + }, + { + "name": "Invigorate", + "entries": [ + "The aurumvorax regains 6 ({@dice 1d8 + 2}) hit points." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the aurumvorax can't use its Claw attack on another target, and when it moves, it can drag the {@condition grappled} creature with it, without the aurumvorax's speed being halved." + ] + } + ], + "traitTags": [ + "Tunneler" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Awa", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 95, + "_copy": { + "name": "Commoner", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the commoner", + "with": "Awa", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Azra Nir", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 74, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Azra", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bakunawa", + "source": "JttRC", + "page": 147, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "12d20 + 24" + }, + "speed": { + "walk": 20, + "fly": 60, + "swim": 60 + }, + "str": 21, + "dex": 12, + "con": 15, + "int": 14, + "wis": 17, + "cha": 16, + "save": { + "dex": "+5", + "con": "+6", + "wis": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 21, + "resist": [ + "lightning", + "thunder" + ], + "languages": [ + "Celestial", + "Common", + "Draconic" + ], + "cr": "12", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The bakunawa can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the bakunawa fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bakunawa makes one Bite attack and one Storm Slam attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 7 ({@damage 2d6}) lightning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be swallowed by the bakunawa. A swallowed creature is {@condition blinded} and {@condition restrained}, and it has {@quickref Cover||3||total cover} against attacks and other effects outside the bakunawa. At the start of each of the bakunawa's turns, each swallowed creature takes 10 ({@damage 3d6}) lightning damage.", + "The bakunawa's gullet can hold up to two creatures at a time. If the bakunawa takes 30 damage or more on a single turn from a swallowed creature, the bakunawa must succeed on a {@dc 16} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 15 feet of the bakunawa. If the bakunawa dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Storm Slam", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage plus 5 ({@damage 1d10}) thunder damage, and the target is pushed up to 10 feet in a horizontal direction away from the bakunawa." + ] + } + ], + "legendary": [ + { + "name": "Nimble Glide", + "entries": [ + "The bakunawa flies or swims up to half its speed. This movement doesn't provoke opportunity attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "The bakunawa makes one Storm Slam attack." + ] + }, + { + "name": "Lightning Strikes (Costs 3 Actions)", + "entries": [ + "The bakunawa arcs lightning at up to two creatures it can see within 60 feet of itself. Each target must succeed on a {@dc 15} Dexterity saving throw or take 22 ({@damage 4d10}) lightning damage." + ] + } + ], + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "languageTags": [ + "C", + "CE", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "T" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brother Broumane", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 178, + "_copy": { + "name": "Nightsea chil-liren", + "source": "JttRC", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "Nightsea chil-liren", + "with": "Brother Broumane", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Dinosaur Skeleton", + "source": "JttRC", + "page": 57, + "_copy": { + "name": "Allosaurus", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "allosaurus", + "with": "skeleton" + } + } + }, + "type": "undead", + "senses": [ + "darkvision 60 ft." + ], + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Diva", + "source": "JttRC", + "page": 72, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "scout", + "with": "diva" + } + } + }, + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scout makes two melee attacks." + ] + }, + { + "name": "Broken Bottle", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Diva Luma", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 71, + "_copy": { + "name": "Assassin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Diva Luma", + "flags": "i" + } + } + }, + "action": [ + { + "name": "Multiattack", + "entries": [ + "Diva Luma makes two high-heeled shoe attacks." + ] + }, + { + "name": "High-Heeled Shoe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Djeneba", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 173, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Djeneba", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Dragon Hunter", + "source": "JttRC", + "page": 138, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "veteran", + "with": "dragon hunter" + }, + "action": { + "mode": "replaceArr", + "replace": "Heavy Crossbow", + "items": { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, ranged 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + } + } + }, + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dukha Bhatiyali", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 124, + "_copy": { + "name": "Weretiger", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the weretiger", + "with": "Dukha", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Farmer", + "isNpc": true, + "source": "JttRC", + "page": 36, + "_copy": { + "name": "Cultist", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "cultist", + "with": "farmer" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gammon Xungoon", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 20, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Kobold", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the commoner", + "with": "Gammon", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Haint", + "source": "JttRC", + "page": 185, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 7, + "dex": 15, + "con": 17, + "int": 10, + "wis": 13, + "cha": 17, + "skill": { + "deception": "+6", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "any languages it knew in life" + ], + "cr": "7", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The haint can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The haint doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The haint makes two Sorrowful Touch attacks." + ] + }, + { + "name": "Sorrowful Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one creature. {@h}21 ({@damage 4d8 + 3}) psychic damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The haint magically assumes the appearance of the Humanoid it was in life, while retaining its game statistics. The assumed appearance ends if the haint is reduced to 0 hit points or uses an action to end it." + ] + } + ], + "bonus": [ + { + "name": "Shared Sorrow", + "entries": [ + "The haint targets one creature it can see within 60 feet of itself that is missing any hit points, sharing its own torment with this pained soul. The target must succeed on a {@dc 14} Wisdom saving throw or be {@condition incapacitated}.", + "A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the haint's Shared Sorrow for the next 24 hours." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O", + "Y" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jade Statue", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 195, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "statue" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Jijibisha Manivarshi", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 128, + "_copy": { + "name": "Ultroloth", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ultroloth", + "with": "Jijibisha", + "flags": "i" + }, + "_": { + "mode": "removeSpells", + "daily": { + "3e": [ + "{@spell dimension door}", + "{@spell fear}" + ], + "1e": [ + "{@spell fire storm}", + "{@spell mass suggestion}" + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kala Mabarin", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 70, + "_copy": { + "name": "Druid", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the druid", + "with": "Kala", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kasem Aroon", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 21, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Kasem", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kedjou Kamal", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 96, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Kedjou", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kianna", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 42, + "_copy": { + "name": "Commoner", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the commoner", + "with": "Kianna", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Koi Prawn", + "source": "JttRC", + "page": 26, + "_copy": { + "name": "Giant Sea Horse", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "sea horse", + "with": "prawn" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kun Ahn-Jun", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 81, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Kun Ahn-Jun", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kusa Xungoon", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 20, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Kobold", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Kusa", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lady Dre", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 37, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Lady Dre", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Laleh Ghorbani", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 156, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "High Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Laleh", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "traitTags": [ + "Fey Ancestry", + "Keen Senses" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lamai Tyenmo", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 20, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the commoner", + "with": "Lamai", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lu Zhong Yin", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 189, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Lu Zhong", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lungtian", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 136, + "_copy": { + "name": "Dryad", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dryad", + "with": "Lungtian", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Madam Kulp", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 27, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Madam Kulp", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Myx Nargis Ruba", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 71, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Orc", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Nargis", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "traitTags": [ + "Aggressive" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Navid", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 159, + "_copy": { + "name": "Efreeti", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the efreeti", + "with": "Navid", + "flags": "i" + }, + "_": { + "mode": "addSpells", + "will": [ + "{@spell polymorph} (self only)" + ] + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nene", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 205, + "_copy": { + "name": "Hawk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the hawk", + "with": "Nene", + "flags": "i" + } + } + }, + "type": "fey", + "int": 7, + "languages": [ + "Understands simple phrases and concepts in Common" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nightsea chil-liren", + "source": "JttRC", + "page": 177, + "_copy": { + "name": "Merfolk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "merfolk", + "with": "nightsea chil-liren" + }, + "trait": { + "mode": "replaceArr", + "replace": "Amphibious", + "items": { + "name": "Water Breathing", + "entries": [ + "Nightsea chil-liren can breathe only underwater." + ] + } + } + } + }, + "senses": [ + "darkvision 60 ft." + ], + "traitTags": [ + "Water Breathing" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Nimuel", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 136, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Nimuel", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ollin", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 109, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Ollin", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "skill": { + "medicine": "+7", + "performance": "+3", + "religion": "+5" + }, + "languages": [ + "Common", + "Ignan", + "Tletlahtolli" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Paloma", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 52, + "_copy": { + "name": "Assassin", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Paloma", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Paolo Maykapal", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 138, + "_copy": { + "name": "Dragon Hunter", + "source": "JttRC", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon hunter", + "with": "Paolo", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Pari", + "source": "JttRC", + "page": 167, + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 180, + "formula": "19d8 + 95" + }, + "speed": { + "walk": 30, + "fly": 90 + }, + "str": 20, + "dex": 20, + "con": 20, + "int": 20, + "wis": 22, + "cha": 22, + "save": { + "con": "+10", + "wis": "+11", + "cha": "+11" + }, + "skill": { + "insight": "+16", + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "fire", + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pari casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell detect evil and good}" + ], + "daily": { + "2e": [ + "{@spell cure wounds} (as a 6th-level spell)", + "{@spell lesser restoration}" + ], + "1e": [ + "{@spell commune} (as an action)", + "{@spell dispel evil and good}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The pari has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The pari doesn't require food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pari makes three Mace attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage plus 14 ({@damage 4d6}) radiant damage." + ] + }, + { + "name": "Disorienting Futures", + "entries": [ + "The pari attempts to flood the mind of one creature it can see within 60 feet of itself with visions of the future. The target must succeed on a {@dc 19} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage and have disadvantage on attack rolls until the start of the pari's next turn." + ] + } + ], + "attachedItems": [ + "mace|phb" + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "R", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Prince Kirina", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 94, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Kirina", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Royal Blood", + "entries": [ + "If Kirina is reduced to half of his hit points or fewer, he uses the {@action Dodge} action to avoid taking further damage." + ] + } + }, + "action": { + "mode": "removeArr", + "names": [ + "Shortsword", + "Heavy Crossbow" + ] + } + } + }, + "ac": [ + 11 + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Prince Simbon", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 94, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Simbon", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Royal Blood", + "entries": [ + "If Simbon is reduced to half of his hit points or fewer, he uses the {@action Dodge} action to avoid taking further damage." + ] + } + }, + "action": { + "mode": "removeArr", + "names": [ + "Shortsword", + "Heavy Crossbow" + ] + } + } + }, + "ac": [ + 11 + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Riverine", + "source": "JttRC", + "page": 133, + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "A" + ], + "ac": [ + 14 + ], + "hp": { + "average": 204, + "formula": "24d10 + 72" + }, + "speed": { + "walk": 30, + "swim": 60 + }, + "str": 20, + "dex": 19, + "con": 17, + "int": 12, + "wis": 16, + "cha": 21, + "save": { + "int": "+5", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "insight": "+7", + "nature": "+5", + "perception": "+7" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 17, + "resist": [ + "acid", + "fire" + ], + "languages": [ + "Aquan", + "Common", + "Sylvan" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The riverine casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell control water}", + "{@spell fog cloud}" + ], + "daily": { + "1": [ + "{@spell greater restoration}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The riverine can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the riverine fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The riverine makes two Flood Strike attacks." + ] + }, + { + "name": "Flood Strike", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage." + ] + } + ], + "bonus": [ + { + "name": "Whirlpool Step", + "entries": [ + "The riverine magically teleports to an unoccupied space it can see within 30 feet of itself. Both the space it leaves and its destination must be in or on the surface of water." + ] + } + ], + "legendary": [ + { + "name": "Whirlpool Rush", + "entries": [ + "The riverine uses its Whirlpool Step. Immediately after it teleports, each creature within 5 feet of the riverine's destination space takes 5 ({@damage 1d10}) cold damage." + ] + }, + { + "name": "Raging Deluge (Costs 2 Actions)", + "entries": [ + "The riverine unleashes a torrent of river water in a 30-foot line that is 5 feet wide. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 11 ({@damage 2d10}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ] + } + ], + "legendaryGroup": { + "name": "Riverine", + "source": "JttRC" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C", + "S" + ], + "damageTags": [ + "B", + "C" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rooster", + "source": "JttRC", + "page": 206, + "_copy": { + "name": "Hawk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "hawk", + "with": "rooster" + } + } + }, + "speed": { + "walk": 10 + }, + "hasToken": true + }, + { + "name": "Samira Arah", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 68, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "High Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Samira", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "traitTags": [ + "Fey Ancestry", + "Sneak Attack" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Serapio", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 61, + "_copy": { + "name": "Tlacatecolo", + "source": "JttRC", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tlacatecolo", + "with": "Serapio", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sholeh", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 14, + "_copy": { + "name": "Ancient Brass Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Sholeh", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "conditionInflictLegendary": [], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Soul Shaker", + "source": "JttRC", + "page": 47, + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d10 + 32" + }, + "speed": { + "walk": 20 + }, + "str": 20, + "dex": 8, + "con": 18, + "int": 8, + "wis": 11, + "cha": 14, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "telepathy 60 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Enthralled Lure (1/Day)", + "entries": [ + "The soul shaker can cast the {@spell geas} spell, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 12})." + ] + }, + { + "name": "Reconstruction", + "entries": [ + "When the soul shaker is reduced to 0 hit points, it explodes into 7 ({@dice 1d4 + 5}) crawling claws. After 6 ({@dice 1d12}) days, if at least two of those crawling claws are alive, they teleport to the location of the soul shaker's death and merge together, whereupon the soul shaker reforms and regains all its hit points." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The soul shaker doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Crushing Grasp", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). The soul shaker can have only one creature {@condition grappled} in this way at a time." + ] + } + ], + "bonus": [ + { + "name": "Consume Vitality", + "entries": [ + "The soul shaker targets a creature it is grappling. If the target is not a Construct or an Undead, the target must succeed on a {@dc 14} Constitution saving throw or take 7 ({@damage 2d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the soul shaker regains hit points equal to that amount. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tlacatecolo", + "source": "JttRC", + "page": 65, + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 12, + "dex": 17, + "con": 14, + "int": 10, + "wis": 15, + "cha": 10, + "save": { + "dex": "+6", + "con": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The tlacatecolo has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tlacatecolo makes two Talon attacks." + ] + }, + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 3}) piercing damage plus 14 ({@damage 3d8}) poison damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The tlacatecolo magically transforms into a Medium owl, while retaining its game statistics (other than its size). This transformation ends if the tlacatecolo is reduced to 0 hit points or if it uses its action to end it." + ] + }, + { + "name": "Plague Winds (Fiend Form Only; Recharge 5-6)", + "entries": [ + "The tlacatecolo emits a chilling, disease-ridden wind in a 60-foot line that is 10 feet wide. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or take 26 ({@damage 4d12}) cold damage and become {@condition poisoned}.", + "While {@condition poisoned} in this way, the creature can't regain hit points. At the end of every hour, the creature must succeed on a {@dc 13} Constitution saving throw or gain 1 level of {@condition exhaustion}. If the creature is in direct sunlight when it makes this saving throw, it automatically succeeds on the save.", + "If the creature is targeted by magic that ends a poison or disease, such as lesser restoration, while the creature isn't in direct sunlight, the effect does not end." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "C", + "I", + "P" + ], + "miscTags": [ + "AOE", + "DIS", + "MW" + ], + "conditionInflict": [ + "exhaustion", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tlexolotl", + "source": "JttRC", + "page": 119, + "size": [ + "H" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "11d12 + 33" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 10, + "con": 17, + "int": 7, + "wis": 13, + "cha": 9, + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "passive": 11, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Ignan" + ], + "cr": "10", + "trait": [ + { + "name": "Fire Aura", + "entries": [ + "At the start of each of the tlexolotl's turns, each creature within 10 feet of it takes 7 ({@damage 2d6}) fire damage, and flammable objects in that aura that aren't being worn or carried ignite. A creature that touches the tlexolotl or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) fire damage." + ] + }, + { + "name": "Illumination", + "entries": [ + "The tlexolotl sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The tlexolotl regains 10 hit points at the start of its turn. If the tlexolotl takes cold damage or is immersed in water, this trait doesn't function at the start of the tlexolotl's next turn. The tlexolotl dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tlexolotl makes one Bite attack and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}12 ({@damage 1d10 + 7}) piercing damage plus 18 ({@damage 4d8}) fire damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Strength saving throw or be pushed up to 10 feet away from the tlexolotl and knocked {@condition prone}." + ] + }, + { + "name": "Pyroclasm {@recharge 5}", + "entries": [ + "Gouts of molten lava erupt from the tlexolotl's body. Each creature in a 30-foot-radius sphere centered on the tlexolotl must make a {@dc 15} Dexterity saving throw. On a failed saving throw, a creature takes 21 ({@damage 6d6}) fire damage and 21 ({@damage 6d6}) bludgeoning damage. On a successful saving throw, a creature takes half as much damage." + ] + } + ], + "traitTags": [ + "Illumination", + "Regeneration" + ], + "senseTags": [ + "SD", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tonalli", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 110, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Tonalli", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Tungsten Ward", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 38, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Tungsten", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Uzoma Baten", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 94, + "_copy": { + "name": "Guard", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the guard", + "with": "Uzoma", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Vi Aroon", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 28, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Vi", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Wei Feng Ying", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 188, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Wei Feng", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Whistler", + "source": "JttRC", + "page": 221, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 180, + "formula": "24d10 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 16, + "con": 14, + "int": 15, + "wis": 16, + "cha": 18, + "save": { + "dex": "+7", + "cha": "+8" + }, + "skill": { + "stealth": "+11" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "9", + "trait": [ + { + "name": "Blurred Form", + "entries": [ + "Attack rolls against the whistler are made with disadvantage unless the whistler is {@condition incapacitated}." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The whistler doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The whistler makes three Psychic Swipe attacks." + ] + }, + { + "name": "Psychic Swipe", + "entries": [ + "{@atk ms} {@hit 8} to hit, reach 10 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage." + ] + }, + { + "name": "Otherworldly Melody {@recharge 5}", + "entries": [ + "The whistler telepathically whistles an otherworldly melody into the minds of up to two creatures it can see within range of its telepathy. Each target must succeed on a {@dc 16} Wisdom saving throw or take 33 ({@damage 6d10}) psychic damage and become {@condition frightened} of the whistler for 1 minute. A {@condition frightened} creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Surreal Step", + "entries": [ + "The whistler teleports up to 20 feet to an unoccupied space it can see." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "Y" + ], + "miscTags": [ + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "White Jade Emperor", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 197, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Hill Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "noble", + "with": "emperor" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Wynling", + "source": "JttRC", + "page": 33, + "size": [ + "T" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 15 + ], + "hp": { + "average": 21, + "formula": "6d4 + 6" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 10, + "wis": 14, + "cha": 16, + "skill": { + "sleight of hand": "+7", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Sylvan" + ], + "cr": "1/2", + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) bludgeoning damage." + ] + }, + { + "name": "Cloak of the Mountain {@recharge 4}", + "entries": [ + "The wynling magically turns {@condition invisible}, along with any equipment it is wearing or carrying, for 1 minute or until it makes an attack roll." + ] + } + ], + "reaction": [ + { + "name": "Trickster's Flight", + "entries": [ + "Immediately after a creature the wynling can see misses the wynling with an attack roll, the wynling can move up to 30 feet. This movement doesn't provoke opportunity attacks." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xocopol", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 112, + "_copy": { + "name": "Fire Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Xocopol", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The giant makes two greathammer attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greathammer", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) bludgeoning damage." + ] + } + } + ] + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Yarana", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 204, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Yarana", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Young-Gi", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 85, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Dragonborn (Red)", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Young-Gi", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zisatta", + "isNpc": true, + "isNamedCreature": true, + "source": "JttRC", + "page": 177, + "_copy": { + "name": "Nightsea chil-liren", + "source": "JttRC", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "Nightsea chil-liren", + "with": "Zisatta", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Goblin Gang Member", + "source": "KKW", + "page": 167, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 16, + "con": 10, + "int": 10, + "wis": 10, + "cha": 8, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1/4", + "trait": [ + { + "name": "Nimble Escape", + "entries": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "light crossbow|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Krenko", + "isNpc": true, + "isNamedCreature": true, + "source": "KKW", + "page": 168, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 21, + "formula": "6d6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 10, + "wis": 8, + "cha": 14, + "skill": { + "stealth": "+6", + "deception": "+4", + "persuasion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1", + "trait": [ + { + "name": "Nimble Escape", + "entries": [ + "Krenko can take the Disengage or Hide action as a bonus action on each of his turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Krenko makes two attacks with his scimitar." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage plus 2 ({@damage 1d4}) poison damage.." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Redirect Attack", + "entries": [ + "When a creature Krenko can see targets him with an attack, Krenko chooses another goblin within 5 feet of him. The two goblins swap places, and the chosen goblin becomes the target instead." + ] + } + ], + "attachedItems": [ + "light crossbow|phb", + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Loading Rig", + "isNpc": true, + "source": "KKW", + "page": 170, + "size": [ + "L" + ], + "type": { + "type": "construct" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 11, + "con": 13, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The rig is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the rig must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "Unstable", + "entries": [ + "If the rig takes damage, it must succeed on a {@dc 10} Constitution saving throw or be {@condition incapacitated} with a speed of 0 until a creature activates it with a successful {@dc 10} Intelligence ({@skill Arcana}) check made as an action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The armor makes two melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ash Zombie", + "source": "LMoP", + "page": 31, + "reprintedAs": [ + "Ash Zombie|PaBTSO" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 8 + ], + "hp": { + "average": 22, + "formula": "3d8 + 9" + }, + "speed": { + "walk": 20 + }, + "str": 13, + "dex": 6, + "con": 16, + "int": 3, + "wis": 6, + "cha": 5, + "save": { + "wis": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands all languages it spoke in life but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + }, + { + "name": "Ash Puff", + "entries": [ + "The first time the zombie takes damage, any living creature within 5 feet of the zombie must succeed on a {@dc 10} Constitution saving throw or gain disadvantage on attack rolls, saving throws, and ability checks for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on it early with a successful save." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Evil Mage", + "source": "LMoP", + "page": 57, + "otherSources": [ + { + "source": "RMBRE" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+5", + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "history": "+5" + }, + "passive": 11, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage is a 4th-level spellcaster that uses Intelligence as its spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks). The mage knows the following spells from the wizard's spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell misty step}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d8 - 1}) bludgeoning damage." + ] + } + ], + "altArt": [ + { + "name": "Evil Mage", + "source": "RMBRE" + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "L", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Gundren Rockseeker", + "isNpc": true, + "isNamedCreature": true, + "source": "LMoP", + "page": 41, + "reprintedAs": [ + "Gundren Rockseeker|PaBTSO" + ], + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ] + }, + "hasToken": true + }, + { + "name": "Mormesk the Wraith", + "isNpc": true, + "isNamedCreature": true, + "source": "LMoP", + "page": 59, + "reprintedAs": [ + "Mormesk the Wraith|PaBTSO" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 0, + "fly": 60 + }, + "str": 6, + "dex": 16, + "con": 16, + "int": 12, + "wis": 14, + "cha": 15, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "3", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The wraith can move through an object or another creature, but can't stop there." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the wraith has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}16 ({@damage 3d8 + 3}) necrotic damage, and the target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. If this attack reduces the target's hit point maximum to 0, the target dies. This reduction to the target's hit point maximum lasts until the target finishes a long rest." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nezznar the Black Spider", + "isNpc": true, + "isNamedCreature": true, + "source": "LMoP", + "page": 59, + "reprintedAs": [ + "Nezznar the Spider|PaBTSO" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 13, + "con": 10, + "int": 16, + "wis": 14, + "cha": 13, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "arcana": "+5", + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Nezznar can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire} (save {@dc 12})" + ] + } + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Nezznar is a 4th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks). Nezznar has the following spells prepared from the wizard's spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell suggestion}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Nezznar has a {@item spider staff|lmop}." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Nezznar has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "Nezznar has disadvantage on attack rolls when he or his target is in sunlight." + ] + } + ], + "action": [ + { + "name": "Spider Staff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "B", + "I" + ], + "damageTagsSpell": [ + "C", + "L", + "O" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nundro Rockseeker", + "isNpc": true, + "isNamedCreature": true, + "source": "LMoP", + "page": 50, + "reprintedAs": [ + "Nundro Rockseeker|PaBTSO" + ], + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ] + }, + "hasToken": true + }, + { + "name": "Redbrand Ruffian", + "source": "LMoP", + "page": 61, + "reprintedAs": [ + "Redbrand Ruffian|PaBTSO" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 9, + "wis": 9, + "cha": 11, + "skill": { + "intimidation": "+2" + }, + "passive": 9, + "languages": [ + "Common" + ], + "cr": "1/2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ruffian makes two melee attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sildar Hallwinter", + "isNpc": true, + "isNamedCreature": true, + "source": "LMoP", + "page": 61, + "reprintedAs": [ + "Sildar Hallwinter|PaBTSO" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 10, + "con": 12, + "int": 10, + "wis": 11, + "cha": 10, + "save": { + "str": "+3", + "con": "+3" + }, + "skill": { + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Sildar makes two melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "When an attacker hits Sildar with a melee attack and Sildar can see the attacker, he can roll {@dice 1d6} and add the number rolled to his AC against the triggering attack, provided that he's wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Venomfang", + "isNpc": true, + "isNamedCreature": true, + "source": "LMoP", + "page": 63, + "_copy": { + "name": "Young Green Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Venomfang", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Aarakocra Spelljammer", + "source": "LoX", + "page": 43, + "_copy": { + "name": "Mage", + "source": "MM", + "_templates": [ + { + "name": "Aarakocra", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "\\bmage\\b", + "with": "aarakocra" + } + } + }, + "hasToken": true + }, + { + "name": "Agony", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 34, + "_copy": { + "name": "Ghost", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ghost", + "with": "Agony", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Astral Blight", + "source": "LoX", + "page": 10, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 10 + }, + "str": 16, + "dex": 8, + "con": 14, + "int": 6, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "resist": [ + "cold", + "radiant" + ], + "cr": "1", + "trait": [ + { + "name": "Illumination", + "entries": [ + "While it has at least 1 hit point, the astral blight sheds dim light in a 10-foot radius." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The blight doesn't require air or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blight makes two Heat-Draining Vine attacks." + ] + }, + { + "name": "Heat-Draining Vine", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) radiant damage, and if the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target takes 3 ({@damage 1d6}) cold damage at the start of each of its turns. The blight has two vines, each of which can grapple one creature." + ] + } + ], + "traitTags": [ + "Illumination", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "C", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Big Momma", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 29, + "_copy": { + "name": "Void Scavver", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scavver", + "with": "Big Momma", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Commodore Krux", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 22, + "_copy": { + "name": "Giff Shipmate", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giff", + "with": "Krux", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Elaina Sartell", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 11, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Elaina", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Fel Ardra", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 23, + "_copy": { + "name": "Cult Fanatic", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the fanatic", + "with": "Fel", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Flapjack", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 13, + "_copy": { + "name": "Flumph", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the flumph", + "with": "Flapjack", + "flags": "i" + } + } + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Flapjack casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell magic missile}", + "{@spell unseen servant}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grimzod Gargenhale", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 32, + "_copy": { + "name": "Vampirate Captain", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Grimzod", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Hastain", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 25, + "_copy": { + "name": "Reigar", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the reigar", + "with": "Hastain", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Prince Xeleth", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 48, + "_copy": { + "name": "Astral Elf Aristocrat", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the elf", + "with": "Xeleth", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Princess Xedalli", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 60, + "_copy": { + "name": "Astral Elf Aristocrat", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the elf", + "with": "Xedalli", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Topolah", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 27, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Topolah", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Vocath", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 42, + "_copy": { + "name": "Mercane", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mercane", + "with": "Vocath", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Warwyck Blastimoff", + "isNpc": true, + "isNamedCreature": true, + "source": "LoX", + "page": 39, + "_copy": { + "name": "Giff Shipmate", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giff", + "with": "Warwyck", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Aarakocra", + "source": "MM", + "page": 12, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "LoX" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Aarakocra Skirmisher|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "aarakocra" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 20, + "fly": 50 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 11, + "wis": 12, + "cha": 11, + "skill": { + "perception": "+5" + }, + "passive": 15, + "languages": [ + "Auran", + "Aarakocra" + ], + "cr": "1/4", + "trait": [ + { + "name": "Dive Attack", + "entries": [ + "If the aarakocra is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 3 ({@damage 1d6}) damage to the target." + ] + } + ], + "action": [ + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Summon Air Elemental", + "entries": [ + "Five aarakocra within 30 feet of each other can magically summon an {@creature air elemental}. Each of the five must use its action and movement on three consecutive turns to perform an aerial dance and must maintain {@status concentration} while doing so (as if {@status concentration||concentrating} on a spell). When all five have finished their third turn of the dance, the elemental appears in an unoccupied space within 60 feet of them. It is friendly toward them and obeys their spoken commands. It remains for 1 hour, until it or all its summoners die, or until any of its summoners dismisses it as a bonus action. A summoner can't perform the dance again until it finishes a short rest. When the elemental returns to the Elemental Plane of Air, any aarakocra within 5 feet of it can return with it." + ] + } + ], + "environment": [ + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/aarakocra.mp3" + }, + "attachedItems": [ + "javelin|phb" + ], + "languageTags": [ + "AU", + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aboleth", + "source": "MM", + "page": 13, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Aboleth|XMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d10 + 36" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 21, + "dex": 9, + "con": 15, + "int": 18, + "wis": 15, + "cha": 18, + "save": { + "con": "+6", + "int": "+8", + "wis": "+6" + }, + "skill": { + "history": "+12", + "perception": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 20, + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The aboleth can breathe air and water." + ] + }, + { + "name": "Mucous Cloud", + "entries": [ + "While underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 feet of it must make a {@dc 14} Constitution saving throw. On a failure, the creature is diseased for {@dice 1d4} hours. The diseased creature can breathe only underwater." + ] + }, + { + "name": "Probing Telepathy", + "entries": [ + "If a creature communicates telepathically with the aboleth, the aboleth learns the creature's greatest desires if the aboleth can see the creature." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aboleth makes three tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by {@spell heal} or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 ({@damage 1d12}) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 3d6 + 5}) bludgeoning damage." + ] + }, + { + "name": "Enslave (3/Day)", + "entries": [ + "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The {@condition charmed} target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.", + "Whenever the {@condition charmed} target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The aboleth makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Swipe", + "entries": [ + "The aboleth makes one tail attack." + ] + }, + { + "name": "Psychic Drain (Costs 2 Actions)", + "entries": [ + "One creature {@condition charmed} by the aboleth takes 10 ({@damage 3d6}) psychic damage, and the aboleth regains hit points equal to the damage the creature takes." + ] + } + ], + "legendaryGroup": { + "name": "Aboleth", + "source": "MM" + }, + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/aboleth.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "A", + "B", + "Y" + ], + "damageTagsLegendary": [ + "Y" + ], + "miscTags": [ + "DIS", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictLegendary": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "intelligence", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Abominable Yeti", + "source": "MM", + "page": 306, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Abominable Yeti|XMM" + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 137, + "formula": "11d12 + 66" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 24, + "dex": 10, + "con": 22, + "int": 9, + "wis": 13, + "cha": 9, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "cold" + ], + "languages": [ + "Yeti" + ], + "cr": "9", + "trait": [ + { + "name": "Fear of Fire", + "entries": [ + "If the yeti takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The yeti has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Snow Camouflage", + "entries": [ + "The yeti has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yeti can use its Chilling Gaze and makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 7 ({@damage 2d6}) cold damage." + ] + }, + { + "name": "Chilling Gaze", + "entries": [ + "The yeti targets one creature it can see within 30 feet of it. If the target can see the yeti, the target must succeed on a {@dc 18} Constitution saving throw against this magic or take 21 ({@damage 6d6}) cold damage and then be {@condition paralyzed} for 1 minute, unless it is immune to cold damage. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target's saving throw is successful, or if the effect ends on it, the target is immune to this yeti's gaze for 1 hour." + ] + }, + { + "name": "Cold Breath {@recharge}", + "entries": [ + "The yeti exhales a 30-foot cone of frigid air. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 45 ({@damage 10d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/abominable-yeti.mp3" + }, + "traitTags": [ + "Camouflage", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "C", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Acolyte", + "source": "MM", + "page": 342, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SjA" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Priest Acolyte|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 10 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "medicine": "+4", + "religion": "+2" + }, + "passive": 12, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The acolyte is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The acolyte has following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell sanctuary}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/acolyte.mp3" + }, + "attachedItems": [ + "club|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Adult Black Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 88, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Adult Black Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 23, + "dex": 14, + "con": 21, + "int": 14, + "wis": 13, + "cha": 17, + "save": { + "dex": "+7", + "con": "+10", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "perception": "+11", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 21, + "immune": [ + "acid" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "14", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Acid Breath {@recharge 5}", + "entries": [ + "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 54 ({@damage 12d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Black Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "swamp" + ], + "dragonCastingColor": "black", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/black-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "damageTagsLegendary": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "poisoned", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Blue Dracolich", + "source": "MM", + "page": 84, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Dracolich|XMM" + ], + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 80 + }, + "str": 25, + "dex": 10, + "con": 23, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "dex": "+6", + "con": "+12", + "wis": "+8", + "cha": "+10" + }, + "skill": { + "perception": "+14", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 24, + "resist": [ + "necrotic" + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "17", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dracolich fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The dracolich has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dracolich can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dracolich's choice that is within 120 feet of the dracolich and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dracolich's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "The dracolich exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 20} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dracolich makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dracolich makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dracolich beats its tattered wings. Each creature within 10 feet of the dracolich must succeed on a {@dc 21} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. After beating its wings this way, the dracolich can fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Blue Dragon", + "source": "MM" + }, + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blue-dracolich.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "L" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "blinded", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Blue Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 91, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Adult Blue Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 80 + }, + "str": 25, + "dex": 10, + "con": 23, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "dex": "+5", + "con": "+11", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "perception": "+12", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 22, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "16", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 19} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 20} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Blue Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "desert", + "coastal" + ], + "dragonCastingColor": "blue", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/blue-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "L" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "blinded", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Brass Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 105, + "srd": true, + "otherSources": [ + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Adult Brass Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 40, + "burrow": 40, + "fly": 80 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 14, + "wis": 13, + "cha": 17, + "save": { + "dex": "+5", + "con": "+10", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "history": "+7", + "perception": "+11", + "persuasion": "+8", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 21, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "13", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 45 ({@damage 13d6}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Sleep Breath", + "entry": "The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 18} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Brass Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "desert" + ], + "dragonCastingColor": "brass", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/brass-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "damageTagsLegendary": [ + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone", + "unconscious" + ], + "conditionInflictLegendary": [ + "blinded", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Bronze Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 108, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "DSotDQ" + } + ], + "reprintedAs": [ + "Adult Bronze Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 212, + "formula": "17d12 + 102" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 25, + "dex": 10, + "con": 23, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "dex": "+5", + "con": "+11", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "insight": "+7", + "perception": "+12", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 22, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "15", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Lightning Breath", + "entry": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 19} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Repulsion Breath", + "entry": "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 19} Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 20} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Bronze Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "coastal" + ], + "dragonCastingColor": "bronze", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/bronze-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "deafened", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Copper Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 112, + "srd": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Adult Copper Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 184, + "formula": "16d12 + 80" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 23, + "dex": 12, + "con": 21, + "int": 18, + "wis": 15, + "cha": 17, + "save": { + "dex": "+6", + "con": "+10", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "deception": "+8", + "perception": "+12", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 22, + "immune": [ + "acid" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "14", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Acid Breath", + "entry": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 54 ({@damage 12d8}) acid damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Slowing Breath", + "entry": "The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 18} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Copper Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "hill" + ], + "dragonCastingColor": "copper", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/copper-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "damageTagsLegendary": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Gold Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 114, + "srd": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Adult Gold Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 256, + "formula": "19d12 + 133" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 27, + "dex": 14, + "con": 25, + "int": 16, + "wis": 15, + "cha": 24, + "save": { + "dex": "+8", + "con": "+13", + "wis": "+8", + "cha": "+13" + }, + "skill": { + "insight": "+8", + "perception": "+14", + "persuasion": "+13", + "stealth": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 24, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "17", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 66 ({@damage 12d10}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Weakening Breath", + "entry": "The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 21} 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." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Gold Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 15} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "dragonCastingColor": "gold", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/gold-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "charmed" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Green Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 94, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Adult Green Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 23, + "dex": 12, + "con": 21, + "int": 18, + "wis": 15, + "cha": 17, + "save": { + "dex": "+6", + "con": "+10", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "deception": "+8", + "insight": "+7", + "perception": "+12", + "persuasion": "+8", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 22, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "15", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Poison Breath {@recharge 5}", + "entries": [ + "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 56 ({@damage 16d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Green Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 16} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "dragonCastingColor": "green", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/green-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "I", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "charmed", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Red Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 98, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "GotSF" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Adult Red Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 256, + "formula": "19d12 + 133" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 27, + "dex": 10, + "con": 25, + "int": 16, + "wis": 13, + "cha": 21, + "save": { + "dex": "+6", + "con": "+13", + "wis": "+7", + "cha": "+11" + }, + "skill": { + "perception": "+13", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "17", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 63 ({@damage 18d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Red Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "mountain", + "hill" + ], + "dragonCastingColor": "red", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/red-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "damageTagsLegendary": [ + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "incapacitated", + "poisoned", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Silver Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 117, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Adult Silver Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 243, + "formula": "18d12 + 126" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 27, + "dex": 10, + "con": 25, + "int": 16, + "wis": 13, + "cha": 21, + "save": { + "dex": "+5", + "con": "+12", + "wis": "+6", + "cha": "+10" + }, + "skill": { + "arcana": "+8", + "history": "+8", + "perception": "+11", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 21, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "16", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Cold Breath", + "entry": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a {@dc 20} Constitution saving throw, taking 58 ({@damage 13d8}) cold damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Paralyzing Breath", + "entry": "The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 20} Constitution saving throw or be {@condition 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." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Silver Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "mountain", + "urban" + ], + "dragonCastingColor": "silver", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/silver-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "damageTagsLegendary": [ + "C" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "paralyzed", + "prone" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult White Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 101, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + } + ], + "reprintedAs": [ + "Adult White Dragon|XMM" + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 40, + "burrow": 30, + "fly": 80, + "swim": 40 + }, + "str": 22, + "dex": 10, + "con": 22, + "int": 8, + "wis": 12, + "cha": 12, + "save": { + "dex": "+5", + "con": "+11", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "perception": "+11", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 21, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "13", + "trait": [ + { + "name": "Ice Walk", + "entries": [ + "The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost it extra movement." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 4 ({@damage 1d8}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 14} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw, taking 54 ({@damage 12d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "White Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "arctic" + ], + "dragonCastingColor": "white", + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/white-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "damageTagsLegendary": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Air Elemental", + "source": "MM", + "page": 124, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Air Elemental|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 15 + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "fly": { + "number": 90, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 14, + "dex": 20, + "con": 14, + "int": 6, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Auran" + ], + "cr": "5", + "trait": [ + { + "name": "Air Form", + "entries": [ + "The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elemental makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ] + }, + { + "name": "Whirlwind {@recharge 4}", + "entries": [ + "Each creature in the elemental's space must make a {@dc 13} Strength saving throw. On a failure, a target takes 15 ({@damage 3d8 + 2}) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked {@condition prone}. If a thrown target strikes an object, such as a wall or floor, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 13} Dexterity saving throw or take the same damage and be knocked {@condition prone}.", + "If the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked {@condition prone}." + ] + } + ], + "environment": [ + "mountain", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/air-elemental.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Allosaurus", + "group": [ + "Dinosaurs" + ], + "source": "MM", + "page": 79, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Allosaurus|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18" + }, + "speed": { + "walk": 60 + }, + "str": 19, + "dex": 13, + "con": 17, + "int": 2, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+5" + }, + "passive": 15, + "cr": "2", + "trait": [ + { + "name": "Pounce", + "entries": [ + "If the allosaurus moves at least 30 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the allosaurus can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/allosaurus.mp3" + }, + "traitTags": [ + "Pounce" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Black Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 87, + "srd": true, + "reprintedAs": [ + "Ancient Black Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 367, + "formula": "21d20 + 147" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 27, + "dex": 14, + "con": 25, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "dex": "+9", + "con": "+14", + "wis": "+9", + "cha": "+11" + }, + "skill": { + "perception": "+16", + "stealth": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 26, + "immune": [ + "acid" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "21", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Acid Breath {@recharge 5}", + "entries": [ + "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a {@dc 22} Dexterity saving throw, taking 67 ({@damage 15d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 23} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Black Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "swamp" + ], + "dragonCastingColor": "black", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/black-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "damageTagsLegendary": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "poisoned", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Blue Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 90, + "srd": true, + "otherSources": [ + { + "source": "MOT" + }, + { + "source": "TCE" + } + ], + "reprintedAs": [ + "Ancient Blue Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 481, + "formula": "26d20 + 208" + }, + "speed": { + "walk": 40, + "burrow": 40, + "fly": 80 + }, + "str": 29, + "dex": 10, + "con": 27, + "int": 18, + "wis": 17, + "cha": 21, + "save": { + "dex": "+7", + "con": "+15", + "wis": "+10", + "cha": "+12" + }, + "skill": { + "perception": "+17", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 27, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "23", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 11 ({@damage 2d10}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}18 ({@damage 2d8 + 9}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 20} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 23} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 24} Dexterity saving throw or take 16 ({@damage 2d6 + 9}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Blue Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "desert", + "coastal" + ], + "dragonCastingColor": "blue", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/blue-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "L" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "blinded", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Brass Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 104, + "srd": true, + "otherSources": [ + { + "source": "CRCotN" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Ancient Brass Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119" + }, + "speed": { + "walk": 40, + "burrow": 40, + "fly": 80 + }, + "str": 27, + "dex": 10, + "con": 25, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "dex": "+6", + "con": "+13", + "wis": "+8", + "cha": "+10" + }, + "skill": { + "history": "+9", + "perception": "+14", + "persuasion": "+10", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 24, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "20", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a {@dc 21} Dexterity saving throw, taking 56 ({@damage 16d6}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Sleep Breath", + "entry": "The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Brass Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "desert" + ], + "dragonCastingColor": "brass", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/brass-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "damageTagsLegendary": [ + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone", + "unconscious" + ], + "conditionInflictLegendary": [ + "blinded", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Bronze Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 107, + "srd": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Ancient Bronze Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 29, + "dex": 10, + "con": 27, + "int": 18, + "wis": 17, + "cha": 21, + "save": { + "dex": "+7", + "con": "+15", + "wis": "+10", + "cha": "+12" + }, + "skill": { + "insight": "+10", + "perception": "+17", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 27, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "22", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}18 ({@damage 2d8 + 9}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 20} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Lightning Breath", + "entry": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 23} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Repulsion Breath", + "entry": "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 23} Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 24} Dexterity saving throw or take 16 ({@damage 2d6 + 9}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Bronze Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "coastal" + ], + "dragonCastingColor": "bronze", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/bronze-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "deafened", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Copper Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 110, + "srd": true, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Ancient Copper Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 350, + "formula": "20d20 + 140" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 27, + "dex": 12, + "con": 25, + "int": 20, + "wis": 17, + "cha": 19, + "save": { + "dex": "+8", + "con": "+14", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "deception": "+11", + "perception": "+17", + "stealth": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 27, + "immune": [ + "acid" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "21", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Acid Breath", + "entry": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a {@dc 22} Dexterity saving throw, taking 63 ({@damage 14d8}) acid damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Slowing Breath", + "entry": "The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 22} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 23} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Copper Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 19} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "hill" + ], + "dragonCastingColor": "copper", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/copper-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "damageTagsLegendary": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Gold Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 113, + "srd": true, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Ancient Gold Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 30, + "dex": 14, + "con": 29, + "int": 18, + "wis": 17, + "cha": 28, + "save": { + "dex": "+9", + "con": "+16", + "wis": "+10", + "cha": "+16" + }, + "skill": { + "insight": "+10", + "perception": "+17", + "persuasion": "+16", + "stealth": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 27, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "24", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 24} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw, taking 71 ({@damage 13d10}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Weakening Breath", + "entry": "The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 24} 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." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Gold Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 17} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "dragonCastingColor": "gold", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/gold-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "charmed" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Green Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 93, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "DIP" + } + ], + "reprintedAs": [ + "Ancient Green Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 385, + "formula": "22d20 + 154" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 27, + "dex": 12, + "con": 25, + "int": 20, + "wis": 17, + "cha": 19, + "save": { + "dex": "+8", + "con": "+14", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "deception": "+11", + "insight": "+10", + "perception": "+17", + "persuasion": "+11", + "stealth": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 27, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "22", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Poison Breath {@recharge 5}", + "entries": [ + "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 77 ({@damage 22d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 23} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Green Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 19} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "dragonCastingColor": "green", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/green-dragon.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "I", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "charmed", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Red Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 97, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Ancient Red Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 30, + "dex": 10, + "con": 29, + "int": 18, + "wis": 15, + "cha": 23, + "save": { + "dex": "+7", + "con": "+16", + "wis": "+9", + "cha": "+13" + }, + "skill": { + "perception": "+16", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 26, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "24", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Red Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "mountain", + "hill" + ], + "dragonCastingColor": "red", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/red-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "damageTagsLegendary": [ + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "incapacitated", + "poisoned", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Silver Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 116, + "srd": true, + "otherSources": [ + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Ancient Silver Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 487, + "formula": "25d20 + 225" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 30, + "dex": 10, + "con": 29, + "int": 18, + "wis": 15, + "cha": 23, + "save": { + "dex": "+7", + "con": "+16", + "wis": "+9", + "cha": "+13" + }, + "skill": { + "arcana": "+11", + "history": "+11", + "perception": "+16", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 26, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "23", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Cold Breath", + "entry": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 24} Constitution saving throw, taking 67 ({@damage 15d8}) cold damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Paralyzing Breath", + "entry": "The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 24} Constitution saving throw or be {@condition 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." + } + ] + } + ] + }, + { + "name": "Change Shape", + "entries": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Silver Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "mountain", + "urban" + ], + "dragonCastingColor": "silver", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/silver-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "damageTagsLegendary": [ + "C" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "paralyzed", + "prone" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient White Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 100, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Ancient White Dragon|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 333, + "formula": "18d20 + 144" + }, + "speed": { + "walk": 40, + "burrow": 40, + "fly": 80, + "swim": 40 + }, + "str": 26, + "dex": 10, + "con": 26, + "int": 10, + "wis": 13, + "cha": 14, + "save": { + "dex": "+6", + "con": "+14", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "perception": "+13", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "20", + "trait": [ + { + "name": "Ice Walk", + "entries": [ + "The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost it extra movement." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 9 ({@damage 2d8}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 72 ({@damage 16d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "The dragon makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ] + } + ], + "legendaryGroup": { + "name": "White Dragon", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "arctic" + ], + "dragonCastingColor": "white", + "dragonAge": "ancient", + "soundClip": { + "type": "internal", + "path": "bestiary/white-dragon.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "damageTagsLegendary": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Androsphinx", + "group": [ + "Sphinxes" + ], + "source": "MM", + "page": 281, + "srd": true, + "otherSources": [ + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Sphinx of Valor|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 199, + "formula": "19d10 + 95" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 22, + "dex": 10, + "con": 20, + "int": 16, + "wis": 18, + "cha": 23, + "save": { + "dex": "+6", + "con": "+11", + "int": "+9", + "wis": "+10" + }, + "skill": { + "arcana": "+9", + "perception": "+10", + "religion": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "immune": [ + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Sphinx" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sphinx is a 12th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell detect magic}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell zone of truth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell flame strike}", + "{@spell greater restoration}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell heroes' feast}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Inscrutable", + "entries": [ + "The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom ({@skill Insight}) checks made to ascertain the sphinx's intentions or sincerity have disadvantage." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The sphinx's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sphinx makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ] + }, + { + "name": "Roar (3/Day)", + "entries": [ + "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "First Roar", + "entry": "Each creature that fails a {@dc 18} Wisdom saving throw is {@condition frightened} for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "Second Roar", + "entry": "Each creature that fails a {@dc 18} Wisdom saving throw is {@condition deafened} and {@condition frightened} for 1 minute. A {@condition frightened} creature is {@condition paralyzed} and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "Third Roar", + "entry": "Each creature makes a {@dc 18} Constitution saving throw. On a failed save, a creature takes 44 ({@damage 8d10}) thunder damage and is knocked {@condition prone}. On a successful save, the creature takes half as much damage and isn't knocked {@condition prone}." + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Claw Attack", + "entries": [ + "The sphinx makes one claw attack." + ] + }, + { + "name": "Teleport (Costs 2 Actions)", + "entries": [ + "The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ] + }, + { + "name": "Cast a Spell (Costs 3 Actions)", + "entries": [ + "The sphinx casts a spell from its list of prepared spells, using a spell slot as normal." + ] + } + ], + "legendaryGroup": { + "name": "Sphinx", + "source": "MM" + }, + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/androsphinx.mp3" + }, + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "S", + "T" + ], + "damageTagsLegendary": [ + "N" + ], + "damageTagsSpell": [ + "F", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "deafened", + "frightened", + "paralyzed", + "prone" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Animated Armor", + "group": [ + "Animated Objects" + ], + "source": "MM", + "page": 19, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Animated Armor|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 13, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The armor is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the armor remains motionless, it is indistinguishable from a normal suit of armor." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The armor makes two melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/animated-armor.mp3" + }, + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ankheg", + "source": "MM", + "page": 21, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Ankheg|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + }, + { + "ac": 11, + "condition": "while prone" + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6" + }, + "speed": { + "walk": 30, + "burrow": 10 + }, + "str": 17, + "dex": 11, + "con": 13, + "int": 1, + "wis": 13, + "cha": 6, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 11, + "cr": "2", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) acid damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the ankheg can bite only the {@condition grappled} creature and has advantage on attack rolls to do so." + ] + }, + { + "name": "Acid Spray {@recharge}", + "entries": [ + "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature {@condition grappled}. Each creature in that line must make a {@dc 13} Dexterity saving throw, taking 10 ({@damage 3d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ankeg.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "damageTags": [ + "A", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ankylosaurus", + "group": [ + "Dinosaurs" + ], + "source": "MM", + "page": 79, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "CRCotN" + } + ], + "reprintedAs": [ + "Ankylosaurus|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d12 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 11, + "con": 15, + "int": 2, + "wis": 12, + "cha": 5, + "passive": 11, + "cr": "3", + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ankylosaurus.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ape", + "source": "MM", + "page": 317, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Ape|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "athletics": "+5", + "perception": "+3" + }, + "passive": 13, + "cr": "1/2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ape makes two fist attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 25/50 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ape.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true + }, + { + "name": "Arcanaloth", + "source": "MM", + "page": 313, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Arcanaloth|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 17, + "dex": 12, + "con": 14, + "int": 20, + "wis": 16, + "cha": 17, + "save": { + "dex": "+5", + "int": "+9", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "arcana": "+13", + "deception": "+11", + "insight": "+11", + "perception": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The arcanaloth's innate spellcasting ability is Charisma (spell save {@dc 15}). The arcanaloth can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self}", + "{@spell darkness}", + "{@spell heat metal}", + "{@spell invisibility} (self only)", + "{@spell magic missile}" + ], + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The arcanaloth is a 16th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The arcanaloth has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell shield}", + "{@spell Tenser's floating disk}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell phantasmal force}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fear}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell hold monster}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell mind blank}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The arcanaloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The arcanaloth's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage. The target must make a {@dc 14} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Teleport", + "entries": [ + "The arcanaloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Yugoloth Summoning", + "entries": [ + "Some yugoloths have an action option that allows them to summon other yugoloths.", + { + "name": "Summon Yugoloth (1/Day)", + "type": "entries", + "entries": [ + "The yugoloth attempts a magical summoning.", + "An arcanaloth has a {@chance 40|40 percent|40% summoning chance} chance of summoning one arcanaloth.", + "A summoned yugoloth appears in an unoccupied space within 60 feet of its summoner, does as it pleases, and can't summon other yugoloths. The summoned yugoloth remains for 1 minute, until it or its summoner dies, or until its summoner takes a bonus action to dismiss it." + ] + } + ], + "_version": { + "name": "Arcanaloth (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/arcanaloth.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "I", + "S" + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "N", + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "frightened", + "incapacitated", + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Archmage", + "source": "MM", + "page": 342, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Archmage|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 20, + "wis": 15, + "cha": 16, + "save": { + "int": "+9", + "wis": "+6" + }, + "skill": { + "arcana": "+13", + "history": "+13" + }, + "passive": 12, + "resist": [ + { + "special": "damage from spells" + }, + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "(from stoneskin)", + "cond": true, + "preNote": "nonmagical" + } + ], + "languages": [ + "any six languages" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archmage is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The archmage can cast {@spell disguise self} and {@spell invisibility} at will and has the following wizard spells prepared:" + ], + "will": [ + "{@spell disguise self}", + "{@spell invisibility}" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell mage armor}*", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell fire shield}", + "{@spell stoneskin}*" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cone of cold}", + "{@spell scrying}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell mind blank}*" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell time stop}" + ] + } + }, + "footerEntries": [ + "*The archmage casts these spells on itself before combat." + ], + "ability": "int", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The archmage has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Familiars", + "entries": [ + "Any spellcaster that can cast the {@spell find familiar} spell (such as an archmage or mage) is likely to have a familiar. The familiar can be one of the creatures described in the spell or some other Tiny monster, such as a {@creature crawling claw}, {@creature imp}, {@creature pseudodragon}, or {@creature quasit}." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/archmage.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "F", + "L", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Archmage (Familiar)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "spells": { + "1": { + "spells": [ + "{@spell find familiar} (one of the creatures described in the spell or some other Tiny monster, such as a {@creature crawling claw}, {@creature imp}, {@creature pseudodragon}, or {@creature quasit})" + ] + } + } + } + }, + "variant": null + } + ] + }, + { + "name": "Assassin", + "source": "MM", + "page": 343, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Assassin|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 14, + "int": 13, + "wis": 11, + "cha": 10, + "save": { + "dex": "+6", + "int": "+4" + }, + "skill": { + "acrobatics": "+6", + "deception": "+3", + "perception": "+3", + "stealth": "+9" + }, + "passive": 13, + "resist": [ + "poison" + ], + "languages": [ + "Thieves' cant plus any two languages" + ], + "cr": "8", + "trait": [ + { + "name": "Assassinate", + "entries": [ + "During its first turn, the assassin has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the assassin scores against a {@status surprised} creature is a critical hit." + ] + }, + { + "name": "Evasion", + "entries": [ + "If the assassin is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the assassin instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "The assassin deals an extra 14 ({@damage 4d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the assassin that isn't {@condition incapacitated} and the assassin doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The assassin makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/assassin.mp3" + }, + "attachedItems": [ + "light crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TC", + "X" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Awakened Shrub", + "source": "MM", + "page": 317, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Awakened Shrub|XMM" + ], + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 9 + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 20 + }, + "str": 3, + "dex": 8, + "con": 11, + "int": 10, + "wis": 10, + "cha": 6, + "passive": 10, + "resist": [ + "piercing" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "one language known by its creator" + ], + "cr": "0", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the shrub remains motionless, it is indistinguishable from a normal shrub." + ] + } + ], + "action": [ + { + "name": "Rake", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) slashing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/awakened-shrub.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Awakened Tree", + "source": "MM", + "page": 317, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Awakened Tree|XMM" + ], + "size": [ + "H" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d12 + 14" + }, + "speed": { + "walk": 20 + }, + "str": 19, + "dex": 6, + "con": 15, + "int": 10, + "wis": 10, + "cha": 7, + "passive": 10, + "resist": [ + "bludgeoning", + "piercing" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "one language known by its creator" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the tree remains motionless, it is indistinguishable from a normal tree." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/awakened-tree.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Axe Beak", + "source": "MM", + "page": 317, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Axe Beak|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 50 + }, + "str": 14, + "dex": 12, + "con": 12, + "int": 2, + "wis": 10, + "cha": 5, + "passive": 10, + "cr": "1/4", + "action": [ + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/axe-beak.mp3" + }, + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Azer", + "source": "MM", + "page": 22, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Azer Sentinel|XMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 12, + "wis": 13, + "cha": 10, + "save": { + "con": "+4" + }, + "passive": 11, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Ignan" + ], + "cr": "2", + "trait": [ + { + "name": "Heated Body", + "entries": [ + "A creature that touches the azer or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage." + ] + }, + { + "name": "Heated Weapons", + "entries": [ + "When the azer hits with a metal melee weapon, it deals an extra 3 ({@damage 1d6}) fire damage (included in the attack)." + ] + }, + { + "name": "Illumination", + "entries": [ + "The azer sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ] + } + ], + "action": [ + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, or 8 ({@damage 1d10 + 3}) bludgeoning damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/azer.mp3" + }, + "attachedItems": [ + "warhammer|phb" + ], + "traitTags": [ + "Illumination" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Baboon", + "source": "MM", + "page": 318, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Baboon|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 8, + "dex": 14, + "con": 11, + "int": 4, + "wis": 12, + "cha": 6, + "passive": 11, + "cr": "0", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The baboon has advantage on an attack roll against a creature if at least one of the baboon's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/baboon.mp3" + }, + "traitTags": [ + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Badger", + "source": "MM", + "page": 318, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Badger|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 3, + "formula": "1d4 + 1" + }, + "speed": { + "walk": 20, + "burrow": 5 + }, + "str": 4, + "dex": 11, + "con": 12, + "int": 2, + "wis": 12, + "cha": 5, + "senses": [ + "darkvision 30 ft." + ], + "passive": 11, + "cr": "0", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The badger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/badger.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Balor", + "source": "MM", + "page": 55, + "srd": true, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Balor|XMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 262, + "formula": "21d12 + 126" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 26, + "dex": 15, + "con": 22, + "int": 20, + "wis": 16, + "cha": 22, + "save": { + "str": "+14", + "con": "+12", + "wis": "+9", + "cha": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "19", + "trait": [ + { + "name": "Death Throes", + "entries": [ + "When the balor dies, it explodes, and each creature within 30 feet of it must make a {@dc 20} Dexterity saving throw, taking 70 ({@damage 20d6}) fire damage on a failed save, or half as much damage on a successful one. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons." + ] + }, + { + "name": "Fire Aura", + "entries": [ + "At the start of each of the balor's turns, each creature within 5 feet of it takes 10 ({@damage 3d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the balor or hits it with a melee attack while within 5 feet of it takes 10 ({@damage 3d6}) fire damage." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The balor has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The balor's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The balor makes two attacks: one with its longsword and one with its whip." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage plus 13 ({@damage 3d8}) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice." + ] + }, + { + "name": "Whip", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 30 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage plus 10 ({@damage 3d6}) fire damage, and the target must succeed on a {@dc 20} Strength saving throw or be pulled up to 25 feet toward the balor." + ] + }, + { + "name": "Teleport", + "entries": [ + "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A balor has a {@chance 50|50 percent|50% summoning chance} chance of summoning {@dice 1d8} {@creature vrock||vrocks}, {@dice 1d6} {@creature hezrou||hezrous}, {@dice 1d4} {@creature glabrezu||glabrezus}, {@dice 1d3} {@creature nalfeshnee||nalfeshnees}, {@dice 1d2} {@creature marilith||mariliths}, or one {@creature goristro}.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Balor (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/balor.mp3" + }, + "attachedItems": [ + "longsword|phb", + "whip|phb" + ], + "traitTags": [ + "Death Burst", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "F", + "L", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bandit", + "source": "MM", + "page": 343, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Bandit|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "NX", + "C", + "G", + "NY", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 12, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/8", + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "environment": [ + "coastal", + "hill", + "arctic", + "urban", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bandit.mp3" + }, + "altArt": [ + { + "name": "Diabolical Bandit", + "source": "MTF", + "page": 18 + }, + { + "name": "Uttolot Elf Bandit", + "source": "EGW" + } + ], + "attachedItems": [ + "light crossbow|phb", + "scimitar|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Bandit Captain", + "source": "MM", + "page": 344, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Bandit Captain|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "NX", + "C", + "G", + "NY", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 14, + "int": 14, + "wis": 11, + "cha": 14, + "save": { + "str": "+4", + "dex": "+5", + "wis": "+2" + }, + "skill": { + "athletics": "+4", + "deception": "+4" + }, + "passive": 10, + "languages": [ + "any two languages" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The captain makes three melee attacks: two with its scimitar and one with its dagger. Or the captain makes two ranged attacks with its daggers." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The captain adds 2 to its AC against one melee attack that would hit it. To do so, the captain must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "coastal", + "hill", + "arctic", + "urban", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bandit-captain.mp3" + }, + "altArt": [ + { + "name": "Diabolical Bandit Captain", + "source": "MTF", + "page": 18 + } + ], + "attachedItems": [ + "dagger|phb", + "scimitar|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Banshee", + "source": "MM", + "page": 23, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Banshee|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 58, + "formula": "13d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 14, + "con": 10, + "int": 12, + "wis": 11, + "cha": 17, + "save": { + "wis": "+2", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "4", + "trait": [ + { + "name": "Detect Life", + "entries": [ + "The banshee can magically sense the presence of living creatures up to 5 miles away that aren't undead or constructs. She knows the general direction they're in but not their exact locations." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The banshee can move through other creatures and objects as if they were {@quickref difficult terrain||3}. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ] + } + ], + "action": [ + { + "name": "Corrupting Touch", + "entries": [ + "{@atk ms} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) necrotic damage." + ] + }, + { + "name": "Horrifying Visage", + "entries": [ + "Each non-undead creature within 60 feet of the banshee that can see her must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, with disadvantage if the banshee is within line of sight, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the banshee's Horrifying Visage for the next 24 hours." + ] + }, + { + "name": "Wail (1/Day)", + "entries": [ + "The banshee releases a mournful wail, provided that she isn't in sunlight. This wail has no effect on constructs and undead. All other creatures within 30 feet of her that can hear her must make a {@dc 13} Constitution saving throw. On a failure, a creature drops to 0 hit points. On a success, a creature takes 10 ({@damage 3d6}) psychic damage." + ] + } + ], + "environment": [ + "forest", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/banshee.mp3" + }, + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "N", + "O", + "Y" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Barbed Devil", + "source": "MM", + "page": 70, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Barbed Devil|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 17, + "con": 18, + "int": 12, + "wis": 14, + "cha": 14, + "save": { + "str": "+6", + "con": "+7", + "wis": "+5", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "insight": "+5", + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "5", + "trait": [ + { + "name": "Barbed Hide", + "entries": [ + "At the start of each of its turns, the barbed devil deals 5 ({@damage 1d10}) piercing damage to any creature grappling it." + ] + }, + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the devil's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The devil has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ] + }, + { + "name": "Hurl Flame", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 150 ft., one target. {@h}10 ({@damage 3d6}) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Devil (1/Day)", + "entries": [ + "The devil chooses what to summon and attempts a magical summoning.", + "A barbed devil has a {@chance 30} chance of summoning one barbed devil.", + "A summoned devil appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other devils. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Barbed Devil (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/barbed-devil.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Barlgura", + "source": "MM", + "page": 56, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Barlgura|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 7, + "wis": 14, + "cha": 9, + "save": { + "dex": "+5", + "con": "+6" + }, + "skill": { + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The barlgura's spellcasting ability is Wisdom (spell save {@dc 13}). The barlgura can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell entangle}", + "{@spell phantasmal force}" + ], + "2e": [ + "{@spell disguise self}", + "{@spell invisibility} (self only)" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the barlgura can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + }, + { + "name": "Running Leap", + "entries": [ + "The barlgura's long jump is up to 40 feet and its high jump is up to 20 feet when it has a running start." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The barlgura makes three attacks: one with its bite and two with its fists." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A barlgura has a {@chance 30|30 percent|30% summoning chance} chance of summoning one barlgura.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Barlgura (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/barlgura.mp3" + }, + "traitTags": [ + "Reckless" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "intelligence", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Basilisk", + "source": "MM", + "page": 24, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "PSZ" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Basilisk|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 20 + }, + "str": 16, + "dex": 8, + "con": 15, + "int": 2, + "wis": 8, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "cr": "3", + "trait": [ + { + "name": "Petrifying Gaze", + "entries": [ + "If a creature starts its turn within 30 feet of the basilisk and the two of them can see each other, the basilisk can force the creature to make a {@dc 12} Constitution saving throw if the basilisk isn't {@condition incapacitated}. On a failed save, the creature magically begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic.", + "A creature that isn't {@status surprised} can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save.", + "If the basilisk sees its reflection within 30 feet of it in bright light, it mistakes itself for a rival and targets itself with its gaze." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + } + ], + "environment": [ + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/basilisk.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bat", + "source": "MM", + "page": 318, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Bat|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 5, + "fly": 30 + }, + "str": 2, + "dex": 15, + "con": 8, + "int": 2, + "wis": 12, + "cha": 4, + "senses": [ + "blindsight 60 ft." + ], + "passive": 11, + "cr": "0", + "trait": [ + { + "name": "Echolocation", + "entries": [ + "The bat can't use its blindsight while {@condition deafened}." + ] + }, + { + "name": "Keen Hearing", + "entries": [ + "The bat has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/bat.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bearded Devil", + "source": "MM", + "page": 70, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Bearded Devil|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 15, + "con": 15, + "int": 9, + "wis": 11, + "cha": 11, + "save": { + "str": "+5", + "con": "+4", + "wis": "+2" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "3", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the devil's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The devil has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Steadfast", + "entries": [ + "The devil can't be {@condition frightened} while it can see an allied creature within 30 feet of it." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devil makes two attacks: one with its beard and one with its glaive." + ] + }, + { + "name": "Beard", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a {@dc 12} Constitution saving throw or lose 5 ({@dice 1d10}) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 ({@damage 1d10}). Any creature can take an action to stanch the wound with a successful {@dc 12} Wisdom ({@skill Medicine}) check. The wound also closes if the target receives magical healing." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Devil (1/Day)", + "entries": [ + "The devil chooses what to summon and attempts a magical summoning.", + "A bearded devil has a {@chance 30} chance of summoning one bearded devil.", + "A summoned devil appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other devils. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Bearded Devil (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bearded-devil.mp3" + }, + "attachedItems": [ + "glaive|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Behir", + "source": "MM", + "page": 25, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Behir|XMM" + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64" + }, + "speed": { + "walk": 50, + "climb": 40 + }, + "str": 23, + "dex": 16, + "con": 18, + "int": 7, + "wis": 14, + "cha": 12, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 90 ft." + ], + "passive": 16, + "immune": [ + "lightning" + ], + "languages": [ + "Draconic" + ], + "cr": "11", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The behir makes two attacks: one with its bite and one to constrict." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one Large or smaller creature. {@h}17 ({@damage 2d10 + 6}) bludgeoning damage plus 17 ({@damage 2d10 + 6}) slashing damage. The target is {@condition grappled} (escape {@dc 16}) if the behir isn't already constricting a creature, and the target is {@condition restrained} until this grapple ends." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Swallow", + "entries": [ + "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the behir, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.", + "If the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a {@dc 14} Constitution saving throw at the end of that turn or regurgitate the creature, which falls {@condition prone} in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/behir.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Swallow" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "A", + "B", + "L", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Beholder", + "group": [ + "Beholders" + ], + "source": "MM", + "page": 28, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Beholder|XMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 180, + "formula": "19d10 + 76" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 14, + "con": 18, + "int": 17, + "wis": 15, + "cha": 17, + "save": { + "int": "+8", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "perception": "+12" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 22, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "cr": { + "cr": "13", + "lair": "14" + }, + "trait": [ + { + "name": "Antimagic Cone", + "entries": [ + "The beholder's central eye creates an area of antimagic, as in the {@spell antimagic field} spell, in a 150-foot cone. At the start of each of its turns, the beholder decides which way the cone faces and whether the cone is active. The area works against the beholder's own eye rays." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) piercing damage." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The beholder shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Charm Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or be {@condition charmed} by the beholder for 1 hour, or until the beholder harms the creature." + }, + { + "type": "item", + "name": "2. Paralyzing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "3. Fear Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "4. Slowing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn, not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "5. Enervation Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 16} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "6. Telekinetic Ray", + "style": "italic", + "entries": [ + "If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or the beholder moves it up to 30 feet in any direction. It is {@condition restrained} by the ray's telekinetic grip until the start of the beholder's next turn or until the beholder is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is moved up to 30 feet in any direction. The beholder can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ] + }, + { + "type": "item", + "name": "7. Sleep Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on constructs and undead." + }, + { + "type": "item", + "name": "8. Petrification Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 16} Dexterity saving throw. On a failed save, the creature begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + }, + { + "type": "item", + "name": "9. Disintegration Ray", + "style": "italic", + "entries": [ + "If the target is a creature, it must succeed on a {@dc 16} Dexterity saving throw or take 45 ({@damage 10d8}) force damage. If this damage reduces the creature to 0 hit points, its body becomes a pile of fine gray dust.", + "If the target is a Large or smaller nonmagical object or creation of magical force, it is disintegrated without a saving throw. If the target is a Huge or larger object or creation of magical force, this ray disintegrates a 10-foot cube of it." + ] + }, + { + "type": "item", + "name": "10. Death Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Dexterity saving throw or take 55 ({@damage 10d10}) necrotic damage. The target dies if the ray reduces it to 0 hit points." + } + ] + } + ] + } + ], + "legendaryHeader": [ + "The beholder can take 3 legendary actions, using the Eye Ray option below. It can take only one legendary action at a time and only at the end of another creature's turn. The beholder regains spent legendary actions at the start of its turn." + ], + "legendary": [ + { + "name": "Eye Ray", + "entries": [ + "The beholder uses one random eye ray." + ] + } + ], + "legendaryGroup": { + "name": "Beholder", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Variant Abilities", + "entries": [ + "When a beholder's dream-imagination runs wild, the result can be an offspring that has an unusual or unique set of abilities. Rather than the standard powers of a beholder's central eye and eyestalks, the creature has one or more variant abilities\u2014guaranteed to surprise any enemies who thought they knew what they were getting themselves into.", + "This section provides several alternative spell effects for a beholder's eye. Each of these effects is designed to be of the same power level as the one it replaces, enabling you to create a custom beholder without altering the monster's challenge rating. As another option, you can switch any of the damaging eye rays in the {@book Monster Manual|MM} to an effect with a different damage type, such as replacing the enervation ray with a combustion ray that deals fire damage instead of necrotic damage.", + "Unless otherwise indicated, an alternative ability has the same range as the eye ray it is replacing, and it affects only one creature per use (even if the ability is based on a spell that normally affects an area or multiple targets). The saving throw for an alternative ability uses the same DC and the same ability score as the spell the eye ray is based on.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Antimagic Cone:", + "entry": "{@spell mirage arcane}, {@spell power word stun} (affecting the weakest non-{@condition stunned} target in the cone each round)" + }, + { + "type": "item", + "name": "Charm Ray:", + "entry": "{@spell banishment} (1 minute), {@spell confusion} (1 minute)" + }, + { + "type": "item", + "name": "Death Ray:", + "entry": "{@spell circle of death} (10-foot-radius sphere; 4d6 necrotic damage to all creatures in the area), {@spell feeblemind}" + }, + { + "type": "item", + "name": "Disintegration Ray:", + "entry": "{@spell chain lightning} (primary target takes 6d8 lightning damage; two secondary targets within 30 feet of the primary target take 3d8 lightning damage each), {@spell eyebite} (sickened effect; 1 minute)" + }, + { + "type": "item", + "name": "Enervation Ray:", + "entry": "{@spell create undead} (usable regardless of the time of day), {@spell polymorph} (1 minute)" + }, + { + "type": "item", + "name": "Fear Ray:", + "entry": "{@spell gaseous form} (self or willing creature only), {@spell moonbeam}" + }, + { + "type": "item", + "name": "Paralyzing Ray:", + "entry": "{@spell modify memory}, {@spell silence} (1 minute)" + }, + { + "type": "item", + "name": "Petrification Ray:", + "entry": "{@spell Otto's irresistible dance} (1 minute), {@spell wall of ice} (1 minute; one 10-foot-square panel)" + }, + { + "type": "item", + "name": "Sleep Ray:", + "entry": "{@spell blindness/deafness}, {@spell misty step} (self or willing creature only)" + }, + { + "type": "item", + "name": "Slowing Ray:", + "entry": "{@spell bestow curse} (1 minute), {@spell sleet storm} (one 10-foot-cube)" + }, + { + "type": "item", + "name": "Telekinesis Ray:", + "entry": "{@spell geas} (1 hour), {@spell wall of force} (1 minute; one 10-foot-square panel)" + } + ] + } + ], + "source": "VGM", + "page": 12, + "_version": { + "name": "Beholder (Variant Abilities)", + "addAs": "trait" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/beholder.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "DS", + "U" + ], + "damageTags": [ + "N", + "O", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "restrained", + "unconscious" + ], + "conditionInflictLegendary": [ + "grappled" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Beholder Zombie", + "source": "MM", + "page": 316, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Beholder Zombie|XMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 8, + "con": 16, + "int": 3, + "wis": 8, + "cha": 5, + "save": { + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned", + "prone" + ], + "languages": [ + "understands Deep Speech and Undercommon but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) piercing damage." + ] + }, + { + "name": "Eye Ray", + "entries": [ + "The zombie uses a random magical eye ray, choosing a target that it can see within 60 feet of it.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Paralyzing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "2. Fear Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "3. Enervation Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 14} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "4. Disintegration Ray", + "style": "italic", + "entries": [ + "If the target is a creature, it must succeed on a {@dc 14} Dexterity saving throw or take 45 ({@damage 10d8}) force damage. If this damage reduces the creature to 0 hit points, its body becomes a pile of fine gray dust.", + "If the target is a Large or smaller nonmagical object or creation of magical force, it is disintegrated without a saving throw. If the target is a Huge or larger nonmagical object or creation of magical force, this ray disintegrates a 10-foot cube of it." + ] + } + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/beholder-zombie.mp3" + }, + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "DS", + "U" + ], + "damageTags": [ + "N", + "O", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Berserker", + "source": "MM", + "page": 344, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Berserker|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "C", + "G", + "NY", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 17, + "int": 9, + "wis": 11, + "cha": 9, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "2", + "trait": [ + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the berserker can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d12 + 3}) slashing damage." + ] + } + ], + "environment": [ + "coastal", + "mountain", + "hill", + "arctic", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/berserker.mp3" + }, + "altArt": [ + { + "name": "Diabolical Berserker", + "source": "MTF", + "page": 18 + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Reckless" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Black Bear", + "source": "MM", + "page": 318, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Black Bear|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 15, + "dex": 10, + "con": 14, + "int": 2, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1/2", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bear makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/black-bear.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Black Dragon Wyrmling", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 88, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Black Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 15, + "dex": 14, + "con": 13, + "int": 10, + "wis": 11, + "cha": 13, + "save": { + "dex": "+4", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "skill": { + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "acid" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "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. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) acid damage." + ] + }, + { + "name": "Acid Breath {@recharge 5}", + "entries": [ + "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a {@dc 11} Dexterity saving throw, taking 22 ({@damage 5d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/black-dragon-wyrmling.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Black Pudding", + "source": "MM", + "page": 241, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Black Pudding|XMM" + ], + "size": [ + "L" + ], + "type": "ooze", + "alignment": [ + "U" + ], + "ac": [ + 7 + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 16, + "dex": 5, + "con": 16, + "int": 1, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 8, + "immune": [ + "acid", + "cold", + "lightning", + "slashing" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "prone" + ], + "cr": "4", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The pudding can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Corrosive Form", + "entries": [ + "A creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes 4 ({@damage 1d8}) acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the pudding is destroyed after dealing damage. The pudding can eat through 2-inch-thick, nonmagical wood or metal in 1 round." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The pudding can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 18 ({@damage 4d8}) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ] + } + ], + "reaction": [ + { + "name": "Split", + "entries": [ + "When a pudding that is Medium or larger is subjected to lightning or slashing damage, it splits into two new puddings if it has at least 10 hit points. Each new pudding has hit points equal to half the original pudding's, rounded down. New puddings are one size smaller than the original pudding." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/black-pudding.mp3" + }, + "traitTags": [ + "Amorphous", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "A", + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blink Dog", + "source": "MM", + "page": 318, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Blink Dog|XMM" + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "L", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 17, + "con": 12, + "int": 10, + "wis": 13, + "cha": 11, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "passive": 13, + "languages": [ + "Blink Dog", + "understands Sylvan but can't speak it" + ], + "cr": "1/4", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The dog has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + }, + { + "name": "Teleport {@recharge 4}", + "entries": [ + "The dog magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. Before or after teleporting, the dog can make one bite attack." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blink-dog.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Teleport" + ], + "languageTags": [ + "CS", + "OTH", + "S" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blood Hawk", + "source": "MM", + "page": 319, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Blood Hawk|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 6, + "dex": 14, + "con": 10, + "int": 3, + "wis": 14, + "cha": 5, + "skill": { + "perception": "+4" + }, + "passive": 14, + "cr": "1/8", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The hawk has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The hawk has advantage on an attack roll against a creature if at least one of the hawk's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "forest", + "hill", + "coastal", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blood-hawk.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Blue Dragon Wyrmling", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 91, + "srd": true, + "otherSources": [ + { + "source": "MOT" + }, + { + "source": "DoSI" + } + ], + "reprintedAs": [ + "Blue Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30, + "burrow": 15, + "fly": 60 + }, + "str": 17, + "dex": 10, + "con": 15, + "int": 12, + "wis": 11, + "cha": 15, + "save": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "lightning" + ], + "languages": [ + "Draconic" + ], + "cr": "3", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 3 ({@damage 1d6}) lightning damage." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 12} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/blue-dragon-wyrmling.mp3" + }, + "altArt": [ + { + "name": "Blue Dragon Wyrmling", + "source": "DoSI" + } + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blue Slaad", + "source": "MM", + "page": 276, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Blue Slaad|XMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 18, + "int": 7, + "wis": 7, + "cha": 9, + "skill": { + "perception": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The slaad makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a humanoid, it must succeed on a {@dc 15} Constitution saving throw or be infected with a disease called chaos phage. While infected, the target can't regain hit points, and its hit point maximum is reduced by 10 ({@dice 3d6}) every 24 hours. If the disease reduces the target's hit point maximum to 0, the target instantly transforms into a {@creature red slaad} or, if it has the ability to cast spells of 3rd level or higher, a {@creature green slaad}. Only a {@spell wish} spell can reverse the transformation." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Control Gem", + "entries": [ + "Implanted in the slaad's brain is a magic control gem. The slaad must obey whoever possesses the gem and is immune to being {@condition charmed} while so controlled.", + "Certain spells can be used to acquire the gem. If the slaad fails its saving throw against {@spell imprisonment}, the spell can transfer the gem to the spellcaster's open hand, instead of imprisoning the slaad. A {@spell wish} spell, if cast in the slaad's presence, can be worded to acquire the gem.", + "A {@spell greater restoration} spell cast on the slaad destroys the gem without harming the slaad.", + "Someone who is proficient in Wisdom ({@skill Medicine}) can remove the gem from an {@condition incapacitated} slaad. Each try requires 1 minute of uninterrupted work and a successful {@dc 20} Wisdom ({@skill Medicine}) check. Each failed attempt deals 22 ({@damage 4d10}) psychic damage to the slaad." + ], + "_version": { + "name": "Blue Slaad (Control Gem)", + "addAs": "trait" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blue-slaad.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "miscTags": [ + "DIS", + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boar", + "source": "MM", + "page": 319, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Boar|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 2, + "wis": 9, + "cha": 5, + "passive": 9, + "cr": "1/4", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the boar moves at least 20 feet straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 ({@damage 1d6}) slashing damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Relentless (Recharges after a Short or Long Rest)", + "entries": [ + "If the boar takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Tusk", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/boar.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Bone Devil", + "source": "MM", + "page": 71, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Bone Devil|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 18, + "dex": 16, + "con": 18, + "int": 13, + "wis": 14, + "cha": 16, + "save": { + "int": "+5", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "deception": "+7", + "insight": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "9", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the devil's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The devil has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devil makes three attacks: two with its claws and one with its sting." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 17 ({@damage 5d6}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Bone Devil Polearm", + "entries": [ + "Some bone devils have the following action options.", + { + "name": "Multiattack", + "type": "entries", + "entries": [ + "The devil makes two attacks: one with its hooked polearm and one with its sting." + ] + }, + { + "name": "Hooked Polearm", + "type": "entries", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d12 + 4}) piercing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the devil can't use its polearm on another target." + ] + } + ], + "_version": { + "name": "Bone Devil (Polearm)", + "addHeadersAs": "action" + } + }, + { + "type": "variant", + "name": "Summon Devil (1/Day)", + "entries": [ + "The devil chooses what to summon and attempts a magical summoning.", + "A bone devil has a {@chance 40} chance of summoning {@dice 2d6} {@creature spined devil||spined devils} or one bone devil.", + "A summoned devil appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other devils. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Bone Devil (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bone-devil.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bone Naga (Guardian)", + "source": "MM", + "page": 233, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Bone Naga|XMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 12, + "int": 15, + "wis": 15, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common plus one other language" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The naga is a 5th-level spellcaster (spell save {@dc 12}, {@hit 4} to hit with spell attacks) that needs only verbal components to cast its spells. Its spellcasting ability is Wisdom, and it has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell bestow curse}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bone-naga.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "N", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bone Naga (Spirit)", + "source": "MM", + "page": 233, + "otherSources": [ + { + "source": "DSotDQ" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Bone Naga|XMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 12, + "int": 15, + "wis": 15, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common plus one other language" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The naga is a 5th-level spellcaster (spell save {@dc 12}, {@hit 4} to hit with spell attacks) that needs only verbal components to cast its spells. Its spellcasting ability is Intelligence, and it has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell lightning bolt}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bone-naga.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "C", + "L" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brass Dragon Wyrmling", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 106, + "srd": true, + "reprintedAs": [ + "Brass Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30, + "burrow": 15, + "fly": 60 + }, + "str": 15, + "dex": 10, + "con": 13, + "int": 10, + "wis": 11, + "cha": 13, + "save": { + "dex": "+2", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "skill": { + "perception": "+4", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "fire" + ], + "languages": [ + "Draconic" + ], + "cr": "1", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 20-foot line that is 5 feet wide. Each creature in that line must make a {@dc 11} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Sleep Breath", + "entry": "The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 11} Constitution saving throw or fall {@condition unconscious} for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/brass-dragon-wyrmling.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bronze Dragon Wyrmling", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 109, + "srd": true, + "otherSources": [ + { + "source": "DoSI" + } + ], + "reprintedAs": [ + "Bronze Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 17, + "dex": 10, + "con": 15, + "int": 12, + "wis": 11, + "cha": 15, + "save": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "lightning" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Lightning Breath", + "entry": "The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a {@dc 12} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Repulsion Breath", + "entry": "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 12} Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/bronze-dragon-wyrmling.mp3" + }, + "altArt": [ + { + "name": "Bronze Dragon Wyrmling", + "source": "DoSI" + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brown Bear", + "source": "MM", + "page": 319, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Brown Bear|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 34, + "formula": "4d10 + 12" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 19, + "dex": 10, + "con": 16, + "int": 2, + "wis": 13, + "cha": 7, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bear makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + ], + "environment": [ + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/brown-bear.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Bugbear", + "source": "MM", + "page": 33, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Bugbear Warrior|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item hide armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 13, + "int": 8, + "wis": 11, + "cha": 9, + "skill": { + "stealth": "+6", + "survival": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1", + "trait": [ + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack)." + ] + }, + { + "name": "Surprise Attack", + "entries": [ + "If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 ({@damage 2d6}) damage from the attack." + ] + } + ], + "action": [ + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage in melee or 5 ({@damage 1d6 + 2}) piercing damage at range." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bugbear.mp3" + }, + "attachedItems": [ + "javelin|phb", + "morningstar|phb" + ], + "traitTags": [ + "Brute" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bugbear Chief", + "source": "MM", + "page": 33, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "CRCotN" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 14, + "con": 14, + "int": 11, + "wis": 12, + "cha": 11, + "skill": { + "intimidation": "+2", + "stealth": "+6", + "survival": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Goblin" + ], + "cr": "3", + "trait": [ + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack)." + ] + }, + { + "name": "Surprise Attack", + "entries": [ + "If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 ({@damage 2d6}) damage from the attack." + ] + }, + { + "name": "Heart of Hruggek", + "entries": [ + "The bugbear has advantage on saving throws against being {@condition charmed}, {@condition frightened}, {@condition paralyzed}, {@condition poisoned}, {@condition stunned}, or put to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bugbear makes two melee attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 3}) piercing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 2d6 + 3}) piercing damage in melee or 5 ({@damage 1d6 + 3}) piercing damage at range." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bugbear-chief.mp3" + }, + "attachedItems": [ + "javelin|phb", + "morningstar|phb" + ], + "traitTags": [ + "Brute" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bulette", + "source": "MM", + "page": 34, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Bulette|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45" + }, + "speed": { + "walk": 40, + "burrow": 40 + }, + "str": 19, + "dex": 11, + "con": 21, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 16, + "cr": "5", + "trait": [ + { + "name": "Standing Leap", + "entries": [ + "The bulette's long jump is up to 30 feet and its high jump is up to 15 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}30 ({@damage 4d12 + 4}) piercing damage." + ] + }, + { + "name": "Deadly Leap", + "entries": [ + "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a {@dc 16} Strength or Dexterity saving throw (target's choice) or be knocked {@condition prone} and take 14 ({@damage 3d6 + 4}) bludgeoning damage plus 14 ({@damage 3d6 + 4}) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked {@condition prone}, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls {@condition prone} in the bulette's space." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bulette.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bullywug", + "source": "MM", + "page": 35, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Bullywug Warrior|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bullywug" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item hide armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 12, + "dex": 12, + "con": 13, + "int": 7, + "wis": 10, + "cha": 7, + "skill": { + "stealth": "+3" + }, + "passive": 10, + "languages": [ + "Bullywug" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The bullywug can breathe air and water." + ] + }, + { + "name": "Speak with Frogs and Toads", + "entries": [ + "The bullywug can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ] + }, + { + "name": "Swamp Camouflage", + "entries": [ + "The bullywug has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The bullywug's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bullywug makes two melee attacks: one with its bite and one with its spear." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bullywug.mp3" + }, + "altArt": [ + { + "name": "Blacktongue Bullywug", + "source": "WDMM" + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Amphibious", + "Camouflage" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cambion", + "source": "MM", + "page": 36, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Cambion|XMM" + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "L", + "NX", + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 18, + "dex": 18, + "con": 16, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "str": "+7", + "con": "+6", + "int": "+5", + "cha": "+6" + }, + "skill": { + "deception": "+6", + "intimidation": "+6", + "perception": "+4", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The cambion's spellcasting ability is Charisma (spell save {@dc 14}). The cambion can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ], + "3e": [ + "{@spell alter self}", + "{@spell command}", + "{@spell detect magic}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fiendish Blessing", + "entries": [ + "The AC of the cambion includes its Charisma bonus." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cambion makes two melee attacks or uses its Fire Ray twice." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Fire Ray", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}10 ({@damage 3d6}) fire damage." + ] + }, + { + "name": "Fiendish Charm", + "entries": [ + "One humanoid the cambion can see within 30 feet of it must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys the cambion's spoken commands. If the target suffers any harm from the cambion or another creature or receives a suicidal command from the cambion, the target can repeat the saving throw, ending the effect on itself on a success. If a target's saving throw is successful, or if the effect ends for it, the creature is immune to the cambion's Fiendish Charm for the next 24 hours." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Demonic Cambions", + "entries": [ + "Few demons consort with mortals, and those with the charm or desire to usually grant their cambion children the Fiendish Charm ability. Cultists of Baphomet and Orcus can also use foul rituals to infuse their master's strength into a young or unborn child, yielding a cult champion who can wield special abilities; a cambion linked to Orcus replaces Fiendish Charm with Spawn of the Grave, and one linked to Baphomet replaces it with Horned One's Call.", + { + "type": "entries", + "name": "Horned One's Call", + "entries": [ + "When the cambion targets only one creature with the attacks of its Multiattack, it can choose one ally it can see within 30 feet. That ally can use its reaction to make one melee attack against a target of its choice." + ] + }, + { + "type": "entries", + "name": "Spawn of the Grave", + "entries": [ + "At the end of each of the cambion's turns, each undead of its choice that it can see within 30 feet gains 10 temporary hit points, provided the cambion isn't {@condition incapacitated}.", + "In addition, this cambion can use its Innate Spellcasting ability to cast {@spell animate dead} three times per day." + ] + } + ], + "source": "MTF", + "page": 32 + }, + { + "type": "variant", + "name": "Infernal Cambions", + "entries": [ + "Some devils grant a unique ability to their spawn that replaces the cambion's Fiendish Charm trait; Zariel and Geryon have a penchant for spawning cambions to serve as war leaders among their followers. The two of them grant the Fury of the Nine ability in place of Fiendish Charm.", + { + "type": "entries", + "name": "Fury of the Nine", + "entries": [ + "As a bonus action, the cambion chooses another creature that can see or hear it within 120 feet. That creature gains advantage on all attack rolls and saving throws for the next minute or until the cambion uses this ability again." + ] + } + ], + "source": "MTF", + "page": 21 + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cambion.mp3" + }, + "altArt": [ + { + "name": "Male Demonic Cambion", + "source": "MTF", + "page": 32 + }, + { + "name": "Female Demonic Cambion", + "source": "MTF", + "page": 32 + } + ], + "attachedItems": [ + "spear|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "F", + "P" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Demonic Cambion (Baphomet)", + "source": "MTF", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Fiendish Charm", + "items": { + "name": "Horned One's Call", + "entries": [ + "When the cambion targets only one creature with the attacks of its Multiattack, it can choose one ally it can see within 30 feet. That ally can use its reaction to make one melee attack against a target of its choice." + ] + } + } + }, + "variant": null + }, + { + "name": "Demonic Cambion (Orcus)", + "source": "MTF", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "3e": [ + "{@spell animate dead}" + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Fiendish Charm", + "items": { + "name": "Spawn of the Grave", + "entries": [ + "At the end of each of the cambion's turns, each undead of its choice that it can see within 30 feet gains 10 temporary hit points, provided the cambion isn't {@condition incapacitated}." + ] + } + } + }, + "variant": null + }, + { + "name": "Infernal Cambion", + "source": "MTF", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Fiendish Charm", + "items": { + "name": "Fury of the Nine", + "entries": [ + "As a bonus action, the cambion chooses another creature that can see or hear it within 120 feet. That creature gains advantage on all attack rolls and saving throws for the next minute or until the cambion uses this ability again." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Camel", + "source": "MM", + "page": 320, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Camel|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 9 + ], + "hp": { + "average": 15, + "formula": "2d10 + 4" + }, + "speed": { + "walk": 50 + }, + "str": 16, + "dex": 8, + "con": 14, + "int": 2, + "wis": 8, + "cha": 5, + "passive": 9, + "cr": "1/8", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/camel.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Carrion Crawler", + "source": "MM", + "page": 37, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Carrion Crawler|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 14, + "dex": 13, + "con": 16, + "int": 1, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "2", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The carrion crawler has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The carrion crawler can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The carrion crawler makes two attacks: one with its tentacles and one with its bite." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}4 ({@damage 1d4 + 2}) poison damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 minute. Until this poison ends, the target is {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the poison on itself on a success." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/carrior-crawler.mp3" + }, + "traitTags": [ + "Keen Senses", + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cat", + "source": "MM", + "page": 320, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Cat|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 3, + "dex": 15, + "con": 10, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The cat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "urban", + "desert" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/cat.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Cave Bear", + "source": "MM", + "page": 334, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Polar Bear|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15" + }, + "speed": { + "walk": 40, + "swim": 30 + }, + "str": 20, + "dex": 10, + "con": 16, + "int": 2, + "wis": 13, + "cha": 7, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "2", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bear makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + } + ], + "environment": [ + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cave-bear.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Centaur", + "source": "MM", + "page": 38, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "MOT" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Centaur Trooper|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 9, + "wis": 13, + "cha": 11, + "skill": { + "athletics": "+6", + "perception": "+3", + "survival": "+3" + }, + "passive": 13, + "languages": [ + "Elvish", + "Sylvan" + ], + "cr": "2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the centaur moves at least 30 feet straight toward a target and then hits it with a pike attack on the same turn, the target takes an extra 10 ({@damage 3d6}) piercing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow." + ] + }, + { + "name": "Pike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/centaur.mp3" + }, + "attachedItems": [ + "longbow|phb", + "pike|phb" + ], + "traitTags": [ + "Charge" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chain Devil", + "source": "MM", + "page": 72, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Chain Devil|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 18, + "int": 11, + "wis": 12, + "cha": 14, + "save": { + "con": "+7", + "wis": "+4", + "cha": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "8", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the devil's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The devil has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devil makes two attacks with its chains." + ] + }, + { + "name": "Chain", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. The target is {@condition grappled} (escape {@dc 14}) if the devil isn't already grappling a creature. Until this grapple ends, the target is {@condition restrained} and takes 7 ({@damage 2d6}) piercing damage at the start of each of its turns." + ] + }, + { + "name": "Animate Chains (Recharges after a Short or Long Rest)", + "entries": [ + "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.", + "Each animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is {@condition incapacitated} or dies." + ] + } + ], + "reaction": [ + { + "name": "Unnerving Mask", + "entries": [ + "When a creature the devil can see starts its turn within 30 feet of the devil, the devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the devil, it must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} until the end of its turn." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/chain-devil.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chasme", + "source": "MM", + "page": 57, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Chasme|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d10 + 13" + }, + "speed": { + "walk": 20, + "fly": 60 + }, + "str": 15, + "dex": 15, + "con": 12, + "int": 11, + "wis": 14, + "cha": 10, + "save": { + "dex": "+5", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "6", + "trait": [ + { + "name": "Drone", + "entries": [ + "The chasme produces a horrid droning sound to which demons are immune. Any other creature that starts its turn with in 30 feet of the chasme must succeed on a {@dc 12} Constitution saving throw or fall {@condition unconscious} for 10 minutes. A creature that can't hear the drone automatically succeeds on the save. The effect on the creature ends if it takes damage or if another creature takes an action to splash it with holy water. If a creature's saving throw is successful or the effect ends for it, it is immune to the drone for the next 24 hours." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The chasme has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The chasme can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Proboscis", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}16 ({@damage 4d6 + 2}) piercing damage plus 24 ({@damage 7d6}) necrotic damage, and the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. If this effect reduces a creature's hit point maximum to 0, the creature dies. This reduction to a creature's hit point maximum lasts until the creature finishes a long rest or until it is affected by a spell like {@spell greater restoration}." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A chasme has a {@chance 30|30 percent|30% summoning chance} chance of summoning one chasme.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Chasme (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/chasme.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Spider Climb" + ], + "senseTags": [ + "B", + "SD" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chimera", + "source": "MM", + "page": 39, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Chimera|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 19, + "dex": 11, + "con": 19, + "int": 3, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "6", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Horns", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 31 ({@damage 7d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/chimera.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chuul", + "source": "MM", + "page": 40, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Chuul|XMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 19, + "dex": 10, + "con": 16, + "int": 5, + "wis": 11, + "cha": 5, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Deep Speech but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The chuul can breathe air and water." + ] + }, + { + "name": "Sense Magic", + "entries": [ + "The chuul senses magic within 120 feet of it at will. This trait otherwise works like the {@spell detect magic} spell but isn't itself magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once." + ] + }, + { + "name": "Pincer", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. The target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature and the chuul doesn't have two other creatures {@condition grappled}." + ] + }, + { + "name": "Tentacles", + "entries": [ + "One creature {@condition grappled} by the chuul must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 minute. Until this poison ends, the target is {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/chuul.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "CS", + "DS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clay Golem", + "source": "MM", + "page": 168, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Clay Golem|XMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56" + }, + "speed": { + "walk": 20 + }, + "str": 20, + "dex": 9, + "con": 18, + "int": 3, + "wis": 8, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "acid", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "9", + "trait": [ + { + "name": "Acid Absorption", + "entries": [ + "Whenever the golem is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt." + ] + }, + { + "name": "Berserk", + "entries": [ + "Whenever the golem starts its turn with 60 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the {@spell greater restoration} spell or other magic." + ] + }, + { + "name": "Haste {@recharge 5}", + "entries": [ + "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/clay-golem.mp3" + }, + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cloaker", + "source": "MM", + "page": 41, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Cloaker|XMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d10 + 12" + }, + "speed": { + "walk": 10, + "fly": 40 + }, + "str": 17, + "dex": 15, + "con": 12, + "int": 13, + "wis": 12, + "cha": 14, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Deep Speech", + "Undercommon" + ], + "cr": "8", + "trait": [ + { + "name": "Damage Transfer", + "entries": [ + "While attached to a creature, the cloaker takes only half the damage dealt to it (rounded down). and that creature takes the other half." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the cloaker remains motionless without its underside exposed, it is indistinguishable from a dark leather cloak." + ] + }, + { + "name": "Light Sensitivity", + "entries": [ + "While in bright light, the cloaker has disadvantage on attack rolls and Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cloaker makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is {@condition blinded} and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a {@dc 16} Strength check." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + }, + { + "name": "Moan", + "entries": [ + "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours." + ] + }, + { + "name": "Phantasms (Recharges after a Short or Long Rest)", + "entries": [ + "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.", + "Whenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.", + "A duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cloaker.mp3" + }, + "traitTags": [ + "False Appearance", + "Light Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "U" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cloud Giant", + "source": "MM", + "page": 154, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Cloud Giant|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + { + "alignment": [ + "N", + "G" + ], + "chance": 50 + }, + { + "alignment": [ + "N", + "E" + ], + "chance": 50 + } + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 40 + }, + "str": 27, + "dex": 10, + "con": 22, + "int": 12, + "wis": 16, + "cha": 16, + "save": { + "con": "+10", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "insight": "+7", + "perception": "+7" + }, + "passive": 17, + "languages": [ + "Common", + "Giant" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant's innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "daily": { + "3e": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell control weather}", + "{@spell gaseous form}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The giant has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two morningstar attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "New Giant Options", + "entries": [ + "Some adult cloud giants have the magical ability to create barriers of gale-force wind around themselves that can deflect incoming missiles. Others like to fling enemies through the air. These abilities are represented by the following action options.", + { + "name": "Fling", + "type": "entries", + "entries": [ + "The giant tries to throw a Small or Medium creature within 10 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of the giant's choice and land {@condition prone}, taking 4 ({@damage 1d8}) bludgeoning damage for every 10 feet it was thrown." + ] + }, + { + "name": "Wind Aura", + "type": "entries", + "entries": [ + "A magical aura of wind surrounds the giant. The aura is a 10-foot-radius sphere that lasts as long as the giant maintains {@status concentration} on it (as if {@status concentration||concentrating} on a spell). While the aura is in effect, the giant gains a +2 bonus to its AC against ranged weapon attacks, and all open flames within the aura are extinguished unless they are magical." + ] + } + ], + "_version": { + "name": "Cloud Giant (Optional Actions)", + "addHeadersAs": "action" + }, + "source": "SKT", + "page": 245 + } + ], + "environment": [ + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cloud-giant.mp3" + }, + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cockatrice", + "source": "MM", + "page": 42, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "MOT" + }, + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Cockatrice|XMM" + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "str": 6, + "dex": 12, + "con": 12, + "int": 2, + "wis": 13, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "cr": "1/2", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw against being magically {@condition petrified}. On a failed save, the creature begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} for 24 hours." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cockatrice.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Commoner", + "source": "MM", + "page": 345, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Commoner|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 10 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "0", + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "environment": [ + "arctic", + "desert", + "coastal", + "grassland", + "hill", + "urban", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/commoner.mp3" + }, + "altArt": [ + { + "name": "Commoner", + "source": "EGW" + } + ], + "attachedItems": [ + "club|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Constrictor Snake", + "source": "MM", + "page": 320, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Constrictor Snake|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "2d10 + 2" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 14, + "con": 12, + "int": 1, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 10 ft." + ], + "passive": 10, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the creature is {@condition restrained}, and the snake can't constrict another target." + ] + } + ], + "environment": [ + "underwater", + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/constrictor-snake.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true + }, + { + "name": "Copper Dragon Wyrmling", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 111, + "srd": true, + "reprintedAs": [ + "Copper Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "climb": 30, + "fly": 60 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 14, + "wis": 11, + "cha": 13, + "save": { + "dex": "+3", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "skill": { + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "acid" + ], + "languages": [ + "Draconic" + ], + "cr": "1", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Acid Breath", + "entry": "The dragon exhales acid in a 20-foot line that is 5 feet wide. Each creature in that line must make a {@dc 11} Dexterity saving throw, taking 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Slowing Breath", + "entry": "The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 11} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/copper-dragon-wyrmling.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Couatl", + "source": "MM", + "page": 43, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "PSX" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Couatl|XMM" + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 30, + "fly": 90 + }, + "str": 16, + "dex": 20, + "con": 17, + "int": 18, + "wis": 20, + "cha": 18, + "save": { + "con": "+5", + "wis": "+7", + "cha": "+6" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 15, + "resist": [ + "radiant" + ], + "immune": [ + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The couatl's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring only verbal components:" + ], + "will": [ + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "daily": { + "3e": [ + "{@spell bless}", + "{@spell create food and water}", + "{@spell cure wounds}", + "{@spell lesser restoration}", + "{@spell protection from poison}", + "{@spell sanctuary}", + "{@spell shield}" + ], + "1e": [ + "{@spell dream}", + "{@spell greater restoration}", + "{@spell scrying}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Weapons", + "entries": [ + "The couatl's weapon attacks are magical." + ] + }, + { + "name": "Shielded Mind", + "entries": [ + "The couatl is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 24 hours. Until this poison ends, the target is {@condition unconscious}. Another creature can use an action to shake the target awake." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one Medium or smaller creature. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the couatl can't constrict another target." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).", + "In a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form." + ] + } + ], + "environment": [ + "grassland", + "forest", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/couatl.mp3" + }, + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Shapechanger" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "poisoned", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Crab", + "source": "MM", + "page": 320, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Crab|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 20, + "swim": 20 + }, + "str": 2, + "dex": 11, + "con": 10, + "int": 1, + "wis": 8, + "cha": 2, + "skill": { + "stealth": "+2" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 9, + "cr": "0", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The crab can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ] + } + ], + "environment": [ + "coastal" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/crab.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Crawling Claw", + "source": "MM", + "page": 44, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Crawling Claw|XMM" + ], + "size": [ + "T" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 13, + "dex": 14, + "con": 11, + "int": 5, + "wis": 10, + "cha": 4, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "0", + "trait": [ + { + "name": "Turn Immunity", + "entries": [ + "The claw is immune to effects that turn undead." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning or slashing damage (claw's choice)." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/crawling-claw.mp3" + }, + "traitTags": [ + "Turn Immunity" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Crocodile", + "source": "MM", + "page": 320, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + } + ], + "reprintedAs": [ + "Crocodile|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 20, + "swim": 30 + }, + "str": 15, + "dex": 10, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "stealth": "+2" + }, + "passive": 10, + "cr": "1/2", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The crocodile can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the crocodile can't bite another target" + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/crocodile.mp3" + }, + "traitTags": [ + "Hold Breath" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true + }, + { + "name": "Cult Fanatic", + "source": "MM", + "page": 345, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Cultist Fanatic|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "skill": { + "deception": "+4", + "persuasion": "+4", + "religion": "+2" + }, + "passive": 11, + "languages": [ + "any one language (usually Common)" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The fanatic is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The fanatic has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "The fanatic has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fanatic makes two melee attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cult-fanatic.mp3" + }, + "altArt": [ + { + "name": "Diabolical Cult Fanatic", + "source": "MTF", + "page": 18 + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cultist", + "source": "MM", + "page": 345, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Cultist|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 10, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "deception": "+2", + "religion": "+2" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/8", + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "The cultist has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cultist.mp3" + }, + "altArt": [ + { + "name": "Diabolical Cultist", + "source": "MTF", + "page": 18 + }, + { + "name": "Cultist", + "source": "RMBRE" + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cyclops", + "source": "MM", + "page": 45, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Cyclops Sentry|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 11, + "con": 20, + "int": 8, + "wis": 6, + "cha": 10, + "passive": 8, + "languages": [ + "Giant" + ], + "cr": "6", + "trait": [ + { + "name": "Poor Depth Perception", + "entries": [ + "The cyclops has disadvantage on any attack roll against a target more than 30 feet away." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cyclops makes two greatclub attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 30/120 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "hill", + "desert", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cyclops.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dao", + "group": [ + "Genies" + ], + "source": "MM", + "page": 143, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Dao|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "15d10 + 105" + }, + "speed": { + "walk": 30, + "burrow": 30, + "fly": 30 + }, + "str": 23, + "dex": 12, + "con": 24, + "int": 12, + "wis": 13, + "cha": 14, + "save": { + "int": "+5", + "wis": "+5", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "conditionImmune": [ + "petrified" + ], + "languages": [ + "Terran" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dao's innate spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell stone shape}" + ], + "daily": { + "3e": [ + "{@spell passwall}", + "{@spell move earth}", + "{@spell tongues}" + ], + "1e": [ + "{@spell conjure elemental} ({@creature earth elemental} only)", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell phantasmal killer}", + "{@spell plane shift}", + "{@spell wall of stone}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Earth Glide", + "entries": [ + "The dao can burrow through nonmagical, unworked earth and stone. While doing so, the dao doesn't disturb the material it moves through." + ] + }, + { + "name": "Elemental Demise", + "entries": [ + "If the dao dies, its body disintegrates into crystalline powder, leaving behind only equipment the dao was wearing or carrying." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The dao has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Dao makes two fist attacks or two maul attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}20 ({@damage 4d6 + 6}) bludgeoning damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 18} Strength check or be knocked {@condition prone}." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Genie Powers", + "entries": [ + "Genies have a variety of magical capabilities, including spells. A few have even greater powers that allow them to alter their appearance or the nature of reality.", + { + "type": "entries", + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + }, + { + "type": "entries", + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dao.mp3" + }, + "attachedItems": [ + "maul|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "frightened", + "invisible" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Dao (Disguises)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "will": [ + "{@spell disguise self} (often with a longer duration than is normal for that spell; see Disguises)" + ], + "daily": { + "3e": [ + "{@spell true polymorph} (mightier genies only; see Disguises)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + } + } + }, + "variant": null + }, + { + "name": "Dao (Wishes)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "yearly": { + "1e": [ + "{@spell wish} (see Wishes)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Darkmantle", + "source": "MM", + "page": 46, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Darkmantle|XMM" + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 10, + "fly": 30 + }, + "str": 16, + "dex": 12, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "stealth": "+3" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 10, + "cr": "1/2", + "trait": [ + { + "name": "Echolocation", + "entries": [ + "The darkmantle can't use its blindsight while {@condition deafened}." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the darkmantle remains motionless, it is indistinguishable from a cave formation such as a stalactite or stalagmite." + ] + } + ], + "action": [ + { + "name": "Crush", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also {@condition blinded} and unable to breathe while the darkmantle is attached in this way.", + "While attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.", + "A creature can detach the darkmantle by making a successful {@dc 13} Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement." + ] + }, + { + "name": "Darkness Aura (1/Day)", + "entries": [ + "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains {@status concentration}, up to 10 minutes (as if {@status concentration||concentrating} on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/darkmantle.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death Dog", + "source": "MM", + "page": 321, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "MOT" + }, + { + "source": "LoX" + }, + { + "source": "AATM" + } + ], + "reprintedAs": [ + "Death Dog|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 14, + "con": 14, + "int": 3, + "wis": 13, + "cha": 6, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "cr": "1", + "trait": [ + { + "name": "Two-Headed", + "entries": [ + "The dog has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dog makes two bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw against disease or become {@condition poisoned} until the disease is cured. Every 24 hours that elapse, the creature must repeat the saving throw, reducing its hit point maximum by 5 ({@dice 1d10}) on a failure. This reduction lasts until the disease is cured. The creature dies if the disease reduces its hit point maximum to 0." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/death-dog.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "DIS", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death Knight", + "source": "MM", + "page": 47, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Death Knight|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 180, + "formula": "19d8 + 95" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 11, + "con": 20, + "int": 12, + "wis": 16, + "cha": 18, + "save": { + "dex": "+6", + "wis": "+9", + "cha": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Common" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The death knight is a 19th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It has the following paladin spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell compelled duel}", + "{@spell searing smite}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell magic weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell elemental weapon}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell staggering smite}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell destructive wave} (necrotic)" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The death knight has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Marshal Undead", + "entries": [ + "Unless the death knight is {@condition incapacitated}, it and undead creatures of its choice within 60 feet of it have advantage on saving throws against features that turn undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The death knight makes three longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage if used with two hands, plus 18 ({@damage 4d8}) necrotic damage." + ] + }, + { + "name": "Hellfire Orb (1/Day)", + "entries": [ + "The death knight hurls a magical ball of fire that explodes at a point it can see within 120 feet of it. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 18} Dexterity saving throw. The sphere spreads around corners. A creature takes 35 ({@damage 10d6}) fire damage and 35 ({@damage 10d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The death knight adds 6 to its AC against one melee attack that would hit it. To do so, the death knight must see the attacker and be wielding a melee weapon." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/death-knight.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "F", + "N", + "S" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "L", + "N", + "R", + "T", + "Y" + ], + "spellcastingTags": [ + "CP" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "incapacitated", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death Slaad", + "source": "MM", + "page": 278, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Death Slaad|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 19, + "int": 15, + "wis": 10, + "cha": 16, + "skill": { + "arcana": "+6", + "perception": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 18, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The slaad's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The slaad can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell invisibility} (self only)", + "{@spell mage hand}", + "{@spell major image}" + ], + "daily": { + "2e": [ + "{@spell fear}", + "{@spell fireball}", + "{@spell fly}", + "{@spell tongues}" + ], + "1e": [ + "{@spell cloudkill}", + "{@spell plane shift}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The slaad can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The slaad's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The slaad makes three attacks: one with its bite and two with its claws or greatsword." + ] + }, + { + "name": "Bite (Slaad Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Claws (Slaad Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Control Gem", + "entries": [ + "Implanted in the slaad's brain is a magic control gem. The slaad must obey whoever possesses the gem and is immune to being {@condition charmed} while so controlled.", + "Certain spells can be used to acquire the gem. If the slaad fails its saving throw against {@spell imprisonment}, the spell can transfer the gem to the spellcaster's open hand, instead of imprisoning the slaad. A {@spell wish} spell, if cast in the slaad's presence, can be worded to acquire the gem.", + "A {@spell greater restoration} spell cast on the slaad destroys the gem without harming the slaad.", + "Someone who is proficient in Wisdom ({@skill Medicine}) can remove the gem from an {@condition incapacitated} slaad. Each try requires 1 minute of uninterrupted work and a successful {@dc 20} Wisdom ({@skill Medicine}) check. Each failed attempt deals 22 ({@damage 4d10}) psychic damage to the slaad." + ], + "_version": { + "name": "Death Slaad (Control Gem)", + "addAs": "trait" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/death-slaad.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons", + "Regeneration", + "Shapechanger" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "N", + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "F", + "I" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "frightened", + "invisible" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death Tyrant", + "group": [ + "Beholders" + ], + "source": "MM", + "page": 29, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Death Tyrant|XMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "25d10 + 50" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 14, + "con": 14, + "int": 19, + "wis": 15, + "cha": 19, + "save": { + "str": "+5", + "con": "+7", + "int": "+9", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "perception": "+12" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 22, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "cr": { + "cr": "14", + "lair": "15" + }, + "trait": [ + { + "name": "Negative Energy Cone", + "entries": [ + "The death tyrant's central eye emits an {@condition invisible}, magical 150-foot cone of negative energy. At the start of each of its turns, the tyrant decides which way the cone faces and whether the cone is active.", + "Any creature in that area can't regain hit points. Any humanoid that dies there becomes a {@creature zombie} under the tyrant's command. The dead humanoid retains its place in the initiative order and animates at the start of its next turn, provided that its body hasn't been completely destroyed." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) piercing damage." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The death tyrant shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Charm Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 17} Wisdom saving throw or be {@condition charmed} by the death tyrant for 1 hour, or until the death tyrant harms the creature." + }, + { + "type": "item", + "name": "2. Paralyzing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "3. Fear Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 17} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "4. Slowing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 17} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn, not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "5. Enervation Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 17} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "6. Telekinetic Ray", + "style": "italic", + "entries": [ + "If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or the death tyrant moves it up to 30 feet in any direction. It is {@condition restrained} by the ray's telekinetic grip until the start of the death tyrant's next turn or until the death tyrant is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is moved up to 30 feet in any direction. The death tyrant can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ] + }, + { + "type": "item", + "name": "7. Sleep Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 17} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on constructs and undead." + }, + { + "type": "item", + "name": "8. Petrification Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 17} Dexterity saving throw. On a failed save, the creature begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + }, + { + "type": "item", + "name": "9. Disintegration Ray", + "style": "italic", + "entries": [ + "If the target is a creature, it must succeed on a {@dc 17} Dexterity saving throw or take 45 ({@damage 10d8}) force damage. If this damage reduces the creature to 0 hit points, its body becomes a pile of fine gray dust.", + "If the target is a Large or smaller nonmagical object or creation of magical force, it is disintegrated without a saving throw. If the target is a Huge or larger object or creation of magical force, this ray disintegrates a 10-foot cube of it." + ] + }, + { + "type": "item", + "name": "10. Death Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 17} Dexterity saving throw or take 55 ({@damage 10d10}) necrotic damage. The target dies if the ray reduces it to 0 hit points." + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Eye Ray", + "entries": [ + "The death tyrant uses one random eye ray." + ] + } + ], + "legendaryGroup": { + "name": "Death Tyrant", + "source": "MM" + }, + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/death-tyrant.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "DS", + "U" + ], + "damageTags": [ + "N", + "O", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deep Gnome (Svirfneblin)", + "source": "MM", + "page": 164, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d6 + 6" + }, + "speed": { + "walk": 20 + }, + "str": 15, + "dex": 14, + "con": 14, + "int": 12, + "wis": 10, + "cha": 9, + "skill": { + "investigation": "+3", + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "languages": [ + "Gnomish", + "Terran", + "Undercommon" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The gnome's innate spellcasting ability is Intelligence (spell save {@dc 11}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell nondetection} (self only)" + ], + "daily": { + "1e": [ + "{@spell blindness/deafness}", + "{@spell blur}", + "{@spell disguise self}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Stone Camouflage", + "entries": [ + "The gnome has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + }, + { + "name": "Gnome Cunning", + "entries": [ + "The gnome has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ] + } + ], + "action": [ + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Poisoned Dart", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success" + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/svirfneblin.mp3" + }, + "altArt": [ + { + "name": "Svirfneblin", + "source": "QftIS" + } + ], + "attachedItems": [ + "war pick|phb" + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "G", + "T", + "U" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "blinded", + "deafened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deer", + "source": "MM", + "page": 321, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "DIP" + } + ], + "reprintedAs": [ + "Deer|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 50 + }, + "str": 11, + "dex": 16, + "con": 11, + "int": 2, + "wis": 14, + "cha": 5, + "passive": 12, + "cr": "0", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deer.mp3" + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Demilich", + "source": "MM", + "page": 48, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Demilich|XMM" + ], + "size": [ + "T" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 80, + "formula": "32d4" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 20, + "con": 10, + "int": 20, + "wis": 17, + "cha": 20, + "save": { + "con": "+6", + "int": "+11", + "wis": "+9", + "cha": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 13, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from magic weapons", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "stunned" + ], + "cr": { + "cr": "18", + "lair": "20" + }, + "trait": [ + { + "name": "Avoidance", + "entries": [ + "If the demilich is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the demilich fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Turn Immunity", + "entries": [ + "The demilich is immune to effects that turn undead." + ] + } + ], + "action": [ + { + "name": "Howl {@recharge 5}", + "entries": [ + "The demilich emits a bloodcurdling howl. Each creature within 30 feet of the demilich that can hear the howl must succeed on a {@dc 15} Constitution saving throw or drop to 0 hit points. On a successful save, the creature is {@condition frightened} until the end of its next turn." + ] + }, + { + "name": "Life Drain", + "entries": [ + "The demilich targets up to three creatures that it can see within 10 feet of it. Each target must succeed on a {@dc 19} Constitution saving throw or take 21 ({@damage 6d6}) necrotic damage, and the demilich regains hit points equal to the total damage dealt to all targets." + ] + } + ], + "legendary": [ + { + "name": "Flight", + "entries": [ + "The demilich flies up to half its flying speed." + ] + }, + { + "name": "Cloud of Dust", + "entries": [ + "The demilich magically swirls its dusty remains. Each creature within 10 feet of the demilich, including around a corner, must succeed on a {@dc 15} Constitution saving throw or be {@condition blinded} until the end of the demilich's next turn. A creature that succeeds on the saving throw is immune to this effect until the end of the demilich's next turn." + ] + }, + { + "name": "Energy Drain (Costs 2 Actions)", + "entries": [ + "Each creature with in 30 feet of the demilich must make a {@dc 15} Constitution saving throw. On a failed save, the creature's hit point maximum is magically reduced by 10 ({@dice 3d6}). If a creature's hit point maximum is reduced to 0 by this effect, the creature dies. A creature's hit point maximum can be restored with the {@spell greater restoration} spell or similar magic." + ] + }, + { + "name": "Vile Curse (Costs 3 Actions)", + "entries": [ + "The demilich targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 15} Wisdom saving throw or be magically cursed. Until the curse ends, the target has disadvantage on attack rolls and saving throws. The target can repeat the saving throw at the end of each of its turns, ending the curse on a success." + ] + } + ], + "legendaryGroup": { + "name": "Demilich", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Acererak and His Disciples", + "entries": [ + "The transformation into a demilich isn't a bitter end for all liches that experience it. Made as a conscious choice, the path of the demilich becomes the next step in a dark evolution. The lich Acererak\u2014a powerful wizard and demonologist and the infamous master of the Tomb of Horrors\u2014anticipated his own transformation, preparing for it by setting enchanted gemstones into his skull's eye sockets and teeth. Each of these soul gems possessed the power to capture the souls on which his phylactery would feed.", + "Acererak abandoned his physical body, accepting that it would molder and dissolve to dust while he traveled the planes as a disembodied consciousness. If the skull that was his last physical remains was ever disturbed, its gems would claim the souls of the insolent intruders to his tomb, magically transferring them to his phylactery.", + "Liches who follow Acererak's path believe that by becoming free of their bodies, they can continue their quest for power beyond the mortal world. As their patron did, they secure their remains within well-guarded vaults, using soul gems to maintain their phylacteries and destroy the adventurers who disturb their lairs.", + "Acererak or another demilich like him has a challenge rating of 21 (33,000 XP), or 23 (50,000 XP) in its lair, and gains the following additional action option.", + { + "type": "entries", + "name": "Trap Soul", + "entries": [ + "The demilich targets one creature that it can see within 30 feet of it. The target must make a {@dc 19} Charisma saving throw. On a failed save, the target's soul is magically trapped inside one of the demilich's gems. While the soul is trapped, the target's body and all the equipment it is carrying cease to exist. On a successful save, the target takes 24 ({@damage 7d6}) necrotic damage, and if this damage reduces the target to 0 hit points, its soul is trapped as if it failed the saving throw. A soul trapped in a gem for 24 hours is devoured and ceases to exist.", + "If the demilich drops to 0 hit points, it is destroyed and turns to powder, leaving behind its gems. Crushing a gem releases any soul trapped within, at which point the target's body re-forms in an unoccupied space nearest to the gem and in the same state as when it was trapped." + ] + } + ], + "token": { + "name": "Acererak", + "source": "MM", + "page": 49 + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/demilich.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Turn Immunity" + ], + "senseTags": [ + "U" + ], + "damageTags": [ + "N" + ], + "damageTagsLegendary": [ + "N" + ], + "miscTags": [ + "CUR", + "HPR" + ], + "conditionInflict": [ + "blinded", + "frightened" + ], + "conditionInflictLegendary": [ + "prone" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Demilich (Trap Soul)", + "source": "MM", + "_mod": { + "action": { + "mode": "appendArr", + "items": { + "name": "Trap Soul", + "entries": [ + "The demilich targets one creature that it can see within 30 feet of it. The target must make a {@dc 19} Charisma saving throw. On a failed save, the target's soul is magically trapped inside one of the demilich's gems. While the soul is trapped, the target's body and all the equipment it is carrying cease to exist. On a successful save, the target takes 24 ({@damage 7d6}) necrotic damage, and if this damage reduces the target to 0 hit points, its soul is trapped as if it failed the saving throw. A soul trapped in a gem for 24 hours is devoured and ceases to exist.", + "If the demilich drops to 0 hit points, it is destroyed and turns to powder, leaving behind its gems. Crushing a gem releases any soul trapped within, at which point the target's body re-forms in an unoccupied space nearest to the gem and in the same state as when it was trapped." + ] + } + } + }, + "cr": { + "cr": "21", + "lair": "23" + }, + "variant": null + } + ] + }, + { + "name": "Deva", + "group": [ + "Angels" + ], + "source": "MM", + "page": 16, + "srd": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Deva|XMM" + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30, + "fly": 90 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 17, + "wis": 20, + "cha": 20, + "save": { + "wis": "+9", + "cha": "+9" + }, + "skill": { + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "resist": [ + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deva's spellcasting ability is Charisma (spell save {@dc 17}). The deva can innately cast the following spells, requiring only verbal components:" + ], + "will": [ + "{@spell detect evil and good}" + ], + "daily": { + "1e": [ + "{@spell commune}", + "{@spell raise dead}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Angelic Weapons", + "entries": [ + "The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals an extra {@damage 4d8} radiant damage (included in the attack)." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The deva has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deva makes two melee attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage." + ] + }, + { + "name": "Healing Touch (3/Day)", + "entries": [ + "The deva touches another creature. The target magically regains 20 ({@dice 4d8 + 2}) hit points and is freed from any curse, disease, poison, blindness, or deafness." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).", + "In a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deva.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "R" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dire Wolf", + "source": "MM", + "page": 321, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Dire Wolf|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 37, + "formula": "5d10 + 10" + }, + "speed": { + "walk": 50 + }, + "str": 17, + "dex": 15, + "con": 15, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "environment": [ + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dire-wolf.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Displacer Beast", + "source": "MM", + "page": 81, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Displacer Beast|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 6, + "wis": 12, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "cr": "3", + "trait": [ + { + "name": "Avoidance", + "entries": [ + "If the displacer beast is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Displacement", + "entries": [ + "The displacer beast projects a magical illusion that makes it appear to be standing near its actual location, causing attack rolls against it to have disadvantage. If it is hit by an attack, this trait is disrupted until the end of its next turn. This trait is also disrupted while the displacer beast is {@condition incapacitated} or has a speed of 0." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The displacer beast makes two attacks with its tentacles." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 3 ({@damage 1d6}) piercing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/displacer-beast.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Djinni", + "group": [ + "Genies" + ], + "source": "MM", + "page": 144, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Djinni|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "14d10 + 84" + }, + "speed": { + "walk": 30, + "fly": 90 + }, + "str": 21, + "dex": 15, + "con": 22, + "int": 15, + "wis": 16, + "cha": 20, + "save": { + "dex": "+6", + "wis": "+7", + "cha": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "immune": [ + "lightning", + "thunder" + ], + "languages": [ + "Auran" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The djinni's innate spellcasting ability is Charisma (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell thunderwave}" + ], + "daily": { + "3e": [ + "{@spell create food and water} (can create wine instead of water)", + "{@spell tongues}", + "{@spell wind walk}" + ], + "1e": [ + "{@spell conjure elemental} ({@creature air elemental} only)", + "{@spell creation}", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell plane shift}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Elemental Demise", + "entries": [ + "If the djinni dies, its body disintegrates into a warm breeze, leaving behind only equipment the djinni was wearing or carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The djinni makes three scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 3 ({@damage 1d6}) lightning or thunder damage (djinni's choice)." + ] + }, + { + "name": "Create Whirlwind", + "entries": [ + "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains {@status concentration} (as if {@status concentration||concentrating} on a spell). Any creature but the djinni that enters the whirlwind must succeed on a {@dc 18} Strength saving throw or be {@condition restrained} by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures {@condition restrained} by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.", + "A creature can use its action to free a creature {@condition restrained} by the whirlwind, including itself, by succeeding on a {@dc 18} Strength check. If the check succeeds, the creature is no longer {@condition restrained} and moves to the nearest space outside the whirlwind." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Genie Powers", + "entries": [ + "Genies have a variety of magical capabilities, including spells. A few have even greater powers that allow them to alter their appearance or the nature of reality.", + { + "type": "entries", + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + }, + { + "type": "entries", + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + ] + } + ], + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/djinni.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU" + ], + "damageTags": [ + "L", + "S", + "T" + ], + "damageTagsSpell": [ + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Djinni (Disguises)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "will": [ + "{@spell disguise self} (often with a longer duration than is normal for that spell; see Disguises)" + ], + "daily": { + "3e": [ + "{@spell true polymorph} (mightier genies only; see Disguises)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + } + } + }, + "variant": null + }, + { + "name": "Djinni (Wishes)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "yearly": { + "1e": [ + "{@spell wish} (see Wishes)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Doppelganger", + "source": "MM", + "page": 82, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Doppelganger|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 14 + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 11, + "wis": 12, + "cha": 14, + "skill": { + "deception": "+6", + "insight": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Ambusher", + "entries": [ + "In the first round of a combat, the doppelganger has advantage on attack rolls against any creature it {@status surprised}." + ] + }, + { + "name": "Surprise Attack", + "entries": [ + "If the doppelganger surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 ({@damage 3d6}) damage from the attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The doppelganger makes two melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Read Thoughts", + "entries": [ + "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's {@status concentration} isn't broken (as if {@status concentration||concentrating} on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom ({@skill Insight}) and Charisma ({@skill Deception}, {@skill Intimidation}, and {@skill Persuasion}) checks against the target." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/doppelganger.mp3" + }, + "traitTags": [ + "Ambusher", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draft Horse", + "source": "MM", + "page": 321, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Draft Horse|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 10, + "con": 12, + "int": 2, + "wis": 11, + "cha": 7, + "passive": 10, + "cr": "1/4", + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/draft-horse.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Dragon Turtle", + "source": "MM", + "page": 119, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Dragon Turtle|XMM" + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 341, + "formula": "22d20 + 110" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 25, + "dex": 10, + "con": 20, + "int": 10, + "wis": 12, + "cha": 12, + "save": { + "dex": "+6", + "con": "+11", + "wis": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Aquan", + "Draconic" + ], + "cr": "17", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon turtle can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}26 ({@damage 3d12 + 7}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d8 + 7}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}26 ({@damage 3d12 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked {@condition prone}." + ] + }, + { + "name": "Steam Breath {@recharge 5}", + "entries": [ + "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 52 ({@damage 15d6}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "dragonAge": "adult", + "soundClip": { + "type": "internal", + "path": "bestiary/dragon-turtle.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "AQ", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dretch", + "source": "MM", + "page": 57, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Dretch|XMM" + ], + "size": [ + "S" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 20 + }, + "str": 11, + "dex": 11, + "con": 12, + "int": 5, + "wis": 8, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 60 ft. (works only with creatures that understand Abyssal)" + ], + "cr": "1/4", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dretch makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) slashing damage." + ] + }, + { + "name": "Fetid Cloud (1/Day)", + "entries": [ + "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} until the start of its next turn. While {@condition poisoned} in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dretch.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drider", + "source": "MM", + "page": 120, + "srd": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "CRCotN" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Drider|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 16, + "dex": 16, + "con": 18, + "int": 13, + "wis": 14, + "cha": 12, + "skill": { + "perception": "+5", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drider's innate spellcasting ability is Wisdom (spell save {@dc 13}). The drider can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drider has advantage on saving throws against being {@condition charmed}, and magic can't put the drider to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The drider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drider has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The drider ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d4}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Drider Spellcasting", + "entries": [ + "Driders that were once drow spellcasters might retain their ability to cast spells. Such driders typically have a higher spellcasting ability (15 or 16) than other driders. Further, the drider gains the Spellcasting trait. A drider that was a drow divine spellcaster, therefore, could have a Wisdom of 16 (+3) and a Spellcasting trait as follows.", + "Spellcasting. The drider is a 7th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The drider has the following spells prepared from the cleric spell list:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + "Cantrips (at will): {@spell poison spray}, {@spell thaumaturgy}", + "1st level (4 slots): {@spell bane}, {@spell detect magic}, {@spell sanctuary}", + "2nd level (3 slots): {@spell hold person}, {@spell silence}", + "3rd level (3 slots): {@spell clairvoyance}, {@spell dispel magic}", + "4th level (2 slots): {@spell divination}, {@spell freedom of movement}" + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drider.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Spider Climb", + "Sunlight Sensitivity", + "Web Walker" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Drider Spellcaster", + "source": "MM", + "wis": 16, + "spellcasting": [ + { + "name": "Spellcasting", + "headerEntries": [ + "The drider is a 7th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The drider has the following spells prepared from the cleric spell list:" + ], + "spells": { + "0": { + "spells": [ + "{@spell poison spray}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell detect magic}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell divination}", + "{@spell freedom of movement}" + ] + } + }, + "ability": "wis" + } + ], + "variant": null + } + ] + }, + { + "name": "Drow", + "source": "MM", + "page": 128, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Priest Acolyte|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 11, + "wis": 11, + "cha": 12, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 11}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Drow Magic Armor and Weapons", + "entries": [ + { + "type": "entries", + "entries": [ + "Drow often wear magic armor and carry magic weapons that lose their enhancement bonuses permanently if they are exposed to sunlight for 1 hour or longer.", + "A {@creature drow} wearing a {@item +1 chain shirt} and carrying a {@item +1 shortsword} has AC 16 and a +1 bonus on attack and damage rolls with shortsword attacks." + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow.mp3" + }, + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Drow (Magic Equipment)", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The drow wears a {@item drow +1 chain shirt|mm|+1 chain shirt} and carries a {@item drow +1 shortsword|mm|+1 shortsword}. These items lose their enhancement bonuses permanently if they are exposed to sunlight for 1 hour or longer." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Shortsword", + "items": { + "name": "+1 Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + } + }, + "ac": [ + { + "ac": 16, + "from": [ + "{@item drow +1 chain shirt|mm|+1 chain shirt}" + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Drow Elite Warrior", + "source": "MM", + "page": 128, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Gladiator|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 18, + "con": 14, + "int": 11, + "wis": 13, + "cha": 12, + "save": { + "dex": "+7", + "con": "+5", + "wis": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The drow adds 3 to its AC against one melee attack that would hit it. To do so, the drow must see the attacker and be wielding a melee weapon." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Drow Magic Armor and Weapons", + "entries": [ + { + "type": "entries", + "entries": [ + "Drow often wear magic armor and carry magic weapons that lose their enhancement bonuses permanently if they are exposed to sunlight for 1 hour or longer.", + "A {@creature drow elite warrior} wearing {@item +2 Studded Leather Armor||+2 studded leather} and carrying a {@item +2 shortsword} has AC 20 and a +2 bonus on attack and damage rolls with shortsword attacks." + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-elite-warrior.mp3" + }, + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Drow Elite Warrior (Magic Equipment)", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The drow wears {@item drow +2 studded leather armor|mm|+2 studded leather armor} and carries a {@item drow +2 shortsword|mm|+2 shortsword}. These items lose their enhancement bonuses permanently if they are exposed to sunlight for 1 hour or longer." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Shortsword", + "items": { + "name": "+2 Shortsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + } + }, + "ac": [ + { + "ac": 20, + "from": [ + "{@item drow +2 studded leather armor|mm|+2 studded leather armor}", + "{@item shield|phb}" + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Drow Mage", + "source": "MM", + "page": 129, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Bandit Deceiver|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 10, + "int": 17, + "wis": 13, + "cha": 12, + "skill": { + "arcana": "+6", + "deception": "+4", + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow is a 10th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The drow has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell alter self}", + "{@spell misty step}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell Evard's black tentacles}", + "{@spell greater invisibility}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands, plus 3 ({@damage 1d6}) poison damage." + ] + }, + { + "name": "Summon Demon (1/Day)", + "entries": [ + "The drow magically summons a {@creature quasit}, or attempts to summon a {@creature shadow demon} with a {@chance 50|50 percent|50% summoning chance} chance of success. The summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-mage.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "B", + "I" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "I", + "L", + "O", + "P", + "S" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "invisible", + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Priestess of Lolth", + "source": "MM", + "page": 129, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Fiend Cultist|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 13, + "wis": 17, + "cha": 18, + "save": { + "con": "+4", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "insight": "+6", + "perception": "+6", + "religion": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 15}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow is a 10th-level spellcaster. Her spellcasting ability is Wisdom (save {@dc 14}, {@hit 6} to hit with spell attacks). The drow has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell poison spray}", + "{@spell resistance}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell cure wounds}", + "{@spell detect poison and disease}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell protection from poison}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell conjure animals} (2 {@creature giant spider|mm|giant spiders})", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell freedom of movement}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell insect plague}", + "{@spell mass cure wounds}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes two scourge attacks." + ] + }, + { + "name": "Scourge", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 17 ({@damage 5d6}) poison damage." + ] + }, + { + "name": "Summon Demon (1/Day)", + "entries": [ + "The drow attempts to magically summon a {@creature yochlol} with a {@chance 30|30 percent|30% summoning chance} chance of success. If the attempt fails, the drow takes 5 ({@damage 1d10}) psychic damage. Otherwise, the summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Drow Magic Armor and Weapons", + "entries": [ + { + "type": "entries", + "entries": [ + "Drow often wear magic armor and carry magic weapons that lose their enhancement bonuses permanently if they are exposed to sunlight for 1 hour or longer.", + "A {@creature drow priestess of lolth} wearing {@item +3 scale mail} has AC 19." + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-priestess-of-lolth.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P", + "Y" + ], + "damageTagsSpell": [ + "F", + "I", + "P" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "poisoned", + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Drow Priestess of Lolth (Magic Equipment)", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The drow wears {@item drow +3 scale mail|mm|+3 scale mail}. This armor loses its enhancement bonuses permanently if it is exposed to sunlight for 1 hour or longer." + ] + } + } + }, + "ac": [ + { + "ac": 19, + "from": [ + "{@item drow +3 scale mail|mm|+3 scale mail}" + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Druid", + "source": "MM", + "page": 346, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Druid|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 13, + "int": 12, + "wis": 15, + "cha": 11, + "skill": { + "medicine": "+4", + "nature": "+3", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Druidic plus any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The druid is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, 4 ({@damage 1d8}) bludgeoning damage if wielded with two hands, or 6 ({@damage 1d8 + 2}) bludgeoning damage with {@spell shillelagh}." + ] + } + ], + "environment": [ + "coastal", + "mountain", + "grassland", + "hill", + "arctic", + "forest", + "swamp", + "underdark", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/druid.mp3" + }, + "altArt": [ + { + "name": "Demonic Druid", + "source": "MTF", + "page": 29 + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "DU", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dryad", + "source": "MM", + "page": 121, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Dryad|XMM" + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "N" + ], + "ac": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 11, + "int": 14, + "wis": 15, + "cha": 18, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Elvish", + "Sylvan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dryad's innate spellcasting ability is Charisma (spell save {@dc 14}). The dryad can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell druidcraft}" + ], + "daily": { + "3e": [ + "{@spell entangle}", + "{@spell goodberry}" + ], + "1e": [ + "{@spell barkskin}", + "{@spell pass without trace}", + "{@spell shillelagh}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The dryad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Speak with Beasts and Plants", + "entries": [ + "The dryad can communicate with beasts and plants as if they shared a language." + ] + }, + { + "name": "Tree Stride", + "entries": [ + "Once on her turn, the dryad can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be large or bigger." + ] + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit ({@hit 6} to hit with shillelagh), reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage with shillelagh." + ] + }, + { + "name": "Fey Charm", + "entries": [ + "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed}. The {@condition charmed} creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.", + "Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.", + "The dryad can have no more than one humanoid and up to three beasts {@condition charmed} at a time." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dryad.mp3" + }, + "attachedItems": [ + "club|phb" + ], + "traitTags": [ + "Magic Resistance", + "Tree Stride" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "E", + "S" + ], + "damageTags": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar", + "source": "MM", + "page": 122, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Spy|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar.mp3" + }, + "attachedItems": [ + "javelin|phb", + "war pick|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duodrone", + "group": [ + "Modrons" + ], + "source": "MM", + "page": 225, + "otherSources": [ + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Modron Duodrone|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 13, + "con": 12, + "int": 6, + "wis": 10, + "cha": 7, + "senses": [ + "truesight 120 ft." + ], + "passive": 10, + "languages": [ + "Modron" + ], + "cr": "1/4", + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The duodrone can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the duodrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duodrone makes two fist attacks or two javelin attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Rogue Modrons", + "entries": [ + "A modron unit sometimes becomes defective, either through natural decay or exposure to chaotic forces. Rogue modrons don't act in accordance with Primus's wishes and directives, breaking laws, disobeying orders, and even engaging in violence. Other modrons hunt down such rogues.", + "A rogue modron loses the Axiomatic Mind trait and can have any alignment other than lawful neutral. Otherwise, it has the same statistics as a regular modron of its rank." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duodrone.mp3" + }, + "attachedItems": [ + "javelin|phb" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Duodrone (Rogue)", + "source": "MM", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Axiomatic Mind" + } + }, + "alignment": [ + "A" + ], + "variant": null + } + ] + }, + { + "name": "Dust Mephit", + "source": "MM", + "page": 215, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Dust Mephit|XMM" + ], + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 5, + "dex": 14, + "con": 10, + "int": 9, + "wis": 11, + "cha": 10, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Auran", + "Terran" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "type": "spellcasting", + "headerEntries": [ + "The mephit can innately cast {@spell sleep}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "will": [ + "{@spell sleep}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the mephit dies, it explodes in a burst of dust. Each creature within 5 feet of it must then succeed on a {@dc 10} Constitution saving throw or be {@condition blinded} for 1 minute. A {@condition blinded} creature can repeat the saving throw on each of its turns, ending the effect on itself on a success." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Blinding Breath {@recharge}", + "entries": [ + "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw or be {@condition 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." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Mephits (1/Day)", + "entries": [ + "The mephit has a {@chance 25|25 percent|25% summoning chance} chance of summoning {@dice 1d4} mephits of its kind. A summoned mephit appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other mephits. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Dust Mephit (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mephit.mp3" + }, + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "AU", + "T" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eagle", + "source": "MM", + "page": 322, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CM" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Eagle|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 6, + "dex": 15, + "con": 10, + "int": 2, + "wis": 14, + "cha": 7, + "skill": { + "perception": "+4" + }, + "passive": 14, + "cr": "0", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The eagle has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/eagle.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Earth Elemental", + "source": "MM", + "page": 124, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Earth Elemental|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 126, + "formula": "12d10 + 60" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 20, + "dex": 8, + "con": 20, + "int": 5, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "vulnerable": [ + "thunder" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "unconscious" + ], + "languages": [ + "Terran" + ], + "cr": "5", + "trait": [ + { + "name": "Earth Glide", + "entries": [ + "The elemental can burrow through nonmagical, unworked earth and stone. While doing so, the elemental doesn't disturb the material it moves through." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The elemental deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elemental makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/earth-elemental.mp3" + }, + "traitTags": [ + "Siege Monster" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Efreeti", + "group": [ + "Genies" + ], + "source": "MM", + "page": 145, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Efreeti|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 22, + "dex": 12, + "con": 24, + "int": 16, + "wis": 15, + "cha": 16, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "fire" + ], + "languages": [ + "Ignan" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The efreeti's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "3e": [ + "{@spell enlarge/reduce}", + "{@spell tongues}" + ], + "1e": [ + "{@spell conjure elemental} ({@creature fire elemental} only)", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell plane shift}", + "{@spell wall of fire}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Elemental Demise", + "entries": [ + "If the efreeti dies, its body disintegrates in a flash of fire and puff of smoke, leaving behind only equipment the efreeti was wearing or carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The efreeti makes two scimitar attacks or uses its Hurl Flame twice." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) fire damage." + ] + }, + { + "name": "Hurl Flame", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}17 ({@damage 5d6}) fire damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Genie Powers", + "entries": [ + "Genies have a variety of magical capabilities, including spells. A few have even greater powers that allow them to alter their appearance or the nature of reality.", + { + "type": "entries", + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + }, + { + "type": "entries", + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/efreeti.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "F", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Efreeti (Disguises)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "will": [ + "{@spell disguise self} (often with a longer duration than is normal for that spell; see Disguises)" + ], + "daily": { + "3e": [ + "{@spell true polymorph} (mightier genies only; see Disguises)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + } + } + }, + "variant": null + }, + { + "name": "Efreeti (Wishes)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "yearly": { + "1e": [ + "{@spell wish} (see Wishes)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Elephant", + "source": "MM", + "page": 322, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Elephant|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 9, + "con": 17, + "int": 3, + "wis": 11, + "cha": 6, + "passive": 10, + "cr": "4", + "trait": [ + { + "name": "Trampling Charge", + "entries": [ + "If the elephant moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the elephant can make one stomp attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d8 + 6}) piercing damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one {@condition prone} creature. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elephant.mp3" + }, + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Elk", + "source": "MM", + "page": 322, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Elk|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 13, + "formula": "2d10 + 2" + }, + "speed": { + "walk": 50 + }, + "str": 16, + "dex": 10, + "con": 12, + "int": 2, + "wis": 10, + "cha": 6, + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the elk moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one {@condition prone} creature. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elk.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Empyrean", + "source": "MM", + "page": 130, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Empyrean|XMM" + ], + "size": [ + "H" + ], + "type": { + "type": "celestial", + "tags": [ + "titan" + ] + }, + "alignment": [ + { + "alignment": [ + "C", + "G" + ], + "chance": 75 + }, + { + "alignment": [ + "N", + "E" + ], + "chance": 25 + } + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 313, + "formula": "19d12 + 190" + }, + "speed": { + "walk": 50, + "fly": 50, + "swim": 50 + }, + "str": 30, + "dex": 21, + "con": 30, + "int": 21, + "wis": 22, + "cha": 27, + "save": { + "str": "+17", + "int": "+12", + "wis": "+13", + "cha": "+15" + }, + "skill": { + "insight": "+13", + "persuasion": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "all" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The empyrean's innate spellcasting ability is Charisma (spell save {@dc 23}, {@hit 15} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell greater restoration}", + "{@spell pass without trace}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "daily": { + "1e": [ + "{@spell commune}", + "{@spell dispel evil and good}", + "{@spell earthquake}", + "{@spell fire storm}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the empyrean fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The empyrean has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The empyrean's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}31 ({@damage 6d6 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of the empyrean's next turn." + ] + }, + { + "name": "Bolt", + "entries": [ + "{@atk rs} {@hit 15} to hit, range 600 ft., one target. {@h}24 ({@damage 7d6}) damage of one of the following types (empyrean's choice): acid, cold, fire, force, lightning, radiant, or thunder." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The empyrean makes one attack." + ] + }, + { + "name": "Bolster", + "entries": [ + "The empyrean bolsters all nonhostile creatures within 120 feet of it until the end of its next turn. Bolstered creatures can't be {@condition charmed} or {@condition frightened}, and they gain advantage on ability checks and saving throws until the end of the empyrean's next turn." + ] + }, + { + "name": "Trembling Strike (Costs 2 Actions)", + "entries": [ + "The empyrean strikes the ground with its maul, triggering an earth tremor. All other creatures on the ground within 60 feet of the empyrean must succeed on a {@dc 25} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/empyrean.mp3" + }, + "attachedItems": [ + "maul|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B", + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Erinyes", + "source": "MM", + "page": 73, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Erinyes|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 18, + "dex": 16, + "con": 18, + "int": 14, + "wis": 14, + "cha": 18, + "save": { + "dex": "+7", + "con": "+8", + "wis": "+6", + "cha": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 12, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "12", + "trait": [ + { + "name": "Hellish Weapons", + "entries": [ + "The erinyes's weapon attacks are magical and deal an extra 13 ({@damage 3d8}) poison damage on a hit (included in the attacks)." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The erinyes has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The erinyes makes three attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands, plus 13 ({@damage 3d8}) poison damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 13 ({@damage 3d8}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned}. The poison lasts until it is removed by the {@spell lesser restoration} spell or similar magic." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The erinyes adds 4 to its AC against one melee attack that would hit it. To do so, the erinyes must see the attacker and be wielding a melee weapon." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Rope of Entanglement", + "entries": [ + "Some erinyes carry a {@item rope of entanglement} (detailed in the Dungeon Master's Guide). When such an erinyes uses its Multiattack, the erinyes can use the rope in place of two of the attacks." + ] + }, + { + "type": "variant", + "name": "Summon Devil (1/Day)", + "entries": [ + "The devil chooses what to summon and attempts a magical summoning.", + "An erinyes has a {@chance 50} chance of summoning {@dice 3d6} {@creature spined devil||spined devils}, {@dice 1d6} {@creature bearded devil||bearded devils}, or one {@creature erinyes}.", + "A summoned devil appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other devils. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Erinyes (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/erinyes.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Erinyes (Rope of Entanglement)", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The erinyes carries a {@item rope of entanglement}." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The erinyes makes three attacks. It can use its {@item rope of entanglement} in place of two of the attacks." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Ettercap", + "source": "MM", + "page": 131, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Ettercap|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 14, + "dex": 15, + "con": 13, + "int": 7, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+4", + "survival": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "2", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The ettercap can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the ettercap knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The ettercap ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ettercap makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 4 ({@damage 1d8}) poison damage. The target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ] + }, + { + "name": "Web {@recharge 5}", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/60 ft., one Large or smaller creature. {@h}The creature is {@condition restrained} by webbing. As an action, the {@condition restrained} creature can make a {@dc 11} Strength check, escaping from the webbing on a success. The effect ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, is vulnerable to fire damage and immune to bludgeoning, poison and psychic damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Web Garrote", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Medium or Small creature against which the ettercap has advantage on the attack roll. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target can't breathe, and the ettercap has advantage on attack rolls against it." + ], + "_version": { + "name": "Ettercap (Web Garrote)", + "addAs": "action" + } + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ettercap.mp3" + }, + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "I", + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "grappled", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ettin", + "source": "MM", + "page": 132, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Ettin|XMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 8, + "con": 17, + "int": 6, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Giant", + "Orc" + ], + "cr": "4", + "trait": [ + { + "name": "Two Heads", + "entries": [ + "The ettin has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ] + }, + { + "name": "Wakeful", + "entries": [ + "When one of the ettin's heads is asleep, its other head is awake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ettin makes two attacks: one with its battleaxe and one with its morningstar." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ettin.mp3" + }, + "attachedItems": [ + "battleaxe|phb", + "morningstar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Faerie Dragon (Blue)", + "source": "MM", + "page": 133, + "reprintedAs": [ + "Faerie Dragon Adult|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Draconic", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell major image}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "The Colors of Age", + "entries": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ] + }, + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ], + "legendaryGroup": { + "name": "Faerie Dragon", + "source": "FTD" + }, + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/faerie-dragon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Faerie Dragon (Green)", + "source": "MM", + "page": 133, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Faerie Dragon Adult|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Draconic", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "The Colors of Age", + "entries": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ] + }, + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ], + "legendaryGroup": { + "name": "Faerie Dragon", + "source": "FTD" + }, + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/faerie-dragon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Faerie Dragon (Indigo)", + "source": "MM", + "page": 133, + "reprintedAs": [ + "Faerie Dragon Adult|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Draconic", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell hallucinatory terrain}", + "{@spell mage hand}", + "{@spell major image}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "The Colors of Age", + "entries": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ] + }, + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ], + "legendaryGroup": { + "name": "Faerie Dragon", + "source": "FTD" + }, + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/faerie-dragon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Faerie Dragon (Orange)", + "source": "MM", + "page": 133, + "reprintedAs": [ + "Faerie Dragon Youth|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Draconic", + "Sylvan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "The Colors of Age", + "entries": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ] + }, + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/faerie-dragon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Faerie Dragon (Red)", + "source": "MM", + "page": 133, + "otherSources": [ + { + "source": "CM" + }, + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Faerie Dragon Youth|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Draconic", + "Sylvan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "The Colors of Age", + "entries": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ] + }, + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/faerie-dragon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Faerie Dragon (Violet)", + "source": "MM", + "page": 133, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Faerie Dragon Adult|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Draconic", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell hallucinatory terrain}", + "{@spell mage hand}", + "{@spell major image}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell polymorph}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "The Colors of Age", + "entries": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ] + }, + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ], + "legendaryGroup": { + "name": "Faerie Dragon", + "source": "FTD" + }, + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/faerie-dragon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Faerie Dragon (Yellow)", + "source": "MM", + "page": 133, + "reprintedAs": [ + "Faerie Dragon Youth|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Draconic", + "Sylvan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell mirror image}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "The Colors of Age", + "entries": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ] + }, + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/faerie-dragon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Elemental", + "source": "MM", + "page": 125, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Fire Elemental|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 102, + "formula": "12d10 + 36" + }, + "speed": { + "walk": 50 + }, + "str": 10, + "dex": 17, + "con": 16, + "int": 6, + "wis": 10, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Ignan" + ], + "cr": "5", + "trait": [ + { + "name": "Fire Form", + "entries": [ + "The elemental can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the elemental or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage. In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ] + }, + { + "name": "Illumination", + "entries": [ + "The elemental sheds bright light in a 30-foot radius and dim light in an additional 30 feet." + ] + }, + { + "name": "Water Susceptibility", + "entries": [ + "For every 5 feet the elemental moves in water, or for every gallon of water splashed on it, it takes 1 cold damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elemental makes two touch attacks." + ] + }, + { + "name": "Touch", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fire-elemental.mp3" + }, + "traitTags": [ + "Illumination" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "C", + "F" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Giant", + "source": "MM", + "page": 154, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "GotSF" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Fire Giant|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 162, + "formula": "13d12 + 78" + }, + "speed": { + "walk": 30 + }, + "str": 25, + "dex": 9, + "con": 23, + "int": 10, + "wis": 14, + "cha": 13, + "save": { + "dex": "+3", + "con": "+10", + "cha": "+5" + }, + "skill": { + "athletics": "+11", + "perception": "+6" + }, + "passive": 16, + "immune": [ + "fire" + ], + "languages": [ + "Giant" + ], + "cr": "9", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) slashing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "New Giant Options", + "entries": [ + "Some adult fire giants are trained to lay siege to strongholds and break through enemy lines. These abilities are represented by the following traits.", + { + "type": "entries", + "name": "Siege Monster", + "entries": [ + "The giant deals double damage to objects and structures." + ] + }, + { + "type": "entries", + "name": "Tackle", + "entries": [ + "When the giant enters any enemy's space for the first time on a turn, the enemy must succeed on a {@dc 19} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "_version": { + "name": "Fire Giant (Optional Actions)", + "addHeadersAs": "action" + }, + "source": "SKT", + "page": 245 + } + ], + "environment": [ + "underdark", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fire-giant.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Snake", + "source": "MM", + "page": 265, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Salamander Fire Snake|XMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 11, + "int": 7, + "wis": 10, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire" + ], + "vulnerable": [ + "cold" + ], + "languages": [ + "understands Ignan but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Heated Body", + "entries": [ + "A creature that touches the snake or hits it with a melee attack while within 5 feet of it takes 3 ({@damage 1d6}) fire damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The snake makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage plus 3 ({@damage 1d6}) fire damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fire-snake.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "IG" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flameskull", + "source": "MM", + "page": 134, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Flameskull|XMM" + ], + "size": [ + "T" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 40, + "formula": "9d4 + 18" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 17, + "con": 14, + "int": 16, + "wis": 10, + "cha": 11, + "skill": { + "arcana": "+5", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "lightning", + "necrotic", + "piercing" + ], + "immune": [ + "cold", + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "poisoned", + "prone" + ], + "languages": [ + "Common" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The flameskull is a 5th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It requires no somatic or material components to cast its spells. The flameskull has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell blur}", + "{@spell flaming sphere}" + ] + }, + "3": { + "slots": 1, + "spells": [ + "{@spell fireball}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Illumination", + "entries": [ + "The flameskull sheds either dim light in a 15-foot radius, or bright light in a 15-foot radius and dim light for an additional 15 feet. It can switch between the options as an action." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The flameskull has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If the flameskull is destroyed, it regains all its hit points in 1 hour unless holy water is sprinkled on its remains or a {@spell dispel magic} or {@spell remove curse} spell is cast on them." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The flameskull uses Fire Ray twice." + ] + }, + { + "name": "Fire Ray", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 30 ft., one target. {@h}10 ({@damage 3d6}) fire damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flameskull.mp3" + }, + "altArt": [ + { + "name": "Flameskull", + "source": "RMBRE" + } + ], + "traitTags": [ + "Illumination", + "Magic Resistance", + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "F" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flesh Golem", + "source": "MM", + "page": 169, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Flesh Golem|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 9 + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 9, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Berserk", + "entries": [ + "Whenever the golem starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points.", + "The golem's creator, if within 60 feet of the berserk golem, can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 40 hit points or fewer, the golem might go berserk again." + ] + }, + { + "name": "Aversion of Fire", + "entries": [ + "If the golem takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flesh-golem.mp3" + }, + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flumph", + "source": "MM", + "page": 135, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Flumph|XMM" + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "L", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 5, + "fly": 30 + }, + "str": 6, + "dex": 15, + "con": 10, + "int": 14, + "wis": 14, + "cha": 11, + "skill": { + "arcana": "+4", + "history": "+4", + "religion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "vulnerable": [ + "psychic" + ], + "languages": [ + "understands Undercommon but can't speak", + "telepathy 60 ft." + ], + "cr": "1/8", + "trait": [ + { + "name": "Advanced Telepathy", + "entries": [ + "The flumph can perceive the content of any telepathic communication used within 60 feet of it, and it can't be {@status surprised} by creatures with any form of telepathy." + ] + }, + { + "name": "Prone Deficiency", + "entries": [ + "If the flumph is knocked {@condition prone}, roll a die. On an odd result, the flumph lands upside-down and is {@condition incapacitated}. At the end of each of its turns, the flumph can make a {@dc 10} Dexterity saving throw, righting itself and ending the {@condition incapacitated} condition if it succeeds." + ] + }, + { + "name": "Telepathic Shroud", + "entries": [ + "The flumph is immune to any effect that would sense its emotions or read its thoughts, as well as all divination spells." + ] + } + ], + "action": [ + { + "name": "Tendrils", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 2 ({@damage 1d4}) acid damage. At the end of each of its turns, the target must make a {@dc 10} Constitution saving throw, taking 2 ({@damage 1d4}) acid damage on a failure or ending the recurring acid damage on a success. A {@spell lesser restoration} spell cast on the target also ends the recurring acid damage." + ] + }, + { + "name": "Stench Spray (1/Day)", + "entries": [ + "Each creature in a 15-foot cone originating from the flumph must succeed on a {@dc 10} Dexterity saving throw or be coated in a foul-smelling liquid. A coated creature exudes a horrible stench for {@dice 1d4} hours. The coated creature is {@condition poisoned} as long as the stench lasts, and other creatures are {@condition poisoned} while with in 5 feet of the coated creature. A creature can remove the stench on itself by using a short rest to bathe in water, alcohol, or vinegar." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flumph.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "TP", + "U" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flying Snake", + "source": "MM", + "page": 322, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Flying Snake|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 5, + "formula": "2d4" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 4, + "dex": 18, + "con": 11, + "int": 2, + "wis": 12, + "cha": 5, + "senses": [ + "blindsight 10 ft." + ], + "passive": 11, + "cr": "1/8", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The snake doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}1 piercing damage plus 7 ({@damage 3d4}) poison damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flying-snake.mp3" + }, + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flying Sword", + "group": [ + "Animated Objects" + ], + "source": "MM", + "page": 20, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Animated Flying Sword|XMM" + ], + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 12, + "dex": 15, + "con": 11, + "int": 1, + "wis": 5, + "cha": 1, + "save": { + "dex": "+4" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 7, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1/4", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The sword is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the sword must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the sword remains motionless and isn't flying, it is indistinguishable from a normal sword." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flying-sword.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fomorian", + "source": "MM", + "page": 136, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Fomorian|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 149, + "formula": "13d12 + 65" + }, + "speed": { + "walk": 30 + }, + "str": 23, + "dex": 10, + "con": 20, + "int": 9, + "wis": 14, + "cha": 6, + "skill": { + "perception": "+8", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "languages": [ + "Giant", + "Undercommon" + ], + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fomorian attacks twice with its greatclub or makes one greatclub attack and uses Evil Eye once." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Evil Eye", + "entries": [ + "The fomorian magically forces a creature it can see within 60 feet of it to make a {@dc 14} Charisma saving throw. The creature takes 27 ({@damage 6d8}) psychic damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Curse of the Evil Eye (Recharges after a Short or Long Rest)", + "entries": [ + "With a stare, the fomorian uses Evil Eye, but on a failed save, the creature is also cursed with magical deformities. While deformed, the creature has its speed halved and has disadvantage on ability checks, saving throws, and attacks based on Strength or Dexterity.", + "The transformed creature can repeat the saving throw whenever it finishes a long rest, ending the effect on a success." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fomorian.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "U" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frog", + "source": "MM", + "page": 322, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "CoS" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Frog|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 20, + "swim": 20 + }, + "str": 1, + "dex": 13, + "con": 8, + "int": 1, + "wis": 8, + "cha": 3, + "skill": { + "perception": "+1", + "stealth": "+3" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 11, + "cr": { + "cr": "0", + "xp": 0 + }, + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The frog can breathe air and water." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The frog's long jump is up to 10 feet and its high jump is up to 5 feet, with or without a running start." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/frog.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Giant", + "source": "MM", + "page": 155, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Frost Giant|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "patchwork armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 9, + "con": 21, + "int": 9, + "wis": 10, + "cha": 12, + "save": { + "con": "+8", + "wis": "+3", + "cha": "+4" + }, + "skill": { + "athletics": "+9", + "perception": "+3" + }, + "passive": 13, + "immune": [ + "cold" + ], + "languages": [ + "Giant" + ], + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two greataxe attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "New Giant Options", + "entries": [ + "Some adult frost giants are skilled hunters who construct and hurl nets weighted down with fragments of metal or bone. This ability is represented by the following action option.", + { + "name": "Weighted Net", + "type": "entries", + "entries": [ + "{@atk rw} {@hit 5} to hit, ranged 20/60 ft., one Small, Medium, or Large creature. {@h}The target is {@condition restrained} until it escapes the net. Any creature can use its action to make a {@dc 17} Strength check to free itself or another creature in the net, ending the effect on a success. Dealing 15 slashing damage to the net (AC 12) destroys the net and frees the target." + ] + } + ], + "_version": { + "name": "Frost Giant (Optional Actions)", + "addHeadersAs": "action" + }, + "source": "SKT", + "page": 246 + } + ], + "environment": [ + "mountain", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/frost-giant.mp3" + }, + "attachedItems": [ + "greataxe|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Galeb Duhr", + "source": "MM", + "page": 139, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Galeb Duhr|XMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "9d8 + 45" + }, + "speed": { + "walk": { + "number": 15, + "condition": "(30 ft. when rolling, 60 ft. rolling downhill)" + } + }, + "str": 20, + "dex": 14, + "con": 20, + "int": 11, + "wis": 12, + "cha": 11, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Terran" + ], + "cr": "6", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the galeb duhr remains motionless, it is indistinguishable from a normal boulder." + ] + }, + { + "name": "Rolling Charge", + "entries": [ + "If the galeb duhr rolls at least 20 feet straight toward a target and then hits it with a slam attack on the same turn, the target takes an extra 7 ({@damage 2d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage." + ] + }, + { + "name": "Animate Boulders (1/Day)", + "entries": [ + "The galeb duhr magically animates up to two boulders it can see within 60 feet of it. A boulder has statistics like those of a galeb duhr, except it has Intelligence 1 and Charisma 1, it can't be {@condition charmed} or {@condition frightened}, and it lacks this action option. A boulder remains animated as long as the galeb duhr maintains {@status concentration}, up to 1 minute (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "environment": [ + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/galeb-duhr.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D", + "T" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gargoyle", + "source": "MM", + "page": 140, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Gargoyle|XMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 15, + "dex": 11, + "con": 16, + "int": 6, + "wis": 11, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "petrified", + "poisoned" + ], + "languages": [ + "Terran" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gargoyle makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gargoyle.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gas Spore", + "source": "MM", + "page": 138, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Gas Spore Fungus|XMM" + ], + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 5 + ], + "hp": { + "average": 1, + "formula": "1d10 - 4" + }, + "speed": { + "walk": 0, + "fly": { + "number": 10, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 5, + "dex": 1, + "con": 3, + "int": 1, + "wis": 1, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 5, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "deafened", + "frightened", + "paralyzed", + "poisoned", + "prone" + ], + "cr": "1/2", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "The gas spore explodes when it drops to 0 hit points. Each creature within 20 feet of it must succeed on a {@dc 15} Constitution saving throw or take 10 ({@damage 3d6}) poison damage and become infected with a disease on a failed save. Creatures immune to the {@condition poisoned} condition are immune to this disease.", + "Spores invade an infected creature's system, killing the creature in a number of hours equal to {@dice 1d12} + the creature's Constitution score, unless the disease is removed. In half that time, the creature becomes {@condition poisoned} for the rest of the duration. After the creature dies, it sprouts {@dice 2d4} Tiny gas spores that grow to full size in 7 days." + ] + }, + { + "name": "Eerie Resemblance", + "entries": [ + "The gas spore resembles a beholder. A creature that can see the gas spore can discern its true nature with a successful {@dc 15} Intelligence ({@skill Nature}) check." + ] + } + ], + "action": [ + { + "name": "Touch", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one creature. {@h}1 poison damage, and the creature must succeed on a {@dc 10} Constitution saving throw or become infected with the disease described in the Death Burst trait." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gas-spore.mp3" + }, + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "I" + ], + "miscTags": [ + "DIS", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gelatinous Cube", + "source": "MM", + "page": 242, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Gelatinous Cube|XMM" + ], + "size": [ + "L" + ], + "type": "ooze", + "alignment": [ + "U" + ], + "ac": [ + 6 + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 15 + }, + "str": 14, + "dex": 3, + "con": 20, + "int": 1, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 8, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "prone" + ], + "cr": "2", + "trait": [ + { + "name": "Ooze Cube", + "entries": [ + "The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw.", + "Creatures inside the cube can be seen but have {@quickref Cover||3||total cover}.", + "A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful {@dc 12} Strength check, and the creature making the attempt takes 10 ({@damage 3d6}) acid damage.", + "The cube can hold only one Large creature or up to four Medium or smaller creatures inside it at a time." + ] + }, + { + "name": "Transparent", + "entries": [ + "Even when the cube is in plain sight, it takes a successful {@dc 15} Wisdom ({@skill Perception}) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is {@status surprised} by the cube." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) acid damage." + ] + }, + { + "name": "Engulf", + "entries": [ + "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a {@dc 12} Dexterity saving throw.", + "On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.", + "On a failed save, the cube enters the creature's space, and the creature takes 10 ({@damage 3d6}) acid damage and is engulfed. The engulfed creature can't breathe, is {@condition restrained}, and takes 21 ({@damage 6d6}) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.", + "An engulfed creature can try to escape by taking an action to make a {@dc 12} Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gelatinous-cube.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "A" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ghast", + "source": "MM", + "page": 148, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Ghast|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 17, + "con": 10, + "int": 11, + "wis": 10, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "Stench", + "entries": [ + "Any creature that starts its turn within 5 feet of the ghast must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} until the start of its next turn. On a successful saving throw, the creature is immune to the ghast's Stench for 24 hours." + ] + }, + { + "name": "Turn Defiance", + "entries": [ + "The ghast and any ghouls within 30 feet of it have advantage on saving throws against effects that turn undead." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage. If the target is a creature other than an undead, it must succeed on a {@dc 10} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ghast.mp3" + }, + "altArt": [ + { + "name": "Ghoul", + "source": "RMBRE" + } + ], + "traitTags": [ + "Turn Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ghost", + "source": "MM", + "page": 147, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Ghost|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 7, + "dex": 13, + "con": 10, + "int": 10, + "wis": 12, + "cha": 17, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "any languages it knew in life" + ], + "cr": "4", + "trait": [ + { + "name": "Ethereal Sight", + "entries": [ + "The ghost can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Withering Touch", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ] + }, + { + "name": "Etherealness", + "entries": [ + "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ] + }, + { + "name": "Horrifying Visage", + "entries": [ + "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a {@spell greater restoration} spell, but only within 24 hours of it occurring." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid that the ghost can see within 5 feet of it must succeed on a {@dc 13} Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is {@condition incapacitated} and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ghost.mp3" + }, + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ghoul", + "source": "MM", + "page": 148, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "DIP" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Ghoul|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 15, + "con": 10, + "int": 7, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "1", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a {@dc 10} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ghoul.mp3" + }, + "altArt": [ + { + "name": "Ghoul", + "source": "DIP" + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Ape", + "source": "MM", + "page": 323, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "GHLoE" + } + ], + "reprintedAs": [ + "Giant Ape|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 157, + "formula": "15d12 + 60" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 23, + "dex": 14, + "con": 18, + "int": 7, + "wis": 12, + "cha": 7, + "skill": { + "athletics": "+9", + "perception": "+4" + }, + "passive": 14, + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ape makes two fist attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 50/100 ft., one target. {@h}30 ({@damage 7d6 + 6}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-ape.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "hasToken": true + }, + { + "name": "Giant Badger", + "source": "MM", + "page": 323, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Badger|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30, + "burrow": 10 + }, + "str": 13, + "dex": 10, + "con": 15, + "int": 2, + "wis": 12, + "cha": 5, + "senses": [ + "darkvision 30 ft." + ], + "passive": 11, + "cr": "1/4", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The badger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The badger makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-badger.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Giant Bat", + "source": "MM", + "page": 323, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "PSX" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Bat|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "4d10" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 15, + "dex": 16, + "con": 11, + "int": 2, + "wis": 12, + "cha": 6, + "senses": [ + "blindsight 60 ft." + ], + "passive": 11, + "cr": "1/4", + "trait": [ + { + "name": "Echolocation", + "entries": [ + "The bat can't use its blindsight while {@condition deafened}." + ] + }, + { + "name": "Keen Hearing", + "entries": [ + "The bat has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-bat.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Giant Boar", + "source": "MM", + "page": 323, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Giant Boar|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 10, + "con": 16, + "int": 2, + "wis": 7, + "cha": 5, + "passive": 8, + "cr": "2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the boar moves at least 20 feet straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 7 ({@damage 2d6}) slashing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Relentless (Recharges after a Short or Long Rest)", + "entries": [ + "If the boar takes 10 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Tusk", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-boar.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Giant Centipede", + "source": "MM", + "page": 323, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Centipede|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 4, + "formula": "1d6 + 1" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 5, + "dex": 14, + "con": 12, + "int": 1, + "wis": 7, + "cha": 3, + "senses": [ + "blindsight 30 ft." + ], + "passive": 8, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or take 10 ({@damage 3d6}) poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-centipede.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Giant Constrictor Snake", + "source": "MM", + "page": 324, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Constrictor Snake|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 60, + "formula": "8d12 + 8" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 19, + "dex": 14, + "con": 12, + "int": 1, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+2" + }, + "senses": [ + "blindsight 10 ft." + ], + "passive": 12, + "cr": "2", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the creature is {@condition restrained}, and the snake can't constrict another target." + ] + } + ], + "environment": [ + "underwater", + "underdark", + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-constrictor-snake.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true + }, + { + "name": "Giant Crab", + "source": "MM", + "page": 324, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Giant Crab|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 13, + "dex": 15, + "con": 11, + "int": 1, + "wis": 9, + "cha": 3, + "skill": { + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 9, + "cr": "1/8", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The crab can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 11}). The crab has two claws, each of which can grapple only one target." + ] + } + ], + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-crab.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Giant Crocodile", + "source": "MM", + "page": 324, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Giant Crocodile|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "9d12 + 27" + }, + "speed": { + "walk": 30, + "swim": 50 + }, + "str": 21, + "dex": 9, + "con": 17, + "int": 2, + "wis": 10, + "cha": 7, + "skill": { + "stealth": "+5" + }, + "passive": 10, + "cr": "5", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The crocodile can hold its breath for 30 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The crocodile makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d10 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}, and the crocodile can't bite another target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target not {@condition grappled} by the crocodile. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "environment": [ + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-crocodile.mp3" + }, + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Giant Eagle", + "source": "MM", + "page": 324, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Eagle|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "N", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 10, + "fly": 80 + }, + "str": 16, + "dex": 17, + "con": 13, + "int": 8, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Giant Eagle", + "understands Common and Auran but can't speak them" + ], + "cr": "1", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The eagle has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eagle makes two attacks: one with its beak and one with its talons." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-eagle.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C", + "CS", + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Elk", + "source": "MM", + "page": 325, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + } + ], + "reprintedAs": [ + "Giant Elk|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d12 + 10" + }, + "speed": { + "walk": 60 + }, + "str": 19, + "dex": 16, + "con": 14, + "int": 7, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Giant Elk", + "understands Common, Elvish, Sylvan but can't speak them" + ], + "cr": "2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the elk moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one {@condition prone} creature. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-elk.mp3" + }, + "traitTags": [ + "Charge" + ], + "languageTags": [ + "C", + "CS", + "E", + "OTH", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Fire Beetle", + "source": "MM", + "page": 325, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "PSX" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Fire Beetle|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 4, + "formula": "1d6 + 1" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 10, + "con": 12, + "int": 1, + "wis": 7, + "cha": 3, + "senses": [ + "blindsight 30 ft." + ], + "passive": 8, + "cr": "0", + "trait": [ + { + "name": "Illumination", + "entries": [ + "The beetle sheds bright light in a 10-foot radius and dim light for an additional 10 ft.." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-fire-beetle.mp3" + }, + "traitTags": [ + "Illumination" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Frog", + "source": "MM", + "page": 325, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PSA" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Frog|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 12, + "dex": 13, + "con": 11, + "int": 2, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+2", + "stealth": "+3" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 12, + "cr": "1/4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The frog can breathe air and water." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The frog's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the target is {@condition restrained}, and the frog can't bite another target." + ] + }, + { + "name": "Swallow", + "entries": [ + "The frog makes one bite attack against a Small or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the frog, and it takes 5 ({@damage 2d4}) acid damage at the start of each of the frog's turns. The frog can have only one target swallowed at a time. If the frog dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-frog.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Swallow" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Giant Goat", + "source": "MM", + "page": 326, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "SLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CoS" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Goat|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 11, + "con": 12, + "int": 3, + "wis": 12, + "cha": 6, + "passive": 11, + "cr": "1/2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the goat moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 5 ({@damage 2d4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-goat.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Giant Hyena", + "source": "MM", + "page": 326, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Giant Hyena|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 50 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 2, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When the hyena reduces a creature to 0 hit points with a melee attack on its turn, the hyena can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-hyena.mp3" + }, + "traitTags": [ + "Rampage" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Giant Lizard", + "source": "MM", + "page": 326, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSA" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Lizard|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Giant Lizard Traits", + "entries": [ + "Some giant lizards have one or both of the following traits:", + { + "type": "entries", + "name": "Hold Breath", + "entries": [ + "The lizard can hold its breath for 15 minutes. (A lizard that has this trait also has a swimming speed of 30 feet.)" + ] + }, + { + "type": "entries", + "name": "Spider Climb", + "entries": [ + "The lizard can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ] + } + ], + "environment": [ + "underdark", + "forest", + "swamp", + "desert", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-lizard.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "_versions": [ + { + "name": "Giant Lizard (Hold Breath and Spider Climb)", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Hold Breath", + "entries": [ + "The lizard can hold its breath for 15 minutes." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The lizard can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ] + } + }, + "speed": { + "walk": 30, + "climb": 30, + "swim": 30 + }, + "variant": null + } + ] + }, + { + "name": "Giant Octopus", + "source": "MM", + "page": 326, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Giant Octopus|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 52, + "formula": "8d10 + 8" + }, + "speed": { + "walk": 10, + "swim": 60 + }, + "str": 17, + "dex": 13, + "con": 13, + "int": 4, + "wis": 10, + "cha": 4, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "cr": "1", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "While out of water, the octopus can hold its breath for 1 hour." + ] + }, + { + "name": "Underwater Camouflage", + "entries": [ + "The octopus has advantage on Dexterity ({@skill Stealth}) checks made while underwater." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The octopus can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage. If the target is a creature, it is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}, and the octopus can't use its tentacles on another target." + ] + }, + { + "name": "Ink Cloud (Recharges after a Short or Long Rest)", + "entries": [ + "A 20-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action." + ] + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-octopus.mp3" + }, + "traitTags": [ + "Camouflage", + "Hold Breath", + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Tentacles" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Giant Owl", + "source": "MM", + "page": 327, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Giant Owl|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 5, + "fly": 60 + }, + "str": 13, + "dex": 15, + "con": 12, + "int": 8, + "wis": 13, + "cha": 10, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Giant Owl", + "understands Common, Elvish, and Sylvan but can't speak them" + ], + "cr": "1/4", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Keen Hearing and Sight", + "entries": [ + "The owl has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + } + ], + "action": [ + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) slashing damage." + ] + } + ], + "environment": [ + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-owl.mp3" + }, + "traitTags": [ + "Flyby", + "Keen Senses" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "CS", + "E", + "OTH", + "S" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Poisonous Snake", + "source": "MM", + "page": 327, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Venomous Snake|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 10, + "dex": 18, + "con": 13, + "int": 2, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+2" + }, + "senses": [ + "blindsight 10 ft." + ], + "passive": 12, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "swamp", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-poisonous-snake.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Giant Rat", + "source": "MM", + "page": 327, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Rat|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 11, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/8", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The rat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The rat has advantage on an attack roll against a creature if at least one of the rat's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Diseased Giant Rats", + "entries": [ + "Some giant rats carry vile diseases that they spread with their bites.", + { + "type": "entries", + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 10} Constitution saving throw or contract a disease. Until the disease is cured, the target can't regain hit points except by magical means, and the target's hit point maximum decreases by 3 ({@dice 1d6}) every 24 hours. If the target's hit point maximum drops to 0 as a result of this disease, the target dies." + ] + } + ] + } + ], + "environment": [ + "underdark", + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-rat.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "DIS", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Giant Rat (Diseased)", + "source": "MM", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 10} Constitution saving throw or contract a disease. Until the disease is cured, the target can't regain hit points except by magical means, and the target's hit point maximum decreases by 3 ({@dice 1d6}) every 24 hours. If the target's hit point maximum drops to 0 as a result of this disease, the target dies." + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Giant Scorpion", + "source": "MM", + "page": 327, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSA" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Giant Scorpion|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 13, + "con": 15, + "int": 1, + "wis": 9, + "cha": 3, + "senses": [ + "blindsight 60 ft." + ], + "passive": 9, + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scorpion makes three attacks: two with its claws and one with its sting." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}). The scorpion has two claws, each of which can grapple only one target." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target must make a {@dc 12} Constitution saving throw, taking 22 ({@damage 4d10}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-scorpion.mp3" + }, + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Giant Sea Horse", + "source": "MM", + "page": 328, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Giant Seahorse|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d10" + }, + "speed": { + "walk": 0, + "swim": 40 + }, + "str": 12, + "dex": 15, + "con": 11, + "int": 2, + "wis": 12, + "cha": 5, + "passive": 11, + "cr": "1/2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the sea horse moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The sea horse can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-sea-horse.mp3" + }, + "traitTags": [ + "Charge", + "Water Breathing" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Shark", + "source": "MM", + "page": 328, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "LR" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSX" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Giant Shark|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55" + }, + "speed": { + "swim": 50 + }, + "str": 23, + "dex": 11, + "con": 21, + "int": 1, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "cr": "5", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The shark can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ] + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-shark.mp3" + }, + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Spider", + "source": "MM", + "page": 328, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSX" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Giant Spider|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 14, + "dex": 16, + "con": 12, + "int": 2, + "wis": 11, + "cha": 4, + "skill": { + "stealth": "+7" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The spider ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 9 ({@damage 2d8}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + }, + { + "name": "Web {@recharge 5}", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one creature. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 12} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ] + } + ], + "environment": [ + "underdark", + "forest", + "swamp", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-spider.mp3" + }, + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "B", + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Toad", + "source": "MM", + "page": 329, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Toad|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 39, + "formula": "6d10 + 6" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 15, + "dex": 13, + "con": 13, + "int": 2, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "cr": "1", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The toad can breathe air and water." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The toad's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 5 ({@damage 1d10}) poison damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, and the toad can't bite another target." + ] + }, + { + "name": "Swallow", + "entries": [ + "The toad makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the toad, and it takes 10 ({@damage 3d6}) acid damage at the start of each of the toad's turns. The toad can have only one target swallowed at a time.", + "If the toad dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ] + } + ], + "environment": [ + "underdark", + "forest", + "swamp", + "desert", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-toad.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Swallow" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "hasToken": true + }, + { + "name": "Giant Vulture", + "source": "MM", + "page": 329, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Giant Vulture|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "N", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 22, + "formula": "3d10 + 6" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 15, + "dex": 10, + "con": 15, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "passive": 13, + "languages": [ + "understands Common but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Keen Sight and Smell", + "entries": [ + "The vulture has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vulture makes two attacks: one with its beak and one with its talons." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-vulture.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Wasp", + "source": "MM", + "page": 329, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + } + ], + "reprintedAs": [ + "Giant Wasp|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 10, + "fly": 50 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 1, + "wis": 10, + "cha": 3, + "passive": 10, + "cr": "1/2", + "action": [ + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + } + ], + "environment": [ + "grassland", + "forest", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-wasp.mp3" + }, + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Giant Weasel", + "source": "MM", + "page": 329, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Giant Weasel|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 40 + }, + "str": 11, + "dex": 16, + "con": 10, + "int": 4, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "1/8", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The weasel has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-weasel.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Giant Wolf Spider", + "source": "MM", + "page": 330, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + } + ], + "reprintedAs": [ + "Giant Wolf Spider|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 12, + "dex": 16, + "con": 13, + "int": 3, + "wis": 12, + "cha": 4, + "skill": { + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 13, + "cr": "1/4", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The spider ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 7 ({@damage 2d6}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "desert", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-wolf-spider.mp3" + }, + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "B", + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Gibbering Mouther", + "source": "MM", + "page": 157, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Gibbering Mouther|XMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N" + ], + "ac": [ + 9 + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 10, + "swim": 10 + }, + "str": 10, + "dex": 8, + "con": 16, + "int": 3, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "conditionImmune": [ + "prone" + ], + "cr": "2", + "trait": [ + { + "name": "Aberrant Ground", + "entries": [ + "The ground in a 10-foot radius around the mouther is doughlike {@quickref difficult terrain||3}. Each creature that starts its turn in that area must succeed on a {@dc 10} Strength saving throw or have its speed reduced to 0 until the start of its next turn." + ] + }, + { + "name": "Gibbering", + "entries": [ + "The mouther babbles incoherently while it can see any creature and isn't {@condition incapacitated}. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a {@dc 10} Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a {@dice d8} to determine what it does during its turn. On a 1 to 4, the creature does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle." + ] + }, + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}17 ({@damage 5d6}) piercing damage. If the target is Medium or smaller, it must succeed on a {@dc 10} Strength saving throw or be knocked {@condition prone}. If the target is killed by this damage, it is absorbed into the mouther." + ] + }, + { + "name": "Blinding Spittle {@recharge 5}", + "entries": [ + "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a {@dc 13} Dexterity saving throw or be {@condition blinded} until the end of the mouther's next turn." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gibbering-mouther.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Knight", + "source": "MM", + "page": 160, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Githyanki Knight|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 15, + "int": 14, + "wis": 14, + "cha": 15, + "save": { + "con": "+5", + "int": "+5", + "wis": "+5" + }, + "passive": 12, + "languages": [ + "Gith" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)", + "{@spell tongues}" + ], + "1e": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes two silver greatsword attacks." + ] + }, + { + "name": "Silver Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 10 ({@damage 3d6}) psychic damage. This is a magic weapon attack. On a critical hit against a target in an astral body (as with the {@spell astral projection} spell), the githyanki can cut the silvery cord that tethers the target to its material body, instead of dealing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-knight.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "S", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Warrior", + "source": "MM", + "page": 160, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Githyanki Warrior|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 12, + "int": 13, + "wis": 13, + "cha": 10, + "save": { + "con": "+3", + "int": "+3", + "wis": "+3" + }, + "passive": 11, + "languages": [ + "Gith" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki's innate spellcasting ability is Intelligence. It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ] + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes two greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage plus 7 ({@damage 2d6}) psychic damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-warrior.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "S", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Monk", + "source": "MM", + "page": 161, + "otherSources": [ + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Githzerai Monk|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 14 + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 12, + "int": 13, + "wis": 14, + "cha": 10, + "save": { + "str": "+3", + "dex": "+4", + "int": "+3", + "wis": "+4" + }, + "skill": { + "insight": "+4", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Gith" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes two unarmed strikes." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) psychic damage. This is a magic weapon attack." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githzerai-monk.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Zerth", + "source": "MM", + "page": 161, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Githzerai Zerth|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 17 + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 18, + "con": 15, + "int": 16, + "wis": 17, + "cha": 12, + "save": { + "str": "+4", + "dex": "+7", + "int": "+6", + "wis": "+6" + }, + "skill": { + "arcana": "+6", + "insight": "+6", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Gith" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}" + ], + "1e": [ + "{@spell phantasmal killer}", + "{@spell plane shift}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes two unarmed strikes." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) psychic damage. This is a magic weapon attack." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githzerai-zerth.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Glabrezu", + "source": "MM", + "page": 58, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Glabrezu|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 15, + "con": 21, + "int": 19, + "wis": 17, + "cha": 16, + "save": { + "str": "+9", + "con": "+9", + "wis": "+7", + "cha": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The glabrezu's spellcasting ability is Intelligence (spell save {@dc 16}). The glabrezu can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell fly}", + "{@spell power word stun}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The glabrezu has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell." + ] + }, + { + "name": "Pincer", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). The glabrezu has two pincers, each of which can grapple only one target." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A glabrezu has a {@chance 30|30 percent|30% summoning chance} chance of summoning {@dice 1d3} {@creature vrock||vrocks}, {@dice 1d2} {@creature hezrou||hezrous}, or one glabrezu.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Glabrezu (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/glabrezu.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "conditionInflictSpell": [ + "stunned" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gladiator", + "source": "MM", + "page": 346, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Gladiator|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 10, + "wis": 12, + "cha": 15, + "save": { + "str": "+7", + "dex": "+5", + "con": "+6" + }, + "skill": { + "athletics": "+10", + "intimidation": "+5" + }, + "passive": 11, + "languages": [ + "any one language (usually Common)" + ], + "cr": "5", + "trait": [ + { + "name": "Brave", + "entries": [ + "The gladiator has advantage on saving throws against being {@condition frightened}." + ] + }, + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when the gladiator hits with it (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gladiator makes three melee attacks or two ranged attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. and range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Shield Bash", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The gladiator adds 3 to its AC against one melee attack that would hit it. To do so, the gladiator must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gladiator.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Brute" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Gnoll", + "source": "MM", + "page": 163, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Gnoll Warrior|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnoll" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item hide armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 11, + "int": 6, + "wis": 10, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Gnoll" + ], + "cr": "1/2", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll.mp3" + }, + "attachedItems": [ + "longbow|phb", + "spear|phb" + ], + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnoll Fang of Yeenoghu", + "source": "MM", + "page": 163, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Gnoll Fang of Yeenoghu|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "gnoll" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 15, + "con": 15, + "int": 10, + "wis": 11, + "cha": 13, + "save": { + "con": "+4", + "wis": "+2", + "cha": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Abyssal", + "Gnoll" + ], + "cr": "4", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gnoll makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-fang-of-yeenoghu.mp3" + }, + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnoll Pack Lord", + "source": "MM", + "page": 163, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Gnoll Pack Lord|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnoll" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 8, + "wis": 11, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Gnoll" + ], + "cr": "2", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gnoll makes two attacks, either with its glaive or its longbow, and uses its Incite Rampage if it can." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Incite Rampage {@recharge 5}", + "entries": [ + "One creature the gnoll can see within 30 feet of it can use its reaction to make a melee attack if it can hear the gnoll and has the Rampage trait." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-pack-lord.mp3" + }, + "attachedItems": [ + "glaive|phb", + "longbow|phb" + ], + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goat", + "source": "MM", + "page": 330, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Goat|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 10, + "con": 11, + "int": 2, + "wis": 10, + "cha": 5, + "passive": 10, + "cr": "0", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the goat moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 2 ({@damage 1d4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 10} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/goat.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Goblin", + "source": "MM", + "page": 166, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + } + ], + "reprintedAs": [ + "Goblin Warrior|XMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 10, + "wis": 8, + "cha": 8, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1/4", + "trait": [ + { + "name": "Nimble Escape", + "entries": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/goblin.mp3" + }, + "altArt": [ + { + "name": "Goblin", + "source": "RMBRE" + } + ], + "attachedItems": [ + "scimitar|phb", + "shortbow|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goblin Boss", + "source": "MM", + "page": 166, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Goblin Boss|XMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 21, + "formula": "6d6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 10, + "wis": 8, + "cha": 10, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1", + "trait": [ + { + "name": "Nimble Escape", + "entries": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The goblin makes two attacks with its scimitar. The second attack has disadvantage." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Redirect Attack", + "entries": [ + "When a creature the goblin can see targets it with an attack, the goblin chooses another goblin within 5 feet of it. The two goblins swap places, and the chosen goblin becomes the target instead." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/goblin-boss.mp3" + }, + "attachedItems": [ + "javelin|phb", + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gold Dragon Wyrmling", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 115, + "srd": true, + "otherSources": [ + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Gold Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 19, + "dex": 14, + "con": 17, + "int": 14, + "wis": 11, + "cha": 16, + "save": { + "dex": "+4", + "con": "+5", + "wis": "+2", + "cha": "+5" + }, + "skill": { + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "fire" + ], + "languages": [ + "Draconic" + ], + "cr": "3", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Weakening Breath", + "entry": "The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 13} 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." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/gold-dragon-wyrmlin.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gorgon", + "source": "MM", + "page": 171, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "WBtW" + }, + { + "source": "LoX" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Gorgon|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 11, + "con": 18, + "int": 2, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "petrified" + ], + "cr": "5", + "trait": [ + { + "name": "Trampling Charge", + "entries": [ + "If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the gorgon can make one attack with its hooves against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) piercing damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage." + ] + }, + { + "name": "Petrifying Breath {@recharge 5}", + "entries": [ + "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw. On a failed save, a target begins to turn to stone and is {@condition restrained}. The {@condition restrained} target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gorgon.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "petrified", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goristro", + "source": "MM", + "page": 59, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Goristro|XMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 310, + "formula": "23d12 + 161" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 11, + "con": 25, + "int": 6, + "wis": 13, + "cha": 14, + "save": { + "str": "+13", + "dex": "+6", + "con": "+13", + "wis": "+7" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal" + ], + "cr": "17", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the goristro moves at least 15 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 38 ({@damage 7d10}) piercing damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pushed up to 20 feet away and knocked {@condition prone}." + ] + }, + { + "name": "Labyrinthine Recall", + "entries": [ + "The goristro can perfectly recall any path it has traveled." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The goristro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The goristro deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The goristro makes three attacks: two with its fists and one with its hoof." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Hoof", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}45 ({@damage 7d10 + 7}) piercing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/goristro.mp3" + }, + "traitTags": [ + "Charge", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gray Ooze", + "source": "MM", + "page": 243, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Gray Ooze|XMM", + "Psychic Gray Ooze|XMM" + ], + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 22, + "formula": "3d8 + 9" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 12, + "dex": 6, + "con": 16, + "int": 1, + "wis": 6, + "cha": 2, + "skill": { + "stealth": "+2" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 8, + "resist": [ + "acid", + "cold", + "fire" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "prone" + ], + "cr": "1/2", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The ooze can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Corrode Metal", + "entries": [ + "Any nonmagical weapon made of metal that hits the ooze corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition made of metal that hits the ooze is destroyed after dealing damage.", + "The ooze can eat through 2-inch-thick, nonmagical metal in 1 round." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the ooze remains motionless, it is indistinguishable from an oily pool or wet rock." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Psychic Gray Ooze", + "entries": [ + "A gray ooze that lives a long time can evolve to become more intelligent and develop limited psionic ability. Such occurrences are more common in gray oozes that live near psioncic creatures such as {@creature mind flayer||mind flayers}, suggesting that the ooze can sense and mimic psionic ability.", + "A psionic gray ooze has an intelligence score of 6 (-2), as well as the following additional action.", + { + "type": "entries", + "name": "Psychic Crush {@recharge 5}", + "entries": [ + "The ooze targets one creature that it can sense within 60 feet of it. The target must make a {@dc 10} Intelligence saving throw, taking 10 ({@damage 3d6}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gray-ooze.mp3" + }, + "traitTags": [ + "Amorphous", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "A", + "B", + "Y" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Gray Ooze (Psychic)", + "source": "MM", + "_mod": { + "action": { + "mode": "appendArr", + "items": { + "name": "Psychic Crush {@recharge 5}", + "entries": [ + "The ooze targets one creature that it can sense within 60 feet of it. The target must make a {@dc 10} Intelligence saving throw, taking 10 ({@damage 3d6}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + } + }, + "int": 6, + "variant": null + } + ] + }, + { + "name": "Gray Slaad", + "source": "MM", + "page": 277, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Gray Slaad|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 17, + "con": 16, + "int": 13, + "wis": 8, + "cha": 14, + "skill": { + "arcana": "+5", + "perception": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The slaad's innate spellcasting ability is Charisma (spell save {@dc 14}). The slaad can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell invisibility} (self only)", + "{@spell mage hand}", + "{@spell major image}" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ], + "2e": [ + "{@spell fear}", + "{@spell fly}", + "{@spell fireball}", + "{@spell tongues}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The slaad can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The slaad's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The slaad makes three attacks: one with its bite and two with its claws or greatsword." + ] + }, + { + "name": "Bite (Slaad Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Claws (Slaad Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Control Gem", + "entries": [ + "Implanted in the slaad's brain is a magic control gem. The slaad must obey whoever possesses the gem and is immune to being {@condition charmed} while so controlled.", + "Certain spells can be used to acquire the gem. If the slaad fails its saving throw against {@spell imprisonment}, the spell can transfer the gem to the spellcaster's open hand, instead of imprisoning the slaad. A {@spell wish} spell, if cast in the slaad's presence, can be worded to acquire the gem.", + "A {@spell greater restoration} spell cast on the slaad destroys the gem without harming the slaad.", + "Someone who is proficient in Wisdom ({@skill Medicine}) can remove the gem from an {@condition incapacitated} slaad. Each try requires 1 minute of uninterrupted work and a successful {@dc 20} Wisdom ({@skill Medicine}) check. Each failed attempt deals 22 ({@damage 4d10}) psychic damage to the slaad." + ], + "_version": { + "name": "Gray Slaad (Control Gem)", + "addAs": "trait" + } + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gray-slaad.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons", + "Regeneration", + "Shapechanger" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "frightened", + "invisible" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Green Dragon Wyrmling", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 95, + "srd": true, + "otherSources": [ + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Green Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 14, + "wis": 11, + "cha": 13, + "save": { + "dex": "+3", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "skill": { + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "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. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + }, + { + "name": "Poison Breath {@recharge 5}", + "entries": [ + "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a {@dc 11} Constitution saving throw, taking 21 ({@damage 6d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/green-dragon-wyrmling.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Green Hag", + "source": "MM", + "page": 177, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Green Hag|XMM" + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 16, + "int": 13, + "wis": 14, + "cha": 14, + "skill": { + "arcana": "+3", + "deception": "+4", + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Draconic", + "Sylvan" + ], + "cr": { + "cr": "3", + "coven": "5" + }, + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 12}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell minor illusion}", + "{@spell vicious mockery}" + ], + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The hag can breathe air and water." + ] + }, + { + "name": "Mimicry", + "entries": [ + "The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Illusory Appearance", + "entries": [ + "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.", + "The changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a {@dc 20} Intelligence ({@skill Investigation}) check to discern that the hag is disguised." + ] + }, + { + "name": "Invisible Passage", + "entries": [ + "The hag magically turns {@condition invisible} until she attacks or casts a spell, or until her {@status concentration} ends (as if {@status concentration||concentrating} on a spell). While {@condition invisible}, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is {@condition invisible} with her." + ] + } + ], + "legendaryGroup": { + "name": "Green Hag", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Hag Covens", + "entries": [ + "When hags must work together, they form covens, in spite of their selfish natures. A coven is made up of hags of any type, all of whom are equals within the group. However, each of the hags continues to desire more personal power.", + "A coven consists of three hags so that any arguments between two hags can be settled by the third. If more than three hags ever come together, as might happen if two covens come into conflict, the result is usually chaos.", + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save DC is 12 + the hag's Intelligence modifier, and the spell attack bonus is 4 + the hag's Intelligence modifier." + ] + }, + { + "type": "entries", + "name": "Hag Eye", + "entries": [ + "A hag coven can craft a magic item called a hag eye, which is made from a real eye coated in varnish and often fitted to a pendant or other wearable item. The hag eye is usually entrusted to a minion for safekeeping and transport. A hag in the coven can take an action to see what the hag eye sees if the hag eye is on the same plane of existence. A hag eye has AC 10, 1 hit point, and darkvision with a radius of 60 feet. If it is destroyed, each coven member takes {@damage 3d10} psychic damage and is {@condition blinded} for 24 hours.", + "A hag coven can have only one hag eye at a time, and creating a new one requires all three members of the coven to perform a ritual. The ritual takes 1 hour, and the hags can't perform it while {@condition blinded}. During the ritual, if the hags take any action other than performing the ritual, they must start over." + ] + } + ] + } + ], + "environment": [ + "forest", + "swamp", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/green-hag.mp3" + }, + "traitTags": [ + "Amphibious", + "Mimicry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "S" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "CW", + "I", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Green Hag (Coven)", + "source": "MM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "5", + "variant": null + } + ] + }, + { + "name": "Green Slaad", + "source": "MM", + "page": 277, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Green Slaad|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "aberration", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 11, + "wis": 8, + "cha": 12, + "skill": { + "arcana": "+3", + "perception": "+2" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The slaad's innate spellcasting ability is Charisma (spell save {@dc 12}). The slaad can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell mage hand}" + ], + "daily": { + "1": [ + "{@spell fireball}" + ], + "2e": [ + "{@spell fear}", + "{@spell invisibility} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The slaad can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The slaad makes three attacks: one with its bite and two with its claws or staff. Alternatively, it uses its Hurl Flame twice." + ] + }, + { + "name": "Bite (Slaad Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Claw (Slaad Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Hurl Flame", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) fire damage. The fire ignites flammable objects that aren't being worn or carried." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Control Gem", + "entries": [ + "Implanted in the slaad's brain is a magic control gem. The slaad must obey whoever possesses the gem and is immune to being {@condition charmed} while so controlled.", + "Certain spells can be used to acquire the gem. If the slaad fails its saving throw against {@spell imprisonment}, the spell can transfer the gem to the spellcaster's open hand, instead of imprisoning the slaad. A {@spell wish} spell, if cast in the slaad's presence, can be worded to acquire the gem.", + "A {@spell greater restoration} spell cast on the slaad destroys the gem without harming the slaad.", + "Someone who is proficient in Wisdom ({@skill Medicine}) can remove the gem from an {@condition incapacitated} slaad. Each try requires 1 minute of uninterrupted work and a successful {@dc 20} Wisdom ({@skill Medicine}) check. Each failed attempt deals 22 ({@damage 4d10}) psychic damage to the slaad." + ], + "_version": { + "name": "Green Slaad (Control Gem)", + "addAs": "trait" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/green-slaad.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Regeneration", + "Shapechanger" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "B", + "F", + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "frightened", + "invisible" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grell", + "source": "MM", + "page": 172, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Grell|XMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 10, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 15, + "dex": 14, + "con": 13, + "int": 12, + "wis": 11, + "cha": 9, + "skill": { + "perception": "+4", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 14, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "blinded", + "prone" + ], + "languages": [ + "Grell" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The grell makes two attacks: one with its tentacles and one with its beak." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 minute. The {@condition poisoned} target is {@condition paralyzed}, and it can repeat the saving throw at the end of each of its turns, ending the effect on a success.", + "The target is also {@condition grappled} (escape {@dc 15}). If the target is Medium or smaller, it is also {@condition restrained} until this grapple ends. While grappling the target, the grell has advantage on attack rolls against it and can 't use this attack against other targets. When the grell moves, any Medium or smaller target it is grappling moves with it." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grell.mp3" + }, + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "paralyzed", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grick", + "source": "MM", + "page": 173, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Grick|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 14, + "dex": 14, + "con": 11, + "int": 3, + "wis": 14, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "cr": "2", + "trait": [ + { + "name": "Stone Camouflage", + "entries": [ + "The grick has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grick.mp3" + }, + "altArt": [ + { + "name": "Crystal Grick", + "source": "PaBTSO" + } + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grick Alpha", + "source": "MM", + "page": 173, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Grick Ancient|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 16, + "con": 15, + "int": 4, + "wis": 14, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "cr": "7", + "trait": [ + { + "name": "Stone Camouflage", + "entries": [ + "The grick has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The grick makes two attacks: one with its tail and one with its tentacles. If it hits with its tentacles, the grick can make one beak attack against the same target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) slashing damage." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grick-alpha.mp3" + }, + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Griffon", + "source": "MM", + "page": 174, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Griffon|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 30, + "fly": 80 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 2, + "wis": 13, + "cha": 8, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "cr": "2", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The griffon has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The griffon makes two attacks: one with its beak and one with its claws." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill", + "coastal", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/griffon.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grimlock", + "source": "MM", + "page": 175, + "srd": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "PaBTSO" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Grimlock|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "grimlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 12, + "int": 9, + "wis": 8, + "cha": 6, + "skill": { + "athletics": "+5", + "perception": "+3", + "stealth": "+3" + }, + "senses": [ + "blindsight 30 ft. or 10 ft. while deafened (blind beyond this radius)" + ], + "passive": 13, + "conditionImmune": [ + "blinded" + ], + "languages": [ + "Undercommon" + ], + "cr": "1/4", + "trait": [ + { + "name": "Blind Senses", + "entries": [ + "The grimlock can't use its blindsight while {@condition deafened} and unable to smell." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "The grimlock has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Stone Camouflage", + "entries": [ + "The grimlock has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + } + ], + "action": [ + { + "name": "Spiked Bone Club", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grimlock.mp3" + }, + "traitTags": [ + "Camouflage", + "Keen Senses" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Guard", + "source": "MM", + "page": 347, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Guard|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "perception": "+2" + }, + "passive": 12, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/8", + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "coastal", + "mountain", + "grassland", + "hill", + "urban", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Guardian Naga", + "source": "MM", + "page": 234, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "AATM" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Guardian Naga|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 18, + "con": 16, + "int": 16, + "wis": 19, + "cha": 18, + "save": { + "dex": "+8", + "con": "+7", + "int": "+7", + "wis": "+8", + "cha": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "Celestial", + "Common" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The naga is an 11th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell clairvoyance}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell flame strike}", + "{@spell geas}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Rejuvenation", + "entries": [ + "If it dies, the naga returns to life in {@dice 1d6} days and regains all its hit points. Only a {@spell wish} spell can prevent this trait from functioning." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}8 ({@damage 1d8 + 4}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Spit Poison", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 15/30 ft., one creature. {@h}The target must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guardian-naga.mp3" + }, + "traitTags": [ + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CE" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "F", + "N", + "R", + "Y" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gynosphinx", + "group": [ + "Sphinxes" + ], + "source": "MM", + "page": 282, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Sphinx of Lore|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 18, + "wis": 18, + "cha": 18, + "skill": { + "arcana": "+12", + "history": "+12", + "perception": "+8", + "religion": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 18, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Sphinx" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sphinx is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell locate object}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell remove curse}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell greater invisibility}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell legend lore}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Inscrutable", + "entries": [ + "The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom ({@skill Insight}) checks made to ascertain the sphinx's intentions or sincerity have disadvantage." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The sphinx's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sphinx makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + } + ], + "legendary": [ + { + "name": "Claw Attack", + "entries": [ + "The sphinx makes one claw attack." + ] + }, + { + "name": "Teleport (Costs 2 Actions)", + "entries": [ + "The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ] + }, + { + "name": "Cast a Spell (Costs 3 Actions)", + "entries": [ + "The sphinx casts a spell from its list of prepared spells, using a spell slot as normal." + ] + } + ], + "legendaryGroup": { + "name": "Sphinx", + "source": "MM" + }, + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gynosphinx.mp3" + }, + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "S" + ], + "damageTagsLegendary": [ + "N" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Half-Ogre (Ogrillon)", + "source": "MM", + "page": 238, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + } + ], + "reprintedAs": [ + "Ogrillon Ogre|XMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "G", + "NY", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 14, + "int": 7, + "wis": 9, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Giant" + ], + "cr": "1", + "action": [ + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "forest", + "hill", + "urban", + "desert", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/half-ogre.mp3" + }, + "attachedItems": [ + "battleaxe|phb", + "javelin|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Half-Red Dragon Veteran", + "source": "MM", + "page": 180, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "SLW" + }, + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Half-Dragon|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "athletics": "+6", + "perception": "+3" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 24 ({@damage 7d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/half-red-dragon-veteran.mp3" + }, + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb", + "shortsword|phb" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Harpy", + "source": "MM", + "page": 181, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "DoSI" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Harpy|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "str": 12, + "dex": 13, + "con": 12, + "int": 7, + "wis": 10, + "cha": 13, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The harpy makes two attacks: one with its claws and one with its club." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage." + ] + }, + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Luring Song", + "entries": [ + "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a {@dc 11} Wisdom saving throw or be {@condition charmed} until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is {@condition incapacitated}.", + "While {@condition charmed} by the harpy, a target is {@condition incapacitated} and ignores the songs of other harpies. If the {@condition charmed} target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, a target can repeat the saving throw. A creature can also repeat the saving throw at the end of each of its turns. If a creature's saving throw is successful, the effect ends on it.", + "A target that successfully saves is immune to this harpy's song for the next 24 hours." + ] + } + ], + "environment": [ + "mountain", + "forest", + "hill", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/harpy.mp3" + }, + "attachedItems": [ + "club|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hawk", + "source": "MM", + "page": 330, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Hawk|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 5, + "dex": 16, + "con": 8, + "int": 2, + "wis": 14, + "cha": 6, + "skill": { + "perception": "+4" + }, + "passive": 14, + "cr": "0", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The hawk has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/hawk.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Hell Hound", + "source": "MM", + "page": 182, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Hell Hound|XMM" + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 50 + }, + "str": 17, + "dex": 12, + "con": 14, + "int": 6, + "wis": 13, + "cha": 6, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "fire" + ], + "languages": [ + "understands Infernal but can't speak it" + ], + "cr": "3", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The hound has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The hound has advantage on an attack roll against a creature if at least one of the hound's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The hound exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hell-hound.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "CS", + "I" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Helmed Horror", + "source": "MM", + "page": 183, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Helmed Horror|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 10, + "wis": 10, + "cha": 10, + "skill": { + "perception": "+4" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "immune": [ + "force", + "necrotic", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The helmed horror has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spell Immunity", + "entries": [ + "The helmed horror is immune to three spells chosen by its creator. Typical immunities include {@spell fireball}, {@spell heat metal}, and {@spell lightning bolt}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The helmed horror makes two longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/helmed-horror.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance", + "Spell Immunity" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hezrou", + "source": "MM", + "page": 60, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Hezrou|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 17, + "con": 20, + "int": 5, + "wis": 12, + "cha": 13, + "save": { + "str": "+7", + "con": "+8", + "wis": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "8", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The hezrou has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Stench", + "entries": [ + "Any creature that starts its turn within 10 feet of the hezrou must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of its next turn. On a successful saving throw, the creature is immune to the hezrou's stench for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hezrou makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A hezrou has a {@chance 30|30 percent|30% summoning chance} chance of summoning {@dice 2d6} {@creature dretch||dretches} or one hezrou.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Hezrou (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hezrou.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hill Giant", + "source": "MM", + "page": 155, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Hill Giant|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 8, + "con": 19, + "int": 5, + "wis": 9, + "cha": 6, + "skill": { + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Giant" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two greatclub attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "New Giant Options", + "entries": [ + "Some adult hill giants like to hurl themselves bodily at smaller foes and crush them beneath their bulk. This ability is represented by the following action option.", + { + "name": "Squash", + "type": "entries", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one Medium or Smaller creature. {@h}26 ({@damage 6d6 + 5}) bludgeoning damage, the giant lands {@condition prone} in the target's space, and the target is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition prone}. The grapple ends early if the giant stands up." + ] + } + ], + "_version": { + "name": "Hill Giant (Optional Actions)", + "addHeadersAs": "action" + }, + "source": "SKT", + "page": 246 + } + ], + "environment": [ + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hill-giant.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "grappled", + "prone" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hippogriff", + "source": "MM", + "page": 184, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + } + ], + "reprintedAs": [ + "Hippogriff|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 17, + "dex": 13, + "con": 13, + "int": 2, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+5" + }, + "passive": 15, + "cr": "1", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The hippogriff has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hippogriff makes two attacks: one with its beak and one with its claws." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hippogriff.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hobgoblin", + "source": "MM", + "page": 186, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Hobgoblin Warrior|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 10, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1/2", + "trait": [ + { + "name": "Martial Advantage", + "entries": [ + "Once per turn, the hobgoblin can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hobgoblin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hobgoblin Captain", + "source": "MM", + "page": 186, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + } + ], + "reprintedAs": [ + "Hobgoblin Captain|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 14, + "int": 12, + "wis": 10, + "cha": 13, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Goblin" + ], + "cr": "3", + "trait": [ + { + "name": "Martial Advantage", + "entries": [ + "Once per turn, the hobgoblin can deal an extra 10 ({@damage 3d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hobgoblin makes two greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Leadership (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the hobgoblin can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand the hobgoblin. A creature can benefit from only one Leadership die at a time. This effect ends if the hobgoblin is {@condition incapacitated}." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hobgoblin-captain.mp3" + }, + "attachedItems": [ + "greatsword|phb", + "javelin|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hobgoblin Warlord", + "source": "MM", + "page": 187, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Hobgoblin Warlord|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 14, + "wis": 11, + "cha": 15, + "save": { + "int": "+5", + "wis": "+3", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Goblin" + ], + "cr": "6", + "trait": [ + { + "name": "Martial Advantage", + "entries": [ + "Once per turn, the hobgoblin can deal an extra 14 ({@damage 4d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hobgoblin makes three melee attacks. Alternatively, it can make two ranged attacks with its javelins." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Shield Bash", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage. If the target is Large or smaller, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Leadership (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the hobgoblin can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand the hobgoblin. A creature can benefit from only one Leadership die at a time. This effect ends if the hobgoblin is {@condition incapacitated}." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The hobgoblin adds 3 to its AC against one melee attack that would hit it. To do so, the hobgoblin must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hobgoblin-warlord.mp3" + }, + "attachedItems": [ + "javelin|phb", + "longsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Homunculus", + "source": "MM", + "page": 188, + "srd": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Homunculus|XMM" + ], + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 5, + "formula": "2d4" + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "str": 4, + "dex": 15, + "con": 11, + "int": 10, + "wis": 10, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "0", + "trait": [ + { + "name": "Telepathic Bond", + "entries": [ + "While the homunculus is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}1 piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} for 1 minute. If the saving throw fails by 5 or more, the target is instead {@condition poisoned} for 5 ({@dice 1d10}) minutes and {@condition unconscious} while {@condition poisoned} in this way." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/homunculus.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hook Horror", + "source": "MM", + "page": 189, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Hook Horror|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 10, + "con": 15, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "Hook Horror" + ], + "cr": "3", + "trait": [ + { + "name": "Echolocation", + "entries": [ + "The hook horror can't use its blindsight while {@condition deafened}." + ] + }, + { + "name": "Keen Hearing", + "entries": [ + "The hook horror has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hook horror makes two hook attacks." + ] + }, + { + "name": "Hook", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hook-horror.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Horned Devil", + "source": "MM", + "page": 74, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Horned Devil|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 20, + "fly": 60 + }, + "str": 22, + "dex": 17, + "con": 21, + "int": 12, + "wis": 16, + "cha": 17, + "save": { + "str": "+10", + "dex": "+7", + "wis": "+7", + "cha": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "11", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the devil's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The devil has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack." + ] + }, + { + "name": "Fork", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a {@dc 17} Constitution saving throw or lose 10 ({@dice 3d6}) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 ({@damage 3d6}). Any creature can take an action to stanch the wound with a successful {@dc 12} Wisdom ({@skill Medicine}) check. The wound also closes if the target receives magical healing." + ] + }, + { + "name": "Hurl Flame", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 150 ft., one target. {@h}14 ({@damage 4d6}) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Devil (1/Day)", + "entries": [ + "The devil chooses what to summon and attempts a magical summoning.", + "A horned devil has a {@chance 30} chance of summoning one horned devil.", + "A summoned devil appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other devils. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Horned Devil (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/horned-devil.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hunter Shark", + "source": "MM", + "page": 330, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "EGW" + }, + { + "source": "PSX" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Hunter Shark|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "swim": 40 + }, + "str": 18, + "dex": 13, + "con": 15, + "int": 1, + "wis": 10, + "cha": 4, + "skill": { + "perception": "+2" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 12, + "cr": "2", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The shark can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hunter-shark.mp3" + }, + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hydra", + "source": "MM", + "page": 190, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "PSZ" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Hydra|XMM" + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 2, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "cr": "8", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The hydra can hold its breath for 1 hour." + ] + }, + { + "name": "Multiple Heads", + "entries": [ + "The hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}.", + "Whenever the hydra takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the hydra dies.", + "At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The hydra regains 10 hit points for each head regrown in this way." + ] + }, + { + "name": "Reactive Heads", + "entries": [ + "For each head the hydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks." + ] + }, + { + "name": "Wakeful", + "entries": [ + "While the hydra sleeps, at least one of its heads is awake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hydra makes as many bite attacks as it has heads." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ] + } + ], + "environment": [ + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hydra.mp3" + }, + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hyena", + "source": "MM", + "page": 331, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "CM" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Hyena|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 5, + "formula": "1d8 + 1" + }, + "speed": { + "walk": 50 + }, + "str": 11, + "dex": 13, + "con": 12, + "int": 2, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The hyena has advantage on an attack roll against a creature if at least one of the hyena's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hyena.mp3" + }, + "traitTags": [ + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ice Devil", + "source": "MM", + "page": 75, + "srd": true, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Ice Devil|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 180, + "formula": "19d10 + 76" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 14, + "con": 18, + "int": 18, + "wis": 15, + "cha": 18, + "save": { + "dex": "+7", + "con": "+9", + "wis": "+7", + "cha": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison", + "cold" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "14", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the devil's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The devil has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devil makes three attacks: one with its bite, one with its claws, and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 10 ({@damage 3d6}) cold damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 10 ({@damage 3d6}) cold damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage." + ] + }, + { + "name": "Wall of Ice {@recharge}", + "entries": [ + "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.", + "When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is {@condition incapacitated}. The creature then makes a {@dc 17} Dexterity saving throw, taking 35 ({@damage 10d6}) cold damage on a failed save, or half as much damage on a successful one.", + "The wall lasts for 1 minute or until the devil is {@condition incapacitated} or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a {@dc 17} Constitution saving throw, taking 17 ({@damage 5d6}) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Ice Devil Spear", + "entries": [ + "Some ice devils have the following action options.", + { + "type": "entries", + "name": "Multiattack", + "entries": [ + "The devil makes two attacks: one with its spear and one with its tail." + ] + }, + { + "type": "entries", + "name": "Ice Spear", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 10 ({@damage 3d6}) cold damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw, or for 1 minute, its speed is reduced by 10 feet; it can take either an action or a bonus action on each of its turns, not both; and it can't take reactions. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "_version": { + "name": "Ice Devil (Spear)", + "addHeadersAs": "action" + } + }, + { + "type": "variant", + "name": "Summon Devil (1/Day)", + "entries": [ + "The devil chooses what to summon and attempts a magical summoning.", + "An ice devil has a {@chance 60} chance of summoning one ice devil.", + "A summoned devil appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other devils. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Ice Devil (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ice-devil.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "B", + "C", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ice Mephit", + "source": "MM", + "page": 215, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Ice Mephit|XMM" + ], + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 21, + "formula": "6d6" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 7, + "dex": 13, + "con": 10, + "int": 9, + "wis": 11, + "cha": 12, + "skill": { + "perception": "+2", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "cold", + "poison" + ], + "vulnerable": [ + "bludgeoning", + "fire" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Aquan", + "Auran" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "type": "spellcasting", + "headerEntries": [ + "The mephit can innately cast {@spell fog cloud}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "will": [ + "{@spell fog cloud}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the mephit dies, it explodes in a burst of jagged ice. Each creature within 5 feet of it must make a {@dc 10} Dexterity saving throw, taking 4 ({@damage 1d8}) slashing damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the mephit remains motionless, it is indistinguishable from an ordinary shard of ice." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) slashing damage plus 2 ({@damage 1d4}) cold damage." + ] + }, + { + "name": "Frost Breath {@recharge}", + "entries": [ + "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw, taking 5 ({@damage 2d4}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Mephits (1/Day)", + "entries": [ + "The mephit has a {@chance 25|25 percent|25% summoning chance} chance of summoning {@dice 1d4} mephits of its kind. A summoned mephit appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other mephits. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Ice Mephit (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ice-mephit.mp3" + }, + "traitTags": [ + "Death Burst", + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "AQ", + "AU" + ], + "damageTags": [ + "C", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Imp", + "source": "MM", + "page": 76, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Imp|XMM" + ], + "size": [ + "T" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 10, + "formula": "3d4 + 3" + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "str": 6, + "dex": 17, + "con": 13, + "int": 11, + "wis": 12, + "cha": 14, + "skill": { + "deception": "+4", + "insight": "+3", + "persuasion": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The imp can use its action to polymorph into a beast form that resembles a rat (speed 20 ft.), a raven (20 ft., fly 60 ft.), or a spider (20 ft., climb 20 ft.), or back into its true form. Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the imp's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The imp has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Sting (Bite in Beast Form)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Invisibility", + "entries": [ + "The imp magically turns {@condition invisible} until it attacks, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the imp wears or carries is {@condition invisible} with it." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Imp Familiar", + "entries": [ + "Imps can be found in the service to mortal spellcasters, acting as advisors, spies, and familiars. An imp urges its master to acts of evil, knowing the mortal's soul is a prize the imp might ultimately claim. Imps display an unusual loyalty to their masters, and an imp can be quite dangerous if its master is threatened. Some such imps have the following trait.", + { + "name": "Familiar", + "type": "entries", + "entries": [ + "The imp can enter into a contract to serve another creature as a familiar, forming a telepathic bond with its willing master. While the two are bonded, the master can sense what the imp senses as long as they are within 1 mile of each other. While the imp is within 10 feet of its master, the master shares the imp's Magic Resistance trait. If its master violates the terms of the contract, the imp can end its service as a familiar, ending the telepathic bond." + ] + } + ], + "_version": { + "addHeadersAs": "trait" + } + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/imp.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Incubus", + "source": "MM", + "page": 285, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "GHLoE" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Incubus|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 8, + "dex": 17, + "con": 13, + "int": 15, + "wis": 12, + "cha": 20, + "skill": { + "deception": "+9", + "insight": "+5", + "perception": "+5", + "persuasion": "+9", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "telepathy 60 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Telepathic Bond", + "entries": [ + "The fiend ignores the range restriction on its telepathy when communicating with a creature it has {@condition charmed}. The two don't even need to be on the same plane of existence." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "The fiend can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Without wings, the fiend loses its flying speed. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "action": [ + { + "name": "Claw (Fiend Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Charm", + "entries": [ + "One humanoid the fiend can see within 30 feet of it must succeed on a {@dc 15} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.", + "The fiend can have only one target {@condition charmed} at a time. If it charms another, the effect on the previous target ends." + ] + }, + { + "name": "Draining Kiss", + "entries": [ + "The fiend kisses a creature {@condition charmed} by it or a willing creature. The target must make a {@dc 15} Constitution saving throw against this magic, taking 32 ({@damage 5d10 + 5}) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + }, + { + "name": "Etherealness", + "entries": [ + "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/succubus-incubus.mp3" + }, + "traitTags": [ + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C", + "I", + "TP" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Intellect Devourer", + "source": "MM", + "page": 191, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Intellect Devourer|XMM" + ], + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 21, + "formula": "6d4 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 6, + "dex": 14, + "con": 13, + "int": 12, + "wis": 11, + "cha": 10, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "understands Deep Speech but can't speak", + "telepathy 60 ft." + ], + "cr": "2", + "trait": [ + { + "name": "Detect Sentience", + "entries": [ + "The intellect devourer can sense the presence and location of any creature within 300 feet of it that has an Intelligence of 3 or higher, regardless of interposing barriers, unless the creature is protected by a {@spell mind blank} spell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The intellect devourer makes one attack with its claws and uses Devour Intellect." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ] + }, + { + "name": "Devour Intellect", + "entries": [ + "The intellect devourer targets one creature it can see within 10 feet of it that has a brain. The target must succeed on a {@dc 12} Intelligence saving throw against this magic or take 11 ({@damage 2d10}) psychic damage. Also on a failure, roll {@dice 3d6}: If the total equals or exceeds the target's Intelligence score, that score is reduced to 0. The target is {@condition stunned} until it regains at least one point of Intelligence." + ] + }, + { + "name": "Body Thief", + "entries": [ + "The intellect devourer initiates an Intelligence contest with an {@condition incapacitated} humanoid within 5 feet of it that isn't protected by {@spell protection from evil and good}. If it wins the contest, the intellect devourer magically consumes the target's brain, teleports into the target's skull, and takes control of the target's body. While inside a creature, the intellect devourer has {@quickref Cover||3||total cover} against attacks and other effects originating outside its host. The intellect devourer retains its Intelligence, Wisdom, and Charisma scores, as well as its understanding of Deep Speech, its telepathy, and its traits. It otherwise adopts the target's statistics. It knows everything the creature knew, including spells and languages.", + "If the host body dies, the intellect devourer must leave it. A {@spell protection from evil and good} spell cast on the body drives the intellect devourer out. The intellect devourer is also forced out if the target regains its devoured brain by means of a {@spell wish}. By spending 5 feet of its movement, the intellect devourer can voluntarily leave the body, teleporting to the nearest unoccupied space within 5 feet of it. The body then dies, unless its brain is restored within 1 round." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/intellect-devourer.mp3" + }, + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DS", + "TP" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Invisible Stalker", + "source": "MM", + "page": 192, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Invisible Stalker|XMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 14 + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 50, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 19, + "con": 14, + "int": 10, + "wis": 15, + "cha": 11, + "skill": { + "perception": "+8", + "stealth": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Auran", + "understands Common but doesn't speak it" + ], + "cr": "6", + "trait": [ + { + "name": "Invisibility", + "entries": [ + "The stalker is {@condition invisible}." + ] + }, + { + "name": "Faultless Tracker", + "entries": [ + "The stalker is given a quarry by its summoner. The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The stalker also knows the location of its summoner." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The stalker makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/invisible-stalker.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Iron Golem", + "source": "MM", + "page": 170, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Iron Golem|XMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100" + }, + "speed": { + "walk": 30 + }, + "str": 24, + "dex": 9, + "con": 20, + "int": 3, + "wis": 11, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "16", + "trait": [ + { + "name": "Fire Absorption", + "entries": [ + "Whenever the golem is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Sword", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d10 + 7}) slashing damage." + ] + }, + { + "name": "Poison Breath {@recharge 5}", + "entries": [ + "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/iron-golem.mp3" + }, + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "I", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jackal", + "source": "MM", + "page": 331, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Jackal|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 40 + }, + "str": 8, + "dex": 15, + "con": 11, + "int": 3, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The jackal has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The jackal has advantage on an attack roll against a creature if at least one of the jackal's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/jackal.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Jackalwere", + "source": "MM", + "page": 193, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Jackalwere|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 40 + }, + "str": 11, + "dex": 15, + "con": 11, + "int": 13, + "wis": 11, + "cha": 10, + "skill": { + "deception": "+4", + "perception": "+2", + "stealth": "+4" + }, + "passive": 12, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common (can't speak in jackal form)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The jackalwere can use its action to polymorph into a specific Medium human or a jackal-humanoid hybrid, or back into its true form (that of a Small jackal). Other than its size, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "The jackalwere has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The jackalwere has advantage on an attack roll against a creature if at least one of the jackalwere's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite (Jackal or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Scimitar (Human or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Sleep Gaze", + "entries": [ + "The jackalwere gazes at one creature it can see within 30 feet of it. The target must make a {@dc 10} Wisdom saving throw. On a failed save, the target succumbs to a magical slumber, falling {@condition unconscious} for 10 minutes or until someone uses an action to shake the target awake. A creature that successfully saves against the effect is immune to this jackalwere's gaze for the next 24 hours. Undead and creatures immune to being {@condition charmed} aren't affected by it." + ] + } + ], + "environment": [ + "grassland", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/jackalwere.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Keen Senses", + "Pack Tactics", + "Shapechanger" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kenku", + "source": "MM", + "page": 194, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Kenku|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kenku" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 10, + "int": 11, + "wis": 10, + "cha": 10, + "skill": { + "deception": "+4", + "perception": "+2", + "stealth": "+5" + }, + "passive": 12, + "languages": [ + "understands Auran and Common but speaks only through the use of its Mimicry trait" + ], + "cr": "1/4", + "trait": [ + { + "name": "Ambusher", + "entries": [ + "In the first round of a combat, the kenku has advantage on attack rolls against any creature it {@status surprised}." + ] + }, + { + "name": "Mimicry", + "entries": [ + "The kenku can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kenku.mp3" + }, + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Ambusher", + "Mimicry" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Killer Whale", + "source": "MM", + "page": 331, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Killer Whale|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d12 + 12" + }, + "speed": { + "swim": 60 + }, + "str": 19, + "dex": 10, + "con": 13, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 13, + "cr": "3", + "trait": [ + { + "name": "Echolocation", + "entries": [ + "The whale can't use its blindsight while {@condition deafened}." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The whale can hold its breath for 30 minutes." + ] + }, + { + "name": "Keen Hearing", + "entries": [ + "The whale has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}21 ({@damage 5d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/killer-whale.mp3" + }, + "traitTags": [ + "Hold Breath", + "Keen Senses" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Knight", + "source": "MM", + "page": 347, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Knight|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 14, + "int": 11, + "wis": 11, + "cha": 15, + "save": { + "con": "+4", + "wis": "+2" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "trait": [ + { + "name": "Brave", + "entries": [ + "The knight has advantage on saving throws against being {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The knight makes two melee attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + }, + { + "name": "Leadership (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the knight can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand the knight. A creature can benefit from only one Leadership die at a time. This effect ends if the knight is {@condition incapacitated}." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The knight adds 2 to its AC against one melee attack that would hit it. To do so, the knight must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/knight.mp3" + }, + "attachedItems": [ + "greatsword|phb", + "heavy crossbow|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kobold", + "source": "MM", + "page": 195, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "DoSI" + }, + { + "source": "GHLoE" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Kobold Warrior|XMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 5, + "formula": "2d6 - 2" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 9, + "int": 8, + "wis": 7, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/8", + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "hill", + "urban", + "desert", + "coastal", + "arctic", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kobold.mp3" + }, + "attachedItems": [ + "dagger|phb", + "sling|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kraken", + "source": "MM", + "page": 197, + "srd": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Kraken|XMM" + ], + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "titan" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 472, + "formula": "27d20 + 189" + }, + "speed": { + "walk": 20, + "swim": 60 + }, + "str": 30, + "dex": 11, + "con": 25, + "int": 22, + "wis": 18, + "cha": 20, + "save": { + "str": "+17", + "dex": "+7", + "con": "+14", + "int": "+13", + "wis": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 14, + "immune": [ + "lightning", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "frightened", + "paralyzed" + ], + "languages": [ + "Abyssal", + "Celestial", + "Infernal", + "Primordial", + "telepathy 120 ft. but can't speak" + ], + "cr": "23", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kraken can breathe air and water." + ] + }, + { + "name": "Freedom of Movement", + "entries": [ + "The kraken ignores {@quickref difficult terrain||3}, and magical effects can't reduce its speed or cause it to be {@condition restrained}. It can spend 5 feet of movement to escape from nonmagical restraints or being {@condition grappled}." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The kraken deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d8 + 10}) piercing damage. If the target is a Large or smaller creature {@condition grappled} by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the kraken, and it takes 42 ({@damage 12d6}) acid damage at the start of each of the kraken's turns. If the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a {@dc 25} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 15 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 30 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}. The kraken has ten tentacles, each of which can grapple one target." + ] + }, + { + "name": "Fling", + "entries": [ + "One Large or smaller object held or creature {@condition grappled} by the kraken is thrown up to 60 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 18} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ] + }, + { + "name": "Lightning Storm", + "entries": [ + "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a {@dc 23} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Tentacle Attack or Fling", + "entries": [ + "The kraken makes one tentacle attack or uses its Fling." + ] + }, + { + "name": "Lightning Storm (Costs 2 Actions)", + "entries": [ + "The kraken uses Lightning Storm." + ] + }, + { + "name": "Ink Cloud (Costs 3 Actions)", + "entries": [ + "While underwater, the kraken expels an ink cloud in a 60-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than the kraken. Each creature other than the kraken that ends its turn there must succeed on a {@dc 23} Constitution saving throw, taking 16 ({@damage 3d10}) poison damage on a failed save, or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of the kraken's next turn." + ] + } + ], + "legendaryGroup": { + "name": "Kraken", + "source": "MM" + }, + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kraken.mp3" + }, + "traitTags": [ + "Amphibious", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Swallow", + "Tentacles" + ], + "languageTags": [ + "AB", + "CE", + "CS", + "I", + "P", + "TP" + ], + "damageTags": [ + "A", + "B", + "I", + "L", + "P" + ], + "damageTagsLegendary": [ + "L" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kuo-toa", + "source": "MM", + "page": 199, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Kuo-toa|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kuo-toa" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 13, + "dex": 10, + "con": 11, + "int": 11, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "languages": [ + "Undercommon" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kuo-toa can breathe air and water." + ] + }, + { + "name": "Otherworldly Perception", + "entries": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ] + }, + { + "name": "Slippery", + "entries": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Net", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 5/15 ft., one Large or smaller creature. {@h}The target is {@condition restrained}. A creature can use its action to make a {@dc 10} Strength check to free itself or another creature in a net, ending the effect on a success. Dealing 5 slashing damage to the net (AC 10) frees the target without harming it and destroys the net." + ] + } + ], + "reaction": [ + { + "name": "Sticky Shield", + "entries": [ + "When a creature misses the kuo-toa with a melee weapon attack, the kuo-toa uses its sticky shield to catch the weapon. The attacker must succeed on a {@dc 11} Strength saving throw, or the weapon becomes stuck to the kuo-toa's shield. If the weapon's wielder can't or won't let go of the weapon, the wielder is {@condition grappled} while the weapon is stuck. While stuck, the weapon can't be used. A creature can pull the weapon free by taking an action to make a {@dc 11} Strength check and succeeding." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kuo-toa.mp3" + }, + "attachedItems": [ + "net|phb", + "spear|phb" + ], + "traitTags": [ + "Amphibious", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kuo-toa Archpriest", + "source": "MM", + "page": 200, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Kuo-toa Archpriest|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kuo-toa" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 13, + "wis": 16, + "cha": 14, + "skill": { + "perception": "+9", + "religion": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "languages": [ + "Undercommon" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The kuo-toa is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The kuo-toa has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell spirit guardians}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell control water}", + "{@spell divination}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell mass cure wounds}", + "{@spell scrying}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kuo-toa can breathe air and water." + ] + }, + { + "name": "Otherworldly Perception", + "entries": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ] + }, + { + "name": "Slippery", + "entries": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kuo-toa makes two melee attacks." + ] + }, + { + "name": "Scepter", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) lightning damage." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kuo-toa-archpriest.mp3" + }, + "traitTags": [ + "Amphibious", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "B", + "L" + ], + "damageTagsSpell": [ + "B", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kuo-toa Monitor", + "source": "MM", + "page": 198, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Kuo-toa Monitor|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kuo-toa" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor", + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 12, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+6", + "religion": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Undercommon" + ], + "cr": "3", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kuo-toa can breathe air and water." + ] + }, + { + "name": "Otherworldly Perception", + "entries": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ] + }, + { + "name": "Slippery", + "entries": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "The kuo-toa adds its Wisdom modifier to its armor class." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kuo-toa makes one bite attack and two unarmed strikes." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 3 ({@damage 1d6}) lightning damage, and the target can't take reactions until the end of the kuo-toa's next turn." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kuo-toa-monitor.mp3" + }, + "traitTags": [ + "Amphibious", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "B", + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kuo-toa Whip", + "source": "MM", + "page": 200, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Kuo-toa Whip|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kuo-toa" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 12, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+6", + "religion": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Undercommon" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The kuo-toa is a 2nd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The kuo-toa has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell bane}", + "{@spell shield of faith}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kuo-toa can breathe air and water." + ] + }, + { + "name": "Otherworldly Perception", + "entries": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ] + }, + { + "name": "Slippery", + "entries": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kuo-toa makes two attacks: one with its bite and one with its pincer staff." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Pincer Staff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the kuo-toa can't use its pincer staff on another target." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kuo-toa-whip.mp3" + }, + "traitTags": [ + "Amphibious", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lamia", + "source": "MM", + "page": 201, + "srd": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Lamia|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d10 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 15, + "int": 14, + "wis": 15, + "cha": 16, + "skill": { + "deception": "+7", + "insight": "+4", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Abyssal", + "Common" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lamia's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components." + ], + "will": [ + "{@spell disguise self} (any humanoid form)", + "{@spell major image}" + ], + "daily": { + "1": [ + "{@spell geas}" + ], + "3e": [ + "{@spell charm person}", + "{@spell mirror image}", + "{@spell scrying}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) slashing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Intoxicating Touch", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one creature. {@h}The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/lamia.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lemure", + "source": "MM", + "page": 76, + "srd": true, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "PSI" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Lemure|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 7 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 15 + }, + "str": 10, + "dex": 5, + "con": 11, + "int": 1, + "wis": 11, + "cha": 3, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold" + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Infernal but can't speak" + ], + "cr": "0", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the lemure's darkvision." + ] + }, + { + "name": "Hellish Rejuvenation", + "entries": [ + "A lemure that dies in the Nine Hells comes back to life with all its hit points in {@dice 1d10} days unless it is killed by a good-aligned creature with a {@spell bless} spell cast on that creature or its remains are sprinkled with holy water." + ] + } + ], + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage" + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/lemure.mp3" + }, + "traitTags": [ + "Devil's Sight" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "CS", + "I" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lich", + "source": "MM", + "page": 202, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Lich|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "NX", + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 16, + "int": 20, + "wis": 14, + "cha": 16, + "save": { + "con": "+10", + "int": "+12", + "wis": "+9" + }, + "skill": { + "arcana": "+19", + "history": "+12", + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "lightning", + "necrotic" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common plus up to five other languages" + ], + "cr": { + "cr": "21", + "lair": "22" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). The lich has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the lich fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If it has a phylactery, a destroyed lich gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The lich has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Paralyzing Touch", + "entries": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendary": [ + { + "name": "Cantrip", + "entries": [ + "The lich casts a cantrip." + ] + }, + { + "name": "Paralyzing Touch (Costs 2 Actions)", + "entries": [ + "The lich uses its Paralyzing Touch." + ] + }, + { + "name": "Frightening Gaze (Costs 2 Actions)", + "entries": [ + "The lich fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a {@dc 18} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the lich's gaze for the next 24 hours." + ] + }, + { + "name": "Disrupt Life (Costs 3 Actions)", + "entries": [ + "Each non-undead creature within 20 feet of the lich must make a {@dc 18} Constitution saving throw against this magic, taking 21 ({@damage 6d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendaryGroup": { + "name": "Lich", + "source": "MM" + }, + "soundClip": { + "type": "internal", + "path": "bestiary/lich.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Rejuvenation", + "Turn Resistance" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "C", + "N" + ], + "damageTagsLegendary": [ + "N" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "N", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lion", + "source": "MM", + "page": 331, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Lion|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 50 + }, + "str": 17, + "dex": 15, + "con": 13, + "int": 3, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The lion has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The lion has advantage on an attack roll against a creature if at least one of the lion's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the lion moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the lion can make one bite attack against it as a bonus action." + ] + }, + { + "name": "Running Leap", + "entries": [ + "With a 10-foot running start, the lion can long jump up to 25 feet." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/lion.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics", + "Pounce" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Lizard", + "source": "MM", + "page": 332, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Lizard|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 2, + "dex": 11, + "con": 10, + "int": 1, + "wis": 8, + "cha": 3, + "senses": [ + "darkvision 30 ft." + ], + "passive": 9, + "cr": "0", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/lizard.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Lizard King", + "source": "MM", + "page": 205, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "TCE" + } + ], + "reprintedAs": [ + "Lizardfolk Sovereign|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 11, + "wis": 11, + "cha": 15, + "save": { + "con": "+4", + "wis": "+2" + }, + "skill": { + "perception": "+4", + "stealth": "+5", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Abyssal", + "Draconic" + ], + "cr": "4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The lizardfolk can hold its breath for 15 minutes." + ] + }, + { + "name": "Skewer", + "entries": [ + "Once per turn, when the lizardfolk makes a melee attack with its trident and hits, the target takes an extra 10 ({@damage 3d6}) damage, and the lizardfolk gains temporary hit points equal to the extra damage dealt." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lizardfolk makes two attacks: one with its bite and one with its claws or trident or two melee attacks with its trident." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/lizard-king-_-queen.mp3" + }, + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lizard Queen", + "source": "MM", + "page": 205, + "reprintedAs": [ + "Lizardfolk Sovereign|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 11, + "wis": 11, + "cha": 15, + "save": { + "con": "+4", + "wis": "+2" + }, + "skill": { + "perception": "+4", + "stealth": "+5", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Abyssal", + "Draconic" + ], + "cr": "4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The lizardfolk can hold its breath for 15 minutes." + ] + }, + { + "name": "Skewer", + "entries": [ + "Once per turn, when the lizardfolk makes a melee attack with its trident and hits, the target takes an extra 10 ({@damage 3d6}) damage, and the lizardfolk gains temporary hit points equal to the extra damage dealt." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lizardfolk makes two attacks: one with its bite and one with its claws or trident or two melee attacks with its trident." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/lizard-king-_-queen.mp3" + }, + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lizardfolk", + "source": "MM", + "page": 204, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Scout|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 10, + "con": 13, + "int": 7, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+4", + "survival": "+5" + }, + "passive": 13, + "languages": [ + "Draconic" + ], + "cr": "1/2", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The lizardfolk can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lizardfolk makes two melee attacks, each one with a different weapon." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Heavy Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Spiked Shield", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/lizardfolk.mp3" + }, + "attachedItems": [ + "javelin|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lizardfolk Shaman", + "source": "MM", + "page": 205, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + } + ], + "reprintedAs": [ + "Lizardfolk Geomancer|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lizardfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 10, + "con": 13, + "int": 10, + "wis": 15, + "cha": 8, + "skill": { + "perception": "+4", + "stealth": "+4", + "survival": "+6" + }, + "passive": 14, + "languages": [ + "Draconic" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Lizardfolk Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The lizardfolk is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The lizardfolk has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell thorn whip}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell fog cloud}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell heat metal}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell conjure animals} (reptiles only)", + "{@spell plant growth}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The lizardfolk can hold its breath for 15 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack (Lizardfolk Form Only)", + "entries": [ + "The lizardfolk makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 7 ({@damage 1d10 + 2}) piercing damage in {@creature crocodile} form. If the lizardfolk is in crocodile form and the target is a Large or smaller creature, the target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the lizardfolk can't bite another target. If the lizardfolk reverts to its true form, the grapple ends." + ] + }, + { + "name": "Claws (Lizardfolk Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Change Shape (Recharges after a Short or Long Rest)", + "entries": [ + "The lizardfolk magically polymorphs into a {@creature crocodile}, remaining in that form for up to 1 hour. It can revert to its true form as a bonus action. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/lizardfolk-shaman.mp3" + }, + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "F", + "P" + ], + "spellcastingTags": [ + "CD", + "F" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mage", + "source": "MM", + "page": 347, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Mage|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The mage has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Familiars", + "entries": [ + "Any spellcaster that can cast the {@spell find familiar} spell (such as an archmage or mage) is likely to have a familiar. The familiar can be one of the creatures described in the spell (see the Player's Handbook) or some other Tiny monster, such as a {@creature crawling claw}, {@creature imp}, {@creature pseudodragon}, or {@creature quasit}." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mage.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "_versions": [ + { + "name": "Mage (Familiar)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "spells": { + "1": { + "spells": [ + "{@spell find familiar} (one of the creatures described in the spell or some other Tiny monster, such as a {@creature crawling claw}, {@creature imp}, {@creature pseudodragon}, or {@creature quasit})" + ] + } + } + } + }, + "variant": null + } + ] + }, + { + "name": "Magma Mephit", + "source": "MM", + "page": 216, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "SjA" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Magma Mephit|XMM" + ], + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 8, + "dex": 12, + "con": 12, + "int": 7, + "wis": 10, + "cha": 10, + "skill": { + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison" + ], + "vulnerable": [ + "cold" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Ignan", + "Terran" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "type": "spellcasting", + "headerEntries": [ + "The mephit can innately cast {@spell heat metal} (spell save {@dc 10}), requiring no material components. Its innate spellcasting ability is Charisma." + ], + "will": [ + "{@spell heat metal}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the mephit dies, it explodes in a burst of lava. Each creature within 5 feet of it must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the mephit remains motionless, it is indistinguishable from an ordinary mound of magma." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) slashing damage plus 2 ({@damage 1d4}) fire damage." + ] + }, + { + "name": "Fire Breath {@recharge}", + "entries": [ + "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Mephits (1/Day)", + "entries": [ + "The mephit has a {@chance 25|25 percent|25% summoning chance} chance of summoning {@dice 1d4} mephits of its kind. A summoned mephit appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other mephits. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Magma Mephit (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/magma-mephit.mp3" + }, + "traitTags": [ + "Death Burst", + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "IG", + "T" + ], + "damageTags": [ + "F", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Magmin", + "source": "MM", + "page": 212, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Magmin|XMM" + ], + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 12, + "int": 8, + "wis": 11, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire" + ], + "languages": [ + "Ignan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the magmin dies, it explodes in a burst of fire and magma. Each creature within 10 feet of it must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one. Flammable objects that aren't being worn or carried in that area are ignited." + ] + }, + { + "name": "Ignited Illumination", + "entries": [ + "As a bonus action, the magmin can set itself ablaze or extinguish its flames. While ablaze, the magmin sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ] + } + ], + "action": [ + { + "name": "Touch", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 ({@damage 1d6}) fire damage at the end of each of its turns." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/magmin.mp3" + }, + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "F" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mammoth", + "source": "MM", + "page": 332, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Mammoth|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55" + }, + "speed": { + "walk": 40 + }, + "str": 24, + "dex": 9, + "con": 21, + "int": 3, + "wis": 11, + "cha": 6, + "passive": 10, + "cr": "6", + "trait": [ + { + "name": "Trampling Charge", + "entries": [ + "If the mammoth moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the mammoth can make one stomp attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}25 ({@damage 4d8 + 7}) piercing damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one {@condition prone} creature. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mammoth.mp3" + }, + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Manes", + "source": "MM", + "page": 60, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Manes|XMM" + ], + "size": [ + "S" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 9, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 20 + }, + "str": 10, + "dex": 9, + "con": 13, + "int": 3, + "wis": 8, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "1/8", + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) slashing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/manes.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Manticore", + "source": "MM", + "page": 213, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Manticore|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 17, + "dex": 16, + "con": 17, + "int": 7, + "wis": 12, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Tail Spike Regrowth", + "entries": [ + "The manticore has twenty-four tail spikes. Used spikes regrow when the manticore finishes a long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Tail Spike", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 100/200 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill", + "coastal", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/manticore.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Marid", + "group": [ + "Genies" + ], + "source": "MM", + "page": 146, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Marid|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 229, + "formula": "17d10 + 136" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 90 + }, + "str": 22, + "dex": 12, + "con": 26, + "int": 18, + "wis": 17, + "cha": 18, + "save": { + "dex": "+5", + "wis": "+7", + "cha": "+8" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "acid", + "cold", + "lightning" + ], + "languages": [ + "Aquan" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The marid's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell create or destroy water}", + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell purify food and drink}" + ], + "daily": { + "3e": [ + "{@spell tongues}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "1e": [ + "{@spell conjure elemental} ({@creature water elemental} only)", + "{@spell control water}", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell plane shift}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The marid can breathe air and water." + ] + }, + { + "name": "Elemental Demise", + "entries": [ + "If the marid dies, its body disintegrates into a burst of water and foam, leaving behind only equipment the marid was wearing or carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The marid makes two trident attacks." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 10} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage, or 15 ({@damage 2d8 + 6}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Water Jet", + "entries": [ + "The marid magically shoots water in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw. On a failure, a target takes 21 ({@damage 6d6}) bludgeoning damage and, if it is Huge or smaller, is pushed up to 20 feet away from the marid and knocked {@condition prone}. On a success, a target takes half the bludgeoning damage, but is neither pushed nor knocked {@condition prone}." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Genie Powers", + "entries": [ + "Genies have a variety of magical capabilities, including spells. A few have even greater powers that allow them to alter their appearance or the nature of reality.", + { + "type": "entries", + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + }, + { + "type": "entries", + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/marid.mp3" + }, + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Marid (Disguises)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "will": [ + "{@spell disguise self} (often with a longer duration than is normal for that spell; see Disguises)" + ], + "daily": { + "3e": [ + "{@spell true polymorph} (mightier genies only; see Disguises)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Disguises", + "entries": [ + "Some genies can veil themselves in illusion to pass as other similarly shaped creatures. Such genies can innately cast the {@spell disguise self} spell at will, often with a longer duration than is normal for that spell. Mightier genies can cast the {@spell true polymorph} spell one to three times per day, possibly with a longer duration than normal. Such genies can change only their own shape, but a rare few can use the spell on other creatures and objects as well." + ] + } + } + }, + "variant": null + }, + { + "name": "Marid (Wishes)", + "source": "MM", + "_mod": { + "_": { + "mode": "addSpells", + "yearly": { + "1e": [ + "{@spell wish} (see Wishes)" + ] + } + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Wishes", + "entries": [ + "The genie power to grant wishes is legendary among mortals. Only the most potent genies, such as those among the nobility, can do so. A particular genie that has this power can grant one to three wishes to a creature that isn't a genie. Once a genie has granted its limit of wishes, it can't grant wishes again for some amount of time (usually 1 year), and cosmic law dictates that the same genie can expend its limit of wishes on a specific creature only once in that creature's existence.", + "To be granted a wish, a creature within 60 feet of the genie states a desired effect to it. The genie can then cast the {@spell wish} spell on the creature's behalf to bring about the effect. Depending on the genie's nature, the genie might try to pervert the intent of the wish by exploiting the wish's poor wording. The perversion of the wording is usually crafted to be to the genie's benefit." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Marilith", + "source": "MM", + "page": 61, + "srd": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Marilith|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 20, + "con": 20, + "int": 18, + "wis": 16, + "cha": 20, + "save": { + "str": "+9", + "con": "+10", + "wis": "+8", + "cha": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "16", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The marilith has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The marilith's weapon attacks are magical." + ] + }, + { + "name": "Reactive", + "entries": [ + "The marilith can take one reaction on every turn in combat." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The marilith can make seven attacks: six with its longswords and one with its tail." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}15 ({@damage 2d10 + 4}) bludgeoning damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets." + ] + }, + { + "name": "Teleport", + "entries": [ + "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The marilith adds 5 to its AC against one melee attack that would hit it. To do so, the marilith must see the attacker and be wielding a melee weapon." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A marilith has a {@chance 50|50 percent|50% summoning chance} chance of summoning {@dice 1d6} {@creature vrock||vrocks}, {@dice 1d4} {@creature hezrou||hezrous}, {@dice 1d3} {@creature glabrezu||glabrezus}, {@dice 1d2} {@creature nalfeshnee||nalfeshnees}, or one marilith.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Marilith (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/marilith.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Parry", + "Teleport" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mastiff", + "source": "MM", + "page": 332, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Mastiff|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 5, + "formula": "1d8 + 1" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 14, + "con": 12, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1/8", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The mastiff has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "environment": [ + "forest", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mastiff.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Medusa", + "source": "MM", + "page": 214, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Medusa|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 16, + "int": 12, + "wis": 13, + "cha": 15, + "skill": { + "deception": "+5", + "insight": "+4", + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common" + ], + "cr": "6", + "trait": [ + { + "name": "Petrifying Gaze", + "entries": [ + "When a creature that can see the medusa's eyes starts its turn within 30 feet of the medusa, the medusa can force it to make a {@dc 14} Constitution saving throw if the medusa isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, a creature that fails the save begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the {@spell greater restoration} spell or other magic.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save.", + "If the medusa sees itself reflected on a polished surface within 30 feet of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The medusa makes either three melee attacks\u2014one with its snake hair and two with its shortsword\u2014or two ranged attacks with its longbow." + ] + }, + { + "name": "Snake Hair", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/medusa.mp3" + }, + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Merfolk", + "source": "MM", + "page": 218, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Merfolk Skirmisher|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "merfolk" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 11 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 10, + "dex": 13, + "con": 12, + "int": 11, + "wis": 11, + "cha": 12, + "skill": { + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Aquan", + "Common" + ], + "cr": "1/8", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The merfolk can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d6}) piercing damage, or 4 ({@damage 1d8}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/merfolk.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Merrow", + "source": "MM", + "page": 219, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "DSotDQ" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Merrow|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 18, + "dex": 10, + "con": 15, + "int": 8, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Abyssal", + "Aquan" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The merrow can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The merrow makes two attacks: one with its bite and one with its claws or harpoon." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ] + }, + { + "name": "Harpoon", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/merrow.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "AQ" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mezzoloth", + "source": "MM", + "page": 313, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Mezzoloth|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 11, + "con": 16, + "int": 7, + "wis": 10, + "cha": 11, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mezzoloth's innate spellcasting ability is Charisma (spell save {@dc 11}). The mezzoloth can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1": [ + "{@spell cloudkill}" + ], + "2e": [ + "{@spell darkness}", + "{@spell dispel magic}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The mezzoloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The mezzoloth's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mezzoloth makes two attacks: one with its claws and one with its trident." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage when held with two claws and used to make a melee attack." + ] + }, + { + "name": "Teleport", + "entries": [ + "The mezzoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Yugoloth Summoning", + "entries": [ + "Some yugoloths have an action option that allows them to summon other yugoloths.", + { + "name": "Summon Yugoloth (1/Day)", + "type": "entries", + "entries": [ + "The yugoloth attempts a magical summoning.", + "A mezzoloth has a {@chance 30|30 percent|30% summoning chance} chance of summoning one mezzoloth.", + "A summoned yugoloth appears in an unoccupied space within 60 feet of its summoner, does as it pleases, and can't summon other yugoloths. The summoned yugoloth remains for 1 minute, until it or its summoner dies, or until its summoner takes a bonus action to dismiss it." + ] + } + ], + "_version": { + "name": "Mezzoloth (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mezzoloth.mp3" + }, + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "I" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mimic", + "source": "MM", + "page": 220, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Mimic|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 15 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 5, + "wis": 13, + "cha": 8, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "acid" + ], + "conditionImmune": [ + "prone" + ], + "cr": "2", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Adhesive (Object Form Only)", + "entries": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 13}). Ability checks made to escape this grapple have disadvantage." + ] + }, + { + "name": "False Appearance (Object Form Only)", + "entries": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ] + }, + { + "name": "Grappler", + "entries": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mimic.mp3" + }, + "traitTags": [ + "False Appearance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mind Flayer", + "alias": [ + "Illithid" + ], + "source": "MM", + "page": 222, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Mind Flayer|XMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 12, + "int": 19, + "wis": 17, + "cha": 17, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+7", + "deception": "+6", + "insight": "+6", + "perception": "+6", + "persuasion": "+6", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The mind flayer's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the mind flayer. {@h}The target takes 55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The mind flayer magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mind-flayer.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mind Flayer Arcanist", + "alias": [ + "Illithid Arcanist" + ], + "source": "MM", + "page": 222, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Mind Flayer Arcanist|XMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 12, + "int": 19, + "wis": 17, + "cha": 17, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+7", + "deception": "+6", + "insight": "+6", + "perception": "+6", + "persuasion": "+6", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The mind flayer's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mind flayer is a 10th-level spellcaster. Its spellcasting ability is Intelligence (save {@dc 15}, {@hit 7} to hit with spell attacks). The mind flayer has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell invisibility}", + "{@spell ray of enfeeblement}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell lightning bolt}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell hallucinatory terrain}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell telekinesis}", + "{@spell wall of force}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the mind flayer. {@h}The target takes 55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The mind flayer magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mind-flayer-arcanist.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "CW", + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Minotaur", + "source": "MM", + "page": 223, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CRCotN" + }, + { + "source": "PSZ" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Minotaur of Baphomet|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "9d10 + 27" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 11, + "con": 16, + "int": 6, + "wis": 16, + "cha": 9, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "languages": [ + "Abyssal" + ], + "cr": "3", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the minotaur moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ] + }, + { + "name": "Labyrinthine Recall", + "entries": [ + "The minotaur can perfectly recall any path it has traveled." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the minotaur can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/minotaur.mp3" + }, + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Charge", + "Reckless" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Minotaur Skeleton", + "source": "MM", + "page": 273, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Minotaur Skeleton|XMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 11, + "con": 15, + "int": 6, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/minotaur-skeleton.mp3" + }, + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Charge" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Monodrone", + "group": [ + "Modrons" + ], + "source": "MM", + "page": 224, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Modron Monodrone|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 5, + "formula": "1d8 + 1" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 10, + "dex": 13, + "con": 12, + "int": 4, + "wis": 10, + "cha": 5, + "senses": [ + "truesight 120 ft." + ], + "passive": 10, + "languages": [ + "Modron" + ], + "cr": "1/8", + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The monodrone can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the monodrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Rogue Modrons", + "entries": [ + "A modron unit sometimes becomes defective, either through natural decay or exposure to chaotic forces. Rogue modrons don't act in accordance with Primus's wishes and directives, breaking laws, disobeying orders, and even engaging in violence. Other modrons hunt down such rogues.", + "A rogue modron loses the Axiomatic Mind trait and can have any alignment other than lawful neutral. Otherwise, it has the same statistics as a regular modron of its rank." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/monodrone.mp3" + }, + "attachedItems": [ + "dagger|phb", + "javelin|phb" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Monodrone (Rogue)", + "source": "MM", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Axiomatic Mind" + } + }, + "alignment": [ + "A" + ], + "variant": null + } + ] + }, + { + "name": "Mud Mephit", + "source": "MM", + "page": 216, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Mud Mephit|XMM" + ], + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 20, + "fly": 20, + "swim": 20 + }, + "str": 8, + "dex": 12, + "con": 12, + "int": 9, + "wis": 11, + "cha": 7, + "skill": { + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Aquan", + "Terran" + ], + "cr": "1/4", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the mephit dies, it explodes in a burst of sticky mud. Each Medium or smaller creature within 5 feet of it must succeed on a {@dc 11} Dexterity saving throw or be {@condition restrained} until the end of the creature's next turn." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the mephit remains motionless, it is indistinguishable from an ordinary mound of mud." + ] + } + ], + "action": [ + { + "name": "Fists", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + }, + { + "name": "Mud Breath {@recharge}", + "entries": [ + "The mephit belches viscid mud onto one creature within 5 feet of it. If the target is Medium or smaller, it must succeed on a {@dc 11} Dexterity saving throw or be {@condition restrained} 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." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Mephits (1/Day)", + "entries": [ + "The mephit has a {@chance 25|25 percent|25% summoning chance} chance of summoning {@dice 1d4} mephits of its kind. A summoned mephit appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other mephits. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Mud Mephit (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mud-mephit.mp3" + }, + "traitTags": [ + "Death Burst", + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "AQ", + "T" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mule", + "source": "MM", + "page": 333, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "KftGV" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Mule|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 10, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "passive": 10, + "cr": "1/8", + "trait": [ + { + "name": "Beast of Burden", + "entries": [ + "The mule is considered to be a Large animal for the purpose of determining its carrying capacity." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The mule has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "hill", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mule.mp3" + }, + "traitTags": [ + "Beast of Burden" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Mummy", + "source": "MM", + "page": 228, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Mummy|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 20 + }, + "str": 16, + "dex": 8, + "con": 15, + "int": 6, + "wis": 10, + "cha": 12, + "save": { + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mummy can use its Dreadful Glare and makes one attack with its rotting fist." + ] + }, + { + "name": "Rotting Fist", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ] + }, + { + "name": "Dreadful Glare", + "entries": [ + "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a {@dc 11} Wisdom saving throw against this magic or become {@condition frightened} until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mummy.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mummy Lord", + "source": "MM", + "page": 229, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Mummy Lord|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 11, + "wis": 18, + "cha": 16, + "save": { + "con": "+8", + "int": "+5", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "history": "+5", + "religion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": { + "cr": "15", + "lair": "16" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mummy lord is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The mummy lord has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell guardian of faith}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell insect plague}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell harm}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The mummy lord has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "A destroyed mummy lord gains a new body in 24 hours if its heart is intact, regaining all its hit points and becoming active again. The new body appears within 5 feet of the mummy lord's heart." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mummy can use its Dreadful Glare and makes one attack with its rotting fist." + ] + }, + { + "name": "Rotting Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ] + }, + { + "name": "Dreadful Glare", + "entries": [ + "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a {@dc 16} Wisdom saving throw against this magic or become {@condition frightened} until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The mummy lord makes one attack with its rotting fist or uses its Dreadful Glare." + ] + }, + { + "name": "Blinding Dust", + "entries": [ + "Blinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must succeed on a {@dc 16} Constitution saving throw or be {@condition blinded} until the end of the creature's next turn." + ] + }, + { + "name": "Blasphemous Word (Costs 2 Actions)", + "entries": [ + "The mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the end of the mummy lord's next turn." + ] + }, + { + "name": "Channel Negative Energy (Costs 2 Actions)", + "entries": [ + "The mummy lord magically unleashes negative energy. Creatures within 60 feet of the mummy lord, including ones behind barriers and around corners, can't regain hit points until the end of the mummy lord's next turn." + ] + }, + { + "name": "Whirlwind of Sand (Costs 2 Actions)", + "entries": [ + "The mummy lord magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the mummy lord is immune to all damage, and it can't be {@condition grappled}, {@condition petrified}, knocked {@condition prone}, {@condition restrained}, or {@condition stunned}. Equipment worn or carried by the mummy lord remain in its possession." + ] + } + ], + "legendaryGroup": { + "name": "Mummy Lord", + "source": "MM" + }, + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mummy-lord.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "N", + "O", + "P", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "blinded", + "frightened", + "paralyzed", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "paralyzed", + "poisoned", + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Myconid Adult", + "source": "MM", + "page": 232, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Myconid Adult|XMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 20 + }, + "str": 10, + "dex": 10, + "con": 12, + "int": 10, + "wis": 13, + "cha": 7, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "cr": "1/2", + "trait": [ + { + "name": "Distress Spores", + "entries": [ + "When the myconid takes damage, all other myconids within 240 feet of it can sense its pain." + ] + }, + { + "name": "Sun Sickness", + "entries": [ + "While in sunlight, the myconid has disadvantage on ability checks, attack rolls, and saving throws. The myconid dies if it spends more than 1 hour in direct sunlight." + ] + } + ], + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) bludgeoning damage plus 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Pacifying Spores (3/Day)", + "entries": [ + "The myconid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 11} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Rapport Spores", + "entries": [ + "A 20-foot radius of spores extends from the myconid. These spores can go around corners and affect only creatures with an Intelligence of 2 or higher that aren't undead, constructs, or elementals. Affected creatures can communicate telepathically with one another while they are within 30 feet of each other. The effect lasts for 1 hour." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Zuggtomoy's Empowerment", + "entries": [ + "Myconids that embrace {@creature Zuggtmoy|MTF} can develop new, more destructive kinds of spores. Myconid adults can have two of the following spore effects.", + { + "type": "entries", + "name": "Caustic Spores (1/Day)", + "entries": [ + "The myconid releases spores in a 30-foot cone. Each creature inside the cone must succeed on a {@dc 11} Dexterity saving throw or take 3 ({@damage 1d6}) acid damage at the start of each of the myconid's turns. A creature can repeat the saving throw at the end of its turn, ending the effect on itself on a success. The save DC is 8 + the myconid's Constitution modifier + the myconid's proficiency bonus." + ] + }, + { + "type": "entries", + "name": "Infestation Spores (1/Day)", + "entries": [ + "The myconid releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 11} Constitution saving throw. The save DC is 8 + the myconid's Constitution modifier + the myconid's proficiency bonus. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy) and also gains a random form of indefinite madness (determined by rolling on the Madness of {@creature Zuggtmoy|MTF} table) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a humanoid or a Large or smaller beast." + ] + }, + { + "type": "entries", + "name": "Euphoria Spores (1/Day)", + "entries": [ + "The myconid releases a cloud of spores in a 20-foot-radius sphere centered on itself. Other creatures in that area must each succeed on a {@dc 11} Constitution saving throw or become {@condition poisoned} for 1 minute. The save DC is 8 + the myconid's Constitution modifier + the myconid's proficiency bonus. A creature can repeat the saving throw at the end of each of its turns, ending the effect early on itself on a success. When the effect ends on it, the creature gains one level of {@condition exhaustion}." + ] + } + ], + "_version": { + "name": "Myconid Adult (Additional Spore Effects)", + "addHeadersAs": "action" + }, + "source": "OotA", + "page": 228 + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/myconid-adult.mp3" + }, + "senseTags": [ + "SD" + ], + "damageTags": [ + "A", + "B", + "I" + ], + "miscTags": [ + "AOE", + "DIS", + "MW" + ], + "conditionInflict": [ + "exhaustion", + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Myconid Sovereign", + "source": "MM", + "page": 232, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Myconid Sovereign|XMM" + ], + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 10, + "con": 14, + "int": 13, + "wis": 15, + "cha": 10, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "cr": "2", + "trait": [ + { + "name": "Distress Spores", + "entries": [ + "When the myconid takes damage, all other myconids within 240 feet of it can sense its pain." + ] + }, + { + "name": "Sun Sickness", + "entries": [ + "While in sunlight, the myconid has disadvantage on ability checks, attack rolls, and saving throws. The myconid dies if it spends more than 1 hour in direct sunlight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myconid uses either its Hallucination Spores or its Pacifying Spores, then makes a fist attack." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 3d4 + 1}) bludgeoning damage plus 7 ({@damage 3d4}) poison damage." + ] + }, + { + "name": "Animating Spores (3/Day)", + "entries": [ + "The myconid targets one corpse of a humanoid or a Large or smaller beast within 5 feet of it and releases spores at the corpse. In 24 hours, the corpse rises as a spore servant. The corpse stays animated for {@dice 1d4 + 1} weeks or until destroyed, and it can't be animated again in this way." + ] + }, + { + "name": "Hallucination Spores", + "entries": [ + "The myconid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The {@condition poisoned} target is {@condition incapacitated} while it hallucinates. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Pacifying Spores", + "entries": [ + "The myconid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 12} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Rapport Spores", + "entries": [ + "A 30-foot radius of spores extends from the myconid. These spores can go around corners and affect only creatures with an Intelligence of 2 or higher that aren't undead, constructs, or elementals. Affected creatures can communicate telepathically with one another while they are within 30 feet of each other. The effect lasts for 1 hour." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Zuggtomoy's Empowerment", + "entries": [ + "Myconids that embrace {@creature Zuggtmoy|MTF} can develop new, more destructive kinds of spores. Myconid sovereigns have all these spore effects.", + { + "type": "entries", + "name": "Caustic Spores (1/Day)", + "entries": [ + "The myconid releases spores in a 30-foot cone. Each creature inside the cone must succeed on a {@dc 12} Dexterity saving throw or take 3 ({@damage 1d6}) acid damage at the start of each of the myconid's turns. A creature can repeat the saving throw at the end of its turn, ending the effect on itself on a success. The save DC is 8 + the myconid's Constitution modifier + the myconid's proficiency bonus." + ] + }, + { + "type": "entries", + "name": "Infestation Spores (1/Day)", + "entries": [ + "The myconid releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 12} Constitution saving throw. The save DC is 8 + the myconid's Constitution modifier + the myconid's proficiency bonus. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy) and also gains a random form of indefinite madness (determined by rolling on the Madness of {@creature Zuggtmoy|MTF} table) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a humanoid or a Large or smaller beast." + ] + }, + { + "type": "entries", + "name": "Euphoria Spores (1/Day)", + "entries": [ + "The myconid releases a cloud of spores in a 20-foot-radius sphere centered on itself. Other creatures in that area must each succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. The save DC is 8 + the myconid's Constitution modifier + the myconid's proficiency bonus. A creature can repeat the saving throw at the end of each of its turns, ending the effect early on itself on a success. When the effect ends on it, the creature gains one level of {@condition exhaustion}." + ] + } + ], + "_version": { + "name": "Myconid Sovereign (Additional Spore Effects)", + "addHeadersAs": "action" + }, + "source": "OotA", + "page": 228 + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/myconid-sovere.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "I" + ], + "miscTags": [ + "AOE", + "DIS", + "MW" + ], + "conditionInflict": [ + "exhaustion", + "incapacitated", + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Myconid Sprout", + "source": "MM", + "page": 230, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "DoSI" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Myconid Sprout|XMM" + ], + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "L", + "N" + ], + "ac": [ + 10 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 10 + }, + "str": 8, + "dex": 10, + "con": 10, + "int": 8, + "wis": 11, + "cha": 5, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "cr": "0", + "trait": [ + { + "name": "Distress Spores", + "entries": [ + "When the myconid takes damage, all other myconids within 240 feet of it can sense its pain." + ] + }, + { + "name": "Sun Sickness", + "entries": [ + "While in sunlight, the myconid has disadvantage on ability checks, attack rolls, and saving throws. The myconid dies if it spends more than 1 hour in direct sunlight." + ] + } + ], + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) bludgeoning damage plus 2 ({@damage 1d4}) poison damage." + ] + }, + { + "name": "Rapport Spores (3/Day)", + "entries": [ + "A 10-foot radius of spores extends from the myconid. These spores can go around corners and affect only creatures with an Intelligence of 2 or higher that aren't undead, constructs, or elementals. Affected creatures can communicate telepathically with one another while they are within 30 feet of each other. The effect lasts for 1 hour." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/myconid-sprout.mp3" + }, + "senseTags": [ + "SD" + ], + "damageTags": [ + "B", + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nalfeshnee", + "source": "MM", + "page": 62, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Nalfeshnee|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 184, + "formula": "16d10 + 96" + }, + "speed": { + "walk": 20, + "fly": 30 + }, + "str": 21, + "dex": 10, + "con": 22, + "int": 19, + "wis": 12, + "cha": 15, + "save": { + "con": "+11", + "int": "+9", + "wis": "+6", + "cha": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "13", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The nalfeshnee has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}32 ({@damage 5d10 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ] + }, + { + "name": "Horror Nimbus {@recharge 5}", + "entries": [ + "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours." + ] + }, + { + "name": "Teleport", + "entries": [ + "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A nalfeshnee has a {@chance 50|50 percent|50% summoning chance} chance of summoning {@dice 1d4} {@creature vrock||vrocks}, {@dice 1d3} {@creature hezrou||hezrous}, {@dice 1d2} {@creature glabrezu||glabrezus}, or one nalfeshnee.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Nalfeshnee (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nalfeshnee.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Needle Blight", + "source": "MM", + "page": 32, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "DIP" + } + ], + "reprintedAs": [ + "Needle Blight|XMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 12, + "con": 13, + "int": 4, + "wis": 8, + "cha": 3, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 9, + "conditionImmune": [ + "blinded", + "deafened" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "1/4", + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage." + ] + }, + { + "name": "Needles", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 30/60 ft., one target. {@h}8 ({@damage 2d6 + 1}) piercing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/needle-blight.mp3" + }, + "altArt": [ + { + "name": "Needle Blight", + "source": "DIP" + } + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Night Hag", + "source": "MM", + "page": 178, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Night Hag|XMM" + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 16, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+6", + "insight": "+5", + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "Primordial" + ], + "cr": { + "cr": "5", + "coven": "7" + }, + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell magic missile}" + ], + "daily": { + "2e": [ + "{@spell plane shift} (self only)", + "{@spell ray of enfeeblement}", + "{@spell sleep}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The hag has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Night Hag Items", + "entries": [ + "A night hag carries two very rare magic items that she must craft for herself. If either object is lost, the night hag will go to great lengths to retrieve it, as creating a new tool takes time and effort.", + "Heartstone: This lustrous black gem allows a night hag to become ethereal while it is in her possession. The touch of a heartstone also cures any disease. Crafting a heartstone takes 30 days.", + "Soul Bag: When an evil humanoid dies as a result of a night hag's Nightmare Haunting, the hag catches the soul in this black sack made of stitched flesh. A soul bag can hold only one evil soul at a time, and only the night hag who crafted the bag can catch a soul with it. Crafting a soul bag takes 7 days and a humanoid sacrifice (whose flesh is used to make the bag)." + ] + } + ], + "action": [ + { + "name": "Claws (Hag Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies." + ] + }, + { + "name": "Etherealness", + "entries": [ + "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession." + ] + }, + { + "name": "Nightmare Haunting (1/Day)", + "entries": [ + "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A {@spell protection from evil and good} spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 ({@dice 1d10}). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the {@spell greater restoration} spell or similar magic." + ] + } + ], + "legendaryGroup": { + "name": "Night Hag", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Hag Covens", + "entries": [ + "When hags must work together, they form covens, in spite of their selfish natures. A coven is made up of hags of any type, all of whom are equals within the group. However, each of the hags continues to desire more personal power.", + "A coven consists of three hags so that any arguments between two hags can be settled by the third. If more than three hags ever come together, as might happen if two covens come into conflict, the result is usually chaos.", + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save DC is 12 + the hag's Intelligence modifier, and the spell attack bonus is 4 + the hag's Intelligence modifier." + ] + }, + { + "type": "entries", + "name": "Hag Eye", + "entries": [ + "A hag coven can craft a magic item called a hag eye, which is made from a real eye coated in varnish and often fitted to a pendant or other wearable item. The hag eye is usually entrusted to a minion for safekeeping and transport. A hag in the coven can take an action to see what the hag eye sees if the hag eye is on the same plane of existence. A hag eye has AC 10, 1 hit point, and darkvision with a radius of 60 feet. If it is destroyed, each coven member takes {@damage 3d10} psychic damage and is {@condition blinded} for 24 hours.", + "A hag coven can have only one hag eye at a time, and creating a new one requires all three members of the coven to perform a ritual. The ritual takes 1 hour, and the hags can't perform it while {@condition blinded}. During the ritual, if the hags take any action other than performing the ritual, they must start over." + ] + } + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/night-hag.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "I", + "P" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "CW", + "I", + "S" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflictSpell": [ + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "savingThrowForcedLegendary": [ + "charisma", + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Night Hag (Coven)", + "source": "MM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 15}, and the spell attack bonus is {@hit 7}." + ] + } + } + }, + "cr": "7", + "variant": null + } + ] + }, + { + "name": "Nightmare", + "source": "MM", + "page": 235, + "srd": true, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Nightmare|XMM" + ], + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 60, + "fly": 90 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 10, + "wis": 13, + "cha": 15, + "passive": 11, + "immune": [ + "fire" + ], + "languages": [ + "understands Abyssal, Common, and Infernal but can't speak " + ], + "cr": "3", + "trait": [ + { + "name": "Confer Fire Resistance", + "entries": [ + "The nightmare can grant resistance to fire damage to anyone riding it." + ] + }, + { + "name": "Illumination", + "entries": [ + "The nightmare sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ] + } + ], + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage." + ] + }, + { + "name": "Ethereal Stride", + "entries": [ + "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nightmare.mp3" + }, + "traitTags": [ + "Illumination" + ], + "languageTags": [ + "AB", + "C", + "CS", + "I" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Noble", + "source": "MM", + "page": 348, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Noble|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 11, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "persuasion": "+5" + }, + "passive": 12, + "languages": [ + "any two languages" + ], + "cr": "1/8", + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The noble adds 2 to its AC against one melee attack that would hit it. To do so, the noble must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/noble.mp3" + }, + "attachedItems": [ + "rapier|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nothic", + "source": "MM", + "page": 236, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Nothic|XMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 16, + "int": 13, + "wis": 10, + "cha": 8, + "skill": { + "arcana": "+3", + "insight": "+4", + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 12, + "languages": [ + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The nothic has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nothic makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Rotting Gaze", + "entries": [ + "The nothic targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 12} Constitution saving throw against this magic or take 10 ({@damage 3d6}) necrotic damage." + ] + }, + { + "name": "Weird Insight", + "entries": [ + "The nothic targets one creature it can see within 30 feet of it. The target must contest its Charisma ({@skill Deception}) check against the nothic's Wisdom ({@skill Insight}) check. If the nothic wins, it magically learns one fact or secret about the target. The target automatically wins if it is immune to being {@condition charmed}." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nothic.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nycaloth", + "source": "MM", + "page": 314, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Nycaloth|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 20, + "dex": 11, + "con": 19, + "int": 12, + "wis": 10, + "cha": 15, + "skill": { + "intimidation": "+6", + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The nycaloth's innate spellcasting ability is Charisma. The nycaloth can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell mirror image}" + ], + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The nycaloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The nycaloth's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nycaloth makes two melee attacks, or it makes one melee attack and teleports before or after the attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or take 5 ({@damage 2d4}) slashing damage at the start of each of its turns due to a fiendish wound. Each time the nycaloth hits the wounded target with this attack, the damage dealt by the wound increases by 5 ({@damage 2d4}). Any creature can take an action to stanch the wound with a successful {@dc 13} Wisdom ({@skill Medicine}) check. The wound also closes if the target receives magical healing." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) slashing damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "The nycaloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Yugoloth Summoning", + "entries": [ + "Some yugoloths have an action option that allows them to summon other yugoloths.", + { + "name": "Summon Yugoloth (1/Day)", + "type": "entries", + "entries": [ + "The yugoloth chooses what to summon and attempts a magical summoning.", + "A nycaloth has a {@chance 50|50 percent|50% summoning chance} chance of summoning {@dice 1d4} {@creature mezzoloth||mezzoloths} or one nycaloth.", + "A summoned yugoloth appears in an unoccupied space within 60 feet of its summoner, does as it pleases, and can't summon other yugoloths. The summoned yugoloth remains for 1 minute, until it or its summoner dies, or until its summoner takes a bonus action to dismiss it." + ] + } + ], + "_version": { + "name": "Nycaloth (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nycaloth.mp3" + }, + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ochre Jelly", + "source": "MM", + "page": 243, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Ochre Jelly|XMM" + ], + "size": [ + "L" + ], + "type": "ooze", + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 15, + "dex": 6, + "con": 14, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 8, + "resist": [ + "acid" + ], + "immune": [ + "lightning", + "slashing" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "prone" + ], + "cr": "2", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The jelly can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The jelly can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage plus 3 ({@damage 1d6}) acid damage." + ] + } + ], + "reaction": [ + { + "name": "Split", + "entries": [ + "When a jelly that is Medium or larger is subjected to lightning or slashing damage, it splits into two new jellies if it has at least 10 hit points. Each new jelly has hit points equal to half the original jelly's, rounded down. New jellies are one size smaller than the original jelly." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ochre-jelly.mp3" + }, + "traitTags": [ + "Amorphous", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "A", + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Octopus", + "source": "MM", + "page": 333, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Octopus|XMM" + ], + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 5, + "swim": 30 + }, + "str": 4, + "dex": 15, + "con": 11, + "int": 3, + "wis": 10, + "cha": 4, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 12, + "cr": "0", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "While out of water, the octopus can hold its breath for 30 minutes." + ] + }, + { + "name": "Underwater Camouflage", + "entries": [ + "The octopus has advantage on Dexterity ({@skill Stealth}) checks made while underwater." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The octopus can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage, and the target is {@condition grappled} (escape {@dc 10}). Until this grapple ends, the octopus can't use its tentacles on another target." + ] + }, + { + "name": "Ink Cloud (Recharges after a Short or Long Rest)", + "entries": [ + "A 5-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/octopus.mp3" + }, + "traitTags": [ + "Camouflage", + "Hold Breath", + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Tentacles" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ogre", + "source": "MM", + "page": 237, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "SjA" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSZ" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Ogre|XMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "2", + "action": [ + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "swamp", + "hill", + "desert", + "coastal", + "arctic", + "underdark", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre.mp3" + }, + "attachedItems": [ + "greatclub|phb", + "javelin|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ogre Zombie", + "source": "MM", + "page": 316, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Ogre Zombie|XMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 8 + ], + "hp": { + "average": 85, + "formula": "9d10 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 6, + "con": 18, + "int": 3, + "wis": 6, + "cha": 5, + "save": { + "wis": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Common and Giant but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-zombie.mp3" + }, + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oni", + "source": "MM", + "page": 239, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSZ" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Oni|XMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 19, + "dex": 11, + "con": 16, + "int": 14, + "wis": 12, + "cha": 15, + "save": { + "dex": "+3", + "con": "+6", + "wis": "+4", + "cha": "+5" + }, + "skill": { + "arcana": "+5", + "deception": "+8", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Giant" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The oni's innate spellcasting ability is Charisma (spell save {@dc 13}). The oni can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell invisibility}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell cone of cold}", + "{@spell gaseous form}", + "{@spell sleep}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Weapons", + "entries": [ + "The oni's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The oni regains 10 hit points at the start of its turn if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oni makes two attacks, either with its claws or its glaive." + ] + }, + { + "name": "Claw (Oni Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage in Small or Medium form." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size." + ] + } + ], + "environment": [ + "forest", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oni.mp3" + }, + "attachedItems": [ + "glaive|phb" + ], + "traitTags": [ + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "C" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orc", + "source": "MM", + "page": 246, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Tough|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 15, + "formula": "2d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 16, + "int": 7, + "wis": 11, + "cha": 10, + "skill": { + "intimidation": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Orc" + ], + "cr": "1/2", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ] + } + ], + "action": [ + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d12 + 3}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "swamp", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc.mp3" + }, + "altArt": [ + { + "name": "Iceshield Orc", + "source": "PotA" + } + ], + "attachedItems": [ + "greataxe|phb", + "javelin|phb" + ], + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orc Eye of Gruumsh", + "source": "MM", + "page": 247, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Cultist Fanatic|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item ring mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 17, + "int": 9, + "wis": 13, + "cha": 12, + "skill": { + "intimidation": "+3", + "religion": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Orc" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The orc is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The orc has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell command}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell augury}", + "{@spell spiritual weapon} (spear)" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Gruumsh's Fury", + "entries": [ + "The orc deals an extra 4 ({@damage 1d8}) damage when it hits with a weapon attack (included in the attacks)." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 1d6 + 3} plus {@damage 1d8}) piercing damage, or 12 ({@damage 2d8 + 3}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "swamp", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc-eye-of-gruumsh.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orc War Chief", + "source": "MM", + "page": 246, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + } + ], + "reprintedAs": [ + "Tough Boss|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 18, + "int": 11, + "wis": 11, + "cha": 16, + "save": { + "str": "+6", + "con": "+6", + "wis": "+2" + }, + "skill": { + "intimidation": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Orc" + ], + "cr": "4", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Gruumsh's Fury", + "entries": [ + "The orc deals an extra 4 ({@damage 1d8}) damage when it hits with a weapon attack (included in the attacks)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The orc makes two attacks with its greataxe or its spear." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 1d12 + 4} plus {@damage 1d8}) slashing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}12 ({@damage 1d6 + 4} plus {@damage 1d8}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Battle Cry (1/Day)", + "entries": [ + "Each creature of the war chief's choice that is within 30 feet of it, can hear it, and not already affected by Battle Cry gain advantage on attack rolls until the start of the war chief's next turn. The war chief can then make one attack as a bonus action." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "swamp", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc-war-chief.mp3" + }, + "attachedItems": [ + "greataxe|phb", + "spear|phb" + ], + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orog", + "source": "MM", + "page": 247, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + } + ], + "reprintedAs": [ + "Berserker|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 18, + "int": 12, + "wis": 11, + "cha": 12, + "skill": { + "intimidation": "+5", + "survival": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Orc" + ], + "cr": "2", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orog can move up to its speed toward a hostile creature that it can see." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The orog makes two greataxe attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orog.mp3" + }, + "attachedItems": [ + "greataxe|phb", + "javelin|phb" + ], + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Otyugh", + "source": "MM", + "page": 248, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Otyugh|XMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 19, + "int": 6, + "wis": 13, + "cha": 6, + "save": { + "con": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "languages": [ + "Otyugh" + ], + "cr": "5", + "trait": [ + { + "name": "Limited Telepathy", + "entries": [ + "The otyugh can magically transmit simple messages and images to any creature within 120 feet of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The otyugh makes three attacks: one with its bite and two with its tentacles." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw against disease or become {@condition poisoned} until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 ({@dice 1d10}) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 4 ({@damage 1d8}) piercing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 13}) and {@condition restrained} until the grapple ends. The otyugh has two tentacles, each of which can grapple one target." + ] + }, + { + "name": "Tentacle Slam", + "entries": [ + "The otyugh slams creatures {@condition grappled} by it into each other or a solid surface. Each creature must succeed on a {@dc 14} Constitution saving throw or take 10 ({@damage 2d6 + 3}) bludgeoning damage and be {@condition stunned} until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't {@condition stunned}." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/otyugh.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "DIS", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "poisoned", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Owl", + "source": "MM", + "page": 333, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Owl|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 5, + "fly": 60 + }, + "str": 3, + "dex": 13, + "con": 8, + "int": 2, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Keen Hearing and Sight", + "entries": [ + "The owl has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + } + ], + "action": [ + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + } + ], + "environment": [ + "forest", + "arctic" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/owl.mp3" + }, + "traitTags": [ + "Flyby", + "Keen Senses" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Owlbear", + "source": "MM", + "page": 249, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "DoSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Owlbear|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 12, + "con": 17, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "3", + "trait": [ + { + "name": "Keen Sight and Smell", + "entries": [ + "The owlbear has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The owlbear makes two attacks: one with its beak and one with its claws." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/owlbear.mp3" + }, + "altArt": [ + { + "name": "Owlbear", + "source": "RMBRE" + } + ], + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Panther", + "source": "MM", + "page": 333, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + } + ], + "reprintedAs": [ + "Panther|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 50, + "climb": 40 + }, + "str": 14, + "dex": 15, + "con": 10, + "int": 3, + "wis": 14, + "cha": 7, + "skill": { + "perception": "+4", + "stealth": "+6" + }, + "passive": 14, + "cr": "1/4", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The panther has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the panther moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the panther can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/panther.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pounce" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Pegasus", + "source": "MM", + "page": 250, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ERLW" + }, + { + "source": "MOT" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Pegasus|XMM" + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "C", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 60, + "fly": 90 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 10, + "wis": 15, + "cha": 13, + "save": { + "dex": "+4", + "wis": "+4", + "cha": "+3" + }, + "skill": { + "perception": "+6" + }, + "passive": 16, + "languages": [ + "understands Celestial", + "Common", + "Elvish", + "and Sylvan but can't speak" + ], + "cr": "2", + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/pegasus.mp3" + }, + "languageTags": [ + "C", + "CE", + "CS", + "E", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pentadrone", + "group": [ + "Modrons" + ], + "source": "MM", + "page": 226, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Modron Pentadrone|XMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d10 + 5" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 14, + "con": 12, + "int": 10, + "wis": 10, + "cha": 13, + "skill": { + "perception": "+4" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 14, + "languages": [ + "Modron" + ], + "cr": "2", + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The pentadrone can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the pentadrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pentadrone makes five arm attacks." + ] + }, + { + "name": "Arm", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Paralysis Gas {@recharge 5}", + "entries": [ + "The pentadrone exhales a 30-foot cone of gas. Each creature in that area must succeed on a {@dc 11} Constitution saving throw or be {@condition 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." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Rogue Modrons", + "entries": [ + "A modron unit sometimes becomes defective, either through natural decay or exposure to chaotic forces. Rogue modrons don't act in accordance with Primus's wishes and directives, breaking laws, disobeying orders, and even engaging in violence. Other modrons hunt down such rogues.", + "A rogue modron loses the Axiomatic Mind trait and can have any alignment other than lawful neutral. Otherwise, it has the same statistics as a regular modron of its rank." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/pentadrone.mp3" + }, + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Pentadrone (Rogue)", + "source": "MM", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Axiomatic Mind" + } + }, + "alignment": [ + "A" + ], + "variant": null + } + ] + }, + { + "name": "Peryton", + "source": "MM", + "page": 251, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Peryton|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 20, + "fly": 60 + }, + "str": 16, + "dex": 12, + "con": 13, + "int": 9, + "wis": 12, + "cha": 10, + "skill": { + "perception": "+5" + }, + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "understands Common and Elvish but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Dive Attack", + "entries": [ + "If the peryton is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 9 ({@damage 2d8}) damage to the target." + ] + }, + { + "name": "Flyby", + "entries": [ + "The peryton doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "name": "Keen Sight and Smell", + "entries": [ + "The peryton has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The peryton makes one gore attack and one talon attack." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ] + } + ], + "environment": [ + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/peryton.mp3" + }, + "traitTags": [ + "Flyby", + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS", + "E" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Phase Spider", + "source": "MM", + "page": 334, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Phase Spider|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d10 + 5" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 15, + "con": 12, + "int": 6, + "wis": 10, + "cha": 6, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "3", + "trait": [ + { + "name": "Ethereal Jaunt", + "entries": [ + "As a bonus action, the spider can magically shift from the Material Plane to the Ethereal Plane, or vice versa." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The spider ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 18 ({@damage 4d8}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "hill", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/phase-spider.mp3" + }, + "traitTags": [ + "Spider Climb", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Piercer", + "source": "MM", + "page": 252, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Piercer|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "3d8 + 9" + }, + "speed": { + "walk": 5, + "climb": 5 + }, + "str": 10, + "dex": 13, + "con": 16, + "int": 1, + "wis": 7, + "cha": 3, + "skill": { + "stealth": "+5" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 8, + "cr": "1/2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the piercer remains motionless on the ceiling, it is indistinguishable from a normal stalactite." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The piercer can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Drop", + "entries": [ + "{@atk mw} {@hit 3} to hit, one creature directly underneath the piercer. {@h}3 ({@damage 1d6}) piercing damage per 10 feet fallen, up to 21 ({@damage 6d6}). Miss: The piercer takes half the normal falling damage for the distance fallen." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/piercer.mp3" + }, + "traitTags": [ + "False Appearance", + "Spider Climb" + ], + "senseTags": [ + "B", + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pit Fiend", + "source": "MM", + "page": 77, + "srd": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Pit Fiend|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 300, + "formula": "24d10 + 168" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 26, + "dex": 14, + "con": 24, + "int": 22, + "wis": 18, + "cha": 24, + "save": { + "dex": "+8", + "con": "+13", + "wis": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 14, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "20", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pit fiend's spellcasting ability is Charisma (spell save {@dc 21}). The pit fiend can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell fireball}" + ], + "daily": { + "3e": [ + "{@spell hold monster}", + "{@spell wall of fire}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fear Aura", + "entries": [ + "Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a {@dc 21} Wisdom saving throw, unless the pit fiend is {@condition incapacitated}. On a failed save, the creature is {@condition frightened} until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the pit fiend's Fear Aura for the next 24 hours." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The pit fiend has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The pit fiend's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) piercing damage. The target must succeed on a {@dc 21} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target can't regain hit points, and it takes 21 ({@damage 6d6}) poison damage at the start of each of its turns. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) bludgeoning damage plus 21 ({@damage 6d6}) fire damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Devil (1/Day)", + "entries": [ + "The devil chooses what to summon and attempts a magical summoning.", + "A pit fiend summons {@dice 2d4} {@creature bearded devil||bearded devils}, {@dice 1d4} {@creature barbed devil||barbed devils}, or one {@creature erinyes} with no chance of failure.", + "A summoned devil appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other devils. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Pit Fiend (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/pit-fiend.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "B", + "F", + "I", + "P", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "poisoned" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pixie", + "source": "MM", + "page": 253, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Pixie|XMM" + ], + "size": [ + "T" + ], + "type": "fey", + "alignment": [ + "N", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 10, + "fly": 30 + }, + "str": 2, + "dex": 20, + "con": 8, + "int": 10, + "wis": 14, + "cha": 15, + "skill": { + "perception": "+4", + "stealth": "+7" + }, + "passive": 14, + "languages": [ + "Sylvan" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pixie's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring only its pixie dust as a component:" + ], + "will": [ + "{@spell druidcraft}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell dancing lights}", + "{@spell detect evil and good}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell entangle}", + "{@spell fly}", + "{@spell phantasmal force}", + "{@spell polymorph}", + "{@spell sleep}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The pixie has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Superior Invisibility", + "entries": [ + "The pixie magically turns {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the pixie wears or carries is {@condition invisible} with it." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/pixie.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "languageTags": [ + "S" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "restrained", + "unconscious" + ], + "savingThrowForcedSpell": [ + "intelligence", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Planetar", + "group": [ + "Angels" + ], + "source": "MM", + "page": 17, + "srd": true, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Planetar|XMM" + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112" + }, + "speed": { + "walk": 40, + "fly": 120 + }, + "str": 24, + "dex": 20, + "con": 24, + "int": 19, + "wis": 22, + "cha": 25, + "save": { + "con": "+12", + "wis": "+11", + "cha": "+12" + }, + "skill": { + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The planetar's spellcasting ability is Charisma (spell save {@dc 20}). The planetar can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect evil and good}", + "{@spell invisibility} (self only)" + ], + "daily": { + "3e": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell flame strike}", + "{@spell raise dead}" + ], + "1e": [ + "{@spell commune}", + "{@spell control weather}", + "{@spell insect plague}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Angelic Weapons", + "entries": [ + "The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals an extra {@damage 5d8} radiant damage (included in the attack)." + ] + }, + { + "name": "Divine Awareness", + "entries": [ + "The planetar knows if it hears a lie." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The planetar has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The planetar makes two melee attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}21 ({@damage 4d6 + 7}) slashing damage plus 22 ({@damage 5d8}) radiant damage." + ] + }, + { + "name": "Healing Touch (4/Day)", + "entries": [ + "The planetar touches another creature. The target magically regains 30 ({@dice 6d8 + 3}) hit points and is freed from any curse, disease, poison, blindness, or deafness." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/planetar.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "R", + "S" + ], + "damageTagsSpell": [ + "F", + "P", + "R", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Plesiosaurus", + "group": [ + "Dinosaurs" + ], + "source": "MM", + "page": 80, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + } + ], + "reprintedAs": [ + "Plesiosaurus|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 2, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "passive": 13, + "cr": "2", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The plesiosaurus can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/plesiosaurus.mp3" + }, + "traitTags": [ + "Hold Breath" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Poisonous Snake", + "source": "MM", + "page": 334, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Venomous Snake|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 2, + "dex": 16, + "con": 11, + "int": 1, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 10 ft." + ], + "passive": 10, + "cr": "1/8", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage, and the target must make a {@dc 10} Constitution saving throw, taking 5 ({@damage 2d4}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "grassland", + "forest", + "swamp", + "hill", + "desert", + "coastal" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/poisonous-snake.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Polar Bear", + "source": "MM", + "page": 334, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Polar Bear|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15" + }, + "speed": { + "walk": 40, + "swim": 30 + }, + "str": 20, + "dex": 10, + "con": 16, + "int": 2, + "wis": 13, + "cha": 7, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "2", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bear makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + } + ], + "environment": [ + "underdark", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/polar-bear.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Poltergeist", + "source": "MM", + "page": 279, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Poltergeist|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 14, + "con": 11, + "int": 10, + "wis": 10, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "understands all languages it knew in life but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The poltergeist can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the poltergeist has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Invisibility", + "entries": [ + "The poltergeist is {@condition invisible}." + ] + } + ], + "action": [ + { + "name": "Forceful Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) force damage." + ] + }, + { + "name": "Telekinetic Thrust", + "entries": [ + "The poltergeist targets a creature or unattended object within 30 feet of it. A creature must be Medium or smaller to be affected by this magic, and an object can weigh up to 150 pounds.", + "If the target is a creature, the poltergeist makes a Charisma check contested by the target's Strength check. If the poltergeist wins the contest, the poltergeist hurls the target up to 30 feet in any direction, including upward. If the target then comes into contact with a hard surface or heavy object, the target takes {@damage 1d6} damage per 10 feet moved.", + "If the target is an object that isn't being worn or carried, the poltergeist hurls it up to 30 feet in any direction. The poltergeist can use the object as a ranged weapon, attacking one creature along the object's path ({@hit 4} to hit) and dealing 5 ({@damage 2d4}) bludgeoning damage on a hit." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/poltergeist.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Pony", + "source": "MM", + "page": 335, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Pony|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 10, + "con": 13, + "int": 2, + "wis": 11, + "cha": 7, + "passive": 10, + "cr": "1/8", + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/pony.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Priest", + "source": "MM", + "page": 348, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Priest|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 12, + "int": 13, + "wis": 16, + "cha": 13, + "skill": { + "medicine": "+7", + "persuasion": "+3", + "religion": "+5" + }, + "passive": 13, + "languages": [ + "any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). The priest has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell guiding bolt}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell spirit guardians}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Divine Eminence", + "entries": [ + "As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 ({@damage 3d6}) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If the priest expends a spell slot of 2nd level or higher, the extra damage increases by {@damage 1d6} for each level above 1st." + ] + } + ], + "action": [ + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/priest.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Pseudodragon", + "source": "MM", + "page": 254, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Pseudodragon|XMM" + ], + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "N", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 7, + "formula": "2d4 + 2" + }, + "speed": { + "walk": 15, + "fly": 60 + }, + "str": 6, + "dex": 15, + "con": 13, + "int": 10, + "wis": 12, + "cha": 10, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "understands Common and Draconic but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Keen Senses", + "entries": [ + "The pseudodragon has advantage on Wisdom ({@skill Perception}) checks that rely on sight, hearing, or smell." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The pseudodragon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "The pseudodragon can magically communicate simple ideas, emotions, and images telepathically with any creature within 100 feet of it that can understand a language." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or become {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target falls {@condition unconscious} for the same duration, or until it takes damage or another creature uses an action to shake it awake." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Pseudodragon Familiar", + "entries": [ + "Some pseudodragons are willing to serve spellcasters as a familiar. Such pseudodragons have the following trait.", + { + "name": "Familiar", + "type": "entries", + "entries": [ + "The pseudodragon can serve another creature as a familiar, forming a magic, telepathic bond with that willing companion. While the two are bonded, the companion can sense what the pseudodragon senses as long as they are within 1 mile of each other. While the pseudodragon is within 10 feet of its companion, the companion shares the pseudodragon's Magic Resistance trait. At any time and for any reason, the pseudodragon can end its service as a familiar, ending the telepathic bond." + ] + } + ], + "_version": { + "addHeadersAs": "trait" + } + } + ], + "environment": [ + "mountain", + "forest", + "hill", + "urban", + "desert", + "coastal" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/pseudodragon.mp3" + }, + "traitTags": [ + "Keen Senses", + "Magic Resistance" + ], + "senseTags": [ + "B", + "D" + ], + "languageTags": [ + "C", + "CS", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pteranodon", + "group": [ + "Dinosaurs" + ], + "source": "MM", + "page": 80, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "WBtW" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Pteranodon|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 12, + "dex": 15, + "con": 10, + "int": 2, + "wis": 9, + "cha": 5, + "skill": { + "perception": "+1" + }, + "passive": 11, + "cr": "1/4", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The pteranodon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage" + ] + } + ], + "environment": [ + "mountain", + "grassland", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/pteranodon.mp3" + }, + "traitTags": [ + "Flyby" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Purple Worm", + "source": "MM", + "page": 255, + "srd": true, + "otherSources": [ + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Purple Worm|XMM" + ], + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 247, + "formula": "15d20 + 90" + }, + "speed": { + "walk": 50, + "burrow": 30 + }, + "str": 28, + "dex": 7, + "con": 22, + "int": 1, + "wis": 8, + "cha": 4, + "save": { + "con": "+11", + "wis": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "passive": 9, + "cr": "15", + "trait": [ + { + "name": "Tunneler", + "entries": [ + "The worm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The worm makes two attacks: one with its bite and one with its stinger." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the worm, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the worm's turns.", + "If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tail Stinger", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one creature. {@h}19 ({@damage 3d6 + 9}) piercing damage, and the target must make a {@dc 19} Constitution saving throw, taking 42 ({@damage 12d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/purple-worm.mp3" + }, + "traitTags": [ + "Tunneler" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quadrone", + "group": [ + "Modrons" + ], + "source": "MM", + "page": 226, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Modron Quadrone|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 12, + "dex": 14, + "con": 12, + "int": 10, + "wis": 10, + "cha": 11, + "skill": { + "perception": "+2" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 12, + "languages": [ + "Modron" + ], + "cr": "1", + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The quadrone can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the quadrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quadrone makes two fist attacks or four shortbow attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Rogue Modrons", + "entries": [ + "A modron unit sometimes becomes defective, either through natural decay or exposure to chaotic forces. Rogue modrons don't act in accordance with Primus's wishes and directives, breaking laws, disobeying orders, and even engaging in violence. Other modrons hunt down such rogues.", + "A rogue modron loses the Axiomatic Mind trait and can have any alignment other than lawful neutral. Otherwise, it has the same statistics as a regular modron of its rank." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quadrone.mp3" + }, + "attachedItems": [ + "shortbow|phb" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Quadrone (Rogue)", + "source": "MM", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Axiomatic Mind" + } + }, + "alignment": [ + "A" + ], + "variant": null + } + ] + }, + { + "name": "Quaggoth", + "source": "MM", + "page": 256, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + } + ], + "reprintedAs": [ + "Quaggoth|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "quaggoth" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 17, + "dex": 12, + "con": 16, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "athletics": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Wounded Fury", + "entries": [ + "While it has 10 hit points or fewer, the quaggoth has advantage on attack rolls. In addition, it deals an extra 7 ({@damage 2d6}) damage to any target it hits with a melee attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quaggoth makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quaggoth.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quaggoth Spore Servant", + "source": "MM", + "page": 230, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Myconid Spore Servant|XMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 17, + "dex": 12, + "con": 16, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed", + "poisoned" + ], + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spore servant makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quaggoth-spore-servant.mp3" + }, + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Quaggoth Thonot", + "source": "MM", + "page": 256, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Quaggoth Thonot|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "quaggoth" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 17, + "dex": 12, + "con": 16, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "athletics": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Undercommon" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The quaggoth's innate spellcasting ability is Wisdom (spell save {@dc 11}). The quaggoth can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell feather fall}", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1e": [ + "{@spell cure wounds}", + "{@spell enlarge/reduce}", + "{@spell heat metal}", + "{@spell mirror image}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Wounded Fury", + "entries": [ + "While it has 10 hit points or fewer, the quaggoth has advantage on attack rolls. In addition, it deals an extra 7 ({@damage 2d6}) damage to any target it hits with a melee attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quaggoth makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quaggoth-thonot.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quasit", + "source": "MM", + "page": 63, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Quasit|XMM" + ], + "size": [ + "T" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 7, + "formula": "3d4" + }, + "speed": { + "walk": 40 + }, + "str": 5, + "dex": 17, + "con": 10, + "int": 7, + "wis": 10, + "cha": 10, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The quasit can use its action to polymorph into a beast form that resembles a bat (speed 10 feet fly 40 ft.), a centipede (40 ft., climb 40 ft.), or a toad (40 ft., swim 40 ft.), or back into its true form. Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The quasit has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Claw (Bite in Beast Form)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or take 5 ({@damage 2d4}) poison damage and become {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Scare (1/Day)", + "entries": [ + "One creature of the quasit's choice within 20 feet of it must succeed on a {@dc 10} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success." + ] + }, + { + "name": "Invisibility", + "entries": [ + "The quasit magically turns {@condition invisible} until it attacks or uses Scare, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the quasit wears or carries is {@condition invisible} with it." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Quasit Familiar", + "entries": [ + "Mortal spellcasters interested in extraplanar familiars find quasits easy to summon and eager to serve. The quasit plays the part of the obsequious servant. It serves its master well, but it goads the mortal to greater and greater acts of chaos and evil. Such quasits have the following trait.", + { + "name": "Familiar", + "type": "entries", + "entries": [ + "The quasit can serve another creature as a familiar, forming a telepathic bond with its willing master. While the two are bonded, the master can sense what the quasit senses as long as they are within 1 mile of each other. While the quasit is within 10 feet of its master, the master shares the quasit's Magic Resistance trait. At any time and for any reason, the quasit can end its service as a familiar, ending the telepathic bond." + ] + } + ], + "_version": { + "addHeadersAs": "trait" + } + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/quasit.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "invisible", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quipper", + "source": "MM", + "page": 335, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "PSA" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Piranha|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "swim": 40 + }, + "str": 2, + "dex": 16, + "con": 9, + "int": 1, + "wis": 7, + "cha": 2, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "cr": "0", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The quipper has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The quipper can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "environment": [ + "underwater" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/quipper.mp3" + }, + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rakshasa", + "source": "MM", + "page": 257, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Rakshasa|XMM" + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 17, + "con": 18, + "int": 13, + "wis": 16, + "cha": 20, + "skill": { + "deception": "+10", + "insight": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + { + "vulnerable": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "cond": true + } + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The rakshasa's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The rakshasa can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell suggestion}" + ], + "1e": [ + "{@spell dominate person}", + "{@spell fly}", + "{@spell plane shift}", + "{@spell true seeing}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Limited Magic Immunity", + "entries": [ + "The rakshasa can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The rakshasa makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a {@spell remove curse} spell or similar magic." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rakshasa.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "CUR", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rat", + "source": "MM", + "page": 335, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Rat|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 20 + }, + "str": 2, + "dex": 11, + "con": 9, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "cr": "0", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The rat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/rat.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Raven", + "source": "MM", + "page": 335, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Raven|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 10, + "fly": 50 + }, + "str": 2, + "dex": 14, + "con": 8, + "int": 2, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Mimicry", + "entries": [ + "The raven can mimic simple sounds it has heard, such as a person whispering, a baby crying, or an animal chittering. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "environment": [ + "swamp", + "hill", + "urban" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/raven.mp3" + }, + "traitTags": [ + "Mimicry" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Red Dragon Wyrmling", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 98, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + } + ], + "reprintedAs": [ + "Red Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "climb": 30, + "fly": 60 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 12, + "wis": 11, + "cha": 15, + "save": { + "dex": "+2", + "con": "+5", + "wis": "+2", + "cha": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "fire" + ], + "languages": [ + "Draconic" + ], + "cr": "4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 24 ({@damage 7d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/red-dragon-wyrmling.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Red Slaad", + "source": "MM", + "page": 276, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Red Slaad|XMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 16, + "int": 6, + "wis": 6, + "cha": 7, + "skill": { + "perception": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "cr": "5", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The slaad makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 14} Constitution saving throw or be infected with a disease\u2014a minuscule slaad egg.", + "A humanoid host can carry only one slaad egg to term at a time. Over three months, the egg moves to the chest cavity, gestates, and forms a {@creature slaad tadpole}. In the 24-hour period before giving birth, the host starts to feel unwell, its speed is halved, and it has disadvantage on attack rolls, ability checks, and saving throws. At birth, the tadpole chews its way through vital organs and out of the host's chest in 1 round, killing the host in the process.", + "If the disease is cured before the tadpole's emergence, the unborn slaad is disintegrated." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Control Gem", + "entries": [ + "Implanted in the slaad's brain is a magic control gem. The slaad must obey whoever possesses the gem and is immune to being {@condition charmed} while so controlled.", + "Certain spells can be used to acquire the gem. If the slaad fails its saving throw against {@spell imprisonment}, the spell can transfer the gem to the spellcaster's open hand, instead of imprisoning the slaad. A {@spell wish} spell, if cast in the slaad's presence, can be worded to acquire the gem.", + "A {@spell greater restoration} spell cast on the slaad destroys the gem without harming the slaad.", + "Someone who is proficient in Wisdom ({@skill Medicine}) can remove the gem from an {@condition incapacitated} slaad. Each try requires 1 minute of uninterrupted work and a successful {@dc 20} Wisdom ({@skill Medicine}) check. Each failed attempt deals 22 ({@damage 4d10}) psychic damage to the slaad." + ], + "_version": { + "name": "Red Slaad (Control Gem)", + "addAs": "trait" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/red-slaad.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "DIS", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Reef Shark", + "source": "MM", + "page": 336, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Reef Shark|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "swim": 40 + }, + "str": 14, + "dex": 13, + "con": 13, + "int": 1, + "wis": 10, + "cha": 4, + "skill": { + "perception": "+2" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 12, + "cr": "1/2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The shark has advantage on an attack roll against a creature if at least one of the shark's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The shark can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/reef-shark.mp3" + }, + "traitTags": [ + "Pack Tactics", + "Water Breathing" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Remorhaz", + "source": "MM", + "page": 258, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Remorhaz|XMM" + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "speed": { + "walk": 30, + "burrow": 20 + }, + "str": 24, + "dex": 13, + "con": 21, + "int": 4, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 10, + "immune": [ + "cold", + "fire" + ], + "cr": "11", + "trait": [ + { + "name": "Heated Body", + "entries": [ + "A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes 10 ({@damage 3d6}) fire damage." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}40 ({@damage 6d10 + 7}) piercing damage plus 10 ({@damage 3d6}) fire damage. If the target is a creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the remorhaz can't bite another target." + ] + }, + { + "name": "Swallow", + "entries": [ + "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the remorhaz, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the remorhaz's turns.", + "If the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a {@dc 15} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 15 feet of movement, exiting {@condition prone}." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/remorhaz.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Swallow" + ], + "damageTags": [ + "A", + "F", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Revenant", + "source": "MM", + "page": 259, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Revenant|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 13, + "wis": 16, + "cha": 18, + "save": { + "str": "+7", + "con": "+7", + "wis": "+6", + "cha": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + "psychic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "stunned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The revenant regains 10 hit points at the start of its turn. If the revenant takes fire or radiant damage, this trait doesn't function at the start of the revenant's next turn. The revenant's body is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "When the revenant's body is destroyed, its soul lingers. After 24 hours, the soul inhabits and animates another humanoid corpse on the same plane of existence and regains all its hit points. While the soul is bodiless, a {@spell wish} spell can be used to force the soul to go to the afterlife and not return." + ] + }, + { + "name": "Turn Immunity", + "entries": [ + "The revenant is immune to effects that turn undead." + ] + }, + { + "name": "Vengeful Tracker", + "entries": [ + "The revenant knows the distance to and direction of any creature against which it seeks revenge, even if the creature and the revenant are on different planes of existence. If the creature being tracked by the revenant dies, the revenant knows." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The revenant makes two fist attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. If the target is a creature against which the revenant has sworn vengeance, the target takes an extra 14 ({@damage 4d6}) bludgeoning damage. Instead of dealing damage, the revenant can grapple the target (escape {@dc 14}) provided the target is Large or smaller." + ] + }, + { + "name": "Vengeful Glare", + "entries": [ + "The revenant targets one creature it can see within 30 feet of it and against which it has sworn vengeance. The target must make a {@dc 15} Wisdom saving throw. On a failure, the target is {@condition paralyzed} until the revenant deals damage to it, or until the end of the revenant's next turn. When the paralysis ends, the target is {@condition frightened} of the revenant for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, with disadvantage if it can see the revenant, ending the {@condition frightened} condition on itself on a success." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Revenants with Spells and Weapons", + "entries": [ + "Revenants that were spellcasters before they died might retain some or all of their spellcasting capabilities. Similarly, revenants that wore armor and wielded weapons in life might continue to do so." + ] + } + ], + "environment": [ + "forest", + "swamp", + "hill", + "urban", + "desert", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/revenant.mp3" + }, + "traitTags": [ + "Regeneration", + "Rejuvenation", + "Turn Immunity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rhinoceros", + "source": "MM", + "page": 336, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "IDRotF" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Rhinoceros|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 8, + "con": 15, + "int": 2, + "wis": 12, + "cha": 6, + "passive": 11, + "cr": "2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the rhinoceros moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rhinoceros.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Riding Horse", + "source": "MM", + "page": 336, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Riding Horse|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 13, + "formula": "2d10 + 2" + }, + "speed": { + "walk": 60 + }, + "str": 16, + "dex": 10, + "con": 12, + "int": 2, + "wis": 11, + "cha": 7, + "passive": 10, + "cr": "1/4", + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/riding-horse.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Roc", + "source": "MM", + "page": 260, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Roc|XMM" + ], + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 248, + "formula": "16d20 + 80" + }, + "speed": { + "walk": 20, + "fly": 120 + }, + "str": 28, + "dex": 10, + "con": 20, + "int": 3, + "wis": 10, + "cha": 9, + "save": { + "dex": "+4", + "con": "+9", + "wis": "+4", + "cha": "+3" + }, + "skill": { + "perception": "+4" + }, + "passive": 14, + "cr": "11", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The roc has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The roc makes two attacks: one with its beak and one with its talons." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}27 ({@damage 4d8 + 9}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}23 ({@damage 4d6 + 9}) slashing damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, and the roc can't use its talons on another target." + ] + } + ], + "environment": [ + "mountain", + "hill", + "desert", + "coastal", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/roc.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Roper", + "source": "MM", + "page": 261, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Roper|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 18, + "dex": 8, + "con": 17, + "int": 7, + "wis": 16, + "cha": 6, + "skill": { + "perception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "cr": "5", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the roper remains motionless, it is indistinguishable from a normal cave formation, such as a stalagmite." + ] + }, + { + "name": "Grasping Tendrils", + "entries": [ + "The roper can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a tendril deals no damage to the roper, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a {@dc 15} Strength check against it." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The roper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d8 + 4}) piercing damage." + ] + }, + { + "name": "Tendril", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 50 ft., one creature. {@h}The target is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target is {@condition restrained} and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target." + ] + }, + { + "name": "Reel", + "entries": [ + "The roper pulls each creature {@condition grappled} by it up to 25 feet straight toward it." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/roper.mp3" + }, + "traitTags": [ + "False Appearance", + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rug of Smothering", + "group": [ + "Animated Objects" + ], + "source": "MM", + "page": 20, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Animated Rug of Smothering|XMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 33, + "formula": "6d10" + }, + "speed": { + "walk": 10 + }, + "str": 17, + "dex": 14, + "con": 10, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "2", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The rug is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the rug must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "Damage Transfer", + "entries": [ + "While it is grappling a creature, the rug takes only half the damage dealt to it, and the creature {@condition grappled} by the rug takes the other half." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the rug remains motionless, it is indistinguishable from a normal rug." + ] + } + ], + "action": [ + { + "name": "Smother", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature. {@h}The creature is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, {@condition blinded}, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/run-of-smothering.mp3" + }, + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rust Monster", + "source": "MM", + "page": 262, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Rust Monster|XMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 12, + "con": 13, + "int": 2, + "wis": 13, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "cr": "1/2", + "trait": [ + { + "name": "Iron Scent", + "entries": [ + "The rust monster can pinpoint, by scent, the location of ferrous metal within 30 feet of it." + ] + }, + { + "name": "Rust Metal", + "entries": [ + "Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Non magical ammunition made of metal that hits the rust monster is destroyed after dealing damage." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + }, + { + "name": "Antennae", + "entries": [ + "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a {@dc 11} Dexterity saving throw to avoid the rust monster's touch.", + "If the object touched is either metal armor or a metal shield being worn or carried, it takes a permanent and cumulative \u22121 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rust-monster.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Saber-Toothed Tiger", + "source": "MM", + "page": 336, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CoS" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Saber-Toothed Tiger|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 3, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "passive": 13, + "cr": "2", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The tiger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the tiger moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the tiger can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + } + ], + "environment": [ + "mountain", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/saber-toothed-tiger.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pounce" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Sahuagin", + "source": "MM", + "page": 263, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Sahuagin Warrior|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 12, + "wis": 13, + "cha": 9, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Sahuagin" + ], + "cr": "1/2", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sahuagin.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sahuagin Baron", + "source": "MM", + "page": 264, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Sahuagin Baron|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 76, + "formula": "9d10 + 27" + }, + "speed": { + "walk": 30, + "swim": 50 + }, + "str": 19, + "dex": 15, + "con": 16, + "int": 14, + "wis": 13, + "cha": 17, + "save": { + "dex": "+5", + "con": "+6", + "int": "+5", + "wis": "+4" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "languages": [ + "Sahuagin" + ], + "cr": "5", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sahuagin makes three attacks: one with his bite and two with his claws or trident." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sahuagin-baron.mp3" + }, + "attachedItems": [ + "trident|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sahuagin Priestess", + "source": "MM", + "page": 264, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Sahuagin Priest|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 12, + "wis": 14, + "cha": 13, + "skill": { + "perception": "+6", + "religion": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Sahuagin" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sahuagin is a 6th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell detect magic}", + "{@spell guiding bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon} (trident)" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell mass healing word}", + "{@spell tongues}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sahuagin makes two melee attacks: one with her bite and one with her claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sahuagin-priestess.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Salamander", + "source": "MM", + "page": 266, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Salamander|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 11, + "wis": 10, + "cha": 12, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire" + ], + "vulnerable": [ + "cold" + ], + "languages": [ + "Ignan" + ], + "cr": "5", + "trait": [ + { + "name": "Heated Body", + "entries": [ + "A creature that touches the salamander or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) fire damage." + ] + }, + { + "name": "Heated Weapons", + "entries": [ + "Any metal melee weapon the salamander wields deals an extra 3 ({@damage 1d6}) fire damage on a hit (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The salamander makes two attacks: one with its spear and one with its tail." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/salamander.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Satyr", + "source": "MM", + "page": 267, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Satyr|XMM" + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 16, + "con": 11, + "int": 12, + "wis": 10, + "cha": 14, + "skill": { + "perception": "+2", + "performance": "+6", + "stealth": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The satyr has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Satyr Pipes", + "entries": [ + "A satyr might carry panpipes that it can play to create magical effects. Usually, only one satyr in a group carries such pipes. If a satyr has pipes, it gains the following additional action option.", + { + "type": "entries", + "name": "Panpipes", + "entries": [ + "The satyr plays its pipes and chooses one of the following magical effects: a charming melody, a frightening strain, or a gentle lullaby. Any creature within 60 feet of the satyr that can hear the pipes must succeed on a {@dc 13} Wisdom saving throw or be affected as described below. Other satyrs and creature that can't be {@condition charmed} are unaffected", + "An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to these panpipes for the next 24 hours.", + { + "type": "variantSub", + "name": "Charming Melody", + "entries": [ + "The creature is {@condition charmed} by the satyr for 1 minute. If the satyr or any of its companions harms the creature, the effect on it ends immediately." + ] + }, + { + "type": "variantSub", + "name": "Frightening Strain", + "entries": [ + "The creature is {@condition frightened} for 1 minute." + ] + }, + { + "type": "variantSub", + "name": "Gentle Lullaby", + "entries": [ + "The creature falls asleep and is {@condition unconscious} for 1 minute. The effect ends if the creature takes damage or if someone takes an action to shake the creature awake." + ] + } + ] + } + ], + "_version": { + "name": "Satyr Piper", + "addHeadersAs": "trait" + } + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/satyr.mp3" + }, + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scarecrow", + "source": "MM", + "page": 268, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "WDH" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Scarecrow|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "C", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 13, + "con": 11, + "int": 10, + "wis": 10, + "cha": 13, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the scarecrow remains motionless, it is indistinguishable from an ordinary, inanimate scarecrow." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scarecrow makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage. If the target is a creature, it must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} until the end of the scarecrow's next turn." + ] + }, + { + "name": "Terrifying Glare", + "entries": [ + "The scarecrow targets one creature it can see within 30 feet of it. If the target can see the scarecrow, the target must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition frightened} until the end of the scarecrow's next turn. The {@condition frightened} target is {@condition paralyzed}." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/scarecrow.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scorpion", + "source": "MM", + "page": 337, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "PSX" + } + ], + "reprintedAs": [ + "Scorpion|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 10 + }, + "str": 2, + "dex": 11, + "con": 8, + "int": 1, + "wis": 8, + "cha": 2, + "senses": [ + "blindsight 10 ft." + ], + "passive": 9, + "cr": "0", + "action": [ + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}1 piercing damage, and the target must make a {@dc 9} Constitution saving throw, taking 4 ({@damage 1d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/scorpion.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Scout", + "source": "MM", + "page": 349, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Scout|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 11, + "wis": 13, + "cha": 11, + "skill": { + "nature": "+4", + "perception": "+5", + "stealth": "+6", + "survival": "+5" + }, + "passive": 15, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Keen Hearing and Sight", + "entries": [ + "The scout has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scout makes two melee attacks or two ranged attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, ranged 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "coastal", + "mountain", + "grassland", + "hill", + "arctic", + "forest", + "swamp", + "underdark", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/scout.mp3" + }, + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sea Hag", + "source": "MM", + "page": 179, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Sea Hag|XMM" + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 16, + "dex": 13, + "con": 16, + "int": 12, + "wis": 12, + "cha": 13, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Aquan", + "Common", + "Giant" + ], + "cr": { + "cr": "2", + "coven": "4" + }, + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The hag can breathe air and water." + ] + }, + { + "name": "Horrific Appearance", + "entries": [ + "Any humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a {@dc 11} Wisdom saving throw. On a failed save, the creature is {@condition frightened} for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Horrific Appearance for the next 24 hours.", + "Unless the target is {@status surprised} or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the hag." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Death Glare", + "entries": [ + "The hag targets one {@condition frightened} creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a {@dc 11} Wisdom saving throw against this magic or drop to 0 hit points." + ] + }, + { + "name": "Illusory Appearance", + "entries": [ + "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.", + "The changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a {@dc 16} Intelligence ({@skill Investigation}) check to discern that the hag is disguised." + ] + } + ], + "legendaryGroup": { + "name": "Sea Hag", + "source": "MM" + }, + "variant": [ + { + "type": "inset", + "name": "Hag Covens", + "entries": [ + "When hags must work together, they form covens, in spite of their selfish natures. A coven is made up of hags of any type, all of whom are equals within the group. However, each of the hags continues to desire more personal power.", + "A coven consists of three hags so that any arguments between two hags can be settled by the third. If more than three hags ever come together, as might happen if two covens come into conflict, the result is usually chaos.", + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save DC is 12 + the hag's Intelligence modifier, and the spell attack bonus is 4 + the hag's Intelligence modifier." + ] + }, + { + "type": "entries", + "name": "Hag Eye", + "entries": [ + "A hag coven can craft a magic item called a hag eye, which is made from a real eye coated in varnish and often fitted to a pendant or other wearable item. The hag eye is usually entrusted to a minion for safekeeping and transport. A hag in the coven can take an action to see what the hag eye sees if the hag eye is on the same plane of existence. A hag eye has AC 10, 1 hit point, and darkvision with a radius of 60 feet. If it is destroyed, each coven member takes {@damage 3d10} psychic damage and is {@condition blinded} for 24 hours.", + "A hag coven can have only one hag eye at a time, and creating a new one requires all three members of the coven to perform a ritual. The ritual takes 1 hour, and the hags can't perform it while {@condition blinded}. During the ritual, if the hags take any action other than performing the ritual, they must start over." + ] + } + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sea-hag.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AQ", + "C", + "GI" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "CW", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Sea Hag (Coven)", + "source": "MM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "4", + "variant": null + } + ] + }, + { + "name": "Sea Horse", + "source": "MM", + "page": 337, + "srd": true, + "basicRules": true, + "reprintedAs": [ + "Seahorse|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "swim": 20 + }, + "str": 1, + "dex": 12, + "con": 8, + "int": 1, + "wis": 10, + "cha": 2, + "passive": 10, + "cr": { + "cr": "0", + "xp": 0 + }, + "trait": [ + { + "name": "Water Breathing", + "entries": [ + "The sea horse can breathe only underwater." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/sea-horse.mp3" + }, + "traitTags": [ + "Water Breathing" + ], + "hasToken": true + }, + { + "name": "Shadow", + "source": "MM", + "page": 269, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "SjA" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Shadow|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 40 + }, + "str": 6, + "dex": 14, + "con": 13, + "int": 6, + "wis": 10, + "cha": 8, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "cr": "1/2", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The shadow can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the shadow can take the Hide action as a bonus action. Its stealth bonus is also improved to +6." + ] + }, + { + "name": "Sunlight Weakness", + "entries": [ + "While in sunlight, the shadow has disadvantage on attack rolls, ability checks, and saving throws." + ] + } + ], + "action": [ + { + "name": "Strength Drain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d6 + 2}) necrotic damage, and the target's Strength score is reduced by {@dice 1d4}. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.", + "If a non-evil humanoid dies from this attack, a new shadow rises from the corpse {@dice 1d4} hours later." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shadow.mp3" + }, + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadow Demon", + "source": "MM", + "page": 64, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Shadow Demon|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 1, + "dex": 17, + "con": 12, + "int": 14, + "wis": 13, + "cha": 14, + "save": { + "dex": "+5", + "cha": "+4" + }, + "skill": { + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "necrotic", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "lightning", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The demon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Light Sensitivity", + "entries": [ + "While in bright light, the demon has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the demon can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) psychic damage or, if the demon had advantage on the attack roll, 17 ({@damage 4d6 + 3}) psychic damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shadow-demon.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Light Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "O", + "Y" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shambling Mound", + "source": "MM", + "page": 270, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Shambling Mound|XMM" + ], + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 20, + "swim": 20 + }, + "str": 18, + "dex": 8, + "con": 16, + "int": 5, + "wis": 10, + "cha": 5, + "skill": { + "stealth": "+2" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "lightning" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion" + ], + "cr": "5", + "trait": [ + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the shambling mound is subjected to lightning damage, it takes no damage and regains a number of hit points equal to the lightning damage dealt." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is {@condition grappled} (escape {@dc 14}), and the shambling mound uses its Engulf on it." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Engulf", + "entries": [ + "The shambling mound engulfs a Medium or smaller creature {@condition grappled} by it. The engulfed target is {@condition blinded}, {@condition restrained}, and unable to breathe, and it must succeed on a {@dc 14} Constitution saving throw at the start of each of the mound's turns or take 13 ({@damage 2d8 + 4}) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shambling-mound.mp3" + }, + "traitTags": [ + "Damage Absorption" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shield Guardian", + "alias": [ + "Shield Golem" + ], + "source": "MM", + "page": 271, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Shield Guardian|XMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 8, + "con": 18, + "int": 7, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands commands given in any language but can't speak" + ], + "cr": "7", + "trait": [ + { + "name": "Bound", + "entries": [ + "The shield guardian is magically bound to an amulet. As long as the guardian and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the guardian to travel to it, and the guardian knows the distance and direction to the amulet. If the guardian is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the guardian." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The shield guardian regains 10 hit points at the start of its turn if it has at least 1 hit point." + ] + }, + { + "name": "Spell Storing", + "entries": [ + "A spellcaster who wears the shield guardian's amulet can cause the guardian to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the guardian. The spell has no effect but is stored within the guardian. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the guardian casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The guardian makes two fist attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Shield", + "entries": [ + "When a creature makes an attack against the wearer of the guardian's amulet, the guardian grants a +2 bonus to the wearer's AC if the guardian is within 5 feet of the wearer." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shield-guardian.mp3" + }, + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "X" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shrieker", + "source": "MM", + "page": 138, + "srd": true, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "PaBTSO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Shrieker Fungus|XMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 5 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 0 + }, + "str": 1, + "dex": 1, + "con": 10, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "conditionImmune": [ + "blinded", + "deafened", + "frightened" + ], + "cr": "0", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the shrieker remains motionless, it is indistinguishable from an ordinary fungus." + ] + } + ], + "reaction": [ + { + "name": "Shriek", + "entries": [ + "When bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it. The shrieker continues to shriek until the disturbance moves out of range and for {@dice 1d4} of the shrieker's turns afterward." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shrieker.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Silver Dragon Wyrmling", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 118, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Silver Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 12, + "wis": 11, + "cha": 15, + "save": { + "dex": "+2", + "con": "+5", + "wis": "+2", + "cha": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Cold Breath", + "entry": "The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a {@dc 13} Constitution saving throw, taking 18 ({@damage 4d8}) cold damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Paralyzing Breath", + "entry": "The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or be {@condition 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." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/silver-dragon-wyrmling.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skeleton", + "source": "MM", + "page": 272, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Skeleton|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "armor scraps" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 15, + "int": 6, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands all languages it spoke in life but can't speak" + ], + "cr": "1/4", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/skeleton.mp3" + }, + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Slaad Tadpole", + "source": "MM", + "page": 276, + "otherSources": [ + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Slaad Tadpole|XMM" + ], + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "C", + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 10, + "formula": "4d4" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 10, + "int": 3, + "wis": 5, + "cha": 3, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "languages": [ + "understands Slaad but can't speak" + ], + "cr": "1/8", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/slaad-tadpole.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Smoke Mephit", + "source": "MM", + "page": 217, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Smoke Mephit|XMM" + ], + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 6, + "dex": 14, + "con": 12, + "int": 10, + "wis": 10, + "cha": 11, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Auran", + "Ignan" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "type": "spellcasting", + "headerEntries": [ + "The mephit can innately cast {@spell dancing lights}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "will": [ + "{@spell dancing lights}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the mephit dies, it leaves behind a cloud of smoke that fills a 5-foot-radius sphere centered on its space. The sphere is heavily obscured. Wind disperses the cloud, which otherwise lasts for 1 minute." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Cinder Breath {@recharge}", + "entries": [ + "The mephit exhales a 15-foot cone of smoldering ash. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw or be {@condition blinded} until the end of the mephit's next turn." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Mephits (1/Day)", + "entries": [ + "The mephit has a {@chance 25|25 percent|25% summoning chance} chance of summoning {@dice 1d4} mephits of its kind. A summoned mephit appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other mephits. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Smoke Mephit (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/smoke-mephit.mp3" + }, + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "AU", + "IG" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Solar", + "group": [ + "Angels" + ], + "source": "MM", + "page": 18, + "srd": true, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Solar|XMM" + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 243, + "formula": "18d10 + 144" + }, + "speed": { + "walk": 50, + "fly": 150 + }, + "str": 26, + "dex": 22, + "con": 26, + "int": 25, + "wis": 25, + "cha": 30, + "save": { + "int": "+14", + "wis": "+14", + "cha": "+17" + }, + "skill": { + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The solar's spellcasting ability is Charisma (spell save {@dc 25}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect evil and good}", + "{@spell invisibility} (self only)" + ], + "daily": { + "3e": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell resurrection}" + ], + "1e": [ + "{@spell commune}", + "{@spell control weather}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Angelic Weapons", + "entries": [ + "The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals an extra {@damage 6d8} radiant damage (included in the attack)." + ] + }, + { + "name": "Divine Awareness", + "entries": [ + "The solar knows if it hears a lie." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The solar has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The solar makes two greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) slashing damage plus 27 ({@damage 6d8}) radiant damage." + ] + }, + { + "name": "Slaying Longbow", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 150/600 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage plus 27 ({@damage 6d8}) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a {@dc 15} Constitution saving throw or die." + ] + }, + { + "name": "Flying Sword", + "entries": [ + "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies." + ] + }, + { + "name": "Healing Touch (4/Day)", + "entries": [ + "The solar touches another creature. The target magically regains 40 ({@dice 8d8 + 4}) hit points and is freed from any curse, disease, poison, blindness, or deafness." + ] + } + ], + "legendary": [ + { + "name": "Teleport", + "entries": [ + "The solar magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ] + }, + { + "name": "Searing Burst (Costs 2 Actions)", + "entries": [ + "The solar emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a {@dc 23} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage plus 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Blinding Gaze (Costs 3 Actions)", + "entries": [ + "The solar targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a {@dc 15} Constitution saving throw or be {@condition blinded} until magic such as the {@spell lesser restoration} spell removes the blindness." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/solar.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "F", + "P", + "R", + "S" + ], + "damageTagsSpell": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spectator", + "group": [ + "Beholders" + ], + "source": "MM", + "page": 30, + "basicRules": true, + "otherSources": [ + { + "source": "LMoP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "RMBRE" + }, + { + "source": "IDRotF" + }, + { + "source": "SjA" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Spectator|XMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 8, + "dex": 14, + "con": 14, + "int": 13, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "3", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) piercing damage." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The spectator shoots up to two of the following magical eye rays at one or two creatures it can see within 90 feet of it. It can use each ray only once on a turn.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Confusion Ray", + "style": "italic", + "entry": "The target must succeed on a {@dc 13} Wisdom saving throw, or it can't take reactions until the end of its next turn. On its turn, the target can't move, and it uses its action to make a melee or ranged attack against a randomly determined creature within range. If the target can't attack, it does nothing on its turn." + }, + { + "type": "item", + "name": "2. Paralyzing Ray", + "style": "italic", + "entry": "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "3. Fear Ray", + "style": "italic", + "entry": "The target must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the spectator is visible to the target, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "4. Wounding Ray", + "style": "italic", + "entry": "The target must make a {@dc 13} Constitution saving throw, taking 16 ({@damage 3d10}) necrotic damage on a failed save, or half as much damage on a successful one." + } + ] + } + ] + }, + { + "name": "Create Food and Water", + "entries": [ + "The spectator magically creates enough food and water to sustain itself for 24 hours." + ] + } + ], + "reaction": [ + { + "name": "Spell Reflection", + "entries": [ + "If the spectator makes a successful saving throw against a spell, or a spell attack misses it, the spectator can choose another creature (including the spellcaster) it can see within 30 feet of it. The spell targets the chosen creature instead of the spectator. If the spell forced a saving throw, the chosen creature makes its own save. If the spell was an attack, the attack roll is rerolled against the chosen creature." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spectator.mp3" + }, + "altArt": [ + { + "name": "Forge of Spells Spectator", + "source": "PaBTSO" + }, + { + "name": "Spectator", + "source": "RMBRE" + } + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Specter", + "source": "MM", + "page": 279, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Specter|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 14, + "con": 11, + "int": 10, + "wis": 10, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "understands all languages it knew in life but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The specter can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the specter has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Life Drain", + "entries": [ + "{@atk ms} {@hit 4} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) necrotic damage. The target must succeed on a {@dc 10} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/specter.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "HPR" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spider", + "source": "MM", + "page": 337, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "PSX" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Spider|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 2, + "dex": 14, + "con": 8, + "int": 1, + "wis": 10, + "cha": 2, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "cr": "0", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The spider ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}1 piercing damage, and the target must succeed on a {@dc 9} Constitution saving throw or take 2 ({@damage 1d4}) poison damage." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/spider.mp3" + }, + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Spined Devil", + "source": "MM", + "page": 78, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Spined Devil|XMM" + ], + "size": [ + "S" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 11, + "wis": 14, + "cha": 8, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "cr": "2", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the devil's darkvision." + ] + }, + { + "name": "Flyby", + "entries": [ + "The devil doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "name": "Limited Spines", + "entries": [ + "The devil has twelve tail spines. Used spines regrow by the time the devil finishes a long rest." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The devil has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devil makes two attacks: one with its bite and one with its fork or two with its tail spines." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) slashing damage." + ] + }, + { + "name": "Fork", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ] + }, + { + "name": "Tail Spine", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 20/80 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spined-devil.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Flyby", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I", + "TP" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spirit Naga", + "source": "MM", + "page": 234, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Spirit Naga|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 17, + "con": 14, + "int": 16, + "wis": 15, + "cha": 16, + "save": { + "dex": "+6", + "con": "+5", + "wis": "+5", + "cha": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "Abyssal", + "Common" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The naga is a 10th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell lightning bolt}", + "{@spell water breathing}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dominate person}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Rejuvenation", + "entries": [ + "If it dies, the naga returns to life in {@dice 1d6} days and regains all its hit points. Only a {@spell wish} spell can prevent this trait from functioning." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must make a {@dc 13} Constitution saving throw, taking 31 ({@damage 7d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spirit-naga.mp3" + }, + "traitTags": [ + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "C", + "L", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sprite", + "source": "MM", + "page": 283, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Sprite|XMM" + ], + "size": [ + "T" + ], + "type": "fey", + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 10, + "fly": 40 + }, + "str": 3, + "dex": 18, + "con": 10, + "int": 14, + "wis": 13, + "cha": 11, + "skill": { + "perception": "+3", + "stealth": "+8" + }, + "passive": 13, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "1/4", + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 40/160 ft., one target. {@h}1 piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or become {@condition poisoned} for 1 minute. If its saving throw result is 5 or lower, the {@condition poisoned} target falls {@condition unconscious} for the same duration, or until it takes damage or another creature takes an action to shake it awake." + ] + }, + { + "name": "Heart Sight", + "entries": [ + "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a {@dc 10} Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw." + ] + }, + { + "name": "Invisibility", + "entries": [ + "The sprite magically turns {@condition invisible} until it attacks or casts a spell, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the sprite wears or carries is {@condition invisible} with it." + ] + } + ], + "environment": [ + "forest" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/sprite.mp3" + }, + "attachedItems": [ + "longsword|phb", + "shortbow|phb" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "invisible", + "poisoned" + ], + "savingThrowForced": [ + "charisma", + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spy", + "source": "MM", + "page": 349, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Spy|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 10, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "investigation": "+5", + "perception": "+6", + "persuasion": "+5", + "sleight of hand": "+4", + "stealth": "+4" + }, + "passive": 16, + "languages": [ + "any two languages" + ], + "cr": "1", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of its turns, the spy can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "The spy deals an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the spy that isn't {@condition incapacitated} and the spy doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spy makes two melee attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spy.mp3" + }, + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Steam Mephit", + "source": "MM", + "page": 217, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Steam Mephit|XMM" + ], + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 21, + "formula": "6d6" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 5, + "dex": 11, + "con": 10, + "int": 11, + "wis": 10, + "cha": 12, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Aquan", + "Ignan" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "type": "spellcasting", + "headerEntries": [ + "The mephit can innately cast {@spell blur}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "will": [ + "{@spell blur}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the mephit dies, it explodes in a cloud of steam. Each creature within 5 feet of the mephit must succeed on a {@dc 10} Dexterity saving throw or take 4 ({@damage 1d8}) fire damage." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d4}) slashing damage plus 2 ({@damage 1d4}) fire damage." + ] + }, + { + "name": "Steam Breath {@recharge}", + "entries": [ + "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw, taking 4 ({@damage 1d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Mephits (1/Day)", + "entries": [ + "The mephit has a {@chance 25|25 percent|25% summoning chance} chance of summoning {@dice 1d4} mephits of its kind. A summoned mephit appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other mephits. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Steam Mephit (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/steam-mephit.mp3" + }, + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "AQ", + "IG" + ], + "damageTags": [ + "F", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stirge", + "source": "MM", + "page": 284, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Stirge|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 10, + "fly": 40 + }, + "str": 4, + "dex": 16, + "con": 11, + "int": 2, + "wis": 8, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "cr": "1/8", + "action": [ + { + "name": "Blood Drain", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 ({@dice 1d4 + 3}) hit points due to blood loss.", + "The stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge." + ] + } + ], + "environment": [ + "grassland", + "forest", + "swamp", + "hill", + "urban", + "desert", + "coastal", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stirge.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Giant", + "source": "MM", + "page": 156, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "MOT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Stone Giant|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 15, + "con": 20, + "int": 10, + "wis": 12, + "cha": 9, + "save": { + "dex": "+5", + "con": "+8", + "wis": "+4" + }, + "skill": { + "athletics": "+12", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Giant" + ], + "cr": "7", + "trait": [ + { + "name": "Stone Camouflage", + "entries": [ + "The giant has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two greatclub attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Rock Catching", + "entries": [ + "If a rock or similar object is hurled at the giant, the giant can, with a successful {@dc 10} Dexterity saving throw, catch the missile and take no bludgeoning damage from it." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "New Giant Options", + "entries": [ + "Some adult stone giants like to grab enemies and fling them through the air. They can also roll boulders across the ground, striking multiple enemies in a line. These abilities are represented by the following action options.", + { + "name": "Fling", + "type": "entries", + "entries": [ + "The giant tries to throw a Small or Medium creature within 10 feet of it. The target must succeed on a {@dc 17} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of the giant's choice and land {@condition prone}, taking 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown." + ] + }, + { + "name": "Rolling Rock", + "type": "entries", + "entries": [ + "The giant sends a rock tumbling along the ground in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 17} Dexterity saving throw, taking 22 ({@damage 3d10 + 6}) bludgeoning damage and falling {@condition prone} on a failed save" + ] + } + ], + "_version": { + "name": "Stone Giant (Optional Actions)", + "addHeadersAs": "action" + }, + "source": "SKT", + "page": 246 + } + ], + "environment": [ + "underdark", + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-giant.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Golem", + "source": "MM", + "page": 170, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Stone Golem|XMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 9, + "con": 20, + "int": 3, + "wis": 11, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "10", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The golem has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Slow {@recharge 5}", + "entries": [ + "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a {@dc 17} Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-golem.mp3" + }, + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Storm Giant", + "source": "MM", + "page": 156, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Storm Giant|XMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hp": { + "average": 230, + "formula": "20d12 + 100" + }, + "speed": { + "walk": 50, + "swim": 50 + }, + "str": 29, + "dex": 14, + "con": 20, + "int": 16, + "wis": 18, + "cha": 18, + "save": { + "str": "+14", + "con": "+10", + "wis": "+9", + "cha": "+9" + }, + "skill": { + "arcana": "+8", + "athletics": "+14", + "history": "+8", + "perception": "+9" + }, + "passive": 19, + "resist": [ + "cold" + ], + "immune": [ + "lightning", + "thunder" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell feather fall}", + "{@spell levitate}", + "{@spell light}" + ], + "daily": { + "3e": [ + "{@spell control weather}", + "{@spell water breathing}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The giant can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}30 ({@damage 6d6 + 9}) slashing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 14} to hit, range 60/240 ft., one target. {@h}35 ({@damage 4d12 + 9}) bludgeoning damage." + ] + }, + { + "name": "Lightning Strike {@recharge 5}", + "entries": [ + "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a {@dc 17} Dexterity saving throw, taking 54 ({@damage 12d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "New Giant Options", + "entries": [ + "Some adult storm giants can channel thunderous power through their bodies and release it with a deafening stomp. This ability is represented by the following action option.", + { + "type": "entries", + "name": "Thunderous Stomp {@recharge}", + "entries": [ + "The storm giant stomps the ground, triggering a thunderclap. All other creatures within 15 feet of the giant must succeed on a {@dc 17} Constitution saving throw or take 33 ({@damage 6d10}) thunder damage and be {@condition deafened} until the start of the giant's next turn. On a successful save, a creature takes half as much damage and isn't {@condition deafened}. The thunderclap can be heard out to a range of 1,200 feet." + ] + } + ], + "_version": { + "name": "Storm Giant (Optional Actions)", + "addHeadersAs": "action" + }, + "source": "SKT", + "page": 246 + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/storm-giant.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "L", + "S", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "deafened" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Succubus", + "source": "MM", + "page": 285, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Succubus|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 8, + "dex": 17, + "con": 13, + "int": 15, + "wis": 12, + "cha": 20, + "skill": { + "deception": "+9", + "insight": "+5", + "perception": "+5", + "persuasion": "+9", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "telepathy 60 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Telepathic Bond", + "entries": [ + "The fiend ignores the range restriction on its telepathy when communicating with a creature it has {@condition charmed}. The two don't even need to be on the same plane of existence." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "The fiend can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Without wings, the fiend loses its flying speed. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "action": [ + { + "name": "Claw (Fiend Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Charm", + "entries": [ + "One humanoid the fiend can see within 30 feet of it must succeed on a {@dc 15} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.", + "The fiend can have only one target {@condition charmed} at a time. If it charms another, the effect on the previous target ends." + ] + }, + { + "name": "Draining Kiss", + "entries": [ + "The fiend kisses a creature {@condition charmed} by it or a willing creature. The target must make a {@dc 15} Constitution saving throw against this magic, taking 32 ({@damage 5d10 + 5}) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + }, + { + "name": "Etherealness", + "entries": [ + "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/succubus-incubus.mp3" + }, + "traitTags": [ + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C", + "I", + "TP" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Bats", + "source": "MM", + "page": 337, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "AATM" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Swarm of Bats|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 0, + "fly": 30 + }, + "str": 5, + "dex": 15, + "con": 10, + "int": 2, + "wis": 12, + "cha": 4, + "senses": [ + "blindsight 60 ft." + ], + "passive": 11, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/4", + "trait": [ + { + "name": "Echolocation", + "entries": [ + "The swarm can't use its blindsight while {@condition deafened}." + ] + }, + { + "name": "Keen Hearing", + "entries": [ + "The swarm has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny bat. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one creature in the swarm's space. {@h}5 ({@damage 2d4}) piercing damage, or 2 ({@damage 1d4}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-bats.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Beetles", + "source": "MM", + "page": 338, + "srd": true, + "reprintedAs": [ + "Swarm of Insects|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 20, + "burrow": 5, + "climb": 20 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 1, + "wis": 7, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "swamp", + "hill", + "urban", + "desert" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swarm of Centipedes", + "source": "MM", + "page": 338, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Swarm of Insects|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 1, + "wis": 7, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer.", + "A creature reduced to 0 hit points by a swarm of centipedes is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and {@condition paralyzed} while {@condition poisoned} in this way." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "swamp", + "hill", + "urban", + "desert" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swarm of Insects", + "source": "MM", + "page": 338, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "LoX" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + } + ], + "reprintedAs": [ + "Swarm of Insects|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 1, + "wis": 7, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "swamp", + "hill", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-insects.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swarm of Poisonous Snakes", + "source": "MM", + "page": 338, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Swarm of Venomous Snakes|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 8, + "dex": 18, + "con": 11, + "int": 1, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 10 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny snake. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 0 ft., one creature in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, or 3 ({@damage 1d6}) piercing damage if the swarm has half of its hit points or fewer. The target must make a {@dc 10} Constitution saving throw, taking 14 ({@damage 4d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-poisonous-snakes.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swarm of Quippers", + "source": "MM", + "page": 338, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "LR" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSA" + }, + { + "source": "GHLoE" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Swarm of Piranhas|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 28, + "formula": "8d8 - 8" + }, + "speed": { + "walk": 0, + "swim": 40 + }, + "str": 13, + "dex": 16, + "con": 9, + "int": 1, + "wis": 7, + "cha": 2, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The swarm has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny quipper. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "The swarm can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one creature in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-quippers.mp3" + }, + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Rats", + "source": "MM", + "page": 339, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Swarm of Rats|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 24, + "formula": "7d8 - 7" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 11, + "con": 9, + "int": 2, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/4", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The swarm has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 0 ft., one target in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, or 3 ({@damage 1d6}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-rats.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Ravens", + "source": "MM", + "page": 339, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Swarm of Ravens|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 24, + "formula": "7d8 - 7" + }, + "speed": { + "walk": 10, + "fly": 50 + }, + "str": 6, + "dex": 14, + "con": 8, + "int": 3, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+5" + }, + "passive": 15, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/4", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny raven. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Beaks", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, or 3 ({@damage 1d6}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "forest", + "swamp", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-ravens.mp3" + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Spiders", + "source": "MM", + "page": 338, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "MOT" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Swarm of Insects|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 1, + "wis": 7, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the swarm knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The swarm ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "swamp", + "hill", + "urban", + "desert" + ], + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swarm of Wasps", + "source": "MM", + "page": 338, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Swarm of Insects|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 5, + "fly": 30 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 1, + "wis": 7, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "1/2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "underdark", + "grassland", + "forest", + "swamp", + "hill", + "urban", + "desert" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Tarrasque", + "source": "MM", + "page": 286, + "srd": true, + "otherSources": [ + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "LoX" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Tarrasque|XMM" + ], + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "titan" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 25, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 676, + "formula": "33d20 + 330" + }, + "speed": { + "walk": 40 + }, + "str": 30, + "dex": 11, + "con": 30, + "int": 3, + "wis": 11, + "cha": 11, + "save": { + "int": "+5", + "wis": "+9", + "cha": "+9" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "poisoned" + ], + "cr": "30", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the tarrasque fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The tarrasque has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Reflective Carapace", + "entries": [ + "Any time the tarrasque is targeted by a {@spell magic missile} spell, a line spell, or a spell that requires a ranged attack roll, roll a {@dice d6}. On a 1 to 5, the tarrasque is unaffected. On a 6, the tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The tarrasque deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}36 ({@damage 4d12 + 10}) piercing damage. If the target is a creature, it is {@condition grappled} (escape {@dc 20}). Until this grapple ends, the target is {@condition restrained}, and the tarrasque can't bite another target." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}28 ({@damage 4d8 + 10}) slashing damage." + ] + }, + { + "name": "Horns", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}32 ({@damage 4d10 + 10}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}24 ({@damage 4d6 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Swallow", + "entries": [ + "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the tarrasque, and it takes 56 ({@damage 16d6}) acid damage at the start of each of the tarrasque's turns.", + "If the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 30 feet of movement, exiting {@condition prone}." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The tarrasque makes one claw attack or tail attack." + ] + }, + { + "name": "Move", + "entries": [ + "The tarrasque moves up to half its speed." + ] + }, + { + "name": "Chomp (Costs 2 Actions)", + "entries": [ + "The tarrasque makes one bite attack or uses its Swallow." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tarrasque.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Frightful Presence", + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "frightened", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thri-kreen", + "source": "MM", + "page": 288, + "otherSources": [ + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Thri-kreen Marauder|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "thri-kreen" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 15, + "con": 13, + "int": 8, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+4", + "survival": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Thri-kreen" + ], + "cr": "1", + "trait": [ + { + "name": "Chameleon Carapace", + "entries": [ + "The thri-kreen can change the color of its carapace to match the color and texture of its surroundings. As a result, it has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The thri-kreen's long jump is up to 30 feet and its high jump is up to 15 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thri-kreen makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 minute. If the saving throw fails by 5 or more, the target is also {@condition paralyzed} while {@condition poisoned} in this way. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Thri-kreen Weapons and Psionics", + "entries": [ + "Some thri-kreen employ special martial weapons. A gythka is a two-handed polearm with a blade at each end. A chatkcha is a flat, triangular wedge with three serrated blades (a light thrown weapon). A thri-kreen armed with a gythka and chatkchas gains the following action options:", + { + "name": "Weapons Multiattack", + "type": "entries", + "entries": [ + "The thri-kreen makes two gythka attacks or two chatkcha attacks." + ] + }, + { + "name": "Gythka", + "type": "entries", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + }, + { + "name": "Chatkcha", + "type": "entries", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + "A few thri-kreen manifest psionic abilities, using their powers to aid the hunt and communicate more easily with outsiders.", + "A psionic thri-kreen has telepathy out to a range of 60 feet and gains the following additional trait:", + { + "type": "spellcasting", + "name": "Innate Spellcasting (Psionics)", + "headerEntries": [ + "The thri-kreen's innate spellcasting ability is Wisdom. The thri-kreen can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is {@condition invisible})" + ], + "daily": { + "1": [ + "{@spell invisibility} (self only)" + ], + "2e": [ + "{@spell blur}", + "{@spell magic weapon}" + ] + }, + "ability": "wis" + } + ] + } + ], + "environment": [ + "grassland", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/thri-kreen.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible", + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Thri-kreen (Weapons and Psionics)", + "source": "MM", + "_mod": { + "action": { + "mode": "appendArr", + "items": [ + { + "name": "Weapons Multiattack", + "type": "entries", + "entries": [ + "The thri-kreen makes two gythka attacks or two chatkcha attacks." + ] + }, + { + "name": "Gythka", + "type": "entries", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + }, + { + "name": "Chatkcha", + "type": "entries", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ] + } + }, + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "headerEntries": [ + "The thri-kreen's innate spellcasting ability is Wisdom. The thri-kreen can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is {@condition invisible})" + ], + "daily": { + "1": [ + "{@spell invisibility} (self only)" + ], + "2e": [ + "{@spell blur}", + "{@spell magic weapon}" + ] + }, + "ability": "wis" + } + ], + "variant": null + } + ] + }, + { + "name": "Thug", + "source": "MM", + "page": 350, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Tough|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 11, + "skill": { + "intimidation": "+2" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thug makes two melee attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/thug.mp3" + }, + "attachedItems": [ + "heavy crossbow|phb", + "mace|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tiger", + "source": "MM", + "page": 339, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Tiger|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 37, + "formula": "5d10 + 10" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 15, + "con": 14, + "int": 3, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The tiger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the tiger moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the tiger can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tiger.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pounce" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Treant", + "source": "MM", + "page": 289, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Treant|XMM" + ], + "size": [ + "H" + ], + "type": "plant", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 23, + "dex": 8, + "con": 21, + "int": 12, + "wis": 16, + "cha": 12, + "passive": 13, + "resist": [ + "bludgeoning", + "piercing" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "cr": "9", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the treant remains motionless, it is indistinguishable from a normal tree." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The treant deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The treant makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 60/180 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ] + }, + { + "name": "Animate Trees (1/Day)", + "entries": [ + "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a {@creature treant}, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/treant.mp3" + }, + "traitTags": [ + "False Appearance", + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU", + "E", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tribal Warrior", + "source": "MM", + "page": 350, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Warrior Infantry|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 8, + "wis": 11, + "cha": 8, + "passive": 10, + "languages": [ + "any one language" + ], + "cr": "1/8", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The warrior has advantage on an attack roll against a creature if at least one of the warrior's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "coastal", + "mountain", + "grassland", + "hill", + "arctic", + "forest", + "swamp", + "underdark", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tribal-warrior.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Triceratops", + "group": [ + "Dinosaurs" + ], + "source": "MM", + "page": 80, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Triceratops|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d12 + 30" + }, + "speed": { + "walk": 50 + }, + "str": 22, + "dex": 9, + "con": 17, + "int": 2, + "wis": 11, + "cha": 5, + "passive": 10, + "cr": "5", + "trait": [ + { + "name": "Trampling Charge", + "entries": [ + "If the triceratops moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the triceratops can make one stomp attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}24 ({@damage 4d8 + 6}) piercing damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition prone} creature. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage" + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/triceratops.mp3" + }, + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tridrone", + "group": [ + "Modrons" + ], + "source": "MM", + "page": 225, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Modron Tridrone|XMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 13, + "con": 12, + "int": 9, + "wis": 10, + "cha": 9, + "senses": [ + "truesight 120 ft." + ], + "passive": 10, + "languages": [ + "Modron" + ], + "cr": "1/2", + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The tridrone can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the tridrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tridrone makes three fist attacks or three javelin attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Rogue Modrons", + "entries": [ + "A modron unit sometimes becomes defective, either through natural decay or exposure to chaotic forces. Rogue modrons don't act in accordance with Primus's wishes and directives, breaking laws, disobeying orders, and even engaging in violence. Other modrons hunt down such rogues.", + "A rogue modron loses the Axiomatic Mind trait and can have any alignment other than lawful neutral. Otherwise, it has the same statistics as a regular modron of its rank." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tridrone.mp3" + }, + "attachedItems": [ + "javelin|phb" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Tridrone (Rogue)", + "source": "MM", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Axiomatic Mind" + } + }, + "alignment": [ + "A" + ], + "variant": null + } + ] + }, + { + "name": "Troglodyte", + "source": "MM", + "page": 290, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Troglodyte|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "troglodyte" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 6, + "wis": 10, + "cha": 6, + "skill": { + "stealth": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Troglodyte" + ], + "cr": "1/4", + "trait": [ + { + "name": "Chameleon Skin", + "entries": [ + "The troglodyte has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ] + }, + { + "name": "Stench", + "entries": [ + "Any creature other than a troglodyte that starts its turn within 5 feet of the troglodyte must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all troglodytes for 1 hour." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the troglodyte has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troglodyte makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/troglodyte.mp3" + }, + "altArt": [ + { + "name": "Warren Troglodyte", + "source": "WDMM" + }, + { + "name": "Troglodyte", + "source": "HftT" + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Troll", + "source": "MM", + "page": 291, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "PSZ" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Troll|XMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 20, + "int": 7, + "wis": 9, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Giant" + ], + "cr": "5", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Loathsome Limbs", + "entries": [ + "Some trolls have the following trait", + { + "type": "entries", + "name": "Loathsome Limbs", + "entries": [ + "Whenever the troll takes at least 15 slashing damage at one time, roll a {@dice d20} to determine what else happens to it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1\u201310:", + "entry": "Nothing else happens." + }, + { + "type": "item", + "name": "11\u201314:", + "entry": "One leg is severed from the troll if it has any legs left." + }, + { + "type": "item", + "name": "15\u201318:", + "entry": "One arm is severed from the troll if it has any arms left." + }, + { + "type": "item", + "name": "19\u201320:", + "entry": "The troll is decapitated, but the troll dies only if it can't regenerate. If it dies, so does the severed head." + } + ] + }, + "If the troll finishes a short or long rest without reattaching a severed limb or head, the part regrows. At that point, the severed part dies. Until then, a severed part acts on the troll's initiative and has its own action and movement. A severed part has AC 13, 10 hit points, and the troll's Regeneration trait.", + "A {@b severed leg} is unable to attack and has a speed of 5 feet.", + "A {@b severed arm} has a speed of 5 feet and can make one claw attack on its turn, with disadvantage on the attack roll unless the troll can see the arm and its target. Each time the troll loses an arm, it loses a claw attack.", + "If its head is severed, the troll loses its bite attack and its body is {@condition blinded} unless the head can see it. The {@b severed head} has a speed of 0 feet and the troll's Keen Smell trait. It can make a bite attack but only against a target in its space.", + "The troll's speed is halved if it's missing a leg. If it loses both legs, it falls {@condition prone}. If it has both arms, it can crawl. With only one arm, it can still crawl, but its speed is halved. With no arms or legs, its speed is 0, and it can't benefit from bonuses to speed." + ] + } + ], + "_version": { + "name": "Troll (Loathsome Limbs)", + "addHeadersAs": "trait" + } + } + ], + "environment": [ + "underdark", + "mountain", + "forest", + "swamp", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/troll.mp3" + }, + "traitTags": [ + "Keen Senses", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Troll (Loathsome Limb; Severed Arm)", + "source": "MM", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": "Keen Smell" + } + ] + }, + "size": "T", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "10" + }, + "speed": { + "walk": 5 + }, + "skill": null, + "senses": null, + "languages": null, + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. This attack is made with disadvantage unless the troll can see the arm and its target." + ] + } + ], + "variant": null + }, + { + "name": "Troll (Loathsome Limb; Severed Head)", + "source": "MM", + "size": "T", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "10" + }, + "speed": { + "walk": 0 + }, + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "variant": null + }, + { + "name": "Troll (Loathsome Limb; Severed Leg)", + "source": "MM", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": "Keen Smell" + } + ] + }, + "size": "T", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "10" + }, + "speed": { + "walk": 5 + }, + "skill": null, + "senses": null, + "languages": null, + "action": null, + "variant": null + } + ] + }, + { + "name": "Twig Blight", + "source": "MM", + "page": 32, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "RMBRE" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "DIP" + } + ], + "reprintedAs": [ + "Twig Blight|XMM" + ], + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 4, + "formula": "1d6 + 1" + }, + "speed": { + "walk": 20 + }, + "str": 6, + "dex": 13, + "con": 12, + "int": 4, + "wis": 8, + "cha": 3, + "skill": { + "stealth": "+3" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 9, + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "blinded", + "deafened" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "1/8", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the blight remains motionless, it is indistinguishable from a dead shrub." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/twig-blight.mp3" + }, + "altArt": [ + { + "name": "Twig Blight", + "source": "DIP" + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tyrannosaurus Rex", + "group": [ + "Dinosaurs" + ], + "source": "MM", + "page": 80, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Tyrannosaurus Rex|XMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "13d12 + 52" + }, + "speed": { + "walk": 50 + }, + "str": 25, + "dex": 10, + "con": 19, + "int": 2, + "wis": 12, + "cha": 9, + "skill": { + "perception": "+4" + }, + "passive": 14, + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}33 ({@damage 4d12 + 7}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the tyrannosaurus can't bite another target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tyrannosaurus-rex.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ultroloth", + "source": "MM", + "page": 314, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + } + ], + "reprintedAs": [ + "Ultroloth|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 16, + "dex": 16, + "con": 18, + "int": 18, + "wis": 15, + "cha": 19, + "skill": { + "intimidation": "+9", + "perception": "+7", + "stealth": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "cr": "13", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ultroloth's innate spellcasting ability is Charisma (spell save {@dc 17}). The ultroloth can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self}", + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "daily": { + "3e": [ + "{@spell dimension door}", + "{@spell fear}", + "{@spell wall of fire}" + ], + "1e": [ + "{@spell fire storm}", + "{@spell mass suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The ultroloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The ultroloth's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ultroloth can use its Hypnotic Gaze and makes three melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Hypnotic Gaze", + "entries": [ + "The ultroloth's eyes sparkle with opalescent light as it targets one creature it can see within 30 feet of it. If the target can see the ultroloth, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} until the end of the ultroloth's next turn. The {@condition charmed} target is {@condition stunned}. If the target's saving throw is successful, the target is immune to the ultroloth's gaze for the next 24 hours." + ] + }, + { + "name": "Teleport", + "entries": [ + "The ultroloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Yugoloth Summoning", + "entries": [ + "Some yugoloths have an action option that allows them to summon other yugoloths.", + { + "name": "Summon Yugoloth (1/Day)", + "type": "entries", + "entries": [ + "The yugoloth chooses what to summon and attempts a magical summoning.", + "An ultroloth has a {@chance 50|50 percent|50% summoning chance} chance of summoning {@dice 1d6} {@creature mezzoloth||mezzoloths}, {@dice 1d4} {@creature nycaloth||nycaloths}, or one ultroloth.", + "A summoned yugoloth appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other yugoloths. The summoned yugoloth remains for 1 minute, until it or its summoner dies, or until its summoner takes a bonus action to dismiss it." + ] + } + ], + "_version": { + "name": "Ultroloth (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ultroloth.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "B", + "F", + "O", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "invisible" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Umber Hulk", + "source": "MM", + "page": 292, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Umber Hulk|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 30, + "burrow": 20 + }, + "str": 20, + "dex": 13, + "con": 16, + "int": 9, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 120 ft.", + "tremorsense 60 ft." + ], + "passive": 10, + "languages": [ + "Umber Hulk" + ], + "cr": "5", + "trait": [ + { + "name": "Confusing Gaze", + "entries": [ + "When a creature starts its turn within 30 feet of the umber hulk and is able to see the umber hulk's eyes, the umber hulk can magically force it to make a {@dc 15} Charisma saving throw, unless the umber hulk is {@condition incapacitated}.", + "On a failed saving throw, the creature can't take reactions until the start of its next turn and rolls a {@dice d8} to determine what it does during that turn. On a 1 to 4, the creature does nothing. On a 5 or 6, the creature takes no action but uses all its movement to move in a random direction. On a 7 or 8, the creature makes one melee attack against a random creature, or it does nothing if no creature is within reach.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the umber hulk until the start of its next turn, when it can avert its eyes again. If the creature looks at the umber hulk in the meantime, it must immediately make the save." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The umber hulk can burrow through solid rock at half its burrowing speed and leaves a 5 foot-wide, 8-foot-high tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The umber hulk makes three attacks: two with its claws and one with its mandibles." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + }, + { + "name": "Mandibles", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/umber-hulk.mp3" + }, + "traitTags": [ + "Tunneler" + ], + "senseTags": [ + "SD", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Unicorn", + "source": "MM", + "page": 294, + "srd": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Unicorn|XMM" + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 11, + "wis": 17, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "paralyzed", + "poisoned" + ], + "languages": [ + "Celestial", + "Elvish", + "Sylvan", + "telepathy 60 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The unicorn's innate spellcasting ability is Charisma (spell save {@dc 14}). The unicorn can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect evil and good}", + "{@spell druidcraft}", + "{@spell pass without trace}" + ], + "daily": { + "1e": [ + "{@spell calm emotions}", + "{@spell dispel evil and good}", + "{@spell entangle}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Charge", + "entries": [ + "If the unicorn moves at least 20 feet straight toward a target and then hits it with a horn attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The unicorn has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The unicorn's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The unicorn makes two attacks: one with its hooves and one with its horn." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Horn", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Healing Touch (3/Day)", + "entries": [ + "The unicorn touches another creature with its horn. The target magically regains 11 ({@dice 2d8 + 2}) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target." + ] + }, + { + "name": "Teleport (1/Day)", + "entries": [ + "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away." + ] + } + ], + "legendary": [ + { + "name": "Hooves", + "entries": [ + "The unicorn makes one attack with its hooves." + ] + }, + { + "name": "Shimmering Shield (Costs 2 Actions)", + "entries": [ + "The unicorn creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the unicorn's next turn." + ] + }, + { + "name": "Heal Self (Costs 3 Actions)", + "entries": [ + "The unicorn magically regains 11 ({@dice 2d8 + 2}) hit points." + ] + } + ], + "legendaryGroup": { + "name": "Unicorn", + "source": "MM" + }, + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/unicorn.mp3" + }, + "traitTags": [ + "Charge", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "CE", + "E", + "S", + "TP" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampire", + "source": "MM", + "page": 297, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Vampire|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 17, + "wis": 15, + "cha": 18, + "save": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "perception": "+7", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "13", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "If the vampire isn't in sunlight or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the vampire fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Misty Escape", + "entries": [ + "When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.", + "While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then {@condition paralyzed} until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage if it ends its turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack (Vampire Form Only)", + "entries": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Unarmed Strike (Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 18})." + ] + }, + { + "name": "Bite (Bat or Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under the vampire's control." + ] + }, + { + "name": "Charm", + "entries": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by the vampire. The {@condition charmed} target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.", + "Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ] + }, + { + "name": "Children of the Night (1/Day)", + "entries": [ + "The vampire magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, the vampire can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The vampire moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "The vampire makes one unarmed strike." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "The vampire makes one bite attack." + ] + } + ], + "legendaryGroup": { + "name": "Vampire", + "source": "MM" + }, + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vampire.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Shapechanger", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N", + "P" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampire Spawn", + "source": "MM", + "page": 298, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "AATM" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Vampire Spawn|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 16, + "int": 11, + "wis": 10, + "cha": 12, + "save": { + "dex": "+6", + "wis": "+3" + }, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage when it ends its turn in running water.", + "{@i Stake to the Heart.} The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is {@condition incapacitated} in its resting place.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}8 ({@damage 2d4 + 3}) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 13})." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vampire-spawn.mp3" + }, + "traitTags": [ + "Regeneration", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "HPR", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampire Spellcaster", + "source": "MM", + "page": 298, + "otherSources": [ + { + "source": "RoT" + } + ], + "reprintedAs": [ + "Vampire|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 17, + "wis": 15, + "cha": 18, + "save": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "perception": "+7", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The vampire is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The vampire has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell fog cloud}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell gust of wind}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell bestow curse}", + "{@spell nondetection}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell greater invisibility}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell dominate person}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "If the vampire isn't in sunlight or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the vampire fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Misty Escape", + "entries": [ + "When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.", + "While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then {@condition paralyzed} until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage if it ends its turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack (Vampire Form Only)", + "entries": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Unarmed Strike (Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 18})." + ] + }, + { + "name": "Bite (Bat or Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under the vampire's control." + ] + }, + { + "name": "Charm", + "entries": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by the vampire. The {@condition charmed} target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.", + "Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ] + }, + { + "name": "Children of the Night (1/Day)", + "entries": [ + "The vampire magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, the vampire can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The vampire moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "The vampire makes one unarmed strike." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "The vampire makes one bite attack." + ] + } + ], + "legendaryGroup": { + "name": "Vampire", + "source": "MM" + }, + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vampire-spellcaster.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Shapechanger", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N", + "P" + ], + "damageTagsSpell": [ + "C", + "N" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampire Warrior", + "source": "MM", + "page": 298, + "reprintedAs": [ + "Vampire|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 17, + "wis": 15, + "cha": 18, + "save": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "perception": "+7", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "15", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "If the vampire isn't in sunlight or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the vampire fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Misty Escape", + "entries": [ + "When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.", + "While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then {@condition paralyzed} until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage if it ends its turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vampire makes two greatsword attacks." + ] + }, + { + "name": "Multiattack (Vampire Form Only)", + "entries": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Unarmed Strike (Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 18})." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Bite (Bat or Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under the vampire's control." + ] + }, + { + "name": "Charm", + "entries": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by the vampire. The {@condition charmed} target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.", + "Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ] + }, + { + "name": "Children of the Night (1/Day)", + "entries": [ + "The vampire magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, the vampire can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The vampire moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "The vampire makes one unarmed strike." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "The vampire makes one bite attack." + ] + } + ], + "legendaryGroup": { + "name": "Vampire", + "source": "MM" + }, + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vampire-warrior.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Shapechanger", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N", + "P", + "S" + ], + "miscTags": [ + "HPR", + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Veteran", + "source": "MM", + "page": 350, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Warrior Veteran|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "athletics": "+5", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ] + } + ], + "environment": [ + "coastal", + "mountain", + "grassland", + "hill", + "arctic", + "urban", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/veteran.mp3" + }, + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Vine Blight", + "source": "MM", + "page": 32, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "PSI" + }, + { + "source": "DIP" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Vine Blight|XMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 10 + }, + "str": 15, + "dex": 8, + "con": 14, + "int": 5, + "wis": 10, + "cha": 3, + "skill": { + "stealth": "+1" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened" + ], + "languages": [ + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the blight remains motionless, it is indistinguishable from a tangle of vines." + ] + } + ], + "action": [ + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage, and a Large or smaller target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the blight can't constrict another target." + ] + }, + { + "name": "Entangling Plants {@recharge 5}", + "entries": [ + "Grasping roots and vines sprout in a 15-foot radius centered on the blight, withering away after 1 minute. For the duration, that area is {@quickref difficult terrain||3} for nonplant creatures. In addition, each creature of the blight's choice in that area when the plants appear must succeed on a {@dc 12} Strength saving throw or become {@condition restrained}. A creature can use its action to make a {@dc 12} Strength check, freeing itself or another entangled creature within reach on a success." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vine-blight.mp3" + }, + "altArt": [ + { + "name": "Vine Blight", + "source": "DIP" + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Violet Fungus", + "source": "MM", + "page": 138, + "srd": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "DoSI" + } + ], + "reprintedAs": [ + "Violet Fungus|XMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 5 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 5 + }, + "str": 3, + "dex": 1, + "con": 10, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "conditionImmune": [ + "blinded", + "deafened", + "frightened" + ], + "cr": "1/4", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the violet fungus remains motionless, it is indistinguishable from an ordinary fungus." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fungus makes {@dice 1d4} Rotting Touch attacks." + ] + }, + { + "name": "Rotting Touch", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 10 ft., one creature. {@h}4 ({@damage 1d8}) necrotic damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/violet-fungus.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vrock", + "source": "MM", + "page": 64, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Vrock|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 17, + "dex": 15, + "con": 18, + "int": 8, + "wis": 13, + "cha": 8, + "save": { + "dex": "+5", + "wis": "+4", + "cha": "+2" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "6", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The vrock has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vrock makes two attacks: one with its beak and one with its talons." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) slashing damage." + ] + }, + { + "name": "Spores {@recharge}", + "entries": [ + "A 15-foot-radius 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 {@condition poisoned}. While {@condition poisoned} in this way, a target takes 5 ({@damage 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." + ] + }, + { + "name": "Stunning Screech (1/Day)", + "entries": [ + "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 {@condition stunned} until the end of the vrock's next turn." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A vrock has a {@chance 30|30 percent|30% summoning chance} chance of summoning {@dice 2d4} {@creature dretch||dretches} or one vrock.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Vrock (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vrock.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vulture", + "source": "MM", + "page": 339, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Vulture|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 5, + "formula": "1d8 + 1" + }, + "speed": { + "walk": 10, + "fly": 50 + }, + "str": 7, + "dex": 10, + "con": 13, + "int": 2, + "wis": 12, + "cha": 4, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Keen Sight and Smell", + "entries": [ + "The vulture has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vulture.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Warhorse", + "source": "MM", + "page": 340, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Warhorse|XMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 60 + }, + "str": 18, + "dex": 12, + "con": 13, + "int": 2, + "wis": 12, + "cha": 7, + "passive": 11, + "cr": "1/2", + "trait": [ + { + "name": "Trampling Charge", + "entries": [ + "If the horse moves at least 20 feet straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the horse can make another attack with its hooves against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Warhorse Armor", + "entries": [ + "An armored warhorse has an AC based on the type of barding worn (see the Player's Handbook for more information on barding). The horse's AC includes its Dexterity modifier, where applicable. Barding doesn't alter the horse's challenge rating.", + { + "type": "table", + "colLabels": [ + "AC", + "Barding" + ], + "colStyles": [ + "col-6 text-center", + "col-6 text-center" + ], + "rows": [ + [ + "12", + "{@item Leather barding|phb|Leather}" + ], + [ + "13", + "{@item Studded leather barding|phb|Studded leather}" + ], + [ + "14", + "{@item Ring mail barding|phb|Ring mail}" + ], + [ + "15", + "{@item Scale mail barding|phb|Scale mail}" + ], + [ + "16", + "{@item Chain mail barding|phb|Chain mail}" + ], + [ + "17", + "{@item Splint barding|phb|Splint}" + ], + [ + "18", + "{@item Plate barding|phb|Plate}" + ] + ] + } + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/war-horse.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "_versions": [ + { + "name": "Warhorse (Chain Mail Barding)", + "source": "MM", + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail barding|phb}" + ] + } + ], + "variant": null + }, + { + "name": "Warhorse (Leather Barding)", + "source": "MM", + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather barding|phb}" + ] + } + ], + "variant": null + }, + { + "name": "Warhorse (Plate Barding)", + "source": "MM", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate barding|phb}" + ] + } + ], + "variant": null + }, + { + "name": "Warhorse (Ring Mail Barding)", + "source": "MM", + "ac": [ + { + "ac": 14, + "from": [ + "{@item ring mail barding|phb}" + ] + } + ], + "variant": null + }, + { + "name": "Warhorse (Scale Mail Barding)", + "source": "MM", + "ac": [ + { + "ac": 15, + "from": [ + "{@item scale mail barding|phb}" + ] + } + ], + "variant": null + }, + { + "name": "Warhorse (Splint Barding)", + "source": "MM", + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint barding|phb}" + ] + } + ], + "variant": null + }, + { + "name": "Warhorse (Studded Leather Barding)", + "source": "MM", + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather barding|phb}" + ] + } + ], + "variant": null + } + ] + }, + { + "name": "Warhorse Skeleton", + "source": "MM", + "page": 273, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Warhorse Skeleton|XMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "barding scraps" + ] + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6" + }, + "speed": { + "walk": 60 + }, + "str": 18, + "dex": 12, + "con": 15, + "int": 2, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "cr": "1/2", + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warhorse-skeleton.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Water Elemental", + "source": "MM", + "page": 125, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Water Elemental|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 30, + "swim": 90 + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 5, + "wis": 10, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "acid", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Aquan" + ], + "cr": "5", + "trait": [ + { + "name": "Water Form", + "entries": [ + "The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Freeze", + "entries": [ + "If the elemental takes cold damage, it partially freezes; its speed is reduced by 20 feet until the end of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elemental makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Whelm {@recharge 4}", + "entries": [ + "Each creature in the elemental's space must make a {@dc 15} Strength saving throw. On a failure, a target takes 13 ({@damage 2d8 + 4}) bludgeoning damage. If it is Large or smaller, it is also {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained} and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.", + "The elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target {@condition grappled} by it takes 13 ({@damage 2d8 + 4}) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a {@dc 14} Strength check and succeeding." + ] + } + ], + "environment": [ + "underwater", + "swamp", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/water-elemental.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Water Weird", + "source": "MM", + "page": 299, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "LK" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Water Weird|XMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 58, + "formula": "9d10 + 9" + }, + "speed": { + "walk": 0, + "swim": 60 + }, + "str": 17, + "dex": 16, + "con": 13, + "int": 11, + "wis": 10, + "cha": 10, + "senses": [ + "blindsight 30 ft." + ], + "passive": 10, + "resist": [ + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "poisoned", + "restrained", + "prone", + "unconscious" + ], + "languages": [ + "understands Aquan but doesn't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Invisible in Water", + "entries": [ + "The water weird is {@condition invisible} while fully immersed in water." + ] + }, + { + "name": "Water Bound", + "entries": [ + "The water weird dies if it leaves the water to which it is bound or if that water is destroyed." + ] + } + ], + "action": [ + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}13 ({@damage 3d6 + 3}) bludgeoning damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 13}) and pulled 5 feet toward the water weird. Until this grapple ends, the target is {@condition restrained}, the water weird tries to drown it, and the water weird can't constrict another target." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/water-weird.mp3" + }, + "senseTags": [ + "B" + ], + "languageTags": [ + "AQ" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "invisible", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Weasel", + "source": "MM", + "page": 340, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Weasel|XMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 30 + }, + "str": 3, + "dex": 16, + "con": 8, + "int": 2, + "wis": 12, + "cha": 3, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "passive": 13, + "cr": "0", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The weasel has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + } + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/weasel.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Werebear", + "group": [ + "Lycanthropes" + ], + "source": "MM", + "page": 208, + "srd": true, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "KftGV" + } + ], + "reprintedAs": [ + "Werebear|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 10, + "condition": "in humanoid form" + }, + { + "ac": 11, + "from": [ + "natural armor" + ], + "condition": "in bear or hybrid form" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft., climb 30 ft. in bear or hybrid form)" + } + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 11, + "wis": 12, + "cha": 12, + "skill": { + "perception": "+7" + }, + "passive": 17, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common (can't speak in bear form)" + ], + "cr": "5", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The werebear can use its action to polymorph into a Large bear-humanoid hybrid or into a Large bear, or back into its true form, which is humanoid. Its statistics, other than its size and AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The werebear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid." + ] + }, + { + "name": "Bite (Bear or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 14} Constitution saving throw or be cursed with werebear lycanthropy." + ] + }, + { + "name": "Claw (Bear or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Greataxe (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Nonhuman Lycanthropes", + "entries": [ + "The statistics presented in this section assume a base creature of human. However, you can also use the statistics to represent nonhuman lycanthropes, adding verisimilitude by allowing a nonhuman lycanthrope to retain one or more of its humanoid racial traits. For example, an elf werewolf might have the Fey Ancestry trait." + ] + } + ], + "environment": [ + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/werebear.mp3" + }, + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Keen Senses", + "Shapechanger" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wereboar", + "group": [ + "Lycanthropes" + ], + "source": "MM", + "page": 209, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Wereboar|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 10, + "condition": "in humanoid form" + }, + { + "ac": 11, + "from": [ + "natural armor" + ], + "condition": "in boar or hybrid form" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft. in boar form)" + } + }, + "str": 17, + "dex": 10, + "con": 15, + "int": 10, + "wis": 11, + "cha": 8, + "skill": { + "perception": "+2" + }, + "passive": 12, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common (can't speak in boar form)" + ], + "cr": "4", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The wereboar can use its action to polymorph into a boar-humanoid hybrid or into a boar, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Charge (Boar or Hybrid Form Only)", + "entries": [ + "If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes an extra 7 ({@damage 2d6}) slashing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Relentless (Recharges after a Short or Long Rest)", + "entries": [ + "If the wereboar takes 14 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack (Humanoid or Hybrid Form Only)", + "entries": [ + "The wereboar makes two attacks, only one of which can be with its tusks." + ] + }, + { + "name": "Maul (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Tusks (Boar or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage. If the target is a humanoid, it must succeed on a {@dc 12} Constitution saving throw or be cursed with wereboar lycanthropy." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Nonhuman Lycanthropes", + "entries": [ + "The statistics presented in this section assume a base creature of human. However, you can also use the statistics to represent nonhuman lycanthropes, adding verisimilitude by allowing a nonhuman lycanthrope to retain one or more of its humanoid racial traits. For example, an elf werewolf might have the Fey Ancestry trait." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wereboar.mp3" + }, + "attachedItems": [ + "maul|phb" + ], + "traitTags": [ + "Charge", + "Shapechanger" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wererat", + "group": [ + "Lycanthropes" + ], + "source": "MM", + "page": 209, + "srd": true, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Wererat|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 11, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft. (rat form only)" + ], + "passive": 12, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common (can't speak in rat form)" + ], + "cr": "2", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The wererat can use its action to polymorph into a rat-humanoid hybrid or into a giant rat, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The wererat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack (Humanoid or Hybrid Form Only)", + "entries": [ + "The wererat makes two attacks, only one of which can be a bite." + ] + }, + { + "name": "Bite (Rat or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 11} Constitution saving throw or be cursed with wererat lycanthropy." + ] + }, + { + "name": "Shortsword (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Nonhuman Lycanthropes", + "entries": [ + "The statistics presented in this section assume a base creature of human. However, you can also use the statistics to represent nonhuman lycanthropes, adding verisimilitude by allowing a nonhuman lycanthrope to retain one or more of its humanoid racial traits. For example, an elf werewolf might have the Fey Ancestry trait." + ] + } + ], + "environment": [ + "forest", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wererat.mp3" + }, + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Keen Senses", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Weretiger", + "group": [ + "Lycanthropes" + ], + "source": "MM", + "page": 210, + "srd": true, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Weretiger|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft. in tiger form)" + } + }, + "str": 17, + "dex": 15, + "con": 16, + "int": 10, + "wis": 13, + "cha": 11, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common (can't speak in tiger form)" + ], + "cr": "4", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The weretiger can use its action to polymorph into a tiger-humanoid hybrid or into a tiger, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "The weretiger has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pounce (Tiger or Hybrid Form Only)", + "entries": [ + "If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the weretiger can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack (Humanoid or Hybrid Form Only)", + "entries": [ + "In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks." + ] + }, + { + "name": "Bite (Tiger or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 13} Constitution saving throw or be cursed with weretiger lycanthropy." + ] + }, + { + "name": "Claw (Tiger or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + }, + { + "name": "Scimitar (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Longbow (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Nonhuman Lycanthropes", + "entries": [ + "The statistics presented in this section assume a base creature of human. However, you can also use the statistics to represent nonhuman lycanthropes, adding verisimilitude by allowing a nonhuman lycanthrope to retain one or more of its humanoid racial traits. For example, an elf werewolf might have the Fey Ancestry trait." + ] + } + ], + "environment": [ + "grassland", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/weretiger.mp3" + }, + "attachedItems": [ + "longbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Keen Senses", + "Pounce", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Werewolf", + "group": [ + "Lycanthropes" + ], + "source": "MM", + "page": 211, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Werewolf|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "condition": "in humanoid form" + }, + { + "ac": 12, + "from": [ + "natural armor" + ], + "condition": "in wolf or hybrid form" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft. in wolf form)" + } + }, + "str": 15, + "dex": 13, + "con": 14, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "perception": "+4", + "stealth": "+3" + }, + "passive": 14, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common (can't speak in wolf form)" + ], + "cr": "3", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "The werewolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Multiattack (Humanoid or Hybrid Form Only)", + "entries": [ + "The werewolf makes two attacks: two with its spear (humanoid form) or one with its bite and one with its claws (hybrid form)." + ] + }, + { + "name": "Bite (Wolf or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 12} Constitution saving throw or be cursed with werewolf lycanthropy." + ] + }, + { + "name": "Claws (Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ] + }, + { + "name": "Spear (Humanoid Form Only)", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Nonhuman Lycanthropes", + "entries": [ + "The statistics presented in this section assume a base creature of human. However, you can also use the statistics to represent nonhuman lycanthropes, adding verisimilitude by allowing a nonhuman lycanthrope to retain one or more of its humanoid racial traits. For example, an elf werewolf might have the Fey Ancestry trait." + ] + } + ], + "environment": [ + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/werewolf.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Keen Senses", + "Shapechanger" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "White Dragon Wyrmling", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 102, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "White Dragon Wyrmling|XMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "burrow": 15, + "fly": 60, + "swim": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 5, + "wis": 10, + "cha": 11, + "save": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+2" + }, + "skill": { + "perception": "+4", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) cold damage." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 22 ({@damage 5d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 8} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "dragonAge": "wyrmling", + "soundClip": { + "type": "internal", + "path": "bestiary/white-dragon-wyrmling.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wight", + "source": "MM", + "page": 300, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Wight|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 16, + "int": 10, + "wis": 13, + "cha": 15, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack." + ] + }, + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A humanoid slain by this attack rises 24 hours later as a {@creature zombie} under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "swamp", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wight.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "HPR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Will-o'-Wisp", + "source": "MM", + "page": 301, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "PSI" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Will-o'-Wisp|XMM" + ], + "size": [ + "T" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 19 + ], + "hp": { + "average": 22, + "formula": "9d4" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 28, + "con": 10, + "int": 13, + "wis": 14, + "cha": 11, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "acid", + "cold", + "fire", + "necrotic", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "poisoned", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "2", + "trait": [ + { + "name": "Consume Life", + "entries": [ + "As a bonus action, the will-o'-wisp can target one creature it can see within 5 feet of it that has 0 hit points and is still alive. The target must succeed on a {@dc 10} Constitution saving throw against this magic or die. If the target dies, the will-o'-wisp regains 10 ({@dice 3d6}) hit points." + ] + }, + { + "name": "Ephemeral", + "entries": [ + "The will-o'-wisp can't wear or carry anything." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The will-o'-wisp can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Variable Illumination", + "entries": [ + "The will-o'-wisp sheds bright light in a 5 to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The will-o'-wisp can alter the radius as a bonus action." + ] + } + ], + "action": [ + { + "name": "Shock", + "entries": [ + "{@atk ms} {@hit 4} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d8}) lightning damage." + ] + }, + { + "name": "Invisibility", + "entries": [ + "The will-o'-wisp and its light magically become {@condition invisible} until it attacks or uses its Consume Life, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "environment": [ + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/will-o-wisp.mp3" + }, + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "L", + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Winged Kobold", + "source": "MM", + "page": 195, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "DoSI" + } + ], + "reprintedAs": [ + "Winged Kobold|XMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 7, + "formula": "3d6 - 3" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 7, + "dex": 16, + "con": 9, + "int": 8, + "wis": 7, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/4", + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Dropped Rock", + "entries": [ + "{@atk rw} {@hit 5} to hit, one target directly below the kobold. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "hill", + "urban", + "desert", + "coastal", + "arctic", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/winged-kobold.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Winter Wolf", + "source": "MM", + "page": 340, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + }, + { + "source": "GHLoE" + } + ], + "reprintedAs": [ + "Winter Wolf|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 13, + "con": 14, + "int": 7, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+5", + "stealth": "+3" + }, + "passive": 15, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Giant", + "Winter Wolf" + ], + "cr": "3", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Snow Camouflage", + "entries": [ + "The wolf has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 18 ({@damage 4d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/winter-wolf.mp3" + }, + "traitTags": [ + "Camouflage", + "Keen Senses", + "Pack Tactics" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "GI", + "OTH" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wolf", + "source": "MM", + "page": 341, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "LK" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Wolf|XMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 15, + "con": 12, + "int": 3, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "passive": 13, + "cr": "1/4", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wolf.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Worg", + "source": "MM", + "page": 341, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "reprintedAs": [ + "Worg|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 50 + }, + "str": 16, + "dex": 13, + "con": 13, + "int": 7, + "wis": 11, + "cha": 8, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Goblin", + "Worg" + ], + "cr": "1/2", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The worg has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/worg.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "GO", + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wraith", + "source": "MM", + "page": 302, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Wraith|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 6, + "dex": 16, + "con": 16, + "int": 12, + "wis": 14, + "cha": 15, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The wraith can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the wraith has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}21 ({@damage 4d8 + 3}) necrotic damage. The target must succeed on a {@dc 14} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + }, + { + "name": "Create Specter", + "entries": [ + "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a {@creature specter} in the space of its corpse or in the nearest unoccupied space. The {@creature specter} is under the wraith's control. The wraith can have no more than seven specters under its control at one time." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wraith.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wyvern", + "source": "MM", + "page": 303, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Wyvern|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39" + }, + "speed": { + "walk": 20, + "fly": 80 + }, + "str": 19, + "dex": 10, + "con": 16, + "int": 5, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "cr": "6", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Stinger", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage. The target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wyvern.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xorn", + "source": "MM", + "page": 304, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Xorn|XMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 73, + "formula": "7d8 + 42" + }, + "speed": { + "walk": 20, + "burrow": 20 + }, + "str": 17, + "dex": 10, + "con": 22, + "int": 11, + "wis": 10, + "cha": 11, + "skill": { + "perception": "+6", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 16, + "resist": [ + { + "resist": [ + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "languages": [ + "Terran" + ], + "cr": "5", + "trait": [ + { + "name": "Earth Glide", + "entries": [ + "The xorn can burrow through nonmagical, unworked earth and stone. While doing so, the xorn doesn't disturb the material it moves through." + ] + }, + { + "name": "Stone Camouflage", + "entries": [ + "The xorn has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + }, + { + "name": "Treasure Sense", + "entries": [ + "The xorn can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 feet of it." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The xorn makes three claw attacks and one bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/xorn.mp3" + }, + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yeti", + "source": "MM", + "page": 305, + "basicRules": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "ToFW" + } + ], + "reprintedAs": [ + "Yeti|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 8, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "cold" + ], + "languages": [ + "Yeti" + ], + "cr": "3", + "trait": [ + { + "name": "Fear of Fire", + "entries": [ + "If the yeti takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The yeti has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Snow Camouflage", + "entries": [ + "The yeti has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yeti can use its Chilling Gaze and makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Chilling Gaze", + "entries": [ + "The yeti targets one creature it can see within 30 feet of it. If the target can see the yeti, the target must succeed on a {@dc 13} Constitution saving throw against this magic or take 10 ({@damage 3d6}) cold damage and then be {@condition paralyzed} for 1 minute, unless it is immune to cold damage. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target's saving throw is successful, or if the effect ends on it, the target is immune to the Chilling Gaze of all yetis (but not abominable yetis) for 1 hour." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yeti.mp3" + }, + "traitTags": [ + "Camouflage", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "C", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yochlol", + "source": "MM", + "page": 65, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "VEoR" + } + ], + "reprintedAs": [ + "Yochlol|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon", + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 14, + "con": 18, + "int": 13, + "wis": 15, + "cha": 15, + "save": { + "dex": "+6", + "int": "+5", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "deception": "+10", + "insight": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Elvish", + "Undercommon" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The yochlol's spellcasting ability is Charisma (spell save {@dc 14}). The yochlol can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell web}" + ], + "daily": { + "1": [ + "{@spell dominate person}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yochlol can use its action to polymorph into a form that resembles a female drow or giant spider, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yochlol has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The yochlol can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The yochlol ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yochlol makes two melee attacks." + ] + }, + { + "name": "Slam (Bite in Spider Form)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft. (10 feet in demon form), one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning (piercing in spider form) damage plus 21 ({@damage 6d6}) poison damage." + ] + }, + { + "name": "Mist Form", + "entries": [ + "The yochlol transforms into toxic mist or reverts to its true form. Any equipment it is wearing or carrying is also transformed. It reverts to its true form if it dies.", + "While in mist form, the yochlol is {@condition incapacitated} and can't speak. It has a flying speed of 30 feet, can hover, and can pass through any space that isn't airtight. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to nonmagical damage.", + "While in mist form, the yochlol can enter a creature's space and stop there. Each time that creature starts its turn with the yochlol in its space, the creature must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of its next turn. While {@condition poisoned} in this way, the target is {@condition incapacitated}." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The demon chooses what to summon and attempts a magical summoning.", + "A yochlol has a {@chance 50|50 percent|50% summoning chance} chance of summoning one yochlol.", + "A summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 1 minute, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Yochlol (Summoner)", + "addAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yochlol.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Shapechanger", + "Spider Climb", + "Web Walker" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "E", + "U" + ], + "damageTags": [ + "B", + "I", + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated", + "poisoned" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Black Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 88, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "LK" + } + ], + "reprintedAs": [ + "Young Black Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 19, + "dex": 14, + "con": 17, + "int": 12, + "wis": 11, + "cha": 15, + "save": { + "dex": "+5", + "con": "+6", + "wis": "+3", + "cha": "+5" + }, + "skill": { + "perception": "+6", + "stealth": "+5" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "acid" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "7", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Acid Breath {@recharge 5}", + "entries": [ + "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 49 ({@damage 11d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "swamp" + ], + "dragonCastingColor": "black", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/black-dragon.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Blue Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 91, + "srd": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "DSotDQ" + }, + { + "source": "LK" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Young Blue Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 152, + "formula": "16d10 + 64" + }, + "speed": { + "walk": 40, + "burrow": 20, + "fly": 80 + }, + "str": 21, + "dex": 10, + "con": 19, + "int": 14, + "wis": 13, + "cha": 17, + "save": { + "dex": "+4", + "con": "+8", + "wis": "+5", + "cha": "+7" + }, + "skill": { + "perception": "+9", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 19, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "9", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 55 ({@damage 10d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "desert", + "coastal" + ], + "dragonCastingColor": "blue", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/blue-dragon.mp3" + }, + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "L", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Brass Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 105, + "srd": true, + "otherSources": [ + { + "source": "SKT" + } + ], + "reprintedAs": [ + "Young Brass Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39" + }, + "speed": { + "walk": 40, + "burrow": 20, + "fly": 80 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 12, + "wis": 11, + "cha": 15, + "save": { + "dex": "+3", + "con": "+6", + "wis": "+3", + "cha": "+5" + }, + "skill": { + "perception": "+6", + "persuasion": "+5", + "stealth": "+3" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "6", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 42 ({@damage 12d6}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Sleep Breath", + "entry": "The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 14} Constitution saving throw or fall {@condition unconscious} for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "desert" + ], + "dragonCastingColor": "brass", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/brass-dragon.mp3" + }, + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Bronze Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 108, + "srd": true, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Young Bronze Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 21, + "dex": 10, + "con": 19, + "int": 14, + "wis": 13, + "cha": 17, + "save": { + "dex": "+3", + "con": "+7", + "wis": "+4", + "cha": "+6" + }, + "skill": { + "insight": "+4", + "perception": "+7", + "stealth": "+3" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "8", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Lightning Breath", + "entry": "The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 15} Dexterity saving throw, taking 55 ({@damage 10d10}) lightning damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Repulsion Breath", + "entry": "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 15} Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "coastal" + ], + "dragonCastingColor": "bronze", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/bronze-dragon.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "L", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Copper Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 112, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "SatO" + } + ], + "reprintedAs": [ + "Young Copper Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 19, + "dex": 12, + "con": 17, + "int": 16, + "wis": 13, + "cha": 15, + "save": { + "dex": "+4", + "con": "+6", + "wis": "+4", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "perception": "+7", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "immune": [ + "acid" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Acid Breath", + "entry": "The dragon exhales acid in a 40-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 40 ({@damage 9d8}) acid damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Slowing Breath", + "entry": "The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 14} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "hill" + ], + "dragonCastingColor": "copper", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/copper-dragon.mp3" + }, + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Gold Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 115, + "srd": true, + "reprintedAs": [ + "Young Gold Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 23, + "dex": 14, + "con": 21, + "int": 16, + "wis": 13, + "cha": 20, + "save": { + "dex": "+6", + "con": "+9", + "wis": "+5", + "cha": "+9" + }, + "skill": { + "insight": "+5", + "perception": "+9", + "persuasion": "+9", + "stealth": "+6" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 19, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "10", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fire Breath", + "entry": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw, taking 55 ({@damage 10d10}) fire damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Weakening Breath", + "entry": "The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 17} 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." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "dragonCastingColor": "gold", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/gold-dragon.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Green Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 94, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "LK" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Young Green Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 19, + "dex": 12, + "con": 17, + "int": 16, + "wis": 13, + "cha": 15, + "save": { + "dex": "+4", + "con": "+6", + "wis": "+4", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "perception": "+7", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "8", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The dragon can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Poison Breath {@recharge 5}", + "entries": [ + "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 42 ({@damage 12d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "dragonCastingColor": "green", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/green-dragon.mp3" + }, + "altArt": [ + { + "name": "Young Green Dragon", + "source": "RMBRE" + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Red Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 98, + "srd": true, + "otherSources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "LK" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Young Red Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 14, + "wis": 11, + "cha": 19, + "save": { + "dex": "+4", + "con": "+9", + "wis": "+4", + "cha": "+8" + }, + "skill": { + "perception": "+8", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 18, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "10", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw, taking 56 ({@damage 16d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "mountain", + "hill" + ], + "dragonCastingColor": "red", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/red-dragon.mp3" + }, + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Red Shadow Dragon", + "source": "MM", + "page": 85, + "otherSources": [ + { + "source": "AATM" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "reprintedAs": [ + "Shadow Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 14, + "wis": 11, + "cha": 19, + "save": { + "dex": "+5", + "con": "+10", + "wis": "+5", + "cha": "+9" + }, + "skill": { + "perception": "+10", + "stealth": "+10" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "necrotic" + ], + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "13", + "trait": [ + { + "name": "Living Shadow", + "entries": [ + "While in dim light or darkness, the dragon has resistance to damage that isn't force, psychic, or radiant." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the dragon can take the Hide action as a bonus action." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the dragon has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 3 ({@damage 1d6}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Shadow Breath {@recharge 5}", + "entries": [ + "The dragon exhales shadowy fire in a 30-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 56 ({@damage 16d6}) necrotic damage on a failed save, or half as much damage on a successful one. A humanoid reduced to 0 hit points by this damage dies, and an undead {@creature shadow} rises from its corpse and acts immediately after the dragon in the initiative count. The shadow is under the dragon's control." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Damage Absorption", + "entries": [ + "You might decide that this dragon is not only unharmed by fire damage, but actually healed by it.", + "Whenever the dragon is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "dragonCastingColor": "red", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/red-shadow-dragon.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Remorhaz", + "source": "MM", + "page": 258, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Young Remorhaz|XMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 18, + "dex": 13, + "con": 17, + "int": 3, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 10, + "immune": [ + "cold", + "fire" + ], + "cr": "5", + "trait": [ + { + "name": "Heated Body", + "entries": [ + "A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) fire damage." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d10 + 4}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/remorhaz.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Silver Dragon", + "group": [ + "Metallic Dragon" + ], + "source": "MM", + "page": 118, + "srd": true, + "otherSources": [ + { + "source": "SKT" + }, + { + "source": "DSotDQ" + } + ], + "reprintedAs": [ + "Young Silver Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 14, + "wis": 11, + "cha": 19, + "save": { + "dex": "+4", + "con": "+9", + "wis": "+4", + "cha": "+8" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "perception": "+8", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 18, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "9", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Cold Breath", + "entry": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 54 ({@damage 12d8}) cold damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Paralyzing Breath", + "entry": "The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 17} Constitution saving throw or be {@condition 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." + } + ] + } + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Change Shape", + "entries": [ + "You can decide that a dragon acquires this action at a younger age than usual, particularly if you want to feature a dragon in Humanoid form in your campaign:", + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + }, + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "mountain", + "urban" + ], + "dragonCastingColor": "silver", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/silver-dragon.mp3" + }, + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young White Dragon", + "group": [ + "Chromatic Dragon" + ], + "source": "MM", + "page": 101, + "srd": true, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "DIP" + }, + { + "source": "IDRotF" + }, + { + "source": "LK" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "reprintedAs": [ + "Young White Dragon|XMM" + ], + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56" + }, + "speed": { + "walk": 40, + "burrow": 20, + "fly": 80, + "swim": 40 + }, + "str": 18, + "dex": 10, + "con": 18, + "int": 6, + "wis": 11, + "cha": 12, + "save": { + "dex": "+3", + "con": "+7", + "wis": "+3", + "cha": "+4" + }, + "skill": { + "perception": "+6", + "stealth": "+3" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "6", + "trait": [ + { + "name": "Ice Walk", + "entries": [ + "The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost it extra movement." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 4 ({@damage 1d8}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 10d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing Dragons", + "source": "FTD", + "page": 33, + "entries": [ + "You can customize any dragon's stat block to reflect the dragon's unique character. Minor changes such as those below are easy to make and have no impact on a dragon's challenge rating.", + { + "type": "entries", + "name": "Languages", + "entries": [ + "Most dragons prefer to speak Draconic but learn Common for dealing with allies and minions. But given their high Intelligence and long life span, dragons can easily learn additional languages. You can add languages to a dragon's stat block." + ] + }, + { + "type": "entries", + "name": "Skills", + "entries": [ + "Most dragons are proficient in the {@skill Perception} and {@skill Stealth} skills, and many dragons have additional skill proficiencies. As with languages, you can customize a dragon's skill list (even doubling their proficiency bonus with certain skills) to reflect particular interests and activities. You can also give a dragon tool proficiencies, particularly if the dragon spends time in Humanoid form." + ] + }, + { + "type": "entries", + "name": "Spells", + "entries": [ + "{@note See the \"Variant: Dragons as Innate Spellcasters\" inset(s), below.}" + ] + }, + { + "type": "entries", + "name": "Other Traits and Actions", + "entries": [ + "You can borrow traits and actions from other monsters to add unique flavor to a dragon. Consider these examples:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Flyby", + "entries": [ + "The dragon is an agile flier, quick to fly out of enemies' reach.", + "The dragon doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + }, + { + "type": "item", + "name": "Mimicry", + "entries": [ + "Impersonating characters or their allies could be a fun trick for a crafty dragon.", + "The dragon can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 9} Wisdom ({@skill Insight}) check." + ] + }, + { + "type": "item", + "name": "Rejuvenation", + "entries": [ + "You might decide that dragons in your campaign, being an essential part of the Material Plane, are nearly impossible to destroy. A dragon's life essence might be preserved in the egg from which it first emerged, in its hoard, or in a cavernous hall at the center of the world, just as a lich's essence is hidden in a phylactery.", + "If it has an essence-preserving object, a destroyed dragon gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the object." + ] + }, + { + "type": "item", + "name": "Special Senses", + "entries": [ + "Most dragons have {@sense blindsight} and {@sense darkvision}. You might upgrade {@sense blindsight} to {@sense truesight}, or you could give a dragon with a burrowing speed {@sense tremorsense|MM}." + ] + }, + { + "type": "item", + "name": "Tunneler", + "entries": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a tunnel in its wake." + ] + } + ] + } + ] + } + ] + } + ], + "environment": [ + "arctic" + ], + "dragonCastingColor": "white", + "dragonAge": "young", + "soundClip": { + "type": "internal", + "path": "bestiary/white-dragon.mp3" + }, + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Abomination", + "source": "MM", + "page": 308, + "otherSources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Yuan-ti Abomination|XMM" + ], + "size": [ + "L" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 16, + "con": 17, + "int": 17, + "wis": 15, + "cha": 18, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting (Abomination Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 15}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "1": [ + "{@spell fear}" + ], + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Large snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack (Abomination Form Only)", + "entries": [ + "The yuan-ti makes two ranged attacks or three melee attacks, but can use its bite and constrict attacks only once each." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, and the yuan-ti can't constrict another target." + ] + }, + { + "name": "Scimitar (Abomination Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Longbow (Abomination Form Only)", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-abomination.mp3" + }, + "attachedItems": [ + "longbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "B", + "I", + "P", + "S" + ], + "spellcastingTags": [ + "F", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "charmed", + "frightened" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Malison (Type 1)", + "source": "MM", + "page": 309, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Yuan-ti Malison (Type 1)|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Malison Type", + "entries": [ + "The yuan-ti has one of the following types:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Type 1:", + "entry": "Human body with snake head" + }, + { + "type": "item", + "name": "Type 2:", + "entry": "Human head and body with snakes for arms" + }, + { + "type": "item", + "name": "Type 3:", + "entry": "Human head and upper body with a serpentine lower body instead of legs" + } + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes two ranged attacks or two melee attacks, but can use its bite only once." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Longbow (Yuan-ti Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-malison.mp3" + }, + "attachedItems": [ + "longbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "F", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Malison (Type 2)", + "source": "MM", + "page": 309, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Yuan-ti Malison (Type 2)|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Malison Type", + "entries": [ + "The yuan-ti has one of the following types:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Type 1:", + "entry": "Human body with snake head" + }, + { + "type": "item", + "name": "Type 2:", + "entry": "Human head and body with snakes for arms" + }, + { + "type": "item", + "name": "Type 3:", + "entry": "Human head and upper body with a serpentine lower body instead of legs" + } + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes two bite attacks using its snake arms." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-malison.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "F", + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Malison (Type 3)", + "source": "MM", + "page": 309, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "CM" + } + ], + "reprintedAs": [ + "Yuan-ti Malison (Type 3)|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Malison Type", + "entries": [ + "The yuan-ti has one of the following types:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Type 1:", + "entry": "Human body with snake head" + }, + { + "type": "item", + "name": "Type 2:", + "entry": "Human head and body with snakes for arms" + }, + { + "type": "item", + "name": "Type 3:", + "entry": "Human head and upper body with a serpentine lower body instead of legs" + } + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes two ranged attacks or two melee attacks, but can constrict only once." + ] + }, + { + "name": "Bite (Snake Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, and the yuan-ti can't constrict another target." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Longbow (Yuan-ti Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-malison.mp3" + }, + "attachedItems": [ + "longbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "B", + "I", + "P", + "S" + ], + "spellcastingTags": [ + "F", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Pureblood", + "source": "MM", + "page": 310, + "otherSources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "PSI" + } + ], + "reprintedAs": [ + "Yuan-ti Infiltrator|XMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 11, + "int": 13, + "wis": 12, + "cha": 14, + "skill": { + "deception": "+6", + "perception": "+3", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's spellcasting ability is Charisma (spell save {@dc 12}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3e": [ + "{@spell poison spray}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yuan-ti makes two melee attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "urban", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-pureblood.mp3" + }, + "attachedItems": [ + "scimitar|phb", + "shortbow|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "damageTagsSpell": [ + "I" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zombie", + "source": "MM", + "page": 316, + "srd": true, + "basicRules": true, + "otherSources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "reprintedAs": [ + "Zombie|XMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 8 + ], + "hp": { + "average": 22, + "formula": "3d8 + 9" + }, + "speed": { + "walk": 20 + }, + "str": 13, + "dex": 6, + "con": 16, + "int": 3, + "wis": 6, + "cha": 5, + "save": { + "wis": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands all languages it spoke in life but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/zombie.mp3" + }, + "altArt": [ + { + "name": "Dwarf Zombie", + "source": "PaBTSO" + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Abjurer Wizard", + "source": "MPMM", + "page": 260, + "otherSources": [ + { + "source": "VGM", + "page": 209 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 14, + "int": 18, + "wis": 12, + "cha": 11, + "save": { + "int": "+8", + "wis": "+5" + }, + "skill": { + "arcana": "+8", + "history": "+8" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The abjurer casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell dispel magic}", + "{@spell lightning bolt}", + "{@spell mage armor}" + ], + "1e": [ + "{@spell arcane lock}", + "{@spell banishment}", + "{@spell globe of invulnerability}", + "{@spell invisibility}", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abjurer makes three Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) force damage." + ] + }, + { + "name": "Force Blast", + "entries": [ + "Each creature in a 20-foot cube originating from the abjurer must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage and is pushed up to 10 feet away from the abjurer. On a successful save, a creature takes half as much damage and isn't pushed." + ] + } + ], + "reaction": [ + { + "name": "Arcane Ward {@recharge 4}", + "entries": [ + "When the abjurer or a creature it can see within 30 feet of it takes damage, the abjurer magically creates a protective barrier around itself or the other creature. The barrier reduces the damage to the protected creature by 26 ({@damage 4d10 + 4}), to a minimum of 0, and then vanishes." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/abjurer.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflictSpell": [ + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Kruthik", + "source": "MPMM", + "page": 169, + "otherSources": [ + { + "source": "MTF", + "page": 212 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 40, + "burrow": 20, + "climb": 40 + }, + "str": 15, + "dex": 16, + "con": 15, + "int": 7, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 15, + "languages": [ + "Kruthik" + ], + "cr": "2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kruthik makes two Stab or Spike attacks." + ] + }, + { + "name": "Stab", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Spike", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "environment": [ + "desert", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/adult-kruthik.mp3" + }, + "traitTags": [ + "Pack Tactics", + "Tunneler" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Oblex", + "source": "MPMM", + "page": 198, + "otherSources": [ + { + "source": "MTF", + "page": 218 + } + ], + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 20 + }, + "str": 8, + "dex": 19, + "con": 16, + "int": 19, + "wis": 12, + "cha": 15, + "save": { + "int": "+7", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "perception": "+4", + "other": [ + { + "oneOf": { + "arcana": "+7", + "history": "+7", + "nature": "+7", + "religion": "+7" + } + } + ] + }, + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "passive": 14, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "prone" + ], + "languages": [ + "Common plus two more languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The oblex casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "daily": { + "3e": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell detect thoughts}", + "{@spell hypnotic pattern}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Aversion to Fire", + "entries": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The oblex doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oblex makes two pseudopod attacks, and it uses Eat Memories." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 7 ({@damage 2d6}) psychic damage." + ] + }, + { + "name": "Eat Memories", + "entries": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 15} Wisdom saving throw or take 18 ({@damage 4d8}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, Oozes, Plants, and Undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from its ability checks and attack rolls. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "The oblex learns all the languages a memory-drained target knows and gains all its skill proficiencies." + ] + } + ], + "bonus": [ + { + "name": "Sulfurous Impersonation", + "entries": [ + "The oblex extrudes a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 1d4 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. The simulacrum is an extension of the oblex, meaning that the oblex occupies its space and the simulacrum's space simultaneously. The tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex and the simulacrum. The simulacrum disappears if the tether is severed." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oblex-adult.mp3" + }, + "traitTags": [ + "Amorphous", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "incapacitated", + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Air Elemental Myrmidon", + "source": "MPMM", + "page": 122, + "otherSources": [ + { + "source": "MTF", + "page": 202 + } + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 9, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Auran", + "one language of its creator's choice" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes three Flail attacks." + ] + }, + { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage." + ] + }, + { + "name": "Lightning Strike {@recharge}", + "entries": [ + "The myrmidon makes one Flail attack. On a hit, the target takes an extra 18 ({@damage 4d8}) lightning damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the myrmidon's next turn." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/air-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "flail|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU" + ], + "damageTags": [ + "L", + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Alhoon", + "source": "MPMM", + "page": 43, + "otherSources": [ + { + "source": "VGM", + "page": 172 + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "mind flayer", + "wizard" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30, + "fly": { + "number": 15, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 11, + "dex": 12, + "con": 16, + "int": 19, + "wis": 17, + "cha": 17, + "save": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "arcana": "+8", + "deception": "+7", + "history": "+8", + "insight": "+7", + "perception": "+7", + "stealth": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "lightning", + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The alhoon casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell globe of invulnerability}", + "{@spell invisibility}", + "{@spell modify memory}", + "{@spell plane shift} (self only)", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The alhoon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The alhoon has advantage on saving throws against any effect that turns Undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The alhoon makes two Chilling Grasp or Arcane Bolt attacks." + ] + }, + { + "name": "Chilling Grasp", + "entries": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) cold damage, and the alhoon regains 14 hit points." + ] + }, + { + "name": "Arcane Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) force damage." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The alhoon magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "reaction": [ + { + "name": "Negate Spell (3/Day)", + "entries": [ + "The alhoon targets one creature it can see within 60 feet of it that is casting a spell. If the spell is 3rd level or lower, the spell fails, but any spell slots or charges are not wasted." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/alhoon.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Turn Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "C", + "O", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Alkilith", + "source": "MPMM", + "page": 44, + "otherSources": [ + { + "source": "MTF", + "page": 130 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d8 + 96" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 12, + "dex": 19, + "con": 22, + "int": 6, + "wis": 11, + "cha": 7, + "save": { + "dex": "+8", + "con": "+10" + }, + "skill": { + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "11", + "trait": [ + { + "name": "Abyssal Rift", + "entries": [ + "If the alkilith surrounds a door, window, or similar opening continuously for {@dice 6d6} days, the opening becomes a permanent portal to a random layer of the Abyss." + ] + }, + { + "name": "Amorphous", + "entries": [ + "The alkilith can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "False Appearance", + "entries": [ + "If the alkilith is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the alkilith move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the alkilith isn't ordinary slime or fungus." + ] + }, + { + "name": "Foment Confusion", + "entries": [ + "Any creature that isn't a demon that starts its turn within 30 feet of the alkilith must succeed on a {@dc 18} Wisdom saving throw, or it hears a faint buzzing in its head for a moment and has disadvantage on its next attack roll, saving throw, or ability check.", + "If the saving throw against Foment Confusion fails by 5 or more, the creature is instead subjected to the {@spell confusion} spell for 1 minute (no {@status concentration} required by the alkilith). While under the effect of that confusion, the creature is immune to Foment Confusion." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The alkilith has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The alkilith can climb difficult surfaces, such as upside down on ceilings, without making an ability check." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The alkilith doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The alkilith makes three Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}18 ({@damage 4d6 + 4}) acid damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/alkilith.mp3" + }, + "traitTags": [ + "Amorphous", + "False Appearance", + "Magic Resistance", + "Spider Climb", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "A" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Allip", + "source": "MPMM", + "page": 45, + "otherSources": [ + { + "source": "MTF", + "page": 116 + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 13 + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 6, + "dex": 17, + "con": 10, + "int": 17, + "wis": 15, + "cha": 16, + "save": { + "int": "+6", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The allip can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The allip doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Maddening Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) psychic damage." + ] + }, + { + "name": "Howling Babble {@recharge}", + "entries": [ + "Each creature within 30 feet of the allip that can hear it must make a {@dc 14} Wisdom saving throw. On a failed save, a target takes 12 ({@damage 2d8 + 3}) psychic damage, and it is {@condition stunned} until the end of its next turn. On a successful save, it takes half as much damage and isn't {@condition stunned}. Constructs and Undead are immune to this effect." + ] + }, + { + "name": "Whispers of Compulsion", + "entries": [ + "The allip chooses up to three creatures it can see within 60 feet of it. Each target must succeed on a {@dc 14} Wisdom saving throw, or it takes 12 ({@damage 2d8 + 3}) psychic damage and must use its reaction to make a melee weapon attack against one creature of the allip's choice that the allip can see. Constructs and Undead are immune to this effect." + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/allip.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O", + "Y" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amnizu", + "source": "MPMM", + "page": 46, + "otherSources": [ + { + "source": "MTF", + "page": 164 + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 11, + "dex": 13, + "con": 16, + "int": 20, + "wis": 12, + "cha": 18, + "save": { + "dex": "+7", + "con": "+9", + "wis": "+7", + "cha": "+10" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "telepathy 1,000 ft." + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The amnizu casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell command}" + ], + "daily": { + "1": [ + "{@spell feeblemind}" + ], + "3": [ + "{@spell dominate monster}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the amnizu's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The amnizu has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The amnizu uses Blinding Rot or Forgetfulness, if available. It also makes two Taskmaster Whip attacks." + ] + }, + { + "name": "Taskmaster Whip", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage plus 16 ({@damage 3d10}) force damage." + ] + }, + { + "name": "Blinding Rot", + "entries": [ + "The amnizu targets one or two creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 19} Wisdom saving throw or take 26 ({@damage 4d12}) necrotic damage and be {@condition blinded} until the start of the amnizu's next turn." + ] + }, + { + "name": "Forgetfulness {@recharge}", + "entries": [ + "The amnizu targets one creature it can see within 60 feet of it. That creature must succeed on a {@dc 18} Intelligence saving throw or take 26 ({@damage 4d12}) psychic damage and become {@condition stunned} for 1 minute. A {@condition stunned} creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target is {@condition stunned} for the full minute, it forgets everything it sensed, experienced, and learned during the last 5 hours." + ] + } + ], + "reaction": [ + { + "name": "Instinctive Charm", + "entries": [ + "When a creature within 60 feet of the amnizu makes an attack roll against it, and another creature is within the attack's range, the attacker must make a {@dc 19} Wisdom saving throw. On a failed save, the attacker must target the creature that is closest to it, not including the amnizu or itself. If multiple creatures are closest, the attacker chooses which one to target. If the saving throw is successful, the attacker is immune to the amnizu's Instinctive Charm for 24 hours." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Devil Summoning", + "entries": [ + "Some amnizus have an action that allows them to summon other devils:", + { + "name": "Summon Devil (1/Day)", + "type": "entries", + "entries": [ + "The amnizu summons {@dice 2d4} bearded devils or {@dice 1d4} barbed devils. A summoned devil appears in an unoccupied space within 60 feet of the amnizu, acts as an ally of the amnizu, and can't summon other devils. It remains for 1 minute, until the amnizu dies, or until its summoner dismisses it as an action" + ] + } + ], + "_version": { + "name": "Amnizu (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/amnizu.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I", + "TP" + ], + "damageTags": [ + "N", + "O", + "S", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Angry Sorrowsworn", + "source": "MPMM", + "page": 222, + "otherSources": [ + { + "source": "MTF", + "page": 231 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 19, + "int": 8, + "wis": 13, + "cha": 6, + "skill": { + "perception": "+11" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 21, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "13", + "trait": [ + { + "name": "Two Heads", + "entries": [ + "The sorrowsworn has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + }, + { + "name": "Rising Anger", + "entries": [ + "If another creature deals damage to the sorrowsworn, the sorrowsworn's attack rolls have advantage until the end of its next turn, and the first time it hits with a Hook attack on its next turn, the attack's target takes an extra 19 ({@damage 3d12}) psychic damage.", + "On its turn, the sorrowsworn has disadvantage on attack rolls if no other creature has dealt damage to it since the end of its last turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sorrowsworn makes two Hook attacks." + ] + }, + { + "name": "Hook", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d12 + 3}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-angry.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Annis Hag", + "source": "MPMM", + "page": 47, + "otherSources": [ + { + "source": "VGM", + "page": 159 + } + ], + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 12, + "con": 14, + "int": 13, + "wis": 14, + "cha": 15, + "save": { + "con": "+5" + }, + "skill": { + "deception": "+5", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold" + ], + "languages": [ + "Common", + "Giant", + "Sylvan" + ], + "cr": { + "cr": "6", + "coven": "8" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hag casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "3e": [ + "{@spell disguise self} (including the form of a Medium Humanoid)", + "{@spell Fog cloud}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The annis makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ] + }, + { + "name": "Crushing Hug", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}36 ({@damage 9d6 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. Until the grapple ends, the target takes 36 ({@damage 9d6 + 5}) bludgeoning damage at the start of each of the hag's turns. The hag can't make attacks while grappling a creature in this way." + ] + } + ], + "environment": [ + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/annis-hag.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "S" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Apprentice Wizard", + "source": "MPMM", + "page": 259, + "otherSources": [ + { + "source": "VGM", + "page": 209 + }, + { + "source": "SjA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 14, + "wis": 10, + "cha": 11, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 12})" + ], + "will": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell mage armor}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 120 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/apprentice-wizard.mp3" + }, + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Archdruid", + "source": "MPMM", + "page": 48, + "otherSources": [ + { + "source": "VGM", + "page": 210 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "druid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 154, + "formula": "28d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 12, + "int": 12, + "wis": 20, + "cha": 11, + "save": { + "int": "+5", + "wis": "+9" + }, + "skill": { + "medicine": "+9", + "nature": "+5", + "perception": "+9" + }, + "passive": 19, + "languages": [ + "Druidic plus any two languages" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archdruid casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell beast sense}", + "{@spell entangle}", + "{@spell speak with animals}" + ], + "daily": { + "3e": [ + "{@spell animal messenger}", + "{@spell dominate beast}", + "{@spell faerie fire}", + "{@spell tree stride}" + ], + "1e": [ + "{@spell commune with nature} (as an action)", + "{@spell mass cure wounds}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archdruid makes three Staff or Wildfire attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 21 ({@damage 6d6}) poison damage." + ] + }, + { + "name": "Wildfire", + "entries": [ + "{@atk rs} {@hit 9} to hit, range 120 ft., one target. {@h}26 ({@damage 6d6 + 5}) fire damage, and the target is {@condition blinded} until the start of the druid's next turn." + ] + } + ], + "bonus": [ + { + "name": "Change Shape (2/Day)", + "entries": [ + "The archdruid magically transforms into a Beast or an Elemental with a challenge rating of 6 or less and can remain in that form for up to 9 hours. The archdruid can choose whether its equipment falls to the ground, melds with its new form, or is worn by the new form. The archdruid reverts to its true form if it dies or falls {@condition unconscious}. The archdruid can revert to its true form using a bonus action.", + "While in a new form, the archdruid's stat block is replaced by the stat block of that form, except the archdruid keeps its current hit points, its hit point maximum, this bonus action, its languages and ability to speak, and its Spellcasting action.", + "The new form's attacks count as magical for the purpose of overcoming resistances and immunity to nonmagical attacks." + ] + } + ], + "environment": [ + "forest", + "mountain", + "swamp", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/archdruid.mp3" + }, + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "DU", + "X" + ], + "damageTags": [ + "B", + "F", + "I" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Archer", + "source": "MPMM", + "page": 49, + "otherSources": [ + { + "source": "VGM", + "page": 210 + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 16, + "int": 11, + "wis": 13, + "cha": 10, + "skill": { + "acrobatics": "+6", + "perception": "+5" + }, + "passive": 15, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archer makes two Shortsword or Longbow attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Archer's Eye (3/Day)", + "entries": [ + "Immediately after making an attack roll or a damage roll with a ranged weapon, the archer can roll a {@dice d10} and add the number rolled to the total." + ] + } + ], + "environment": [ + "forest", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/archer.mp3" + }, + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Armanite", + "source": "MPMM", + "page": 50, + "otherSources": [ + { + "source": "MTF", + "page": 131 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45" + }, + "speed": { + "walk": 60 + }, + "str": 21, + "dex": 18, + "con": 21, + "int": 8, + "wis": 12, + "cha": 13, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The armanite has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The armanite makes one Claw attack, one Hooves attack, and one Serrated Tail attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 9 ({@damage 2d8}) lightning damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Serrated Tail", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ] + }, + { + "name": "Lightning Lance {@recharge 5}", + "entries": [ + "The armanite looses a bolt of lightning in a line that is 60 feet long and 10 feet wide. Each creature in the line must make a {@dc 15} Dexterity saving throw, taking 36 ({@damage 8d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/armanite.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "B", + "L", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Astral Dreadnought", + "source": "MPMM", + "page": 51, + "otherSources": [ + { + "source": "MTF", + "page": 117 + }, + { + "source": "VEoR" + } + ], + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "titan" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119" + }, + "speed": { + "walk": 15, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 28, + "dex": 7, + "con": 25, + "int": 5, + "wis": 14, + "cha": 18, + "save": { + "dex": "+5", + "wis": "+9" + }, + "skill": { + "perception": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "stunned" + ], + "cr": "21", + "trait": [ + { + "name": "Antimagic Cone", + "entries": [ + "The dreadnought's eye creates an area of antimagic, as in the {@spell antimagic field} spell, in a 150-foot cone. At the start of each of its turns, it decides which way the cone faces. The cone doesn't function while the eye is closed or while the dreadnought is {@condition blinded}." + ] + }, + { + "name": "Astral Entity", + "entries": [ + "The dreadnought can't leave the Astral Plane, nor can it be banished or otherwise transported out of that plane." + ] + }, + { + "name": "Demiplanar Donjon", + "entries": [ + "Anything the dreadnought swallows is transported to a demiplane that can be entered by no other means except a {@spell wish} spell or the dreadnought's Bite and Donjon Visit. A creature can leave the demiplane only by using magic that enables planar travel, such as the {@spell plane shift} spell. The demiplane resembles a stone cave roughly 1,000 feet in diameter with a ceiling 100 feet high. Like a stomach, it contains the remains of past meals. The dreadnought can't be harmed from within the demiplane. If the dreadnought dies, the demiplane disappears, and everything inside it appears around the dreadnought's corpse. The demiplane is otherwise indestructible." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dreadnought fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Sever Silver Cord", + "entries": [ + "If the dreadnought scores a critical hit against a creature traveling by means of the {@spell astral projection} spell, the dreadnought can cut the target's silver cord instead of dealing damage." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dreadnought doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dreadnought makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}36 ({@damage 5d10 + 9}) force damage. If the target is a Huge or smaller creature and this damage reduces it to 0 hit points or it is {@condition incapacitated}, the dreadnought swallows it. The swallowed target, along with everything it is wearing and carrying, appears in an unoccupied space on the floor of the Demiplanar Donjon." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d6 + 9}) force damage." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The dreadnought makes one Claw attack." + ] + }, + { + "name": "Donjon Visit (Costs 2 Actions)", + "entries": [ + "One Huge or smaller creature that the dreadnought can see within 60 feet of it must succeed on a {@dc 19} Charisma saving throw or be teleported to an unoccupied space on the floor of the Demiplanar Donjon. At the end of the target's next turn, it reappears in the space it left or in the nearest unoccupied space if that space is occupied." + ] + }, + { + "name": "Psychic Projection (Costs 3 Actions)", + "entries": [ + "Each creature within 60 feet of the dreadnought must make a {@dc 19} Wisdom saving throw, taking 26 ({@damage 4d10 + 4}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/astral-dreadnought.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "O", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aurochs", + "source": "MPMM", + "page": 71, + "otherSources": [ + { + "source": "VGM", + "page": 207 + } + ], + "size": [ + "L" + ], + "type": { + "type": "beast", + "tags": [ + "cattle" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "4d10 + 16" + }, + "speed": { + "walk": 50 + }, + "str": 20, + "dex": 10, + "con": 19, + "int": 2, + "wis": 12, + "cha": 5, + "passive": 11, + "cr": "2", + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage. If the aurochs moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 9 ({@damage 2d8}) piercing damage, and the target must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone} if it is a creature." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/aurochs.mp3" + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Autumn Eladrin", + "source": "MPMM", + "page": 115, + "otherSources": [ + { + "source": "MTF", + "page": 195 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 16, + "int": 14, + "wis": 17, + "cha": 18, + "skill": { + "insight": "+7", + "medicine": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "psychic" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eladrin casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell hold person}" + ], + "daily": { + "2e": [ + "{@spell cure wounds} (as a 5th-level spell)", + "{@spell lesser restoration}" + ], + "1e": [ + "{@spell greater restoration}", + "{@spell revivify}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Enchanting Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by the eladrin for 1 minute. On a successful save, the creature becomes immune to any eladrin's Enchanting Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eladrin makes two Longsword or Longbow attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) psychic damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 22 ({@damage 5d8}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "reaction": [ + { + "name": "Foster Peace", + "entries": [ + "If a creature {@condition charmed} by the eladrin hits with an attack roll while within 60 feet of the eladrin, the eladrin magically causes the attack to miss, provided the eladrin can see the attacker." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/autumn-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Babau", + "source": "MPMM", + "page": 52, + "otherSources": [ + { + "source": "VGM", + "page": 136 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 16, + "con": 16, + "int": 11, + "wis": 12, + "cha": 13, + "skill": { + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The babau casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 11}):" + ], + "will": [ + "{@spell darkness}", + "{@spell dispel magic}", + "{@spell fear}", + "{@spell heat metal}", + "{@spell levitate}" + ], + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The babau makes two Claw attacks. It can replace one attack with a use of Spellcasting or Weakening Gaze." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage plus 2 ({@damage 1d4}) acid damage." + ] + }, + { + "name": "Weakening Gaze", + "entries": [ + "The babau targets one creature that it can see within 20 feet of it. The target must make a {@dc 13} Constitution saving throw. On a failed save, the target deals only half damage with weapon attacks that use Strength for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/babau.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "A", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bael", + "isNamedCreature": true, + "source": "MPMM", + "page": 54, + "otherSources": [ + { + "source": "MTF", + "page": 170 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 24, + "dex": 17, + "con": 20, + "int": 21, + "wis": 24, + "cha": 24, + "save": { + "dex": "+9", + "con": "+11", + "int": "+11", + "cha": "+13" + }, + "skill": { + "intimidation": "+13", + "perception": "+13", + "persuasion": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "19", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Bael casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell alter self} (can become Medium)", + "{@spell charm person}", + "{@spell detect magic}", + "{@spell invisibility}", + "{@spell major image}" + ], + "daily": { + "1": [ + "{@spell dominate monster}" + ], + "3e": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell suggestion}", + "{@spell wall of fire}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Dread", + "entries": [ + "Any creature, other than a devil, that starts its turn within 10 feet of Bael must succeed on a {@dc 22} Wisdom saving throw or be {@condition frightened} of him until the start of its next turn. A creature succeeds on this saving throw automatically if Bael wishes it or if he is {@condition incapacitated}." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Bael fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Bael have advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Bael regains 20 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Bael dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bael makes two Hellish Morningstar attacks." + ] + }, + { + "name": "Hellish Morningstar", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}16 ({@damage 2d8 + 7}) force damage plus 9 ({@damage 2d8}) necrotic damage." + ] + }, + { + "name": "Infernal Command", + "entries": [ + "Each of Bael's allies within 60 feet of him can't be {@condition charmed} or {@condition frightened} until the end of his next turn." + ] + }, + { + "name": "Teleport", + "entries": [ + "Bael teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "legendary": [ + { + "name": "Fiendish Magic", + "entries": [ + "Bael uses Spellcasting or Teleport." + ] + }, + { + "name": "Infernal Command", + "entries": [ + "Bael uses Infernal Command." + ] + }, + { + "name": "Attack (Costs 2 Actions)", + "entries": [ + "Bael makes one Hellish Morningstar attack." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bael.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "N", + "O" + ], + "damageTagsSpell": [ + "B", + "F", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "invisible" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Balhannoth", + "source": "MPMM", + "page": 55, + "otherSources": [ + { + "source": "MTF", + "page": 119 + }, + { + "source": "RtG", + "page": 31 + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 17, + "dex": 8, + "con": 18, + "int": 6, + "wis": 15, + "cha": 8, + "save": { + "con": "+8" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "blindsight 500 ft. (blind beyond this radius)" + ], + "passive": 16, + "conditionImmune": [ + "blinded" + ], + "languages": [ + "understands Deep Speech", + "telepathy 1 mile" + ], + "cr": "11", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the balhannoth fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The balhannoth makes one Bite attack and two Tentacle attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d10 + 3}) piercing damage." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) and is moved up to 5 feet toward the balhannoth. Until this grapple ends, the target is {@condition restrained}, and the balhannoth can't use this tentacle against other targets. The balhannoth has four tentacles." + ] + } + ], + "legendary": [ + { + "name": "Bite", + "entries": [ + "The balhannoth makes one Bite attack against one creature it has {@condition grappled}." + ] + }, + { + "name": "Teleport", + "entries": [ + "The balhannoth teleports, along with any equipment it is wearing or carrying and any creatures it has {@condition grappled}, up to 60 feet to an unoccupied space it can see." + ] + }, + { + "name": "Vanish", + "entries": [ + "The balhannoth magically becomes {@condition invisible} for up to 10 minutes or until immediately after it makes an attack roll." + ] + } + ], + "legendaryGroup": { + "name": "Balhannoth", + "source": "MPMM" + }, + "environment": [ + "coastal", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/balhannoth.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "invisible", + "restrained" + ], + "conditionInflictLegendary": [ + "invisible" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Banderhobb", + "source": "MPMM", + "page": 56, + "otherSources": [ + { + "source": "VGM", + "page": 122 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 11, + "wis": 14, + "cha": 8, + "skill": { + "athletics": "+8", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "understands Common and the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Resonant Connection", + "entries": [ + "If the banderhobb has even a tiny piece of a creature or an object in its possession, such as a lock of hair or a splinter of wood, it knows the most direct route to that creature or object if it is within 1 mile of the banderhobb." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The banderhobb makes one Bite attack and one Tongue attack. It can replace one attack with a use of Shadow Step." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the banderhobb can't use its Bite attack or Tongue attack on another target." + ] + }, + { + "name": "Tongue", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one creature. {@h}10 ({@damage 3d6}) necrotic damage, and the target must make a {@dc 16} Strength saving throw. On a failed save, the target is pulled to a space within 5 feet of the banderhobb." + ] + }, + { + "name": "Shadow Step", + "entries": [ + "The banderhobb teleports up to 30 feet to an unoccupied space of dim light or darkness that it can see." + ] + }, + { + "name": "Swallow", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one Medium or smaller creature {@condition grappled} by the banderhobb. {@h}15 ({@damage 3d6 + 5}) piercing damage. The creature is also swallowed, and the grapple ends. The swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the banderhobb, and it takes 10 ({@damage 3d6}) necrotic damage at the start of each of the banderhobb's turns. A creature reduced to 0 hit points in this way stops taking the necrotic damage and becomes stable.", + "The banderhobb can have only one creature swallowed at a time. While the banderhobb isn't {@condition incapacitated}, it can regurgitate the creature at any time (no action required) in a space within 5 feet of it. The creature exits {@condition prone}. If the banderhobb dies, it likewise regurgitates a swallowed creature." + ] + } + ], + "bonus": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the banderhobb takes the {@action Hide} action." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/banderhobb.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Baphomet", + "isNamedCreature": true, + "source": "MPMM", + "page": 58, + "otherSources": [ + { + "source": "MTF", + "page": 143 + }, + { + "source": "CoA" + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 319, + "formula": "22d12 + 176" + }, + "speed": { + "walk": 40 + }, + "str": 30, + "dex": 14, + "con": 26, + "int": 18, + "wis": 24, + "cha": 16, + "save": { + "dex": "+9", + "con": "+15", + "wis": "+14" + }, + "skill": { + "intimidation": "+17", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Baphomet casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "daily": { + "1": [ + "{@spell teleport}" + ], + "3e": [ + "{@spell dispel magic}", + "{@spell dominate beast}", + "{@spell maze}", + "{@spell wall of stone}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Labyrinthine Recall", + "entries": [ + "Baphomet can perfectly recall any path he has traveled, and he is immune to the {@spell maze} spell." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Baphomet fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Baphomet has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Baphomet makes one Bite attack, one Gore attack, and one Heartcleaver attack. He also uses Frightful Presence." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) piercing damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) piercing damage. If Baphomet moved at least 10 feet straight toward the target immediately before the hit, the target takes an extra 16 ({@damage 3d10}) piercing damage. If the target is a creature, it must succeed on a {@dc 25} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ] + }, + { + "name": "Heartcleaver", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) force damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Baphomet's choice within 120 feet of him and aware of him must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. These later saves have disadvantage if Baphomet is within line of sight of the creature.", + "If a creature succeeds on any of these saves or the effect ends on it, the creature is immune to Baphomet's Frightful Presence for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Heartcleaver Attack", + "entries": [ + "Baphomet makes one Heartcleaver attack." + ] + }, + { + "name": "Charge (Costs 2 Actions)", + "entries": [ + "Baphomet moves up to his speed without provoking {@action opportunity attack||opportunity attacks}, then makes a Gore attack." + ] + } + ], + "legendaryGroup": { + "name": "Baphomet", + "source": "MPMM" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "O", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bard", + "source": "MPMM", + "page": 59, + "otherSources": [ + { + "source": "VGM", + "page": 211 + }, + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "save": { + "dex": "+4", + "wis": "+3" + }, + "skill": { + "acrobatics": "+4", + "perception": "+5", + "performance": "+6" + }, + "passive": 15, + "languages": [ + "any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The bard casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell invisibility}", + "{@spell sleep}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bard makes two Shortsword or Shortbow attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Cacophony {@recharge 4}", + "entries": [ + "Each creature in a 15-foot cube originating from the bard must make a {@dc 12} Constitution saving throw. On a failed save, a creature takes 9 ({@damage 2d8}) thunder damage and is pushed up to 10 feet away from the bard. On a successful save, a creature takes half as much damage and isn't pushed." + ] + } + ], + "bonus": [ + { + "name": "Taunt (2/Day)", + "entries": [ + "The bard targets one creature within 30 feet of it. If the target can hear the bard, the target must succeed on a {@dc 12} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of the bard's next turn." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bard.mp3" + }, + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P", + "T" + ], + "spellcastingTags": [ + "CB" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "charisma", + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Barghest", + "source": "MPMM", + "page": 60, + "otherSources": [ + { + "source": "VGM", + "page": 123 + } + ], + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16" + }, + "speed": { + "walk": { + "number": 60, + "condition": "(30 ft. in goblin form)" + } + }, + "str": 19, + "dex": 15, + "con": 14, + "int": 13, + "wis": 12, + "cha": 14, + "skill": { + "deception": "+4", + "intimidation": "+4", + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Goblin", + "Infernal", + "telepathy 60 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The barghest casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell levitate}", + "{@spell minor illusion}", + "{@spell pass without trace}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell dimension door}", + "{@spell suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fire Banishment", + "entries": [ + "When the barghest starts its turn engulfed in flames that are at least 10 feet high or wide, it must succeed on a {@dc 15} Charisma saving throw or be instantly banished to Gehenna" + ] + }, + { + "name": "Soul Feeding", + "entries": [ + "The barghest can feed on the corpse of a Fey or Humanoid it killed within the past 10 minutes. This feeding takes at least 1 minute, and it destroys the corpse. The victim's soul is trapped in the barghest for 24 hours, after which time it is digested and the person is incapable of being revived. If the barghest dies before the soul is digested, the soul is released. While a soul is trapped in the barghest, any magic that tries to restore the soul to life has a {@chance 50} chance of failing and being wasted." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The barghest makes one Bite attack and one Claw attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The barghest transforms into a Small goblin or back into its true form. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. The barghest reverts to its true form if it dies." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/barghest.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "GO", + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Berbalang", + "source": "MPMM", + "page": 61, + "otherSources": [ + { + "source": "MTF", + "page": 120 + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 49, + "formula": "14d8 - 14" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 9, + "dex": 16, + "con": 9, + "int": 17, + "wis": 11, + "cha": 10, + "save": { + "dex": "+5", + "int": "+5" + }, + "skill": { + "arcana": "+5", + "history": "+5", + "insight": "+2", + "perception": "+2", + "religion": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 12, + "languages": [ + "all" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The berbalang casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell speak with dead}" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The berbalang makes one Bite attack and one", + "Claw attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 4 ({@damage 1d8}) psychic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Spectral Duplicate (Recharges after a Short or Long Rest)", + "entries": [ + "The berbalang creates one spectral duplicate of itself in an unoccupied space it can see within 60 feet of it. While the duplicate exists, the berbalang is {@condition unconscious}. A berbalang can have only one duplicate at a time. The duplicate disappears when it or the berbalang drops to 0 hit points or when the berbalang dismisses it (no action required).", + "The duplicate has the same statistics and knowledge as the berbalang, and everything experienced by the duplicate is known by the berbalang. All damage dealt by the duplicate's attacks is psychic damage." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/berbalang.mp3" + }, + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bheur Hag", + "source": "MPMM", + "page": 62, + "otherSources": [ + { + "source": "VGM", + "page": 160 + } + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30, + "fly": { + "number": 50, + "condition": "(hover, Graystaff magic)" + }, + "canHover": true + }, + "str": 13, + "dex": 16, + "con": 14, + "int": 12, + "wis": 13, + "cha": 16, + "save": { + "wis": "+4" + }, + "skill": { + "nature": "+4", + "perception": "+4", + "stealth": "+6", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Auran", + "Common", + "Giant" + ], + "cr": { + "cr": "7", + "coven": "9" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "While holding or riding the graystaff, the hag casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell hold person}" + ], + "daily": { + "1e": [ + "{@spell cone of cold}", + "{@spell ice storm}", + "{@spell wall of ice}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Control Weather (1/Day)", + "entries": [ + "The hag can cast the {@spell control weather} spell, requiring no material components and using Charisma as the spellcasting ability." + ] + }, + { + "name": "Graystaff Magic", + "entries": [ + "The hag carries a graystaff, a magic staff. The hag can use its flying speed only while astride the staff. If the staff is lost or destroyed, the hag must craft another, which takes a year and a day. Only a bheur hag can use a graystaff" + ] + }, + { + "name": "Ice Walk", + "entries": [ + "The hag can move across and climb icy surfaces without needing to make an ability check, and {@quickref difficult terrain||3} composed of ice or snow doesn't cost the hag extra moment." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hag makes two Slam or Frost Shard attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) bludgeoning damage plus 18 ({@damage 4d8}) cold damage." + ] + }, + { + "name": "Frost Shard", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}30 ({@damage 6d8 + 3}) cold damage, and the target's speed is reduced by 10 feet until the start of the hag's next turn." + ] + }, + { + "name": "Horrific Feast", + "entries": [ + "The hag feeds on the corpse of one enemy within reach that died within the past minute. Each creature of the hag's choice that is within 60 feet and able to see the feeding must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of the hag for 1 minute. While {@condition frightened} in this way, a creature is {@condition incapacitated}, can't understand what others say, can't read, and speaks only in gibberish. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Horrific Feast for the next 24 hours." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bheur-hag.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C", + "GI" + ], + "damageTags": [ + "B", + "C" + ], + "damageTagsSpell": [ + "B", + "C" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "incapacitated" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Black Abishai", + "source": "MPMM", + "page": 38, + "otherSources": [ + { + "source": "MTF", + "page": 160 + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 14, + "dex": 17, + "con": 14, + "int": 13, + "wis": 16, + "cha": 11, + "save": { + "dex": "+6", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "acid", + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "7", + "spellcasting": [ + { + "name": "Creeping Darkness {@recharge}", + "type": "spellcasting", + "headerEntries": [ + "The abishai casts {@spell darkness} at a point within 120 feet of it, requiring no spell components or {@status concentration}. Wisdom is its spellcasting ability for this spell. While the spell persists, the abishai can move the area of darkness up to 60 feet as a bonus action." + ], + "recharge": { + "6": [ + "{@spell darkness}" + ] + }, + "ability": "wis", + "displayAs": "action", + "hidden": [ + "recharge" + ] + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes one Bite attack and two Scimitar attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the abishai takes the {@action Hide} action." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/black-abishai.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "A", + "O", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blackguard", + "source": "MPMM", + "page": 63, + "otherSources": [ + { + "source": "VGM", + "page": 211 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "paladin" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 18, + "int": 11, + "wis": 14, + "cha": 15, + "save": { + "wis": "+5", + "cha": "+5" + }, + "skill": { + "athletics": "+7", + "deception": "+5", + "intimidation": "+5" + }, + "passive": 12, + "languages": [ + "any one language (usually Common)" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The blackguard casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "2e": [ + "{@spell command}", + "{@spell dispel magic}", + "{@spell find steed}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blackguard makes three attacks, using Glaive, Shortbow, or both." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage plus 9 ({@damage 2d8}) necrotic damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Dreadful Aspect (Recharges after a Short or Long Rest)", + "entries": [ + "Each enemy within 30 feet of the blackguard must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of the blackguard for 1 minute. If a {@condition frightened} target ends its turn more than 30 feet away from the blackguard, the target can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Smite", + "entries": [ + "Immediately after the blackguard hits a target with an attack roll, the blackguard can force that target to make a {@dc 13} Constitution saving throw. On a failed save, the target suffers one of the following effects of the blackguard's choice:" + ] + }, + { + "name": "Blind", + "entries": [ + "The target is {@condition blinded} for 1 minute. The {@condition blinded} target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Shove", + "entries": [ + "The target is pushed up to 10 feet away and knocked {@condition prone}." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blackguard.mp3" + }, + "attachedItems": [ + "glaive|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "conditionInflict": [ + "blinded", + "frightened", + "prone" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blue Abishai", + "source": "MPMM", + "page": 39, + "otherSources": [ + { + "source": "MTF", + "page": 161 + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil", + "wizard" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 15, + "dex": 14, + "con": 17, + "int": 22, + "wis": 23, + "cha": 18, + "save": { + "int": "+12", + "wis": "+12" + }, + "skill": { + "arcana": "+12" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "lightning", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The abishai casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "2e": [ + "{@spell charm person}", + "{@spell dispel magic}", + "{@spell greater invisibility}", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes three Bite or Lightning Strike attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage plus 14 ({@damage 4d6}) lightning damage." + ] + }, + { + "name": "Lightning Strike", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}36 ({@damage 8d8}) lightning damage." + ] + } + ], + "bonus": [ + { + "name": "Teleport", + "entries": [ + "The abishai teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space that it can see." + ] + } + ], + "environment": [ + "coastal", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blue-abishai.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "L", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "invisible" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bodak", + "source": "MPMM", + "page": 64, + "otherSources": [ + { + "source": "VGM", + "page": 127 + }, + { + "source": "SatO" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 15, + "int": 7, + "wis": 12, + "cha": 12, + "skill": { + "perception": "+4", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "the languages it knew in life" + ], + "cr": "6", + "trait": [ + { + "name": "Death Gaze", + "entries": [ + "When a creature that can see the bodak's eyes starts its turn within 30 feet of the bodak, the bodak can force it to make a {@dc 13} Constitution saving throw if the bodak isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is reduced to 0 hit points unless it is immune to the {@condition frightened} condition. Otherwise, a creature takes 16 ({@damage 3d10}) psychic damage on a failed save.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it has disadvantage on attack rolls against the bodak until the start of its next turn. If the creature looks at the bodak in the meantime, that creature must immediately make the saving throw." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "The bodak takes 5 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The bodak doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ] + }, + { + "name": "Withering Gaze", + "entries": [ + "One creature that the bodak can see within 60 feet of it must make a {@dc 13} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Aura of Annihilation", + "entries": [ + "The bodak activates or deactivates this deathly aura. While active, the aura deals 5 necrotic damage to any creature that ends its turn within 30 feet of the bodak. Undead and Fiends ignore this effect." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bodak.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "LF" + ], + "damageTags": [ + "B", + "N", + "R", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boggle", + "source": "MPMM", + "page": 65, + "otherSources": [ + { + "source": "VGM", + "page": 128 + } + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 8, + "dex": 18, + "con": 13, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+5", + "sleight of hand": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "fire" + ], + "languages": [ + "Sylvan" + ], + "cr": "1/8", + "action": [ + { + "name": "Pummel", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ] + }, + { + "name": "Oil Puddle", + "entries": [ + "The boggle creates a puddle of nonflammable oil. The puddle is 1 inch deep and covers the ground in the boggle's space. The puddle is {@quickref difficult terrain||3} for all creatures except boggles and lasts for 1 hour. The oil has one of the following additional effects of the boggle's choice:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "Slippery Oil", + "type": "item", + "entries": [ + "Any non-boggle creature that enters the puddle or starts its turn there must succeed on a {@dc 11} Dexterity saving throw or fall {@condition prone}." + ] + }, + { + "name": "Sticky Oil", + "type": "item", + "entries": [ + "Any non-boggle creature that enters the puddle or starts its turn there must succeed on a {@dc 11} Strength saving throw or be {@condition restrained}. On its turn, a creature can use an action to try to extricate itself, ending the effect and moving into the nearest unoccupied space of its choice with a successful {@dc 11} Strength check." + ] + } + ] + } + ] + } + ], + "bonus": [ + { + "name": "Boggle Oil", + "entries": [ + "The boggle excretes nonflammable oil from its pores, giving itself one of the following benefits of its choice until it uses this bonus action again:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "Slippery Oil", + "type": "item", + "entries": [ + "The boggle has advantage on Dexterity ({@skill Acrobatics}) checks made to escape bonds and end grapples, and it can move through openings large enough for a Tiny creature without squeezing." + ] + }, + { + "name": "Sticky Oil", + "type": "item", + "entries": [ + "The boggle has advantage on Strength ({@skill Athletics}) checks made to grapple and any ability check made to maintain a hold on another creature, a surface, or an object. The boggle can also climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ] + } + ] + }, + { + "name": "Dimensional Rift", + "entries": [ + "The boggle creates an {@condition invisible} and immobile rift within an opening or frame it can see within 5 feet of it, provided that the space is no bigger than 10 feet on any side. The dimensional rift bridges the distance between that space and a point within 30 feet of it that the boggle can see or specify by distance and direction (such as \"30 feet straight up\"). While next to the rift, the boggle can see through it and is considered to be next to the destination as well, and anything the boggle puts through the rift (including a portion of its body) emerges at the destination. Only the boggle can use the rift, and it lasts until the end of the boggle's next turn." + ] + } + ], + "environment": [ + "forest", + "hill", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/boggle.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boneclaw", + "source": "MPMM", + "page": 66, + "otherSources": [ + { + "source": "MTF", + "page": 121 + } + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d10 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 16, + "con": 15, + "int": 13, + "wis": 15, + "cha": 9, + "save": { + "dex": "+7", + "con": "+6", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "cold", + "necrotic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common plus one language spoken by its master" + ], + "cr": "12", + "trait": [ + { + "name": "Rejuvenation", + "entries": [ + "While its master lives, a destroyed boneclaw gains a new body in {@dice 1d10} hours, with all its hit points. The new body appears within 1 mile of the boneclaw's master." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The boneclaw doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The boneclaw makes two Piercing Claw attacks." + ] + }, + { + "name": "Piercing Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}20 ({@damage 3d10 + 4}) piercing damage plus 11 ({@damage 2d10}) necrotic damage. If the target is a creature, the boneclaw can pull the target up to 10 feet toward itself, and the target is {@condition grappled} (escape {@dc 14}). The boneclaw has two claws. While a claw grapples a target, the claw can attack only that target." + ] + }, + { + "name": "Shadow Jump {@recharge 5}", + "entries": [ + "If the boneclaw is in dim light or darkness, each creature of the boneclaw's choice within 15 feet of it must succeed on a {@dc 14} Constitution saving throw or take 34 ({@damage 5d12 + 2}) necrotic damage.", + "The boneclaw then teleports up to 60 feet to an unoccupied space it can see. It can bring one creature it's grappling, teleporting that creature to an unoccupied space it can see within 5 feet of its destination. The destination spaces of this teleportation must be in dim light or darkness." + ] + } + ], + "bonus": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the boneclaw takes the {@action Hide} action." + ] + } + ], + "reaction": [ + { + "name": "Deadly Reach", + "entries": [ + "In response to a creature entering a space within 15 feet of it, the boneclaw makes one Piercing Claw attack against that creature." + ] + } + ], + "environment": [ + "arctic", + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/boneclaw.mp3" + }, + "traitTags": [ + "Rejuvenation", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brontosaurus", + "source": "MPMM", + "page": 95, + "otherSources": [ + { + "source": "VGM", + "page": 139 + } + ], + "size": [ + "G" + ], + "type": { + "type": "beast", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 121, + "formula": "9d20 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 9, + "con": 17, + "int": 2, + "wis": 10, + "cha": 7, + "save": { + "con": "+6" + }, + "passive": 10, + "cr": "5", + "action": [ + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}27 ({@damage 5d8 + 5}) bludgeoning damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}32 ({@damage 6d8 + 5}) bludgeoning damage" + ] + } + ], + "environment": [ + "forest", + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/brontosaurus.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Bulezau", + "source": "MPMM", + "page": 67, + "otherSources": [ + { + "source": "MTF", + "page": 131 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 14, + "con": 17, + "int": 8, + "wis": 9, + "cha": 6, + "senses": [ + "darkvision 120 ft." + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 60 ft." + ], + "cr": "3", + "trait": [ + { + "name": "Rotting Presence", + "entries": [ + "When any creature that isn't a demon starts its turn within 30 feet of the bulezau, that creature must succeed on a {@dc 13} Constitution saving throw or take 3 ({@damage 1d6}) necrotic damage." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The bulezau's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The bulezau has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Barbed Tail", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage plus 4 ({@damage 1d8}) necrotic damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned} until the disease ends. While {@condition poisoned} in this way, the target sports festering boils, coughs up flies, and sheds rotting skin, and the target must repeat the saving throw after every 24 hours that elapse. On a successful save, the disease ends. On a failed save, the target's hit point maximum is reduced by 4 ({@dice 1d8}). The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bulezau.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "DIS", + "HPR", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cadaver Collector", + "source": "MPMM", + "page": 68, + "otherSources": [ + { + "source": "MTF", + "page": 122 + }, + { + "source": "AATM" + }, + { + "source": "VEoR" + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 14, + "con": 20, + "int": 5, + "wis": 11, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "necrotic", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands all languages but can't speak" + ], + "cr": "14", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The collector has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The collector doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The collector makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 16 ({@damage 3d10}) necrotic damage." + ] + }, + { + "name": "Paralyzing Breath {@recharge 5}", + "entries": [ + "The collector releases paralyzing gas in a 30-foot cone. Each creature in that area must make a successful {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. A {@condition paralyzed} creature repeats the saving throw at the end of each of its turns, ending the effect on itself with a success." + ] + } + ], + "bonus": [ + { + "name": "Summon Specters (Recharges after a Short or Long Rest)", + "entries": [ + "The collector calls up the enslaved spirits of those it has slain; {@dice 1d4} {@creature specter||specters} (without Sunlight Sensitivity) arise in unoccupied spaces within 15 feet of it. The specters act right after the collector on the same initiative count and fight until they're destroyed. They disappear when the collector is destroyed." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cadaver-collector.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Canoloth", + "source": "MPMM", + "page": 69, + "otherSources": [ + { + "source": "MTF", + "page": 247 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 5, + "wis": 17, + "cha": 12, + "skill": { + "investigation": "+3", + "perception": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "8", + "trait": [ + { + "name": "Dimensional Lock", + "entries": [ + "Other creatures can't teleport to or from a space within 60 feet of the canoloth. Any attempt to do so is wasted." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The canoloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Uncanny Senses", + "entries": [ + "The canoloth can't be {@status surprised} unless it's {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The canoloth makes one Bite or Tongue attack and one Claw attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 18 ({@damage 4d8}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 9 ({@damage 2d8}) force damage." + ] + }, + { + "name": "Tongue", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 30 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage plus 7 ({@damage 2d6}) acid damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}), pulled up to 30 feet toward the canoloth, and {@condition restrained} until the grapple ends. The canoloth can grapple one target at a time with its tongue." + ] + } + ], + "environment": [ + "coastal", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/canoloth.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "A", + "O", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Catoblepas", + "source": "MPMM", + "page": 70, + "otherSources": [ + { + "source": "VGM", + "page": 129 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 12, + "con": 21, + "int": 3, + "wis": 14, + "cha": 8, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "cr": "5", + "trait": [ + { + "name": "Stench", + "entries": [ + "Any creature other than a catoblepas that starts its turn within 10 feet of the catoblepas must succeed on a {@dc 16} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the Stench of any catoblepas for 1 hour." + ] + } + ], + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}21 ({@damage 5d6 + 4}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the start of the catoblepas's next turn." + ] + }, + { + "name": "Death Ray {@recharge 5}", + "entries": [ + "The catoblepas targets one creature it can see within 30 feet of it. The target must make a {@dc 16} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the target instead takes 64 necrotic damage. The target dies if reduced to 0 hit points by this ray." + ] + } + ], + "environment": [ + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/catoblepas.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cave Fisher", + "source": "MPMM", + "page": 73, + "otherSources": [ + { + "source": "VGM", + "page": 130 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 3, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 12, + "cr": "3", + "trait": [ + { + "name": "Flammable Blood", + "entries": [ + "If the cave fisher drops to half its hit points or fewer, it gains vulnerability to fire damage." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The cave fisher can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cave fisher makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Retract Filament", + "entries": [ + "One Large or smaller creature {@condition grappled} by the cave fisher's Adhesive Filament must make a {@dc 13} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the cave fisher, and the cave fisher makes one Claw attack against it. Anyone else who was attached to the filament is released. Until the grapple ends on the target, the cave fisher can't use Adhesive Filament." + ] + } + ], + "bonus": [ + { + "name": "Adhesive Filament", + "entries": [ + "The cave fisher extends a sticky filament up to 60 feet, and the filament adheres to anything that touches it. A creature the filament adheres to is {@condition grappled} by the cave fisher (escape {@dc 13}), and ability checks made to escape this grapple have disadvantage. The filament can be attacked (AC 15; 5 hit points; immunity to poison and psychic damage). A weapon that fails to sever it becomes stuck to it, requiring an action and a successful {@dc 13} Strength check to pull free. Destroying the filament deals no damage to the cave fisher. The filament crumbles away if the cave fisher takes this bonus action again." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cave-fisher.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Champion", + "source": "MPMM", + "page": 74, + "otherSources": [ + { + "source": "VGM", + "page": 212 + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 14, + "int": 10, + "wis": 14, + "cha": 12, + "save": { + "str": "+9", + "con": "+6" + }, + "skill": { + "athletics": "+9", + "intimidation": "+5", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "any one language (usually Common)" + ], + "cr": "9", + "trait": [ + { + "name": "Indomitable (2/Day)", + "entries": [ + "The champion rerolls a failed saving throw." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes three Greatsword or Shortbow attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage, plus 7 ({@damage 2d6}) slashing damage if the champion has more than half of its total hit points remaining." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 7 ({@damage 2d6}) piercing damage if the champion has more than half of its total hit points remaining." + ] + } + ], + "bonus": [ + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "The champion regains 20 hit points." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/champion.mp3" + }, + "attachedItems": [ + "greatsword|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chitine", + "source": "MPMM", + "page": 75, + "otherSources": [ + { + "source": "VGM", + "page": 131 + } + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 10, + "wis": 10, + "cha": 7, + "skill": { + "athletics": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Undercommon" + ], + "cr": "1/2", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The chitine has advantage on saving throws against being {@condition charmed}, and magic can't put the chitine to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the chitine has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the chitine knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The chitine ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chitine makes three Dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/chitine.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Choker", + "source": "MPMM", + "page": 76, + "otherSources": [ + { + "source": "MTF", + "page": 123 + } + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 4, + "wis": 12, + "cha": 7, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Deep Speech" + ], + "cr": "1", + "trait": [ + { + "name": "Aberrant Quickness (Recharges after a Short or Long Rest)", + "entries": [ + "The choker can take an extra action on its turn." + ] + }, + { + "name": "Boneless", + "entries": [ + "The choker can move through and occupy a space as narrow as 4 inches wide without squeezing." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The choker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The choker makes two Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the choker can't use this tentacle on another target. The choker has two tentacles. If this attack is a critical hit, the target also can't breathe or speak until the grapple ends." + ] + } + ], + "environment": [ + "forest", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/choker.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Choldrith", + "source": "MPMM", + "page": 77, + "otherSources": [ + { + "source": "VGM", + "page": 132 + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "cleric" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 12, + "dex": 16, + "con": 12, + "int": 11, + "wis": 14, + "cha": 10, + "skill": { + "athletics": "+5", + "religion": "+2", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Undercommon" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The choldrith casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell bane}", + "{@spell hold person}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The choldrith has advantage on saving throws against being {@condition charmed}, and magic can't put the choldrith to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The choldrith can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the choldrith has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the choldrith knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The choldrith ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Web {@recharge 5}", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one Large or smaller creature. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 11} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; 5 hit points; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ] + } + ], + "bonus": [ + { + "name": "Spectral Dagger (Recharges after a Short or Long Rest)", + "entries": [ + "The choldrith conjures a floating, spectral dagger within 60 feet of itself. The choldrith can make a melee spell attack ({@hit 4} to hit) against one creature within 5 feet of the dagger. On a hit, the target takes 6 ({@damage 1d8 + 2}) force damage.", + "The dagger lasts for 1 minute. As a bonus action on later turns, the choldrith can move the dagger up to 20 feet and repeat the attack against one creature within 5 feet of the dagger." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/choldrith.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Spider Climb", + "Sunlight Sensitivity", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "I", + "O", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clockwork Bronze Scout", + "source": "MPMM", + "page": 79, + "otherSources": [ + { + "source": "MTF", + "page": 125 + }, + { + "source": "RtG", + "page": 32 + } + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 10, + "dex": 16, + "con": 11, + "int": 3, + "wis": 14, + "cha": 1, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Earth Armor", + "entries": [ + "The clockwork doesn't provoke {@action opportunity attack||opportunity attacks} when it burrows." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The clockwork doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) lightning damage." + ] + }, + { + "name": "Lightning Flare (Recharges after a Short or Long Rest)", + "entries": [ + "Each creature in contact with the ground within 15 feet of the clockwork must make a {@dc 13} Dexterity saving throw, taking 14 ({@damage 4d6}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bronze-scout.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clockwork Iron Cobra", + "source": "MPMM", + "page": 79, + "otherSources": [ + { + "source": "MTF", + "page": 125 + } + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 3, + "wis": 10, + "cha": 1, + "skill": { + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The clockwork doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or suffer one random effect (roll a {@dice d6}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1\u20132: Confusion", + "type": "item", + "entries": [ + "On its next turn, the target must use its action to make one weapon attack against a random creature it can see within 30 feet of it, using whatever weapon it has in hand and moving beforehand if necessary to get in range. If it's holding no weapon, it makes an unarmed strike. If no creature is visible within 30 feet, it takes the {@action Dash} action, moving toward the nearest creature." + ] + }, + { + "name": "3\u20134: Paralysis", + "type": "item", + "entries": [ + "The target is {@condition paralyzed} until the end of its next turn." + ] + }, + { + "name": "5\u20136: Poison", + "type": "item", + "entries": [ + "The target takes 13 ({@damage 3d8}) poison damage." + ] + } + ] + } + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/iron-cobra.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clockwork Oaken Bolter", + "source": "MPMM", + "page": 80, + "otherSources": [ + { + "source": "MTF", + "page": 126 + }, + { + "source": "RtG", + "page": 33 + } + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 15, + "int": 3, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The clockwork doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The clockwork makes two Lancing Bolt attacks or one Lancing Bolt attack and one Harpoon attack." + ] + }, + { + "name": "Lancing Bolt", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 100/400 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ] + }, + { + "name": "Harpoon", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 50/200 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 12}). While {@condition grappled} in this way, a creature's speed isn't reduced, but it can move only in directions that bring it closer to the clockwork. A creature takes 5 ({@damage 1d10}) slashing damage if it escapes from the grapple or if it tries and fails. The clockwork can grapple only one creature at a time with its harpoon." + ] + }, + { + "name": "Explosive Bolt {@recharge 5}", + "entries": [ + "The clockwork launches an explosive charge at a point within 120 feet. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Reel In", + "entries": [ + "The clockwork pulls the creature {@condition grappled} by its Harpoon up to 20 feet closer." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oaken-bolter.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clockwork Stone Defender", + "source": "MPMM", + "page": 80, + "otherSources": [ + { + "source": "MTF", + "page": 126 + }, + { + "source": "RtG", + "page": 35 + } + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 3, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The clockwork doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and if the target is Large or smaller, it is knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Intercept Attack", + "entries": [ + "In response to another creature within 5 feet of it being hit by an attack roll, the clockwork gives that creature a +5 bonus to its AC against that attack, potentially causing a miss. To use this ability, the clockwork must be able to see the creature and the attacker." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-defender.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cloud Giant Smiling One", + "source": "MPMM", + "page": 81, + "otherSources": [ + { + "source": "VGM", + "page": 146 + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 250, + "formula": "20d12 + 120" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 26, + "dex": 12, + "con": 22, + "int": 15, + "wis": 16, + "cha": 17, + "save": { + "con": "+10", + "int": "+6", + "cha": "+7" + }, + "skill": { + "deception": "+11", + "insight": "+7", + "perception": "+11", + "sleight of hand": "+9" + }, + "passive": 21, + "languages": [ + "Common", + "Giant" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}", + "{@spell minor illusion}" + ], + "daily": { + "3e": [ + "{@spell invisibility}", + "{@spell silent image}", + "{@spell suggestion}", + "{@spell tongues}" + ], + "1e": [ + "{@spell gaseous form}", + "{@spell major image}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Control Weather (8th-level Spell)", + "entries": [ + "The giant can cast the {@spell control weather} spell, requiring no material components and using Charisma as the spellcasting ability." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Slam attacks or two Telekinetic Strike attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 5 ({@damage 1d10}) psychic damage." + ] + }, + { + "name": "Telekinetic Strike", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 240 ft., one target. {@h}25 ({@damage 4d10 + 3}) force damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The giant magically transforms to look and feel like a Beast or a Humanoid it has seen or to return to its true form. Any equipment the giant is wearing or carrying is absorbed by the new form. Its statistics, other than its size, don't change. It reverts to its true form if it dies." + ] + } + ], + "bonus": [ + { + "name": "Cloud Step {@recharge 4}", + "entries": [ + "The giant teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "environment": [ + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cloud-giant-smiling-one.mp3" + }, + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "O", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Conjurer Wizard", + "source": "MPMM", + "page": 260, + "otherSources": [ + { + "source": "VGM", + "page": 212 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 58, + "formula": "13d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The conjurer casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell fireball}", + "{@spell mage armor}", + "{@spell unseen servant}" + ], + "1e": [ + "{@spell fly}", + "{@spell stinking cloud}", + "{@spell web}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The conjurer makes three Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 8} to hit, reach 5 ft. or range 120 ft., one target. {@h}19 ({@damage 3d10 + 3}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Benign Transportation {@recharge 4}", + "entries": [ + "The conjurer teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space that it can see. If it instead chooses a space within range that is occupied by a willing Small or Medium creature, they both teleport, swapping places." + ] + }, + { + "name": "Summon Elemental (1/Day)", + "entries": [ + "The conjurer magically summons an {@creature air elemental}, an {@creature earth elemental}, a {@creature fire elemental}, or a {@creature water elemental}. The elemental appears in an unoccupied space within 60 feet of the conjurer, whom it obeys. It takes its turn immediately after the conjurer. It lasts for 1 hour, until it or the conjurer dies, or until the conjurer dismisses it as a bonus action." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/conjurer.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Corpse Flower", + "source": "MPMM", + "page": 82, + "otherSources": [ + { + "source": "MTF", + "page": 127 + } + ], + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 14, + "dex": 14, + "con": 16, + "int": 7, + "wis": 15, + "cha": 3, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 12, + "conditionImmune": [ + "blinded", + "deafened", + "poisoned" + ], + "cr": "8", + "trait": [ + { + "name": "Corpses", + "entries": [ + "When first encountered, a corpse flower contains the corpses of {@dice 1d6 + 3} Humanoids. A corpse flower can hold the remains of up to nine Humanoids. These remains have {@quickref Cover||3||total cover} against attacks and other effects outside the corpse flower. If the corpse flower dies, the corpses within it can be pulled free." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The corpse flower can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Stench of Death", + "entries": [ + "Each creature that starts its turn within 10 feet of the corpse flower or one of its zombies must make a {@dc 14} Constitution saving throw, unless the creature is a Construct or an Undead. On a failed save, the creature is {@condition poisoned} until the start of its next turn. On a successful save, the creature is immune to the Stench of Death of all corpse flowers for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The corpse flower makes three Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Harvest the Dead", + "entries": [ + "The corpse flower swallows one unsecured Humanoid corpse within 10 feet of it, along with any equipment the corpse is wearing or carrying." + ] + } + ], + "bonus": [ + { + "name": "Digest", + "entries": [ + "The corpse flower digests one corpse in its body and instantly regains 11 ({@dice 2d10}) hit points. Nothing of the digested corpse remains. Any equipment on the corpse is expelled from the corpse flower in its space." + ] + }, + { + "name": "Reanimate", + "entries": [ + "The corpse flower animates one corpse in its body, turning it into a {@creature zombie}. The zombie appears in an unoccupied space within 5 feet of the corpse flower and acts immediately after it in the initiative order. The zombie acts as an ally of the corpse flower but isn't under its control, and the flower's stench clings to it (see Stench of Death)." + ] + } + ], + "environment": [ + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/corpse-flower.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "B", + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cranium Rat", + "source": "MPMM", + "page": 83, + "otherSources": [ + { + "source": "VGM", + "page": 133 + } + ], + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 30 + }, + "str": 2, + "dex": 14, + "con": 10, + "int": 4, + "wis": 11, + "cha": 8, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "languages": [ + "telepathy 30 ft." + ], + "cr": "0", + "trait": [ + { + "name": "Telepathic Shroud", + "entries": [ + "The cranium rat is immune to any effect that would sense its emotions or read its thoughts, as well as to all divination spells." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Illumination", + "entries": [ + "The cranium rat sheds dim light from its exposed brain in a 5-foot radius or extinguishes the light." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cranium-rat.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Darkling", + "source": "MPMM", + "page": 84, + "otherSources": [ + { + "source": "VGM", + "page": 134 + } + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 16, + "con": 12, + "int": 10, + "wis": 12, + "cha": 10, + "skill": { + "acrobatics": "+5", + "deception": "+2", + "perception": "+5", + "stealth": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Elvish", + "Sylvan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Death Flash", + "entries": [ + "When the darkling dies, nonmagical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area must succeed on a {@dc 10} Constitution saving throw or be {@condition blinded} until the end of its next turn." + ] + }, + { + "name": "Light Sensitivity", + "entries": [ + "While in bright light, the darkling has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/darkling.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Light Sensitivity" + ], + "senseTags": [ + "B", + "SD" + ], + "languageTags": [ + "E", + "S" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Darkling Elder", + "source": "MPMM", + "page": 84, + "otherSources": [ + { + "source": "VGM", + "page": 134 + } + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 17, + "con": 12, + "int": 10, + "wis": 14, + "cha": 13, + "skill": { + "acrobatics": "+5", + "deception": "+3", + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Elvish", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Darkness (Recharges after a Short or Long Rest)", + "type": "spellcasting", + "headerEntries": [ + "The darkling elder casts {@spell darkness}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "rest": { + "1": [ + "{@spell darkness}" + ] + }, + "ability": "wis", + "displayAs": "action", + "hidden": [ + "rest" + ] + } + ], + "trait": [ + { + "name": "Death Burn", + "entries": [ + "When the darkling elder dies, magical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area must make a {@dc 11} Constitution saving throw. On a failed save, the creature takes 7 ({@damage 2d6}) radiant damage and is {@condition blinded} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition blinded}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The darkling elder makes two Scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/darkling-elder.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "S" + ], + "damageTags": [ + "N", + "R", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death Kiss", + "source": "MPMM", + "page": 85, + "otherSources": [ + { + "source": "VGM", + "page": 124 + } + ], + "size": [ + "L" + ], + "type": { + "type": "aberration", + "tags": [ + "beholder" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 10, + "wis": 12, + "cha": 10, + "save": { + "con": "+8", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "cr": "10", + "trait": [ + { + "name": "Lightning Blood", + "entries": [ + "A creature within 5 feet of the death kiss takes 5 ({@damage 1d10}) lightning damage whenever it hits the death kiss with a melee attack that deals piercing or slashing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The death kiss makes three Tentacle attacks. Up to three of these attacks can be replaced by Blood Drain\u2014one replacement per tentacle grappling a creature." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Huge or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the death kiss can't use the same tentacle on another target. The death kiss has ten tentacles." + ] + }, + { + "name": "Blood Drain", + "entries": [ + "One creature {@condition grappled} by a tentacle of the death kiss must make a {@dc 16} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) lightning damage, and the death kiss regains half as many hit points." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/death-kiss.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "U" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deathlock", + "source": "MPMM", + "page": 86, + "otherSources": [ + { + "source": "MTF", + "page": 128 + }, + { + "source": "AATM" + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 15, + "con": 10, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "int": "+4", + "cha": "+5" + }, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deathlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell hunger of Hadar}", + "{@spell invisibility}", + "{@spell spider climb}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Turn Resistance", + "entries": [ + "The deathlock has advantage on saving throws against any effect that turns Undead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The deathlock doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deathlock makes two Deathly Claw or Grave Bolt attacks." + ] + }, + { + "name": "Deathly Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) necrotic damage." + ] + }, + { + "name": "Grave Bolt", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) necrotic damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deathlock.mp3" + }, + "traitTags": [ + "Turn Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "A", + "C" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "invisible" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deathlock Mastermind", + "source": "MPMM", + "page": 87, + "otherSources": [ + { + "source": "MTF", + "page": 129 + }, + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 13 + ], + "hp": { + "average": 110, + "formula": "20d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 12, + "int": 15, + "wis": 12, + "cha": 17, + "save": { + "int": "+5", + "cha": "+6" + }, + "skill": { + "arcana": "+5", + "history": "+5", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deathlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell invisibility}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the deathlock's {@sense darkvision}." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The deathlock has advantage on saving throws against any effect that turns Undead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The deathlock doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deathlock makes two Deathly Claw or Grave Bolt attacks." + ] + }, + { + "name": "Deathly Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3} necrotic damage)." + ] + }, + { + "name": "Grave Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}13 ({@damage 3d8}) necrotic damage. If the target is Large or smaller, it must succeed on a {@dc 16} Strength saving throw or become {@condition restrained} as shadowy tendrils wrap around it for 1 minute. A {@condition restrained} target can use its action to repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deathlock-mastermind.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Turn Resistance", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deathlock Wight", + "source": "MPMM", + "page": 87, + "otherSources": [ + { + "source": "MTF", + "page": 129 + } + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 16, + "int": 12, + "wis": 14, + "cha": 16, + "save": { + "wis": "+4" + }, + "skill": { + "arcana": "+3", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deathlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "daily": { + "1e": [ + "{@spell fear}", + "{@spell hold person}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the deathlock has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The deathlock doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deathlock makes two Life Drain or Grave Bolt attacks." + ] + }, + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0.", + "A Humanoid slain by this attack rises 24 hours later as a {@creature zombie} under the deathlock's control, unless the Humanoid is restored to life or its body is destroyed. The deathlock can have no more than twelve zombies under its control at one time." + ] + }, + { + "name": "Grave Bolt", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}12 ({@damage 2d8 + 3}) necrotic damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deathlock-wight.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflictSpell": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deep Roth\u00e9", + "source": "MPMM", + "page": 71, + "otherSources": [ + { + "source": "VGM", + "page": 208 + } + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "tags": [ + "cattle" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/4", + "spellcasting": [ + { + "name": "Dancing Lights", + "type": "spellcasting", + "headerEntries": [ + "The roth\u00e9 casts {@spell dancing lights}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "will": [ + "{@spell dancing lights}" + ], + "ability": "wis", + "displayAs": "action", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Beast of Burden", + "entries": [ + "The roth\u00e9 is considered to be one size larger for the purpose of determining its carrying capacity." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the roth\u00e9 moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rothe.mp3" + }, + "traitTags": [ + "Beast of Burden" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deep Scion", + "source": "MPMM", + "page": 88, + "otherSources": [ + { + "source": "VGM", + "page": 135 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 11 + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(20 ft. and swim 40 ft. in hybrid form)" + } + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 10, + "wis": 12, + "cha": 14, + "save": { + "wis": "+3", + "cha": "+4" + }, + "skill": { + "deception": "+6", + "insight": "+3", + "sleight of hand": "+3", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "languages": [ + "Aquan", + "Common", + "thieves' cant" + ], + "cr": "3", + "trait": [ + { + "name": "Amphibious (Hybrid Form Only)", + "entries": [ + "The deep scion can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deep scion makes two Battleaxe attacks, or it makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Bite (Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Claw (Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Psychic Screech (Hybrid Form Only; Recharges after a Short or Long Rest)", + "entries": [ + "The deep scion emits a terrible scream audible within 300 feet. Creatures within 30 feet of the deep scion must succeed on a {@dc 13} Wisdom saving throw or be {@condition stunned} until the end of the deep scion's next turn. In water, the psychic screech also telepathically transmits the deep scion's memories of the last 24 hours to its master, regardless of distance, so long as it and its master are in the same body of water." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The deep scion transforms into a hybrid form (humanoid-piscine) or back into its true form, which is humanlike. Its statistics, other than its speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. The deep scion reverts to its true form if it dies." + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deep-scion.mp3" + }, + "attachedItems": [ + "battleaxe|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AQ", + "C", + "TC" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deinonychus", + "source": "MPMM", + "page": 95, + "otherSources": [ + { + "source": "VGM", + "page": 139 + } + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 15, + "con": 14, + "int": 4, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Pounce", + "entries": [ + "If the deinonychus moves at least 20 feet straight toward a creature and then hits it with a Claw attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the deinonychus can make one Bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deinonychus makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deinonychus.mp3" + }, + "traitTags": [ + "Pounce" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Demogorgon", + "isNamedCreature": true, + "source": "MPMM", + "page": 90, + "otherSources": [ + { + "source": "MTF", + "page": 144 + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 464, + "formula": "32d12 + 256" + }, + "speed": { + "walk": 50, + "swim": 50 + }, + "str": 29, + "dex": 14, + "con": 26, + "int": 20, + "wis": 17, + "cha": 25, + "save": { + "dex": "+10", + "con": "+16", + "wis": "+11", + "cha": "+15" + }, + "skill": { + "insight": "+11", + "perception": "+19" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 29, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Demogorgon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell major image}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell feeblemind}", + "{@spell project image}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Demogorgon fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Demogorgon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Two Heads", + "entries": [ + "Demogorgon has advantage on saving throws against being {@condition blinded}, {@condition deafened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Demogorgon makes two Tentacle attacks. He can replace one attack with a use of Gaze." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) force damage. If the target is a creature, it must succeed on a {@dc 23} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Gaze", + "entries": [ + "Demogorgon turns his magical gaze toward one creature he can see within 120 feet of him. The target must succeed on a {@dc 23} Wisdom saving throw or suffer one of the following effects (choose one or roll a {@dice d6}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1\u20132: Beguiling Gaze", + "entries": [ + "The target is {@condition stunned} until the start of Demogorgon's next turn or until Demogorgon is no longer within line of sight." + ] + }, + { + "type": "item", + "name": "3\u20134: Confusing Gaze", + "entries": [ + "The target suffers the effect of the {@spell confusion} spell without making a saving throw. The effect lasts until the start of Demogorgon's next turn. Demogorgon doesn't need to concentrate on the spell." + ] + }, + { + "type": "item", + "name": "5\u20136: Hypnotic Gaze", + "entries": [ + "The target is {@condition charmed} by Demogorgon until the start of Demogorgon's next turn. Demogorgon chooses how the {@condition charmed} target uses its action, reaction, and movement." + ] + } + ] + } + ] + } + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Gaze", + "entries": [ + "Demogorgon uses Gaze and must use either Beguiling Gaze or Confusing Gaze." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage plus 11 ({@damage 2d10}) necrotic damage." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Demogorgon uses Spellcasting." + ] + } + ], + "legendaryGroup": { + "name": "Demogorgon", + "source": "MPMM" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "N", + "O" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "frightened", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro", + "source": "MPMM", + "page": 91, + "otherSources": [ + { + "source": "MTF", + "page": 158 + }, + { + "source": "QftIS" + } + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 11, + "wis": 5, + "cha": 9, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1/4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The derro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Hooked Spear", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage. If the target is Medium or smaller, the derro can choose to deal no damage and knock it {@condition prone}." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/derro.mp3" + }, + "attachedItems": [ + "light crossbow|phb" + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro Savant", + "source": "MPMM", + "page": 92, + "otherSources": [ + { + "source": "MTF", + "page": 159 + } + ], + "size": [ + "S" + ], + "type": { + "type": "aberration", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 11, + "wis": 5, + "cha": 14, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The derro casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell invisibility}", + "{@spell sleep}", + "{@spell spider climb}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The derro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ] + }, + { + "name": "Chromatic Beam", + "entries": [ + "The derro launches a brilliant beam of magical energy in a 5-foot-wide line that is 60 feet long. Each creature in the line must make a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/derro-savant.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "B", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Devourer", + "source": "MPMM", + "page": 93, + "otherSources": [ + { + "source": "VGM", + "page": 138 + } + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 13, + "wis": 10, + "cha": 16, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "13", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "A devourer doesn't require air, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devourer makes two Claw attacks and can use either Imprison Soul or Soul Rend, if available." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 21 ({@damage 6d6}) necrotic damage." + ] + }, + { + "name": "Imprison Soul", + "entries": [ + "The devourer chooses a living Humanoid with 0 hit points that it can see within 30 feet of it. That creature is teleported inside the devourer's ribcage and imprisoned there. While imprisoned in this way, the creature is {@condition restrained} and has disadvantage on death saving throws. If the creature dies while imprisoned, the devourer regains 25 hit points and immediately recharges Soul Rend. Additionally, at the start of its next turn, the devourer regurgitates the slain creature as a bonus action, and the creature becomes an undead. If the victim had 2 or fewer Hit Dice, it becomes a {@creature zombie}. If it had 3 to 5 Hit Dice, it becomes a {@creature ghoul}. Otherwise, it becomes a {@creature wight}. A devourer can imprison only one creature at a time." + ] + }, + { + "name": "Soul Rend {@recharge}", + "entries": [ + "The devourer creates a vortex of life-draining energy in a 20-foot radius centered on itself. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 44 ({@damage 8d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/devourer.mp3" + }, + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dhergoloth", + "source": "MPMM", + "page": 94, + "otherSources": [ + { + "source": "MTF", + "page": 248 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 19, + "int": 7, + "wis": 10, + "cha": 9, + "save": { + "str": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dhergoloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 10}):" + ], + "will": [ + "{@spell darkness}", + "{@spell fear}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The dhergoloth has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dhergoloth makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) force damage." + ] + }, + { + "name": "Flailing Claws {@recharge 5}", + "entries": [ + "The dhergoloth moves up to its speed in a straight line and targets each creature within 5 feet of it during its movement. Each target must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 3d12 + 3}) force damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "The dhergoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dhergoloth.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dimetrodon", + "source": "MPMM", + "page": 95, + "otherSources": [ + { + "source": "VGM", + "page": 139 + } + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 30, + "swim": 20 + }, + "str": 14, + "dex": 10, + "con": 15, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+2" + }, + "passive": 12, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "coastal", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dimetrodon.mp3" + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dire Troll", + "source": "MPMM", + "page": 246, + "otherSources": [ + { + "source": "MTF", + "page": 243 + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 15, + "con": 21, + "int": 9, + "wis": 11, + "cha": 5, + "save": { + "wis": "+5", + "cha": "+2" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "frightened", + "poisoned" + ], + "languages": [ + "Giant" + ], + "cr": "13", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, it regains only 5 hit points at the start of its next turn. The troll dies only if it is hit by an attack that deals 10 or more acid or fire damage while the troll has 0 hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + " The troll makes one Bite attack and four Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) slashing damage." + ] + }, + { + "name": "Whirlwind of Claws {@recharge 5}", + "entries": [ + "Each creature within 10 feet of the troll must make a {@dc 19} Dexterity saving throw, taking 44 ({@damage 8d10}) slashing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "arctic", + "forest", + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dire-troll.mp3" + }, + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Diviner Wizard", + "source": "MPMM", + "page": 261, + "otherSources": [ + { + "source": "VGM", + "page": 213 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 90, + "formula": "20d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 18, + "wis": 12, + "cha": 11, + "save": { + "int": "+7", + "wis": "+4" + }, + "skill": { + "arcana": "+7", + "history": "+7" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The diviner casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell arcane eye}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell fly}", + "{@spell lightning bolt}", + "{@spell locate object}", + "{@spell mage armor}", + "{@spell Rary's telepathic bond}" + ], + "1e": [ + "{@spell true seeing}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The diviner makes three Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) radiant damage." + ] + }, + { + "name": "Overwhelming Revelation {@recharge 5}", + "entries": [ + "The diviner magically creates a burst of illumination in a 10-foot-radius sphere centered on a point within 120 feet of it. Each creature in that area must make a {@dc 15} Wisdom saving throw. On a failed save, a creature takes 45 ({@damage 10d8}) psychic damage and is {@condition stunned} until the end of the diviner's next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "reaction": [ + { + "name": "Portent (3/Day)", + "entries": [ + "When the diviner or a creature it can see makes an attack roll, a saving throw, or an ability check, the diviner rolls a {@dice d20} and chooses whether to use that roll in place of the {@dice d20} rolled for the attack roll, saving throw, or ability check. " + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/diviner.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "R", + "Y" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dolphin", + "source": "MPMM", + "page": 97, + "otherSources": [ + { + "source": "VGM", + "page": 208 + } + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 0, + "swim": 60 + }, + "str": 14, + "dex": 13, + "con": 13, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "cr": "1/8", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The dolphin can hold its breath for 20 minutes." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage. If the dolphin moved at least 30 feet straight toward the target immediately before the hit, the target takes an extra 3 ({@damage 1d6}) bludgeoning damage." + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dolphin.mp3" + }, + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dolphin Delighter", + "source": "MPMM", + "page": 97, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 0, + "swim": 60 + }, + "str": 14, + "dex": 13, + "con": 13, + "int": 11, + "wis": 12, + "cha": 16, + "save": { + "wis": "+3", + "cha": "+5" + }, + "skill": { + "perception": "+3", + "performance": "+5" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "languages": [ + "Aquan", + "telepathy 120 ft." + ], + "cr": "3", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The dolphin can hold its breath for 20 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dolphin makes two Dazzling Slam attacks." + ] + }, + { + "name": "Dazzling Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 7 ({@damage 2d6}) psychic damage, and the target is {@condition blinded} until the start of the dolphin's next turn." + ] + } + ], + "bonus": [ + { + "name": "Delightful Light {@recharge 5}", + "entries": [ + "The dolphin magically emanates light in a 10-foot radius for a moment. The dolphin and each creature of its choice in that light gain 11 ({@dice 2d10}) temporary hit points." + ] + }, + { + "name": "Fey Leap", + "entries": [ + "The dolphin teleports up to 30 feet to an unoccupied space it can see. Immediately before teleporting, the dolphin can choose one creature within 5 feet of it. That creature can teleport with the dolphin, appearing in an unoccupied space within 5 feet of the dolphin's destination space." + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "TP" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Draegloth", + "source": "MPMM", + "page": 98, + "otherSources": [ + { + "source": "VGM", + "page": 141 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 18, + "int": 13, + "wis": 11, + "cha": 11, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Elvish", + "Undercommon" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The draegloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell darkness}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell faerie fire}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The draegloth has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draegloth makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/draegloth.mp3" + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "E", + "U" + ], + "damageTags": [ + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Arachnomancer", + "source": "MPMM", + "page": 99, + "otherSources": [ + { + "source": "MTF", + "page": 182 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 11, + "dex": 17, + "con": 14, + "int": 19, + "wis": 14, + "cha": 16, + "save": { + "con": "+7", + "int": "+9", + "cha": "+8" + }, + "skill": { + "arcana": "+9", + "nature": "+9", + "perception": "+7", + "stealth": "+8" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "poison" + ], + "languages": [ + "Elvish", + "Undercommon", + "can speak with spiders" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell dispel magic}", + "{@spell etherealness}", + "{@spell faerie fire}", + "{@spell fly}", + "{@spell insect plague}", + "{@spell invisibility}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The drow can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The drow ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes three attacks, using Bite, Poisonous Touch, Web, or a combination of them. One attack can be replaced by a use of Spellcasting." + ] + }, + { + "name": "Bite (Spider Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 31 ({@damage 7d8}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + }, + { + "name": "Poisonous Touch (Humanoid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}35 ({@damage 10d6}) poison damage." + ] + }, + { + "name": "Web (Spider Form Only; {@recharge 5})", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 30/60 ft., one target. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 15} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ] + } + ], + "bonus": [ + { + "name": "Change Shape (Recharges after a Short or Long Rest)", + "entries": [ + "The drow magically transforms into a Large spider, remaining in that form for up to 1 hour, or back into its true form. Its statistics, other than its size, are the same in each form. It can speak and cast spells while in spider form. Any equipment it is wearing or carrying in Humanoid form melds into the spider form. It can't activate, use, wield, or otherwise benefit from any of its equipment. It reverts to its Humanoid form if it dies." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-arachnomancer.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Spider Climb", + "Sunlight Sensitivity", + "Web Walker" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "O", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned", + "restrained" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Favored Consort", + "source": "MPMM", + "page": 100, + "otherSources": [ + { + "source": "MTF", + "page": 183 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf", + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 15 + ], + "hp": { + "average": 240, + "formula": "32d8 + 96" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 20, + "con": 16, + "int": 18, + "wis": 15, + "cha": 18, + "save": { + "dex": "+11", + "con": "+9", + "cha": "+10" + }, + "skill": { + "acrobatics": "+11", + "athletics": "+8", + "perception": "+8", + "stealth": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell message}" + ], + "daily": { + "3e": [ + "{@spell dimension door}", + "{@spell fireball}", + "{@spell invisibility}" + ], + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes three Scimitar or Arcane Eruption attacks. The drow can replace one of the attacks with a use of Spellcasting." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 27 ({@damage 6d8}) poison damage." + ] + }, + { + "name": "Arcane Eruption", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}36 ({@damage 8d8}) force damage, and the drow can push the target up to 10 feet away if it is a Large or smaller creature." + ] + } + ], + "reaction": [ + { + "name": "Protective Shield (3/Day)", + "entries": [ + "When the drow or a creature within 10 feet of it is hit by an attack roll, the drow gives the target a +5 bonus to its AC until the start of the drow's next turn, which can cause the triggering attack roll to miss." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-favored-consort.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "O", + "S" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow House Captain", + "source": "MPMM", + "page": 101, + "otherSources": [ + { + "source": "MTF", + "page": 184 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|PHB}" + ] + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 19, + "con": 15, + "int": 12, + "wis": 14, + "cha": 13, + "save": { + "dex": "+8", + "con": "+6", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes two Scimitar attacks and one Whip or Hand Crossbow attack." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Whip", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ] + } + ], + "bonus": [ + { + "name": "Battle Command", + "entries": [ + "Choose one creature within 30 feet of the drow that the drow can see. If the chosen creature can see or hear the drow, that creature can use its reaction to make one melee attack or to take the {@action Dodge} or {@action Hide} action." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The drow adds 3 to its AC against one melee attack roll that would hit it. To do so, the drow must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-house-captain.mp3" + }, + "attachedItems": [ + "hand crossbow|phb", + "scimitar|phb", + "whip|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Inquisitor", + "source": "MPMM", + "page": 102, + "otherSources": [ + { + "source": "MTF", + "page": 184 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric", + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 15, + "con": 14, + "int": 16, + "wis": 21, + "cha": 20, + "save": { + "con": "+7", + "wis": "+10", + "cha": "+10" + }, + "skill": { + "insight": "+10", + "perception": "+10", + "religion": "+8", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 20, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell message}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell levitate} (self only)", + "{@spell silence}", + "{@spell suggestion}", + "{@spell true seeing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Discern Lie", + "entries": [ + "The drow discerns when a creature in earshot speaks a lie in a language the drow knows." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes three Death Lance attacks." + ] + }, + { + "name": "Death Lance", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 18 ({@damage 4d8}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "bonus": [ + { + "name": "Spectral Dagger (Recharges after a Short or Long Rest)", + "entries": [ + "The drow conjures a floating, spectral dagger within 60 feet of itself. The drow can make a melee spell attack ({@hit 10} to hit) against one creature within 5 feet of the dagger. On a hit, the target takes 9 ({@damage 1d8 + 5}) force damage.", + "The dagger lasts for 1 minute. As a bonus action on later turns, the drow can move the dagger up to 20 feet and repeat the attack against one creature within 5 feet of the dagger." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Demon (1/Day)", + "entries": [ + "The drow attempts to magically summon a {@creature yochlol}, with a {@chance 50} chance of success. If the attempt fails, the drow takes 5 ({@damage 1d10}) psychic damage. Otherwise, the summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Drow Inquisitor (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-inquisitor.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "N", + "O", + "P", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "deafened" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Matron Mother", + "source": "MPMM", + "page": 104, + "otherSources": [ + { + "source": "MTF", + "page": 186 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric", + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|PHB|half plate}" + ] + } + ], + "hp": { + "average": 247, + "formula": "33d8 + 99" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 16, + "int": 17, + "wis": 21, + "cha": 22, + "save": { + "con": "+9", + "wis": "+11", + "cha": "+12" + }, + "skill": { + "insight": "+11", + "perception": "+11", + "religion": "+9", + "stealth": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "20", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell command}", + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell thaumaturgy}" + ], + "daily": { + "2e": [ + "{@spell banishment}", + "{@spell blade barrier}", + "{@spell cure wounds}", + "{@spell hold person}", + "{@spell plane shift}", + "{@spell silence}" + ], + "1e": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell gate}", + "{@spell levitate} (self only)", + "{@spell suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "The drow wields a {@item tentacle rod}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes two Demon Staff attacks or one Demon Staff attack and three Tentacle Rod attacks." + ] + }, + { + "name": "Demon Staff", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if used with two hands, plus 14 ({@damage 4d6}) psychic damage. The target must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} of the drow for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Tentacle Rod", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one creature. {@h}3 ({@damage 1d6}) bludgeoning damage. If the target is hit three times by the {@item tentacle rod|DMG|rod} on one turn, the target must succeed on a {@dc 15} Constitution saving throw or suffer the following effects for 1 minute: the target's speed is halved, it has disadvantage on Dexterity saving throws, and it can't use reactions. Moreover, on each of its turns, it can take either an action or a bonus action, but not both. At the end of each of its turns, it can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Divine Flame (2/Day)", + "entries": [ + "A 10-foot-radius, 40-foot-high column of divine fire sprouts in an area up to 120 feet away from the drow. Each creature in the column must make a {@dc 20} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage and 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Lolth's Fickle Favor", + "entries": [ + "The drow bestows the Spider Queen's blessing on one ally she can see within 30 feet of her. The ally takes 7 ({@damage 2d6}) psychic damage but has advantage on the next attack roll it makes before the end of its next turn." + ] + }, + { + "name": "Summon Servant (1/Day)", + "entries": [ + "The drow magically summons a {@creature glabrezu} or a {@creature yochlol}. The summoned creature appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ] + } + ], + "legendary": [ + { + "name": "Compel Demon", + "entries": [ + "An allied demon within 30 feet of the drow uses its reaction to make one attack against a target of the drow's choice that she can see." + ] + }, + { + "name": "Demon Staff", + "entries": [ + "The drow makes one Demon Staff attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The drow uses Spellcasting." + ] + } + ], + "legendaryGroup": { + "name": "Drow Matron Mother", + "source": "MPMM" + }, + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-matron-mother.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "B", + "F", + "R", + "Y" + ], + "damageTagsSpell": [ + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "conditionInflictSpell": [ + "deafened", + "incapacitated", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Shadowblade", + "source": "MPMM", + "page": 105, + "otherSources": [ + { + "source": "MTF", + "page": 187 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 21, + "con": 16, + "int": 12, + "wis": 14, + "cha": 13, + "save": { + "dex": "+9", + "con": "+7", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell darkness}" + ], + "daily": { + "1e": [ + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the drow's {@sense darkvision}." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes three Shadow Sword attacks. One of the attacks can be replaced by a Hand Crossbow attack. The drow can also use Spellcasting to cast darkness." + ] + }, + { + "name": "Shadow Sword", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 30/60 ft., one target. {@h}27 ({@damage 7d6 + 5}) necrotic damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ] + } + ], + "bonus": [ + { + "name": "Shadow Step", + "entries": [ + "While in dim light or darkness, the drow teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see that is also in dim light or darkness. It then has advantage on the first melee attack it makes before the end of the turn." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Summon Shadow Demon (1/Day)", + "entries": [ + "The drow attempts to magically summon a {@creature shadow demon} with a {@chance 50} chance of success. If the attempt fails, the drow takes 5 ({@damage 1d10}) psychic damage. Otherwise, the summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "_version": { + "name": "Drow Shadowblade (Summoner)", + "addAs": "action" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-shadowblade.mp3" + }, + "attachedItems": [ + "hand crossbow|phb" + ], + "traitTags": [ + "Devil's Sight", + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "N", + "P", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Despot", + "source": "MPMM", + "page": 107, + "otherSources": [ + { + "source": "MTF", + "page": 188 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56" + }, + "speed": { + "walk": 25 + }, + "str": 20, + "dex": 5, + "con": 19, + "int": 15, + "wis": 14, + "cha": 13, + "save": { + "con": "+8", + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The duergar casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "1": [ + "{@spell stinking cloud}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The duergar has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Psychic Engine", + "entries": [ + "When the duergar suffers a critical hit or is reduced to 0 hit points, psychic energy erupts from its frame to deal 14 ({@damage 4d6}) psychic damage to each creature within 5 feet of it." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes two Iron Fist attacks and two Stomping Foot attacks. After one of the attacks, the duergar can move up to its speed without provoking {@action opportunity attack||opportunity attacks}. It can replace one of the attacks with a use of Flame Jet." + ] + }, + { + "name": "Iron Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}23 ({@damage 4d8 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be pushed up to 30 feet away in a straight line and be knocked {@condition prone}." + ] + }, + { + "name": "Stomping Foot", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, or 21 ({@damage 3d10 + 5}) to a {@condition prone} target." + ] + }, + { + "name": "Flame Jet", + "entries": [ + "The duergar spews flames in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 16} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-despot.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "B", + "F", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Hammerer", + "source": "MPMM", + "page": 112, + "otherSources": [ + { + "source": "MTF", + "page": 188 + } + ], + "size": [ + "M" + ], + "type": { + "type": "construct", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 20 + }, + "str": 17, + "dex": 7, + "con": 12, + "int": 5, + "wis": 5, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Siege Monster", + "entries": [ + "The hammerer deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hammerer makes one Claw attack and one Hammer attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Hammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Engine of Pain", + "entries": [ + "Immediately after a creature within 5 feet of the hammerer hits it with an attack roll, the hammerer makes a Hammer attack against that creature." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-hammerer.mp3" + }, + "traitTags": [ + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Kavalrachni", + "source": "MPMM", + "page": 107, + "otherSources": [ + { + "source": "MTF", + "page": 189 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Cavalry Training", + "entries": [ + "When the duergar hits a target with a melee attack while mounted, the mount can use its reaction to make one melee attack against the same target." + ] + }, + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes two War Pick attacks." + ] + }, + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + }, + { + "name": "Shared Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it. While the {@condition invisible} duergar is mounted, the mount is {@condition invisible} as well. The invisibility ends early on the mount immediately after it attacks." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-kavalrachni.mp3" + }, + "attachedItems": [ + "heavy crossbow|phb", + "war pick|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Mind Master", + "source": "MPMM", + "page": 108, + "otherSources": [ + { + "source": "MTF", + "page": 189 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 11, + "dex": 17, + "con": 14, + "int": 15, + "wis": 10, + "cha": 12, + "save": { + "wis": "+2" + }, + "skill": { + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "passive": 12, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes two Mind-Poison Dagger attacks. It can replace one attack with a use of Mind Mastery." + ] + }, + { + "name": "Mind-Poison Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage, or 1 piercing damage plus 10 ({@damage 3d6}) psychic damage while under the effect of Reduce." + ] + }, + { + "name": "Invisibility {@recharge 4}", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Mind Mastery", + "entries": [ + "The duergar targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 12} Intelligence saving throw, or the duergar causes it to use its reaction, if available, either to make one weapon attack against another creature the duergar can see or to move up to 10 feet in a direction of the duergar's choice. Creatures that can't be {@condition charmed} are immune to this effect." + ] + } + ], + "bonus": [ + { + "name": "Reduce (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically decreases in size, along with anything it is wearing or carrying. While reduced, the duergar is Tiny, reduces its weapon damage to 1, and makes attack rolls, ability checks, and saving throws with disadvantage if they use Strength. It gains a +5 bonus to all Dexterity ({@skill Stealth}) checks and a +5 bonus to its AC. It can also take a bonus action on each of its turns to take the {@action Hide} action." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-mind-master.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Screamer", + "source": "MPMM", + "page": 111, + "otherSources": [ + { + "source": "MTF", + "page": 190 + } + ], + "size": [ + "M" + ], + "type": { + "type": "construct", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 7, + "con": 12, + "int": 5, + "wis": 5, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The screamer makes one Drill attack, and it uses Sonic Scream." + ] + }, + { + "name": "Drill", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage." + ] + }, + { + "name": "Sonic Scream", + "entries": [ + "The screamer emits destructive energy in a 15-foot cube. Each creature in that area must succeed on a {@dc 11} Strength saving throw or take 7 ({@damage 2d6}) thunder damage and be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Engine of Pain", + "entries": [ + "Immediately after a creature within 5 feet of the screamer hits it with an attack roll, the screamer makes a Drill attack against that creature." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-screamer.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "D" + ], + "damageTags": [ + "P", + "T" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Soulblade", + "source": "MPMM", + "page": 109, + "otherSources": [ + { + "source": "MTF", + "page": 190 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 25 + }, + "str": 16, + "dex": 16, + "con": 10, + "int": 11, + "wis": 10, + "cha": 12, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Soulblade", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) force damage, or 13 ({@damage 3d6 + 3}) force damage while under the effect of Enlarge." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "bonus": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-soulblade.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "O" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Stone Guard", + "source": "MPMM", + "page": 110, + "otherSources": [ + { + "source": "MTF", + "page": 191 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ] + }, + { + "name": "Phalanx Formation", + "entries": [ + "The duergar has advantage on attack rolls and Dexterity saving throws while standing within 5 feet of an ally wielding a {@item shield|PHB}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes two Shortsword or Javelin attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while under the effect of Enlarge." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while under the effect of Enlarge." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "bonus": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-stone-guard.mp3" + }, + "attachedItems": [ + "javelin|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Warlord", + "source": "MPMM", + "page": 111, + "otherSources": [ + { + "source": "MTF", + "page": 192 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 11, + "con": 17, + "int": 12, + "wis": 12, + "cha": 14, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "6", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes three Psychic-Attuned Hammer or Javelin attacks and uses Call to Attack." + ] + }, + { + "name": "Psychic-Attuned Hammer", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage, or 15 ({@damage 2d10 + 4}) bludgeoning damage while under the effect of Enlarge, plus 5 ({@damage 1d10}) psychic damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while under the effect of Enlarge." + ] + }, + { + "name": "Call to Attack", + "entries": [ + "Up to three allies within 120 feet of this duergar that can hear it can each use their reaction to make one weapon attack." + ] + }, + { + "name": "Invisibility {@recharge 4}", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "bonus": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + } + ], + "reaction": [ + { + "name": "Scouring Instruction", + "entries": [ + "When an ally that the duergar can see makes a {@dice d20} roll, the duergar can roll a {@dice d6}, and the ally can add the number rolled to the {@dice d20} by taking 3 ({@damage 1d6}) psychic damage." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-warlord.mp3" + }, + "attachedItems": [ + "javelin|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "B", + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Xarrorn", + "source": "MPMM", + "page": 111, + "otherSources": [ + { + "source": "MTF", + "page": 193 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 25 + }, + "str": 16, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Fire Lance", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage, or 16 ({@damage 2d12 + 3}) piercing damage while under the effect of Enlarge, plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Fire Spray {@recharge 5}", + "entries": [ + "From its fire lance, the duergar shoots a 15-foot cone of fire or a line of fire 30 feet long and 5 feet wide. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "bonus": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-xarrorn.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dybbuk", + "source": "MPMM", + "page": 113, + "otherSources": [ + { + "source": "MTF", + "page": 132 + }, + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": { + "number": 40, + "condition": "(hover)" + } + }, + "str": 6, + "dex": 19, + "con": 16, + "int": 16, + "wis": 15, + "cha": 14, + "skill": { + "deception": "+6", + "intimidation": "+4", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dybbuk casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell dimension door}" + ], + "daily": { + "3": [ + "{@spell phantasmal force}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The dybbuk can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The dybbuk has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) necrotic damage. If the target is a creature, its hit point maximum is also reduced by 3 ({@dice 1d6}). This reduction lasts until the target finishes a short or long rest. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Possess Corpse {@recharge}", + "entries": [ + "The dybbuk disappears into an intact corpse within 5 feet of it that belonged to a Large or smaller Beast or Humanoid. The dybbuk gains 20 temporary hit points. While possessing the corpse, the dybbuk adopts the corpse's size and can't use Incorporeal Movement. Its game statistics otherwise remain the same. The possession lasts until the temporary hit points are lost or the dybbuk ends it as a bonus action. When the possession ends, the dybbuk appears in an unoccupied space within 5 feet of the corpse." + ] + } + ], + "bonus": [ + { + "name": "Control Corpse", + "entries": [ + "While Possess Corpse is active, the dybbuk makes the corpse do something unnatural, such as vomit blood, twist its head all the way around, or cause a quadruped to move as a biped. Any Beast or Humanoid that sees this behavior must succeed on a {@dc 12} Wisdom saving throw or become {@condition frightened} of the dybbuk for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on a saving throw against this ability is immune to Control Corpse for 24 hours." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dybbuk.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "N", + "O" + ], + "damageTagsSpell": [ + "O", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Earth Elemental Myrmidon", + "source": "MPMM", + "page": 122, + "otherSources": [ + { + "source": "MTF", + "page": 202 + } + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 8, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Terran", + "one language of its creator's choice" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes two Maul attacks." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) force damage." + ] + }, + { + "name": "Thunderous Strike {@recharge}", + "entries": [ + "The myrmidon makes one Maul attack. On a hit, the target takes an extra 22 ({@damage 4d10}) thunder damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/earth-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "maul|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "O", + "T" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eidolon", + "source": "MPMM", + "page": 114, + "otherSources": [ + { + "source": "MTF", + "page": 194 + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 9 + ], + "hp": { + "average": 63, + "formula": "18d8 - 18" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 7, + "dex": 8, + "con": 9, + "int": 14, + "wis": 19, + "cha": 16, + "save": { + "wis": "+8" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "12", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object other than a {@creature sacred statue|MPMM}." + ] + }, + { + "name": "Sacred Animation {@recharge 5}", + "entries": [ + "When the eidolon moves into a space occupied by a {@creature sacred statue|MPMM}, the eidolon can disappear, causing the statue to become a creature under the eidolon's control. The eidolon uses the {@creature sacred statue|MPMM|sacred statue's stat block} in place of its own." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The eidolon has advantage on saving throws against any effect that turns Undead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The eidolon doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Divine Dread", + "entries": [ + "Each creature within 60 feet of the eidolon that can see it must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of it for 1 minute. While {@condition frightened} in this way, the creature must take the {@action Dash} action and move away from the eidolon by the safest available route at the start of each of its turns, unless there is nowhere for it to move, in which case the creature also becomes {@condition stunned} until it can move again. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to any eidolon's Divine Dread for the next 24 hours." + ] + } + ], + "environment": [ + "coastal", + "desert", + "forest", + "grassland", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/eidolon.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Turn Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "frightened", + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elder Brain", + "source": "MPMM", + "page": 120, + "otherSources": [ + { + "source": "VGM", + "page": 173 + }, + { + "source": "PaBTSO" + }, + { + "source": "CoA" + } + ], + "size": [ + "L" + ], + "type": { + "type": "aberration", + "tags": [ + "mind flayer" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 10 + ], + "hp": { + "average": 210, + "formula": "20d10 + 100" + }, + "speed": { + "walk": 5, + "swim": 10 + }, + "str": 15, + "dex": 10, + "con": 20, + "int": 21, + "wis": 19, + "cha": 24, + "save": { + "int": "+10", + "wis": "+9", + "cha": "+12" + }, + "skill": { + "arcana": "+10", + "deception": "+12", + "insight": "+14", + "intimidation": "+12", + "persuasion": "+12" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 14, + "languages": [ + "understands Common", + "Deep Speech", + "and Undercommon but can't speak", + "telepathy 5 miles" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The elder brain casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "3": [ + "{@spell modify memory}" + ], + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The elder brain is aware of creatures within 5 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the elder brain fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The elder brain has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Telepathic Hub", + "entries": [ + "The elder brain can use its telepathy to initiate and maintain telepathic conversations with up to ten creatures at a time. The elder brain can let those creatures telepathically hear each other while connected in this way." + ] + } + ], + "action": [ + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 30 ft., one target. {@h}20 ({@damage 4d8 + 2}) bludgeoning damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 15}) and takes 9 ({@damage 1d8 + 5}) psychic damage at the start of each of its turns until the grapple ends. The elder brain can have up to four targets {@condition grappled} at a time." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "Creatures of the elder brain's choice within 60 feet of it must succeed on a {@dc 18} Intelligence saving throw or take 32 ({@damage 5d10 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Psychic Link", + "entries": [ + "The elder brain targets one {@condition incapacitated} creature it senses with its Creature Sense trait and establishes a psychic link with the target. Until the link ends, the elder brain can perceive everything the target senses. The target becomes aware that something is linked to its mind once it is no longer {@condition incapacitated}, and the elder brain can terminate the link at any time (no action required). The target can use an action on its turn to attempt to break the link, doing so with a successful {@dc 18} Charisma saving throw. On a successful save, the target takes 10 ({@damage 3d6}) psychic damage. The link also ends if the target and the elder brain are more than 5 miles apart. The elder brain can form psychic links with up to ten creatures at a time." + ] + }, + { + "name": "Sense Thoughts", + "entries": [ + "The elder brain targets a creature with which it has a psychic link. The elder brain gains insight into the target's emotional state and foremost thoughts (including worries, loves, and hates)." + ] + } + ], + "legendary": [ + { + "name": "Break Concentration", + "entries": [ + "The elder brain targets one creature within 120 feet of it with which it has a psychic link. The elder brain breaks the creature's {@status concentration} on a spell it has cast. The creature also takes 2 ({@damage 1d4}) psychic damage per level of the spell." + ] + }, + { + "name": "Psychic Pulse", + "entries": [ + "The elder brain targets one creature within 120 feet of it with which it has a psychic link. The target and enemies of the elder brain within 30 feet of target take 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Sever Psychic Link", + "entries": [ + "The elder brain targets one creature within 120 feet of it with which it has a psychic link. The elder brain ends the link, causing the creature to have disadvantage on all ability checks, attack rolls, and saving throws until the end of the creature's next turn." + ] + }, + { + "name": "Tentacle (Costs 2 Actions)", + "entries": [ + "The elder brain makes one Tentacle attack." + ] + } + ], + "legendaryGroup": { + "name": "Elder Brain", + "source": "MPMM" + }, + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elder-brain.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "C", + "CS", + "DS", + "TP", + "U" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "intelligence" + ], + "savingThrowForcedLegendary": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elder Oblex", + "source": "MPMM", + "page": 199, + "otherSources": [ + { + "source": "MTF", + "page": 219 + } + ], + "size": [ + "H" + ], + "type": "ooze", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 16 + ], + "hp": { + "average": 115, + "formula": "10d12 + 50" + }, + "speed": { + "walk": 20 + }, + "str": 15, + "dex": 16, + "con": 21, + "int": 22, + "wis": 13, + "cha": 18, + "save": { + "int": "+10", + "cha": "+8" + }, + "skill": { + "arcana": "+10", + "deception": "+8", + "history": "+10", + "nature": "+10", + "perception": "+5", + "religion": "+10" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "passive": 15, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "prone" + ], + "languages": [ + "Common plus six more languages" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The oblex casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell detect thoughts}" + ], + "daily": { + "3e": [ + "{@spell dimension door}", + "{@spell dominate person}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Aversion to Fire", + "entries": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The oblex doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elder oblex makes two Pseudopod attacks, and it uses Eat Memories." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}17 ({@damage 4d6 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) psychic damage." + ] + }, + { + "name": "Eat Memories", + "entries": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 18} Wisdom saving throw or take 44 ({@damage 8d10}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, Oozes, Plants, and Undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from any ability check or attack roll it makes. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "The oblex learns all the languages a memory-drained target knows and gains all its skill proficiencies." + ] + } + ], + "bonus": [ + { + "name": "Sulfurous Impersonation", + "entries": [ + "The oblex extrudes a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 2d6 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. The simulacrum is an extension of the oblex, meaning that the oblex occupies its space and the simulacrum's space simultaneously. The tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex and the simulacrum. The simulacrum disappears if the tether is severed." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elder-oblex.mp3" + }, + "traitTags": [ + "Amorphous", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "Y" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "unconscious" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "paralyzed", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elder Tempest", + "source": "MPMM", + "page": 121, + "otherSources": [ + { + "source": "MTF", + "page": 200 + } + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 19 + ], + "hp": { + "average": 264, + "formula": "16d20 + 96" + }, + "speed": { + "walk": 0, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 23, + "dex": 28, + "con": 23, + "int": 2, + "wis": 21, + "cha": 18, + "save": { + "wis": "+12", + "cha": "+11" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison", + "thunder" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "23", + "trait": [ + { + "name": "Air Form", + "entries": [ + "The tempest can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Flyby", + "entries": [ + "The tempest doesn't provoke {@action opportunity attack||opportunity attacks} when it flies out of an enemy's reach." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the tempest fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Living Storm", + "entries": [ + "The tempest is always at the center of a storm {@dice 1d6 + 4} miles in diameter. Heavy precipitation in the form of either rain or snow falls there, causing the area to be lightly obscured. Heavy rain also extinguishes open flames and imposes disadvantage on Wisdom ({@skill Perception}) checks that rely on hearing. In addition, strong winds swirl in the area covered by the storm. The winds impose disadvantage on ranged attack rolls. They also extinguish open flames and disperse fog." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The tempest deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tempest makes two Thunderous Slam attacks." + ] + }, + { + "name": "Thunderous Slam", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}23 ({@damage 4d6 + 9}) thunder damage." + ] + }, + { + "name": "Lightning Storm {@recharge}", + "entries": [ + "Each creature within 120 feet of the tempest must make a {@dc 21} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage on a failed save, or half as much damage on a successful one. If a target's saving throw fails by 5 or more, the creature is also {@condition stunned} until the end of its next turn." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The tempest moves up to its speed." + ] + }, + { + "name": "Lightning Strike (Costs 2 Actions)", + "entries": [ + "The tempest can cause a bolt of lightning to strike a point on the ground anywhere under its storm. Each creature within 5 feet of that point must make a {@dc 21} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Screaming Gale (Costs 3 Actions)", + "entries": [ + "The tempest releases a blast of thunder and wind in a line that is 300 feet long and 20 feet wide. Objects in that area take 22 ({@damage 4d10}) thunder damage. Each creature there must succeed on a {@dc 21} Dexterity saving throw or take 22 ({@damage 4d10}) thunder damage and be flung up to 60 feet in a direction away from the line. If a thrown target collides with an immovable object (such as a wall or floor) or another creature, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown before impact. If the target collides with another creature, that other creature must succeed on a {@dc 19} Dexterity saving throw or take the same impact damage and be knocked {@condition prone}." + ] + } + ], + "environment": [ + "arctic", + "coastal", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elder-tempest.mp3" + }, + "traitTags": [ + "Flyby", + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "L", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Enchanter Wizard", + "source": "MPMM", + "page": 261, + "otherSources": [ + { + "source": "VGM", + "page": 213 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 49, + "formula": "11d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The enchanter casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell message}" + ], + "daily": { + "2e": [ + "{@spell charm person}", + "{@spell mage armor}", + "{@spell hold person}", + "{@spell invisibility}", + "{@spell suggestion}", + "{@spell tongues}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The enchanter makes three Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}19 ({@damage 3d10 + 3}) psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Instinctive Charm {@recharge 4}", + "entries": [ + "When a visible creature within 30 feet of the enchanter makes an attack roll against it, the enchanter forces the attacker to make a {@dc 14} Wisdom saving throw. On a failed save, the attacker redirects the attack roll to the creature closest to it, other than the enchanter or itself. If multiple eligible creatures are closest, the attacker chooses which one to target." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/enchanter.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Evoker Wizard", + "source": "MPMM", + "page": 262, + "otherSources": [ + { + "source": "VGM", + "page": 214 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 121, + "formula": "22d8 + 22" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+7", + "wis": "+5" + }, + "skill": { + "arcana": "+7", + "history": "+7" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The evoker casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell ice storm}", + "{@spell lightning bolt}", + "{@spell mage armor}" + ], + "1e": [ + "{@spell wall of ice}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The evoker makes three Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}25 ({@damage 4d10 + 3}) force damage." + ] + }, + { + "name": "Sculpted Explosion {@recharge 4}", + "entries": [ + "The evoker unleashes a magical explosion of a particular damage type: cold, fire, lightning, or thunder. The magic erupts in a 20-foot-radius sphere centered on a point within 150 feet of the evoker. Each creature in that area must make a {@dc 15} Dexterity saving throw. The evoker can select up to three creatures it can see in the area to ignore the spell, as the evoker sculpts the spell's energy around them. On a failed save, a creature takes 40 ({@damage 9d8}) damage of the chosen type and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/evoker.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "B", + "C", + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Female Steeder", + "source": "MPMM", + "page": 231, + "otherSources": [ + { + "source": "MTF", + "page": 238 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 16, + "con": 14, + "int": 2, + "wis": 10, + "cha": 3, + "skill": { + "stealth": "+7", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "cr": "1", + "trait": [ + { + "name": "Extraordinary Leap", + "entries": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to move 3 feet." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Sticky Leg", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is stuck to the steeder's leg and {@condition grappled} (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/female-steeder.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Elemental Myrmidon", + "source": "MPMM", + "page": 123, + "otherSources": [ + { + "source": "MTF", + "page": 203 + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 18, + "con": 15, + "int": 9, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Ignan", + "one language of its creator's choice" + ], + "cr": "7", + "trait": [ + { + "name": "Illumination", + "entries": [ + "The myrmidon sheds bright light in a 20-foot radius and dim light in a 40-foot radius." + ] + }, + { + "name": "Water Susceptibility", + "entries": [ + "For every 5 feet the myrmidon moves in 1 foot or more of water, it takes 2 ({@damage 1d4}) cold damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes three Scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) force damage." + ] + }, + { + "name": "Fiery Strikes {@recharge}", + "entries": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 7 ({@damage 2d6}) fire damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fire-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Illumination" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "C", + "F", + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Giant Dreadnought", + "source": "MPMM", + "page": 124, + "otherSources": [ + { + "source": "VGM", + "page": 147 + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 21, + "from": [ + "{@item plate armor|PHB|plate}", + "{@item shield|phb|Dual Shields}" + ] + } + ], + "hp": { + "average": 187, + "formula": "15d12 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 27, + "dex": 9, + "con": 23, + "int": 8, + "wis": 10, + "cha": 11, + "save": { + "dex": "+4", + "con": "+11", + "cha": "+5" + }, + "skill": { + "athletics": "+13", + "perception": "+5" + }, + "passive": 15, + "immune": [ + "fire" + ], + "languages": [ + "Giant" + ], + "cr": "14", + "trait": [ + { + "name": "Dual Shields", + "entries": [ + "The giant carries two shields, which together give the giant +3 to its AC (accounted for above)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Fireshield or Rock attacks." + ] + }, + { + "name": "Fireshield", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage plus 7 ({@damage 2d6}) piercing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + }, + { + "name": "Shield Charge {@recharge 5}", + "entries": [ + "The giant moves up to 30 feet in a straight line and can move through the space of any creature smaller than Huge. The first time it enters a creature's space during this move, that creature must succeed on a {@dc 21} Strength saving throw or take 36 ({@damage 8d6 + 8}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage and be pushed up to 30 feet and knocked {@condition prone}." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fire-giant-dreadnought.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Firenewt Warlock of Imix", + "source": "MPMM", + "page": 125, + "otherSources": [ + { + "source": "VGM", + "page": 143 + } + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 10 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 9, + "wis": 11, + "cha": 14, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "fire" + ], + "languages": [ + "Draconic", + "Ignan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The firenewt casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The firenewt can breathe air and water." + ] + }, + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the firenewt's {@sense darkvision}." + ] + }, + { + "name": "Imix's Blessing", + "entries": [ + "When the firenewt reduces an enemy to 0 hit points, the firenewt gains 5 temporary hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The firenewt makes three Morningstar or Fire Ray attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + }, + { + "name": "Fire Ray", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one target. {@h}5 ({@damage 1d6 + 2}) fire damage." + ] + } + ], + "environment": [ + "hill", + "mountain", + "underdark" + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Amphibious", + "Devil's Sight" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "IG" + ], + "damageTags": [ + "F", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Firenewt Warrior", + "source": "MPMM", + "page": 125, + "otherSources": [ + { + "source": "VGM", + "page": 142 + } + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 13, + "con": 12, + "int": 7, + "wis": 11, + "cha": 8, + "passive": 10, + "immune": [ + "fire" + ], + "languages": [ + "Draconic", + "Ignan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The firenewt can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The firenewt makes two Scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + }, + { + "name": "Spit Fire (Recharges after a Short or Long Rest)", + "entries": [ + "The firenewt spits fire at a creature within 10 feet of it. The creature must make a {@dc 11} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "desert", + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/firenewt-warrior.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "IG" + ], + "damageTags": [ + "F", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flail Snail", + "source": "MPMM", + "page": 126, + "otherSources": [ + { + "source": "VGM", + "page": 144 + } + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "5d10 + 25" + }, + "speed": { + "walk": 10 + }, + "str": 17, + "dex": 5, + "con": 20, + "int": 3, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "3", + "trait": [ + { + "name": "Antimagic Shell", + "entries": [ + "The snail has advantage on saving throws against spells, and any creature making a spell attack against the snail has disadvantage on the attack roll.", + "If the snail succeeds on its saving throw against a spell or a spell's attack roll misses it, the snail's shell converts some of the spell's energy into a burst of destructive force if the spell is of 1st level or higher; each creature within 30 feet of the snail must make a {@dc 15} Constitution saving throw, taking 3 ({@damage 1d6}) force damage per level of the spell on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The snail makes five Flail Tentacle attacks." + ] + }, + { + "name": "Flail Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + }, + { + "name": "Scintillating Shell (Recharges after a Short or Long Rest)", + "entries": [ + "The snail's shell emits dazzling, colored light until the end of the snail's next turn. During this time, the shell sheds bright light in a 30-foot radius and dim light for an additional 30 feet, and creatures that can see the snail have disadvantage on attack rolls against it. In addition, any creature within the bright light and able to see the snail when this power is activated must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} until the light ends." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "The flail snail withdraws into its shell. Until it emerges, it gains a +4 bonus to its AC and is {@condition restrained}. It can emerge from its shell as a bonus action on its turn." + ] + } + ], + "environment": [ + "forest", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flail-snail.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flind", + "source": "MPMM", + "page": 127, + "otherSources": [ + { + "source": "VGM", + "page": 153 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "gnoll" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 14, + "con": 19, + "int": 11, + "wis": 13, + "cha": 12, + "save": { + "con": "+8", + "wis": "+5" + }, + "skill": { + "intimidation": "+5", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Gnoll", + "Abyssal" + ], + "cr": "9", + "trait": [ + { + "name": "Aura of Blood Thirst", + "entries": [ + "If the flind isn't {@condition incapacitated}, any creature with the Rampage trait can make a Bite attack as a bonus action while within 10 feet of the flind." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The flind makes one Flail of Chaos attack, one Flail of Pain attack, and one Flail of Paralysis attack, or it makes three Longbow attacks." + ] + }, + { + "name": "Flail of Chaos", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must make a {@dc 16} Wisdom saving throw. On a failed save, the target must use its reaction, if available, to make one melee attack against a random creature, other than the flind, within its reach. If there's no creature within reach, the target instead moves half its speed in a random direction." + ] + }, + { + "name": "Flail of Pain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage plus 16 ({@damage 3d10}) psychic damage." + ] + }, + { + "name": "Flail of Paralysis", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition paralyzed} until the end of its next turn." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "coastal", + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flind.mp3" + }, + "attachedItems": [ + "longbow|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "B", + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fraz-Urb'luu", + "isNamedCreature": true, + "source": "MPMM", + "page": 129, + "otherSources": [ + { + "source": "MTF", + "page": 146 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 337, + "formula": "27d10 + 189" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 29, + "dex": 12, + "con": 25, + "int": 26, + "wis": 24, + "cha": 26, + "save": { + "dex": "+8", + "con": "+14", + "int": "+15", + "wis": "+14" + }, + "skill": { + "deception": "+15", + "perception": "+14", + "stealth": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": { + "cr": "23", + "lair": "24" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Fraz-Urb'luu casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell phantasmal force}" + ], + "daily": { + "3e": [ + "{@spell mislead}", + "{@spell programmed illusion}", + "{@spell seeming}" + ], + "1e": [ + "{@spell modify memory}", + "{@spell project image}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Fraz-Urb'luu fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Fraz-Urb'luu has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Undetectable", + "entries": [ + "Fraz-Urb'luu can't be targeted by divination magic, perceived through magical scrying sensors, or detected by abilities that sense demons or Fiends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Fraz-Urb'luu makes one Bite attack and two Fist attacks, and he uses Phantasmal Terror." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d6 + 9}) force damage." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) force damage." + ] + }, + { + "name": "Phantasmal Terror", + "entries": [ + "Fraz-Urb'luu targets one creature he can see within 120 feet of him. The target must succeed on a {@dc 23} Wisdom saving throw, or it takes 16 ({@damage 3d10}) psychic damage and is {@condition frightened} of Fraz-Urb'luu until the end of its next turn." + ] + } + ], + "legendary": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) force damage. If the target is a Large or smaller creature, it is also {@condition grappled} (escape {@dc 24}), and it is {@condition restrained} until the grapple ends. Fraz-Urb'luu can grapple only one creature with his tail at a time." + ] + }, + { + "name": "Terror (Costs 2 Actions)", + "entries": [ + "Fraz-Urb'luu uses Phantasmal Terror." + ] + } + ], + "legendaryGroup": { + "name": "Fraz-Urb'luu", + "source": "MPMM" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "O", + "Y" + ], + "damageTagsLegendary": [ + "Y" + ], + "damageTagsSpell": [ + "B", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Froghemoth", + "source": "MPMM", + "page": 130, + "otherSources": [ + { + "source": "VGM", + "page": 145 + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 23, + "dex": 13, + "con": 20, + "int": 2, + "wis": 12, + "cha": 5, + "save": { + "con": "+9", + "wis": "+5" + }, + "skill": { + "perception": "+9", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "resist": [ + "fire", + "lightning" + ], + "cr": "10", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The froghemoth can breathe air and water." + ] + }, + { + "name": "Shock Susceptibility", + "entries": [ + "If the froghemoth takes lightning damage, it suffers two effects until the end of its next turn: its speed is halved, and it has disadvantage on Dexterity saving throws." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The froghemoth makes one Bite attack and two Tentacle attacks, and it can use Tongue." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage, and the target is swallowed if it is a Medium or smaller creature. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the froghemoth, and takes 10 ({@damage 3d6}) acid damage at the start of each of the froghemoth's turns.", + "The froghemoth's gullet can hold up to two creatures at a time. If the froghemoth takes 20 damage or more on a single turn from a creature inside it, the froghemoth must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which falls {@condition prone} in a space within 10 feet of the froghemoth. If the froghemoth dies, any swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Huge or smaller creature. Until the grapple ends, the froghemoth can't use this tentacle on another target. The froghemoth has four tentacles." + ] + }, + { + "name": "Tongue", + "entries": [ + "The froghemoth targets one Medium or smaller creature that it can see within 20 feet of it. The target must make a {@dc 18} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the froghemoth." + ] + } + ], + "environment": [ + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/froghemoth.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Swallow", + "Tentacles" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Giant Everlasting One", + "source": "MPMM", + "page": 131, + "otherSources": [ + { + "source": "VGM", + "page": 148 + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "patchwork armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "14d12 + 98" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 9, + "con": 24, + "int": 9, + "wis": 10, + "cha": 12, + "save": { + "str": "+11", + "con": "+11", + "wis": "+4" + }, + "skill": { + "athletics": "+11", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Giant" + ], + "cr": "12", + "trait": [ + { + "name": "Extra Heads", + "entries": [ + "The giant has a {@chance 25} chance of having more than one head. If it has more than one, it has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The giant regains 10 hit points at the start of its turn. If the giant takes acid or fire damage, this trait doesn't function at the start of its next turn. The giant dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Greataxe or Rock attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) slashing damage, or 30 ({@damage 3d12 + 11}) slashing damage while raging." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Vaprak's Rage (Recharges after a Short or Long Rest)", + "entries": [ + "The giant enters a rage. The rage lasts for 1 minute or until the giant is {@condition incapacitated}. While raging, the giant gains the following benefits:", + { + "type": "list", + "items": [ + "The giant has advantage on Strength checks and Strength saving throws.", + "When it makes a melee weapon attack, the giant gains a +4 bonus to the damage roll.", + "The giant has resistance to bludgeoning, piercing, and slashing damage." + ] + } + ] + } + ], + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/frost-giant-everlasting-one.mp3" + }, + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Salamander", + "source": "MPMM", + "page": 132, + "otherSources": [ + { + "source": "MTF", + "page": 223 + } + ], + "size": [ + "H" + ], + "type": "elemental", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64" + }, + "speed": { + "walk": 60, + "burrow": 40, + "climb": 40 + }, + "str": 20, + "dex": 12, + "con": 18, + "int": 7, + "wis": 11, + "cha": 7, + "save": { + "con": "+8", + "wis": "+4" + }, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "Primordial" + ], + "cr": "9", + "trait": [ + { + "name": "Burning Fury", + "entries": [ + "When the salamander takes fire damage, its", + "Freezing Breath automatically recharges." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The salamander makes one Bite attack and four Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 5 ({@damage 1d10}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + }, + { + "name": "Freezing Breath {@recharge}", + "entries": [ + "The salamander exhales chill wind in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 44 ({@damage 8d10}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/frost-salamander.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "P" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gauth", + "source": "MPMM", + "page": 133, + "otherSources": [ + { + "source": "VGM", + "page": 125 + } + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "beholder" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 14, + "con": 16, + "int": 15, + "wis": 15, + "cha": 13, + "save": { + "int": "+5", + "wis": "+5", + "cha": "+4" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "cr": "6", + "trait": [ + { + "name": "Stunning Gaze", + "entries": [ + "When a creature that can see the gauth's central eye starts its turn within 30 feet of the gauth, the gauth can force it to make a {@dc 14} Wisdom saving throw if the gauth isn't {@condition incapacitated} and can see the creature. A creature that fails the save is {@condition stunned} until the start of its next turn.", + "Unless {@status surprised}, a creature can avert its eyes at the start of its turn to avoid the saving throw. If the creature does so, it can't see the gauth until the start of its next turn, when it can avert its eyes again. If the creature looks at the gauth in the meantime, it must immediately make the save." + ] + }, + { + "name": "Death Throes", + "entries": [ + "When the gauth dies, the magical energy within it explodes, and each creature within 10 feet of it must make a {@dc 14} Dexterity saving throw, taking 13 ({@damage 3d8}) force damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) piercing damage." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The gauth shoots three of the following magical eye rays at random (roll three {@dice d6}s, and reroll duplicates), targeting one to three creatures it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1: Devour Magic Ray", + "entries": [ + "The target must succeed on a {@dc 14} Dexterity saving throw or have one of its magic items lose all magical properties until the start of the gauth's next turn. If the object is a charged item, it also loses {@dice 1d4} charges. Determine the affected item randomly, ignoring single-use items such as potions and scrolls." + ], + "type": "item" + }, + { + "name": "2: Enervation Ray", + "entries": [ + "The target must make a {@dc 14} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "type": "item" + }, + { + "name": "3: Fire Ray", + "entries": [ + "The target must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 4d10}) fire damage." + ], + "type": "item" + }, + { + "name": "4: Paralyzing Ray", + "entries": [ + "The target must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "type": "item" + }, + { + "name": "5: Pushing Ray", + "entries": [ + "The target must succeed on a {@dc 14} Strength saving throw or be pushed up to 15 feet away from the gauth and have its speed halved until the start of the gauth's next turn." + ], + "type": "item" + }, + { + "name": "6: Sleep Ray", + "entries": [ + "The target must succeed on a {@dc 14} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on Constructs and Undead." + ], + "type": "item" + } + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gauth.mp3" + }, + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "DS", + "U" + ], + "damageTags": [ + "F", + "N", + "O", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gazer", + "source": "MPMM", + "page": 134, + "otherSources": [ + { + "source": "VGM", + "page": 126 + }, + { + "source": "SjA" + } + ], + "size": [ + "T" + ], + "type": { + "type": "aberration", + "tags": [ + "beholder" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 13 + ], + "hp": { + "average": 13, + "formula": "3d4 + 6" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 3, + "dex": 17, + "con": 14, + "int": 3, + "wis": 10, + "cha": 7, + "save": { + "wis": "+2" + }, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "prone" + ], + "cr": "1/2", + "trait": [ + { + "name": "Mimicry", + "entries": [ + "The gazer can mimic simple sounds of speech it has heard, in any language. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The gazer shoots two of the following magical eye rays at random (roll two {@dice d4}s, and reroll duplicates), choosing one or two targets it can see within 60 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1: Dazing Ray", + "entries": [ + "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition charmed} until the start of the gazer's next turn. While the target is {@condition charmed} in this way, its speed is halved, and it has disadvantage on attack rolls." + ], + "type": "item" + }, + { + "name": "2: Fear Ray", + "entries": [ + "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} until the start of the gazer's next turn." + ], + "type": "item" + }, + { + "name": "3: Frost Ray", + "entries": [ + "The target must succeed on a {@dc 12} Dexterity saving throw or take 10 ({@damage 3d6}) cold damage." + ], + "type": "item" + }, + { + "name": "4: Telekinetic Ray", + "entries": [ + "If the target is a creature that is Medium or smaller, it must succeed on a {@dc 12} Strength saving throw or be moved up to 30 feet directly away from the gazer. If the target is a Tiny object that isn't being worn or carried, the gazer moves it up to 30 feet in any direction. The gazer can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a container." + ], + "type": "item" + } + ] + } + ] + } + ], + "bonus": [ + { + "name": "Aggressive", + "entries": [ + "The gazer moves up to its speed toward a hostile creature that it can see." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Gazer Familiar", + "entries": [ + "Spellcasters who are interested in unusual familiars find that gazers are eager to serve someone who has magical power. Unless its master is strict, a gazer familiar can be unruly, behaving aggressively toward other Tiny creatures. A gazer serving as a familiar has the following trait:", + { + "type": "entries", + "name": "Familiar", + "entries": [ + "The gazer can serve another creature as a familiar, forming a telepathic bond with its willing master, provided that the master is at least a 3rd-level spellcaster. While the two are bonded, the master can sense what the gazer senses as long as they are within 1 mile of each other. If its master causes it physical harm, the gazer will end its service as a familiar, breaking the telepathic bond." + ] + } + ], + "_version": { + "addHeadersAs": "trait" + } + } + ], + "environment": [ + "underdark" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/gazer.mp3" + }, + "traitTags": [ + "Mimicry" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Geryon", + "isNamedCreature": true, + "source": "MPMM", + "page": 136, + "otherSources": [ + { + "source": "MTF", + "page": 173 + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 29, + "dex": 17, + "con": 22, + "int": 19, + "wis": 16, + "cha": 23, + "save": { + "dex": "+10", + "con": "+13", + "wis": "+10", + "cha": "+13" + }, + "skill": { + "deception": "+13", + "intimidation": "+13", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "cold", + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": { + "cr": "22", + "lair": "23" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Geryon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell ice storm}", + "{@spell invisibility} (self only)", + "{@spell locate object}", + "{@spell suggestion}", + "{@spell wall of ice}" + ], + "daily": { + "1": [ + "{@spell banishment}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Geryon fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Geryon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Geryon regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Geryon dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Geryon makes one Claw attack and one Stinger attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}23 ({@damage 4d6 + 9}) cold damage. If the target is Large or smaller, it is {@condition grappled} ({@dc 24}), and it is {@condition restrained} until the grapple ends. Geryon can grapple one creature at a time. If the target is already {@condition grappled} by Geryon, the target takes an extra 27 ({@damage 6d8}) cold damage." + ] + }, + { + "name": "Stinger", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one creature. {@h}14 ({@damage 2d4 + 9}) force damage, and the target must succeed on a {@dc 21} Constitution saving throw or take 13 ({@damage 2d12}) poison damage and become {@condition poisoned} until it finishes a short or long rest. The target's hit point maximum is reduced by an amount equal to half the poison damage taken. This reduction lasts until the {@condition poisoned} condition is removed. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Teleport", + "entries": [ + "Geryon teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "legendary": [ + { + "name": "Infernal Glare", + "entries": [ + "Geryon targets one creature he can see within 60 feet of him. The target must succeed on a {@dc 23} Wisdom saving throw or become {@condition frightened} of Geryon until the end of its next turn." + ] + }, + { + "name": "Teleport", + "entries": [ + "Geryon uses Teleport." + ] + }, + { + "name": "Swift Sting (Costs 2 Actions)", + "entries": [ + "Geryon makes one Stinger attack." + ] + } + ], + "legendaryGroup": { + "name": "Geryon", + "source": "MPMM" + }, + "variant": [ + { + "type": "variant", + "name": "Sound the Horn", + "entries": [ + "Geryon can have an action that allows him to summon {@creature minotaur||minotaurs}.", + { + "name": "Sound the Horn (1/Day)", + "type": "entries", + "entries": [ + "Geryon blows his horn, which causes {@dice 5d4} {@creature minotaur||minotaurs} to appear in unoccupied spaces of his choice within 600 feet of him. The minotaurs roll initiative when they appear, and they obey his commands. They remain until they die or Geryon uses an action to dismiss any or all of them." + ] + } + ], + "_version": { + "name": "Geryon (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/geryon.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "C", + "I", + "O" + ], + "damageTagsLegendary": [ + "C" + ], + "damageTagsSpell": [ + "B", + "C", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "poisoned" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "conditionInflictSpell": [ + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Strider", + "source": "MPMM", + "page": 137, + "otherSources": [ + { + "source": "VGM", + "page": 143 + } + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 13, + "con": 14, + "int": 4, + "wis": 12, + "cha": 6, + "passive": 11, + "immune": [ + "fire" + ], + "cr": "1", + "trait": [ + { + "name": "Fire Absorption", + "entries": [ + "Whenever the giant strider is subjected to fire damage, it takes no damage and regains a number of hit points equal to half the fire damage dealt." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Fire Burst {@recharge 5}", + "entries": [ + "The giant strider hurls a gout of flame at a point it can see within 60 feet of it. Each creature in a 10-foot-radius sphere centered on that point must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners, and it ignites flammable objects in that area that aren't being worn or carried" + ] + } + ], + "environment": [ + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-strider.mp3" + }, + "traitTags": [ + "Damage Absorption" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giff", + "source": "MPMM", + "page": 138, + "otherSources": [ + { + "source": "MTF", + "page": 204 + }, + { + "source": "SjA" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 11, + "wis": 12, + "cha": 12, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Firearms Knowledge", + "entries": [ + "The giff's mastery of its weapons enables it to ignore the loading property of muskets and pistols." + ] + }, + { + "name": "Headfirst Charge", + "entries": [ + "The giff can try to knock a creature over; if the giff moves at least 20 feet in a straight line and ends within 5 feet of a Large or smaller creature, that creature must succeed on a {@dc 14} Strength saving throw or take 7 ({@damage 2d6}) bludgeoning damage and be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giff makes two Longsword, Musket, or Pistol attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Musket", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 40/120 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage." + ] + }, + { + "name": "Pistol", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Fragmentation Grenade (1/Day)", + "entries": [ + "The giff throws a grenade up to 60 feet, and the grenade explodes in a 20-foot-radius sphere. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) piercing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giff.mp3" + }, + "attachedItems": [ + "longsword|phb", + "musket|dmg", + "pistol|dmg" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Girallon", + "source": "MPMM", + "page": 139, + "otherSources": [ + { + "source": "VGM", + "page": 152 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 18, + "dex": 16, + "con": 16, + "int": 5, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "cr": "4", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The girallon makes one Bite attack and four Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Aggressive", + "entries": [ + "The girallon moves up to its speed toward a hostile creature that it can see." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/girallon.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Gish", + "source": "MPMM", + "page": 140, + "otherSources": [ + { + "source": "MTF", + "page": 205 + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith", + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|PHB|half plate}" + ] + } + ], + "hp": { + "average": 130, + "formula": "20d8 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 15, + "con": 14, + "int": 16, + "wis": 15, + "cha": 16, + "save": { + "con": "+6", + "int": "+7", + "wis": "+6" + }, + "skill": { + "insight": "+6", + "perception": "+6", + "stealth": "+6" + }, + "passive": 16, + "languages": [ + "Gith" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand} (the hand is invisible)", + "{@spell message}" + ], + "daily": { + "3e": [ + "{@spell fireball}", + "{@spell invisibility}", + "{@spell nondetection} (self only)" + ], + "1e": [ + "{@spell dimension door}", + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes three Longsword or Telekinetic Bolt attacks, or it makes one of those attacks and uses Spellcasting." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) psychic damage." + ] + }, + { + "name": "Telekinetic Bolt", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Astral Step {@recharge 4}", + "entries": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-gish.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "O", + "S", + "Y" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible", + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Kith'rak", + "source": "MPMM", + "page": 140, + "otherSources": [ + { + "source": "MTF", + "page": 205 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 180, + "formula": "24d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 16, + "con": 17, + "int": 16, + "wis": 15, + "cha": 17, + "save": { + "con": "+7", + "int": "+7", + "wis": "+6" + }, + "skill": { + "intimidation": "+7", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Gith" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell blur}", + "{@spell nondetection} (self only)" + ], + "1e": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes three Greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 17 ({@damage 5d6}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Astral Step {@recharge 4}", + "entries": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Rally the Troops", + "entries": [ + "The githyanki magically ends the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of it." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The githyanki adds 4 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-kith_rak.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "S", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Supreme Commander", + "source": "MPMM", + "page": 141, + "otherSources": [ + { + "source": "MTF", + "page": 206 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 17, + "con": 18, + "int": 16, + "wis": 16, + "cha": 18, + "save": { + "con": "+9", + "int": "+8", + "wis": "+8" + }, + "skill": { + "intimidation": "+9", + "perception": "+8" + }, + "passive": 18, + "languages": [ + "Gith" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell levitate} (self only)", + "{@spell nondetection} (self only)" + ], + "1e": [ + "{@spell Bigby's hand}", + "{@spell mass suggestion}", + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the githyanki fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes two Silver Greatsword attacks." + ] + }, + { + "name": "Silver Greatsword", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 17 ({@damage 5d6}) psychic damage. On a critical hit against a target in an astral body (as with the {@spell astral projection} spell), the githyanki can cut the silvery cord that tethers the target to its material body, instead of dealing damage." + ] + } + ], + "bonus": [ + { + "name": "Astral Step", + "entries": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The githyanki adds 5 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ] + } + ], + "legendary": [ + { + "name": "Command Ally", + "entries": [ + "The githyanki targets one ally it can see within 30 feet of it. If the target can see or hear the githyanki, the target can make one melee weapon attack using its reaction, if available, and has advantage on the attack roll." + ] + }, + { + "name": "Attack (2 Actions)", + "entries": [ + "The githyanki makes one Silver Greatsword attack." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-supreme-commander.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "S", + "Y" + ], + "damageTagsSpell": [ + "B", + "O" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Anarch", + "source": "MPMM", + "page": 142, + "otherSources": [ + { + "source": "MTF", + "page": 207 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 20, + "from": [ + "psychic defense" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 21, + "con": 18, + "int": 18, + "wis": 20, + "cha": 14, + "save": { + "str": "+8", + "dex": "+10", + "int": "+9", + "wis": "+10" + }, + "skill": { + "arcana": "+9", + "insight": "+10", + "perception": "+10" + }, + "passive": 20, + "languages": [ + "Gith" + ], + "cr": { + "cr": "16", + "lair": "17" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell see invisibility}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell globe of invulnerability}", + "{@spell plane shift}", + "{@spell wall of force}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the githzerai fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes three Unarmed Strike attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage." + ] + } + ], + "legendary": [ + { + "name": "Strike", + "entries": [ + "The githzerai makes one Unarmed Strike attack." + ] + }, + { + "name": "Teleport", + "entries": [ + "The githzerai teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 30 feet of it." + ] + }, + { + "name": "Change Gravity (Costs 3 Actions)", + "entries": [ + "The githzerai casts the {@spell reverse gravity} spell, using Wisdom as the spellcasting ability. The spell has the normal effect, except that the githzerai can orient the area in any direction and creatures and objects fall toward the end of the area." + ] + } + ], + "legendaryGroup": { + "name": "Githzerai Anarch", + "source": "MPMM" + }, + "soundClip": { + "type": "internal", + "path": "bestiary/githzerai-anarch.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Enlightened", + "source": "MPMM", + "page": 143, + "otherSources": [ + { + "source": "MTF", + "page": 208 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "psychic defense" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 19, + "con": 16, + "int": 17, + "wis": 19, + "cha": 13, + "save": { + "str": "+6", + "dex": "+8", + "int": "+7", + "wis": "+8" + }, + "skill": { + "arcana": "+7", + "insight": "+8", + "perception": "+8" + }, + "passive": 18, + "languages": [ + "Gith" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3": [ + "{@spell see invisibility}" + ], + "1e": [ + "{@spell plane shift}", + "{@spell teleport}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes three Unarmed Strike attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage." + ] + }, + { + "name": "Temporal Strike {@recharge}", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 52 ({@damage 8d12}) psychic damage. The target must succeed on a {@dc 16} Wisdom saving throw or move 1 round forward in time. A target moved forward in time vanishes for the duration. When the effect ends, the target reappears in the space it left or in an unoccupied space nearest to that space if it's occupied." + ] + } + ], + "reaction": [ + { + "name": "Slow Fall", + "entries": [ + "When the githzerai falls, it reduces any falling damage it takes by 50." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githzerai-enlightened.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnoll Flesh Gnawer", + "source": "MPMM", + "page": 144, + "otherSources": [ + { + "source": "VGM", + "page": 154 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 12, + "int": 8, + "wis": 10, + "cha": 8, + "save": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Gnoll" + ], + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gnoll makes one Bite attack and two Shortsword attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Sudden Rush", + "entries": [ + "Until the end of the turn, the gnoll's speed increases by 60 feet and it doesn't provoke {@action opportunity attack||opportunity attacks}." + ] + } + ], + "bonus": [ + { + "name": "Rampage", + "entries": [ + "After the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll moves up to half its speed and makes a Bite attack." + ] + } + ], + "environment": [ + "arctic", + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-flesh-gnawer.mp3" + }, + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnoll Hunter", + "source": "MPMM", + "page": 144, + "otherSources": [ + { + "source": "VGM", + "page": 154 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 12, + "int": 8, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Gnoll" + ], + "cr": "1/2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gnoll makes two Bite, Spear, or Longbow attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage when used with two hands to make a melee attack." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the target's speed is reduced by 10 feet until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Rampage", + "entries": [ + "After the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll moves up to half its speed and makes a Bite attack." + ] + } + ], + "environment": [ + "arctic", + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-hunter.mp3" + }, + "attachedItems": [ + "longbow|phb", + "spear|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Gnoll Witherling", + "source": "MPMM", + "page": 145, + "otherSources": [ + { + "source": "VGM", + "page": 155 + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 8, + "con": 12, + "int": 5, + "wis": 5, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Gnoll but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The witherling doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The witherling makes two Bite or Spiked Club attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) necrotic damage." + ] + }, + { + "name": "Spiked Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Rampage", + "entries": [ + "After the witherling reduces a creature to 0 hit points with a melee attack on its turn, the gnoll moves up to half its speed and makes one Bite attack." + ] + } + ], + "reaction": [ + { + "name": "Vengeful Strike", + "entries": [ + "In response to a gnoll being reduced to 0 hit points within 30 feet of the witherling, the witherling makes one Bite or Spiked Club attack." + ] + } + ], + "environment": [ + "arctic", + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-witherling.mp3" + }, + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "OTH" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gray Render", + "source": "MPMM", + "page": 146, + "otherSources": [ + { + "source": "MTF", + "page": 209 + }, + { + "source": "CoA" + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 13, + "con": 20, + "int": 3, + "wis": 6, + "cha": 8, + "save": { + "str": "+8", + "con": "+9" + }, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "cr": "12", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gray render makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) piercing damage. If the target is Medium or smaller, the target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, plus 10 ({@damage 3d6}) bludgeoning damage if the target is {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Bloody Rampage", + "entries": [ + "When the gray render takes damage, it makes one Claw attack against a random creature within its reach, other than its master." + ] + } + ], + "environment": [ + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gray-render.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Graz'zt", + "isNamedCreature": true, + "source": "MPMM", + "page": 148, + "otherSources": [ + { + "source": "MTF", + "page": 149 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 346, + "formula": "33d10 + 165" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 15, + "con": 21, + "int": 23, + "wis": 21, + "cha": 26, + "save": { + "dex": "+9", + "con": "+12", + "wis": "+12" + }, + "skill": { + "deception": "+15", + "perception": "+12", + "persuasion": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "24", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Graz'zt casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "will": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell dispel magic}" + ], + "daily": { + "3e": [ + "{@spell darkness}", + "{@spell dominate person}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "1e": [ + "{@spell dominate monster}", + "{@spell greater invisibility}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Graz'zt fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Graz'zt has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Graz'zt makes two Wave of Sorrow attacks. He can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Wave of Sorrow (Greatsword)", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}20 ({@damage 4d6 + 6}) force damage plus 14 ({@damage 4d6}) acid damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "Graz'zt teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "Graz'zt transforms into a form that resembles a Medium Humanoid or back into his true form. Aside from his size, his statistics are the same in each form. Any equipment he is wearing or carrying isn't transformed." + ] + } + ], + "reaction": [ + { + "name": "Negate Spell {@recharge 5}", + "entries": [ + "Graz'zt tries to interrupt a spell he sees a creature casting within 60 feet of him. If the spell is 3rd level or lower, the spell fails and has no effect. If the spell is 4th level or higher, Graz'zt makes a Charisma check against a DC of 10 + the spell's level. On a success, the spell fails and has no effect." + ] + } + ], + "legendary": [ + { + "name": "Abyssal Magic", + "entries": [ + "Graz'zt uses Spellcasting or Teleport." + ] + }, + { + "name": "Attack", + "entries": [ + "Graz'zt makes one Wave of Sorrow attack." + ] + }, + { + "name": "Dance, My Puppet!", + "entries": [ + "One creature {@condition charmed} by Graz'zt that Graz'zt can see must use its reaction to move up to its speed as Graz'zt directs." + ] + } + ], + "legendaryGroup": { + "name": "Graz'zt", + "source": "MPMM" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Shapechanger", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "restrained" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Green Abishai", + "source": "MPMM", + "page": 40, + "otherSources": [ + { + "source": "MTF", + "page": 162 + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 12, + "dex": 17, + "con": 16, + "int": 17, + "wis": 12, + "cha": 19, + "save": { + "int": "+8", + "cha": "+9" + }, + "skill": { + "deception": "+9", + "insight": "+6", + "perception": "+6", + "persuasion": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The abishai casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell alter self}", + "{@spell major image}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell detect thoughts}", + "{@spell fear}" + ], + "1e": [ + "{@spell confusion}", + "{@spell dominate person}", + "{@spell mass suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes two Fiendish Claw attacks, or it makes one Fiendish Claw attack and uses Spellcasting." + ] + }, + { + "name": "Fiendish Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) force damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or take 16 ({@damage 3d10}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/green-abishai.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "I", + "O" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grung", + "source": "MPMM", + "page": 149, + "otherSources": [ + { + "source": "VGM", + "page": 156 + } + ], + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 11, + "formula": "2d6 + 4" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 7, + "dex": 14, + "con": 15, + "int": 10, + "wis": 11, + "cha": 10, + "save": { + "dex": "+4" + }, + "skill": { + "athletics": "+2", + "perception": "+2", + "stealth": "+4", + "survival": "+2" + }, + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Grung" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The grung can breathe air and water." + ] + }, + { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ] + }, + { + "name": "Water Dependency", + "entries": [ + "If the grung isn't immersed in water for at least 1 hour during a day, it suffers 1 level of {@condition exhaustion} at the end of that day. The grung can recover from this {@condition exhaustion} only through magic or by immersing itself in water for at least 1 hour." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Grung Poison", + "entries": [ + "A creature {@condition poisoned} by a grung can suffer an additional effect that depends on the grung's color, as described below. This effect lasts until the creature is no longer {@condition poisoned} by the grung.", + { + "name": "Blue Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature must make a loud noise at the start and end of its turn." + ] + }, + { + "name": "Gold Grung", + "type": "entries", + "entries": [ + "The creature is {@condition charmed} by the grung and can speak Grung." + ] + }, + { + "name": "Green Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + }, + { + "name": "Orange Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + }, + { + "name": "Purple Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + }, + { + "name": "Red Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grung.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Grung (Blue)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature must make a loud noise at the start and end of its turn." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Gold)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The creature is {@condition charmed} by the grung and can speak Grung." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Green)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Orange)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Purple)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Red)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Grung Elite Warrior", + "source": "MPMM", + "page": 150, + "otherSources": [ + { + "source": "VGM", + "page": 157 + } + ], + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 13 + ], + "hp": { + "average": 49, + "formula": "9d6 + 18" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 7, + "dex": 16, + "con": 15, + "int": 10, + "wis": 11, + "cha": 12, + "save": { + "dex": "+5" + }, + "skill": { + "athletics": "+2", + "perception": "+2", + "stealth": "+5", + "survival": "+2" + }, + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Grung" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The grung can breathe air and water." + ] + }, + { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ] + }, + { + "name": "Water Dependency", + "entries": [ + "If the grung isn't immersed in water for at least 1 hour during a day, it suffers 1 level of {@condition exhaustion} at the end of that day. The grung can recover from this {@condition exhaustion} only through magic or by immersing itself in water for at least 1 hour." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Mesmerizing Chirr {@recharge}", + "entries": [ + "The grung makes a chirring noise to which grungs are immune. Each Humanoid or Beast that is within 15 feet of the grung and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition stunned} until the end of the grung's next turn." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Grung Poison", + "entries": [ + "A creature {@condition poisoned} by a grung can suffer an additional effect that depends on the grung's color, as described below. This effect lasts until the creature is no longer {@condition poisoned} by the grung.", + { + "name": "Blue Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature must make a loud noise at the start and end of its turn." + ] + }, + { + "name": "Gold Grung", + "type": "entries", + "entries": [ + "The creature is {@condition charmed} by the grung and can speak Grung." + ] + }, + { + "name": "Green Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + }, + { + "name": "Orange Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + }, + { + "name": "Purple Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + }, + { + "name": "Red Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grung-elite-warrior.mp3" + }, + "attachedItems": [ + "dagger|phb", + "shortbow|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Grung Elite Warrior (Blue)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature must make a loud noise at the start and end of its turn." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Gold)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The creature is {@condition charmed} by the grung and can speak Grung." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Green)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Orange)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Purple)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Red)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Grung Wildling", + "source": "MPMM", + "page": 150, + "otherSources": [ + { + "source": "VGM", + "page": 157 + } + ], + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 7, + "dex": 16, + "con": 15, + "int": 10, + "wis": 15, + "cha": 11, + "save": { + "dex": "+5" + }, + "skill": { + "athletics": "+2", + "perception": "+4", + "stealth": "+5", + "survival": "+4" + }, + "passive": 14, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Grung" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The grung casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell druidcraft}" + ], + "daily": { + "2": [ + "{@spell plant growth}" + ], + "3e": [ + "{@spell cure wounds}", + "{@spell spike growth}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The grung can breathe air and water." + ] + }, + { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ] + }, + { + "name": "Water Dependency", + "entries": [ + "If the grung isn't immersed in water for at least 1 hour during a day, it suffers 1 level of {@condition exhaustion} at the end of that day. The grung can recover from this {@condition exhaustion} only through magic or by immersing itself in water for at least 1 hour." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Grung Poison", + "entries": [ + "A creature {@condition poisoned} by a grung can suffer an additional effect that depends on the grung's color, as described below. This effect lasts until the creature is no longer {@condition poisoned} by the grung.", + { + "name": "Blue Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature must make a loud noise at the start and end of its turn." + ] + }, + { + "name": "Gold Grung", + "type": "entries", + "entries": [ + "The creature is {@condition charmed} by the grung and can speak Grung." + ] + }, + { + "name": "Green Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + }, + { + "name": "Orange Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + }, + { + "name": "Purple Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + }, + { + "name": "Red Grung", + "type": "entries", + "entries": [ + "The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grung-wildling.mp3" + }, + "attachedItems": [ + "dagger|phb", + "shortbow|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Grung Wildling (Blue)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature must make a loud noise at the start and end of its turn." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Gold)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The creature is {@condition charmed} by the grung and can speak Grung." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Green)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Orange)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Purple)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Red)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "A creature {@condition poisoned} by a grung suffers an additional effect that depends on the grung's color. This effect lasts until the creature is no longer {@condition poisoned} by the grung. The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Guard Drake", + "source": "MPMM", + "page": 151, + "otherSources": [ + { + "source": "HotDQ", + "page": 91 + } + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 4, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The guard drake makes one Bite attack and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Chromatic Drakes", + "entries": [ + "Each type of chromatic dragon's scales creates a guard drake that resembles a wingless, stunted version of that type of dragon, with unique abilities related to that type. Each has the special features described below.", + { + "name": "Black Guard Drake", + "type": "entries", + "entries": [ + "The drake can breathe air and water, has a swimming speed of 30 feet, and has resistance to acid damage." + ] + }, + { + "name": "Blue Guard Drake", + "type": "entries", + "entries": [ + "The drake has a burrowing speed of 20 feet and resistance to lightning damage." + ] + }, + { + "name": "Green Guard Drake", + "type": "entries", + "entries": [ + "The drake can breathe air and water, has a swimming speed of 30 feet, and has resistance to poison damage." + ] + }, + { + "name": "Red Guard Drake", + "type": "entries", + "entries": [ + "The drake has climbing speed of 30 feet and resistance to fire damage." + ] + }, + { + "name": "White Guard Drake", + "type": "entries", + "entries": [ + "The drake has a burrowing speed of 20 feet, a climbing speed of 30 feet, and resistance to cold damage." + ] + } + ] + } + ], + "environment": [ + "arctic", + "desert", + "forest", + "mountain", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard-drake.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Guard Drake (Black)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Amphibious", + "entries": [ + "The drake can breathe air and water." + ] + } + } + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "resist": [ + "acid" + ], + "variant": null + }, + { + "name": "Guard Drake (Blue)", + "source": "MPMM", + "speed": { + "walk": 30, + "burrow": 20 + }, + "resist": [ + "lightning" + ], + "variant": null + }, + { + "name": "Guard Drake (Green)", + "source": "MPMM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Amphibious", + "entries": [ + "The drake can breathe air and water." + ] + } + } + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "resist": [ + "poison" + ], + "variant": null + }, + { + "name": "Guard Drake (Red)", + "source": "MPMM", + "speed": { + "walk": 30, + "climb": 30 + }, + "resist": [ + "fire" + ], + "variant": null + }, + { + "name": "Guard Drake (White)", + "source": "MPMM", + "speed": { + "walk": 30, + "climb": 30, + "burrow": 20 + }, + "resist": [ + "cold" + ], + "variant": null + } + ] + }, + { + "name": "Hadrosaurus", + "source": "MPMM", + "page": 96, + "otherSources": [ + { + "source": "VGM", + "page": 140 + } + ], + "size": [ + "L" + ], + "type": { + "type": "beast", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 10, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+2" + }, + "passive": 12, + "cr": "1/4", + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hadrosaurus.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hellfire Engine", + "source": "MPMM", + "page": 152, + "otherSources": [ + { + "source": "MTF", + "page": 165 + } + ], + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 16, + "con": 24, + "int": 2, + "wis": 10, + "cha": 1, + "save": { + "dex": "+8", + "wis": "+5", + "cha": "+0" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "psychic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "understands Infernal but can't speak" + ], + "cr": "16", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The hellfire engine is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The hellfire engine has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The hellfire engine doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Flesh-Crushing Stride", + "entries": [ + "The hellfire engine moves up to its speed in a straight line. During this move, it can enter Large or smaller creatures' spaces. A creature whose space the hellfire engine enters must make a {@dc 18} Dexterity saving throw. On a successful save, the creature is pushed to the nearest space out of the hellfire engine's path. On a failed save, the creature falls {@condition prone} and takes 28 ({@damage 8d6}) bludgeoning damage.", + "If the hellfire engine remains in the {@condition prone} creature's space, the creature is also {@condition restrained} until it's no longer in the same space as the hellfire engine. While {@condition restrained} in this way, the creature, or another creature within 5 feet of it, can make a {@dc 18} Strength check. On a success, the creature is shunted to an unoccupied space of its choice within 5 feet of the hellfire engine and is no longer {@condition restrained}." + ] + }, + { + "name": "Hellfire Weapons", + "entries": [ + "The hellfire engine uses one of the following options (choose one or roll a {@dice d6}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1\u20132: Bonemelt Sprayer", + "type": "item", + "entries": [ + "The hellfire engine spews acidic flame in a 60-foot cone. Each creature in the cone must make a {@dc 20} Dexterity saving throw, taking 11 ({@damage 2d10}) fire damage plus 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one. Creatures that fail the saving throw are drenched in burning acid and take 5 ({@damage 1d10}) fire damage plus 9 ({@damage 2d8}) acid damage at the end of their turns. An affected creature or another creature within 5 feet of it can take an action to scrape off the burning fuel." + ] + }, + { + "name": "3\u20134: Lightning Flail", + "type": "item", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one creature. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 22 ({@damage 5d8}) lightning damage. Up to three other creatures of the hellfire engine's choice that it can see within 30 feet of the target must each make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 5d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "5\u20136: Thunder Cannon", + "type": "item", + "entries": [ + "The hellfire engine targets a point within 120 feet of it that it can see. Each creature within 30 feet of that point must make a {@dc 20} Dexterity saving throw, taking 27 ({@damage 5d10}) bludgeoning damage plus 19 ({@damage 3d12}) thunder damage on a failed save, or half as much damage on a successful one.", + "If the chosen option kills a creature, the creature's soul rises from the River Styx as a {@creature lemure} in Avernus in {@dice 1d4} hours. If the creature isn't revived before then, only a {@spell wish} spell or killing the {@creature lemure} and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ] + } + ] + } + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hellfire-engine.mp3" + }, + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "CS", + "I" + ], + "damageTags": [ + "A", + "B", + "F", + "L", + "T" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hobgoblin Devastator", + "source": "MPMM", + "page": 153, + "otherSources": [ + { + "source": "VGM", + "page": 161 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 14, + "int": 16, + "wis": 13, + "cha": 11, + "skill": { + "arcana": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Goblin" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hobgoblin casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell fireball}", + "{@spell fly}", + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell lightning bolt}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Army Arcana", + "entries": [ + "When the hobgoblin casts a spell that causes damage or that forces other creatures to make a saving throw, it can choose itself and any number of allies to be immune to the damage caused by the spell and to succeed on the required saving throw." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hobgoblin makes two Quarterstaff or Devastating Bolt attacks." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands, plus 13 ({@damage 3d8}) force damage." + ] + }, + { + "name": "Devastating Bolt", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}21 ({@damage 4d8 + 3}) force damage, and the target is knocked {@condition prone}." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hobgoblin-devastator.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B", + "O" + ], + "damageTagsSpell": [ + "F", + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hobgoblin Iron Shadow", + "source": "MPMM", + "page": 154, + "otherSources": [ + { + "source": "VGM", + "page": 162 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 16, + "con": 15, + "int": 14, + "wis": 15, + "cha": 11, + "skill": { + "acrobatics": "+5", + "athletics": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Goblin" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hobgoblin casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell silent image}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the hobgoblin is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hobgoblin makes four attacks, each of which can be an Unarmed Strike or a Dart attack. It can also use", + "Shadow Jaunt once, either before or after one of the attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Shadow Jaunt", + "entries": [ + "The hobgoblin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see. Both the space it leaves and its destination must be in dim light or darkness." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hobgoblin-iron-shadow.mp3" + }, + "attachedItems": [ + "dart|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Howler", + "source": "MPMM", + "page": 155, + "otherSources": [ + { + "source": "MTF", + "page": 210 + } + ], + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 16, + "con": 15, + "int": 5, + "wis": 14, + "cha": 6, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "A howler has advantage on attack rolls against a creature if at least one of the howler's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The howler makes two Rending Bite attacks." + ] + }, + { + "name": "Rending Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, plus 22 ({@damage 4d10}) psychic damage if the target is {@condition frightened}. This attack ignores damage resistance." + ] + }, + { + "name": "Mind-Breaking Howl {@recharge 4}", + "entries": [ + "The howler emits a keening howl in a 60-foot cone. Each creature in that area must succeed on a {@dc 13} Wisdom saving throw or take 16 ({@damage 3d10}) psychic damage and be {@condition frightened} until the end of the howler's next turn. While a creature is {@condition frightened} in this way, its speed is halved, and it is {@condition incapacitated}. A target that successfully saves is immune to the Mind-Breaking Howl of all howlers for the next 24 hours." + ] + } + ], + "environment": [ + "desert", + "grassland", + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/howler.mp3" + }, + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hungry Sorrowsworn", + "source": "MPMM", + "page": 223, + "otherSources": [ + { + "source": "MTF", + "page": 232 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 6, + "wis": 11, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "11", + "trait": [ + { + "name": "Life Hunger", + "entries": [ + "If a creature within 60 feet of the sorrowsworn regains hit points, the sorrowsworn gains two benefits until the end of its next turn: it has advantage on attack rolls, and its Bite deals an extra 22 ({@damage 4d10}) necrotic damage on a hit." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sorrowsworn makes one Bite attack and one Claw attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 16}), and it is {@condition restrained} until the grapple ends. While grappling a creature, the sorrowsworn can't make a Claw attack." + ] + } + ], + "environment": [ + "forest", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-hungry.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hutijin", + "isNamedCreature": true, + "source": "MPMM", + "page": 157, + "otherSources": [ + { + "source": "MTF", + "page": 175 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 27, + "dex": 15, + "con": 25, + "int": 23, + "wis": 19, + "cha": 25, + "save": { + "dex": "+9", + "con": "+14", + "wis": "+11" + }, + "skill": { + "intimidation": "+14", + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Hutijin casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell hold monster}", + "{@spell invisibility} (self only)", + "{@spell lightning bolt}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "daily": { + "3": [ + "{@spell dispel magic}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Infernal Despair", + "entries": [ + "Each creature within 30 feet of Hutijin that isn't a devil makes saving throws with disadvantage." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Hutijin fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Hutijin has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Hutijin regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Hutijin dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hutijin makes one Bite attack, one Claw attack, one Mace attack, and one Tail attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) fire damage. The target must succeed on a {@dc 22} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target can't regain hit points, and it takes 10 ({@damage 3d6}) poison damage at the start of each of its turns. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) cold damage." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) force damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) thunder damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "Hutijin teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "reaction": [ + { + "name": "Fearful Voice {@recharge 5}", + "entries": [ + "In response to taking damage, Hutijin utters a dreadful word of power. Each creature within 30 feet of him that isn't a devil must succeed on a {@dc 22} Wisdom saving throw or become {@condition frightened} of him 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. A creature that saves against this effect is immune to his Fearful Voice for 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Hutijin makes one Claw, Mace, or Tail attack." + ] + }, + { + "name": "Teleport", + "entries": [ + "Hutijin uses Teleport." + ] + }, + { + "name": "Lightning Storm (Costs 2 Actions)", + "entries": [ + "Hutijin releases lightning in a 30-foot radius, blocked only by {@quickref Cover||3||total cover}. All other creatures in that area must each make a {@dc 22} Dexterity saving throw, taking 18 ({@damage 4d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hutijin.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "C", + "F", + "I", + "L", + "O", + "T" + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "poisoned" + ], + "conditionInflictSpell": [ + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hydroloth", + "source": "MPMM", + "page": 158, + "otherSources": [ + { + "source": "MTF", + "page": 249 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 15 + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 12, + "dex": 21, + "con": 16, + "int": 19, + "wis": 10, + "cha": 14, + "skill": { + "insight": "+4", + "perception": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hydroloth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)" + ], + "daily": { + "3e": [ + "{@spell control water}", + "{@spell crown of madness}", + "{@spell fear}", + "{@spell suggestion}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The hydroloth can breathe air and water." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The hydroloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Secure Memory", + "entries": [ + "The hydroloth is immune to the waters of the River Styx, as well as any effect that would steal or modify its memories or detect or read its thoughts." + ] + }, + { + "name": "Watery Advantage", + "entries": [ + "While submerged in liquid, the hydroloth has advantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hydroloth makes two Bite or Claw attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) force damage plus 9 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) force damage plus 9 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Steal Memory (1/Day)", + "entries": [ + "The hydroloth targets one creature it can see within 60 feet of it. The target takes 14 ({@damage 4d6}) psychic damage, and it must make a {@dc 16} Intelligence saving throw. On a successful save, the target becomes immune to this hydroloth's Steal Memory for 24 hours. On a failed save, the target loses all proficiencies; it can't cast spells; it can't understand language; and if its Intelligence and Charisma scores are higher than 5, they become 5. Each time the target finishes a long rest, it can repeat the saving throw, ending the effect on itself on a success. A {@spell greater restoration} or {@spell remove curse} spell cast on the target ends this effect early." + ] + }, + { + "name": "Teleport", + "entries": [ + "The hydroloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hydroloth.mp3" + }, + "traitTags": [ + "Amphibious", + "Magic Resistance" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "O", + "Y" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "invisible" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Illusionist Wizard", + "source": "MPMM", + "page": 263, + "otherSources": [ + { + "source": "VGM", + "page": 214 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 13, + "int": 16, + "wis": 11, + "cha": 12, + "save": { + "int": "+5", + "wis": "+2" + }, + "skill": { + "arcana": "+5", + "history": "+5" + }, + "passive": 10, + "languages": [ + "any four languages" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The illusionist casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "2e": [ + "{@spell disguise self}", + "{@spell invisibility}", + "{@spell mage armor}", + "{@spell major image}", + "{@spell phantasmal force}", + "{@spell phantom steed}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The illusionist makes two Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Displacement {@recharge 5}", + "entries": [ + "The illusionist projects an illusion that makes the illusionist appear to be standing in a place a few inches from its actual location, causing any creature to have disadvantage on attack rolls against the illusionist. The effect lasts for 1 minute, and it ends early if the illusionist takes damage, if it is {@condition incapacitated}, or if its speed becomes 0." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/illusionist.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Juiblex", + "isNamedCreature": true, + "source": "MPMM", + "page": 160, + "otherSources": [ + { + "source": "MTF", + "page": 151 + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 350, + "formula": "28d12 + 168" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 24, + "dex": 10, + "con": 23, + "int": 20, + "wis": 20, + "cha": 16, + "save": { + "dex": "+7", + "con": "+13", + "wis": "+12" + }, + "skill": { + "perception": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "acid", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned", + "unconscious" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": { + "cr": "23", + "lair": "24" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Juiblex casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "3e": [ + "{@spell contagion}", + "{@spell gaseous form}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Foul", + "entries": [ + "Any creature other than an Ooze that starts its turn within 10 feet of Juiblex must succeed on a {@dc 21} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Juiblex fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Juiblex has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Juiblex regains 20 hit points at the start of its turn. If it takes fire or radiant damage, this trait doesn't function at the start of its next turn. Juiblex dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Juiblex can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Juiblex makes three Acid Lash attacks." + ] + }, + { + "name": "Acid Lash", + "entries": [ + "{@atk mw,rw} {@hit 14} to hit, reach 10 ft. or range 60/120 ft., one target. {@h}21 ({@damage 4d6 + 7}) acid damage. Any creature killed by this attack is drawn into Juiblex's body, where the corpse is dissolved after 1 minute." + ] + }, + { + "name": "Eject Slime {@recharge 5}", + "entries": [ + "Juiblex spews out a corrosive slime, targeting one creature that it can see within 60 feet of it. The target must succeed on a {@dc 21} Dexterity saving throw or take 55 ({@damage 10d10}) acid damage. Unless the target avoids taking all of this damage, any metal armor worn by the target takes a permanent \u22121 penalty to the AC it offers, and any metal weapon the target is carrying or wearing takes a permanent \u22121 penalty to damage rolls. The penalty worsens each time a target is subjected to this effect. If the penalty on an object drops to \u22125, the object is destroyed. The penalty on an object can be removed by the {@spell mending} spell." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Juiblex makes one Acid Lash attack." + ] + }, + { + "name": "Corrupting Touch (Costs 2 Actions)", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one creature. {@h}21 ({@damage 4d6 + 7}) poison damage, and the target is slimed. Until the slime is scraped off with an action, the target is {@condition poisoned}, and any creature, other than an Ooze, is {@condition poisoned} while within 10 feet of the target." + ] + } + ], + "legendaryGroup": { + "name": "Juiblex", + "source": "MPMM" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration", + "Spider Climb" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "I" + ], + "damageTagsLegendary": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictLegendary": [ + "prone", + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ki-rin", + "source": "MPMM", + "page": 162, + "otherSources": [ + { + "source": "VGM", + "page": 163 + } + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d10 + 54" + }, + "speed": { + "walk": 60, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 21, + "dex": 16, + "con": 16, + "int": 19, + "wis": 20, + "cha": 20, + "skill": { + "perception": "+9", + "insight": "+9", + "religion": "+8" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "passive": 19, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ki-rin casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell light}", + "{@spell major image} (6th-level version)", + "{@spell thaumaturgy}" + ], + "daily": { + "3e": [ + "{@spell cure wounds}", + "{@spell dispel magic}", + "{@spell lesser restoration}", + "{@spell sending}" + ], + "1e": [ + "{@spell banishment}", + "{@spell calm emotions}", + "{@spell create food and water}", + "{@spell greater restoration}", + "{@spell plane shift}", + "{@spell protection from evil and good}", + "{@spell revivify}", + "{@spell wind walk}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the ki-rin fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The ki-rin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ki-rin makes two Hoof attacks and one Horn attack, or it makes two Sacred Fire attacks." + ] + }, + { + "name": "Hoof", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d4 + 5}) force damage." + ] + }, + { + "name": "Horn", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) radiant damage." + ] + }, + { + "name": "Sacred Fire", + "entries": [ + "{@atk rs} {@hit 9} to hit, range 120 ft., one target. {@h}18 ({@damage 3d8 + 5}) radiant damage." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The ki-rin moves up to half its speed without provoking {@action opportunity attack||opportunity attacks}." + ] + }, + { + "name": "Smite", + "entries": [ + "The ki-rin makes one Hoof, Horn, or Sacred Fire attack." + ] + } + ], + "legendaryGroup": { + "name": "Ki-rin", + "source": "MPMM" + }, + "environment": [ + "coastal", + "desert", + "grassland", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ki-rin.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "O", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kobold Dragonshield", + "source": "MPMM", + "page": 163, + "otherSources": [ + { + "source": "VGM", + "page": 165 + } + ], + "size": [ + "S" + ], + "type": "dragon", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB|leather}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d6 + 16" + }, + "speed": { + "walk": 20 + }, + "str": 12, + "dex": 15, + "con": 14, + "int": 8, + "wis": 9, + "cha": 10, + "skill": { + "perception": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + { + "special": "see Dragon's Resistance below" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "trait": [ + { + "name": "Dragon's Resistance", + "entries": [ + "The kobold has resistance to a type of damage based on the color of dragon that invested it with power (choose or roll a {@damage d10}): 1\u20132, acid (black or copper); 3\u20134, cold (silver or white); 5\u20136, fire (brass, gold, or red); 7\u20138, lightning (blue or bronze); 9\u201310, poison (green)." + ] + }, + { + "name": "Heart of the Dragon", + "entries": [ + "If the kobold is {@condition frightened} or {@condition paralyzed} by an effect that allows a saving throw, it can repeat the save at the start of its turn to end the effect on itself and all kobolds within 30 feet of it. Any kobold that benefits from this trait (including the dragonshield) has advantage on its next attack roll." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kobold makes two Spear attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "forest", + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kobold-dragonshield.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kobold Inventor", + "source": "MPMM", + "page": 164, + "otherSources": [ + { + "source": "VGM", + "page": 166 + } + ], + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 12, + "int": 14, + "wis": 10, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/4", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Weapon Invention", + "entries": [ + "The kobold uses one of the following options (choose one or roll a {@dice d8}); the kobold can use each one no more than once per day:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1: Acid", + "entries": [ + "The kobold hurls a {@item acid (vial)|PHB|flask of acid}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}7 ({@damage 2d6}) acid damage." + ], + "type": "item" + }, + { + "name": "2: Alchemist's Fire", + "entries": [ + "The kobold throws a {@item Alchemist's Fire (flask)|PHB|flask of alchemist's fire}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}2 ({@damage 1d4}) fire damage at the start of each of the target's turns. The target can end this damage by using its action to make a {@dc 10} Dexterity check to extinguish the flames." + ], + "type": "item" + }, + { + "name": "3: Basket of Centipedes", + "entries": [ + "The kobold throws a small basket into a 5-foot-square space within 20 feet of it. A {@creature Swarm of Centipedes||swarm of insects (centipedes)} with 11 hit points emerges from the basket and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + ], + "type": "item" + }, + { + "name": "4: Green Slime Pot", + "entries": [ + "The kobold throws a clay pot full of green slime at the target, and it breaks open on impact. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}5 ({@damage 1d10}) acid damage, and the target is covered in slime until a creature uses its action to scrape or wash the slime off. A target covered in the slime takes 5 ({@damage 1d10}) acid damage at the start of each of its turns." + ], + "type": "item" + }, + { + "name": "5: Rot Grub Pot", + "entries": [ + "The kobold throws a clay pot into a 5-foot-square space within 20 feet of it, and it breaks open on impact. A {@creature swarm of rot grubs|MPMM} (in this book) emerges from the shattered pot and remains a hazard in that square." + ], + "type": "item" + }, + { + "name": "6: Scorpion on a Stick", + "entries": [ + "The kobold makes a melee attack with a {@creature scorpion} tied to the end of a 5-foot-long pole. {@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage, and the target must make a {@dc 9} Constitution saving throw, taking 4 ({@damage 1d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "type": "item" + }, + { + "name": "7: Skunk in a Cage", + "entries": [ + "The kobold releases a skunk into an unoccupied space within 5 feet of it. The skunk has a walking speed of 20 feet, AC 10, 1 hit point, and no effective attacks. It rolls initiative and, on its turn, uses its action to spray musk at a random creature within 5 feet of it. The target must succeed on a {@dc 9} Constitution saving throw, or it retches and is {@condition incapacitated} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that doesn't need to breathe or is immune to poison automatically succeeds on the saving throw. Once the skunk has sprayed its musk, it can't do so again until it finishes a short or long rest." + ], + "type": "item" + }, + { + "name": "8: Wasp Nest in a Bag", + "entries": [ + "The kobold throws a small bag into a 5-foot-square space within 20 feet of it. A {@creature Swarm of Wasps||swarm of insects (wasps)} with 11 hit points emerges from the bag and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + ], + "type": "item" + } + ] + } + ] + } + ], + "environment": [ + "forest", + "hill", + "mountain", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kobold-inventor.mp3" + }, + "attachedItems": [ + "dagger|phb", + "sling|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "F", + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kobold Scale Sorcerer", + "source": "MPMM", + "page": 165, + "otherSources": [ + { + "source": "VGM", + "page": 167 + } + ], + "size": [ + "S" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 14, + "int": 10, + "wis": 9, + "cha": 14, + "skill": { + "arcana": "+2", + "medicine": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The kobold casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell charm person}", + "{@spell fog cloud}", + "{@spell levitate}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kobold makes two Dagger or Chromatic Bolt attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Chromatic Bolt", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 60 feet, one target. {@h}9 ({@damage 2d6 + 2}) of a type of the kobold's choice: acid, cold, fire, lightning, poison, or thunder." + ] + } + ], + "environment": [ + "forest", + "hill", + "mountain", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kobold-scale-sorcerer.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Korred", + "source": "MPMM", + "page": 166, + "otherSources": [ + { + "source": "VGM", + "page": 168 + } + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d6 + 55" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 23, + "dex": 14, + "con": 20, + "int": 10, + "wis": 15, + "cha": 9, + "skill": { + "athletics": "+9", + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Dwarvish", + "Gnomish", + "Sylvan", + "Terran", + "Undercommon" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The korred casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell commune with nature} (as an action)", + "{@spell meld into stone}", + "{@spell stone shape}" + ], + "daily": { + "1": [ + "{@spell Otto's irresistible dance}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Stone Camouflage", + "entries": [ + "The korred has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The korred makes two Greatclub or Rock attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 19 ({@damage 3d8 + 6}) bludgeoning damage if the korred is on the ground." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/120 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 19 ({@damage 3d8 + 6}) bludgeoning damage if the korred is on the ground." + ] + } + ], + "bonus": [ + { + "name": "Command Hair", + "entries": [ + "The korred has at least one 50-foot-long rope woven out of its hair. The korred commands one such rope within 30 feet of it to move up to 20 feet and entangle a Large or smaller creature that the korred can see. The target must succeed on a {@dc 13} Dexterity saving throw or become {@condition grappled} by the rope (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}. The korred can use a bonus action to release the target, which is also freed if the korred dies or becomes {@condition incapacitated}.", + "A rope of korred hair has AC 20 and 20 hit points. It regains 1 hit point at the start of each of the korred's turns while the rope has at least 1 hit point and the korred is alive. If the rope drops to 0 hit points, it is destroyed." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/korred.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "SD", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "G", + "S", + "T", + "U" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kraken Priest", + "source": "MPMM", + "page": 167, + "otherSources": [ + { + "source": "VGM", + "page": 215 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 12, + "dex": 10, + "con": 16, + "int": 10, + "wis": 15, + "cha": 14, + "skill": { + "perception": "+5" + }, + "passive": 15, + "languages": [ + "any two languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell command}", + "{@spell create or destroy water}" + ], + "daily": { + "1": [ + "{@spell Evard's black tentacles}" + ], + "3e": [ + "{@spell control water}", + "{@spell darkness}", + "{@spell water breathing}", + "{@spell water walk}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The priest can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The priest makes two Thunderous Touch or Thunderbolt attacks." + ] + }, + { + "name": "Thunderous Touch", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}27 ({@damage 5d10}) thunder damage." + ] + }, + { + "name": "Thunderbolt", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}11 ({@damage 2d10}) lightning damage plus 11 ({@damage 2d10}) thunder damage, and the target is knocked {@condition prone}." + ] + }, + { + "name": "Voice of the Kraken (Recharges after a Short or Long Rest)", + "entries": [ + "A kraken speaks through the priest with a thunderous voice audible within 300 feet. Creatures of the priest's choice that can hear the kraken's words (which are spoken in Abyssal, Infernal, or Primordial) must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the priest for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kraken-priest.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "L", + "T" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictSpell": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kruthik Hive Lord", + "source": "MPMM", + "page": 169, + "otherSources": [ + { + "source": "MTF", + "page": 212 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36" + }, + "speed": { + "walk": 40, + "burrow": 20, + "climb": 40 + }, + "str": 19, + "dex": 16, + "con": 17, + "int": 10, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 18, + "languages": [ + "Kruthik" + ], + "cr": "5", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kruthik makes two Stab or Spike attacks." + ] + }, + { + "name": "Stab", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ] + }, + { + "name": "Spike", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Acid Spray {@recharge 5}", + "entries": [ + "The kruthik sprays acid in a 15-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 22 ({@damage 4d10}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "desert", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kruthik-hive-lord.mp3" + }, + "traitTags": [ + "Pack Tactics", + "Tunneler" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Leucrotta", + "source": "MPMM", + "page": 170, + "otherSources": [ + { + "source": "VGM", + "page": 169 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 9, + "wis": 12, + "cha": 6, + "skill": { + "deception": "+2", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Abyssal", + "Gnoll" + ], + "cr": "3", + "trait": [ + { + "name": "Mimicry", + "entries": [ + "The leucrotta can mimic Beast sounds and Humanoid voices. A creature that hears the sounds can tell they are imitations only with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + }, + { + "name": "Stench", + "entries": [ + "Any creature other than a leucrotta or gnoll that starts its turn within 5 feet of the leucrotta must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the Stench of all leucrottas for 1 hour." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The leucrotta makes one Bite attack and one Hooves attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage. If the leucrotta scores a critical hit, it rolls the damage dice three times, instead of twice." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Kicking Retreat", + "entries": [ + "Immediately after the leucrotta makes a Hooves attack, it takes the {@action Disengage} action." + ] + } + ], + "environment": [ + "desert", + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/leucrotta.mp3" + }, + "traitTags": [ + "Mimicry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Leviathan", + "source": "MPMM", + "page": 171, + "otherSources": [ + { + "source": "MTF", + "page": 198 + } + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 17 + ], + "hp": { + "average": 328, + "formula": "16d20 + 160" + }, + "speed": { + "walk": 40, + "swim": 120 + }, + "str": 27, + "dex": 24, + "con": 30, + "int": 2, + "wis": 18, + "cha": 17, + "save": { + "wis": "+10", + "cha": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "20", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the leviathan fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Partial Freeze", + "entries": [ + "If the leviathan takes 50 cold damage or more during a single turn, the leviathan partially freezes; until the end of its next turn, its speeds are reduced to 20 feet, and it makes attack rolls with disadvantage." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The leviathan deals double damage to objects and structures." + ] + }, + { + "name": "Water Form", + "entries": [ + "The leviathan can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The leviathan makes one Slam attack and one Tail attack." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d12 + 8}) bludgeoning damage plus 13 ({@damage 2d12}) acid damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d10 + 8}) bludgeoning damage plus 10 ({@damage 3d6}) acid damage." + ] + }, + { + "name": "Tidal Wave {@recharge}", + "entries": [ + "The leviathan magically creates a wave of water that extends from a point it can see within 120 feet of itself. The wave is up to 250 feet long, up to 250 feet tall, and up to 50 feet wide. Each creature in the wave must make a {@dc 24} Strength saving throw. On a failed save, a creature takes 45 ({@damage 7d12}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}. The water spreads out across the ground in all directions, extinguishing unprotected flames in its area and within 250 feet of it, and then it vanishes." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The leviathan moves up to its speed." + ] + }, + { + "name": "Slam (Costs 2 Actions)", + "entries": [ + "The leviathan makes one Slam attack." + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/leviathan.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "C" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lonely Sorrowsworn", + "source": "MPMM", + "page": 223, + "otherSources": [ + { + "source": "MTF", + "page": 232 + }, + { + "source": "VEoR" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 17, + "int": 6, + "wis": 11, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "9", + "trait": [ + { + "name": "Psychic Leech", + "entries": [ + "At the start of each of the sorrowsworn's turns, each creature within 5 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Thrives on Company", + "entries": [ + "The sorrowsworn has advantage on attack rolls while it is within 30 feet of at least two other creatures. It otherwise has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sorrowsworn makes one Harpoon Arm attack, and it uses Sorrowful Embrace." + ] + }, + { + "name": "Harpoon Arm", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 60 ft., one target. {@h}21 ({@damage 4d8 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. The sorrowsworn has two harpoon arms and can grapple up to two creatures at once." + ] + }, + { + "name": "Sorrowful Embrace", + "entries": [ + "Each creature {@condition grappled} by the sorrowsworn must make a {@dc 15} Wisdom saving throw, taking 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one. In either case, the sorrowsworn pulls each of those creatures up to 30 feet straight toward it." + ] + } + ], + "environment": [ + "coastal", + "desert", + "mountain", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-lonely.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lost Sorrowsworn", + "source": "MPMM", + "page": 224, + "otherSources": [ + { + "source": "MTF", + "page": 233 + }, + { + "source": "AATM" + }, + { + "source": "VEoR" + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 6, + "wis": 7, + "cha": 5, + "skill": { + "athletics": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sorrowsworn makes two Arm Spike attacks." + ] + }, + { + "name": "Arm Spike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage." + ] + }, + { + "name": "Embrace {@recharge 4}", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}25 ({@damage 4d10 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition frightened}, and it takes 27 ({@damage 6d8}) psychic damage at the end of each of its turns. The sorrowsworn can grapple only one creature at a time." + ] + } + ], + "reaction": [ + { + "name": "Tightening Embrace", + "entries": [ + "If the sorrowsworn takes damage, the creature {@condition grappled} by Embrace takes 18 ({@damage 4d8}) psychic damage." + ] + } + ], + "environment": [ + "arctic", + "desert", + "forest", + "mountain", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-lost.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Male Steeder", + "source": "MPMM", + "page": 231, + "otherSources": [ + { + "source": "MTF", + "page": 238 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 12, + "con": 14, + "int": 2, + "wis": 10, + "cha": 3, + "skill": { + "stealth": "+5", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "cr": "1/4", + "trait": [ + { + "name": "Extraordinary Leap", + "entries": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to jump 3 feet." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ] + }, + { + "name": "Sticky Leg", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Small or Tiny creature. {@h}The target is stuck to the steeder's leg and {@condition grappled} (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/male-steeder.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Martial Arts Adept", + "source": "MPMM", + "page": 172, + "otherSources": [ + { + "source": "VGM", + "page": 216 + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "speed": { + "walk": 40 + }, + "str": 11, + "dex": 17, + "con": 13, + "int": 11, + "wis": 16, + "cha": 10, + "skill": { + "acrobatics": "+5", + "insight": "+5", + "stealth": "+5" + }, + "passive": 13, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the adept is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The adept makes three Unarmed Strike attacks or five Dart attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. Once per turn, the adept can cause one of the following additional effects (choose one or roll a {@dice d4}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1\u20132: Knock Down.", + "entry": "The target must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}." + }, + { + "type": "item", + "name": "3\u20134: Push.", + "entry": "The target must succeed on a {@dc 13} Strength saving throw or be pushed up to 10 feet directly away from the adept." + } + ] + } + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, the adept deflects the missile. The damage it takes from the attack is reduced by {@dice 1d10 + 3}. If the damage is reduced to 0, the adept catches the missile if it's small enough to hold in one hand and the adept has a hand free." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/martial-arts-adept.mp3" + }, + "attachedItems": [ + "dart|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Marut", + "source": "MPMM", + "page": 173, + "otherSources": [ + { + "source": "MTF", + "page": 213 + }, + { + "source": "SatO" + } + ], + "size": [ + "L" + ], + "type": { + "type": "construct", + "tags": [ + "inevitable" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 432, + "formula": "32d10 + 256" + }, + "speed": { + "walk": 40, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 28, + "dex": 12, + "con": 26, + "int": 19, + "wis": 15, + "cha": 18, + "save": { + "int": "+12", + "wis": "+10", + "cha": "+12" + }, + "skill": { + "insight": "+10", + "intimidation": "+12", + "perception": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 20, + "resist": [ + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "all but rarely speaks" + ], + "cr": "25", + "spellcasting": [ + { + "name": "Plane Shift (3/Day)", + "type": "spellcasting", + "headerEntries": [ + "The marut casts {@spell plane shift}, requiring no material components and using Intelligence as the spellcasting ability. The marut can cast the spell normally, or it can cast the spell on an unwilling creature it can see within 60 feet of it. If it uses the latter option, the targeted creature must succeed on a {@dc 20} Charisma saving throw or be banished to a teleportation circle in the Hall of Concordance in Sigil." + ], + "daily": { + "3": [ + "{@spell plane shift}" + ] + }, + "ability": "int", + "displayAs": "action", + "hidden": [ + "daily" + ] + } + ], + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The marut is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the marut fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The marut has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The marut doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The marut makes two Unerring Slam attacks." + ] + }, + { + "name": "Unerring Slam", + "entries": [ + "{@atk mw} automatic hit, reach 5 ft., one target. {@h}60 force damage, and the target is pushed up to 5 feet away from the marut if it is Huge or smaller." + ] + }, + { + "name": "Blazing Edict {@recharge 5}", + "entries": [ + "Arcane energy emanates from the marut's chest in a 60-foot cube. Every creature in that area takes 45 radiant damage. Each creature that takes any of this damage must succeed on a {@dc 20} Wisdom saving throw or be {@condition stunned} until the end of the marut's next turn." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/marut.mp3" + }, + "traitTags": [ + "Immutable Form", + "Legendary Resistances", + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O", + "R" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Master Thief", + "source": "MPMM", + "page": 174, + "otherSources": [ + { + "source": "VGM", + "page": 216 + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 11, + "wis": 11, + "cha": 12, + "save": { + "dex": "+7", + "int": "+3" + }, + "skill": { + "acrobatics": "+7", + "athletics": "+3", + "perception": "+3", + "sleight of hand": "+7", + "stealth": "+7" + }, + "passive": 13, + "languages": [ + "any one language (usually Common) plus thieves' cant" + ], + "cr": "5", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If the thief is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the thief instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided the thief isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thief makes three Shortsword or Shortbow attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ] + } + ], + "bonus": [ + { + "name": "Cunning Action", + "entries": [ + "The thief takes the {@action Dash}, {@action Disengage}, or {@action Hide} action." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "The thief halves the damage that it takes from an attack that hits it. The thief must be able to see the attacker." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/master-thief.mp3" + }, + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC", + "X" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maurezhi", + "source": "MPMM", + "page": 175, + "otherSources": [ + { + "source": "MTF", + "page": 133 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 17, + "con": 12, + "int": 11, + "wis": 12, + "cha": 15, + "skill": { + "deception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "Abyssal", + "Elvish", + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Assume Form", + "entries": [ + "The maurezhi can assume the appearance of any Medium Humanoid it eats. It remains in this form for {@dice 1d6} days, during which time the form gradually decays until, when the effect ends, the form sloughs from the demon's body." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The maurezhi has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The maurezhi makes one Bite attack and one Claw attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage. If the target is a Humanoid, its Charisma score is reduced by {@dice 1d4}. This reduction lasts until the target finishes a short or long rest. The target dies if this reduces its Charisma to 0. It rises 24 hours later as a {@creature ghoul} unless it has been revived or its corpse has been destroyed." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage. If the target is a creature other than an Undead, it must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Raise Ghoul {@recharge 5}", + "entries": [ + "The maurezhi targets one dead ghoul or {@creature ghast} it can see within 30 feet of it. The target is revived with all its hit points." + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/maurezhi.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "E", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maw Demon", + "source": "MPMM", + "page": 176, + "otherSources": [ + { + "source": "VGM", + "page": 137 + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 8, + "con": 13, + "int": 5, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "1", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + }, + { + "name": "Disgorge {@recharge}", + "entries": [ + "The demon vomits in a 15-foot cube. Each creature in that area must succeed on a {@dc 11} Dexterity saving throw or take 11 ({@damage 2d10}) acid damage and fall {@condition prone} in the spew." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/maw-demon.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Meazel", + "source": "MPMM", + "page": 177, + "otherSources": [ + { + "source": "MTF", + "page": 214 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 13 + ], + "hp": { + "average": 35, + "formula": "10d8 - 10" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 17, + "con": 9, + "int": 14, + "wis": 13, + "cha": 10, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "Common" + ], + "cr": "1", + "action": [ + { + "name": "Garrote", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target of the meazel's size or smaller. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13} with disadvantage). Until the grapple ends, the target takes 10 ({@damage 2d6 + 3}) bludgeoning damage at the start of each of the meazel's turns. The meazel can't make weapon attacks while grappling a creature in this way." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 3 ({@damage 1d6}) necrotic damage" + ] + }, + { + "name": "Shadow Teleport {@recharge 5}", + "entries": [ + "The meazel, any equipment it is wearing or carrying, and any creature it is grappling teleport to an unoccupied space within 500 feet of it, provided that the starting space and the destination are in dim light or darkness. The destination must be a place the meazel has seen before, but it need not be within line of sight. If the destination space is occupied, the teleportation leads to the nearest unoccupied space.", + "Any other creature the meazel teleports becomes cursed for 1 hour or until the curse is ended by {@spell remove curse} or {@spell greater restoration}. Until this curse ends, every Undead and every creature native to the Shadowfell within 300 feet of the cursed creature can sense it, which prevents that creature from hiding from them." + ] + } + ], + "bonus": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the meazel takes the {@action Hide} action." + ] + } + ], + "environment": [ + "desert", + "forest", + "grassland", + "hill", + "mountain", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/meazel.mp3" + }, + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "N", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Meenlock", + "source": "MPMM", + "page": 178, + "otherSources": [ + { + "source": "VGM", + "page": 170 + } + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 12, + "int": 11, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+4", + "stealth": "+6", + "survival": "+2" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "telepathy 120 ft." + ], + "cr": "2", + "trait": [ + { + "name": "Fear Aura", + "entries": [ + "Any Beast or Humanoid that starts its turn within 10 feet of the meenlock must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} until the start of the creature's next turn." + ] + }, + { + "name": "Light Sensitivity", + "entries": [ + "While in bright light, the meenlock has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Shadow Teleport {@recharge 5}", + "entries": [ + "The meenlock teleports to an unoccupied space within 30 feet of it, provided that both the space it's teleporting from and its destination are in dim light or darkness. The destination need not be within line of sight." + ] + } + ], + "environment": [ + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/meenlock.mp3" + }, + "traitTags": [ + "Light Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Merregon", + "source": "MPMM", + "page": 179, + "otherSources": [ + { + "source": "MTF", + "page": 166 + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 6, + "wis": 12, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "frightened", + "poisoned" + ], + "languages": [ + "understands Infernal but can't speak", + "telepathy 120 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the merregon's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The merregon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The merregon makes three Halberd attacks." + ] + }, + { + "name": "Halberd", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Loyal Bodyguard", + "entries": [ + "When another Fiend within 5 feet of the merregon is hit by an attack roll, the merregon causes itself to be hit instead." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/merregon.mp3" + }, + "attachedItems": [ + "halberd|phb", + "heavy crossbow|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Merrenoloth", + "source": "MPMM", + "page": 180, + "otherSources": [ + { + "source": "MTF", + "page": 250 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 13 + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 8, + "dex": 17, + "con": 10, + "int": 17, + "wis": 14, + "cha": 11, + "save": { + "dex": "+5", + "int": "+5" + }, + "skill": { + "history": "+5", + "nature": "+5", + "perception": "+4", + "survival": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The merrenoloth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell charm person}", + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell gust of wind}" + ], + "daily": { + "3": [ + "{@spell control water}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The merrenoloth has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The merrenoloth makes one Oar attack and uses Fear Gaze." + ] + }, + { + "name": "Oar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) fire damage." + ] + }, + { + "name": "Fear Gaze", + "entries": [ + "The merrenoloth targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} of the merrenoloth for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Teleport", + "entries": [ + "The merrenoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "legendaryGroup": { + "name": "Merrenoloth", + "source": "MPMM" + }, + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/merrenoloth.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "F" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictLegendary": [ + "prone" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "strength" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mindwitness", + "source": "MPMM", + "page": 181, + "otherSources": [ + { + "source": "VGM", + "page": 176 + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 14, + "con": 14, + "int": 15, + "wis": 15, + "cha": 10, + "save": { + "int": "+5", + "wis": "+5" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 600 ft." + ], + "cr": "5", + "trait": [ + { + "name": "Telepathic Hub", + "entries": [ + "When the mindwitness receives a telepathic message, it can telepathically share that message with up to seven other creatures within 600 feet of it that it can see." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mindwitness makes one Bite attack and one Tentacles attack, or it uses Eye Ray three times." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}16 ({@damage 4d6 + 2}) piercing damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}20 ({@damage 4d8 + 2}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 13}), and it must succeed on a {@dc 13} Intelligence saving throw or be {@condition restrained} until this grapple ends." + ] + }, + { + "name": "Eye Ray", + "entries": [ + "The mindwitness shoots one magical eye ray at random (roll a {@dice d6}, and reroll if the ray has already been used this turn), choosing one target it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1: Aversion Ray", + "entries": [ + "The targeted creature must make a {@dc 13} Charisma saving throw. On a failed save, the target has disadvantage on attack rolls for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "type": "item" + }, + { + "name": "2: Fear Ray", + "entries": [ + "The targeted creature must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "type": "item" + }, + { + "name": "3: Psychic Ray", + "entries": [ + "The target must succeed on a {@dc 13} Intelligence saving throw or take 27 ({@damage 6d8}) psychic damage." + ], + "type": "item" + }, + { + "name": "4: Slowing Ray", + "entries": [ + "The targeted creature must make a {@dc 13} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn but not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "type": "item" + }, + { + "name": "5: Stunning Ray", + "entries": [ + "The targeted creature must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "type": "item" + }, + { + "name": "6: Telekinetic Ray", + "entries": [ + "If the target is a creature, it must make a {@dc 13} Strength saving throw. On a failed save, the mindwitness moves it up to 30 feet in any direction, and it is {@condition restrained} by the ray's telekinetic grip until the start of the mindwitness's next turn or until the mindwitness is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is telekinetically moved up to 30 feet in any direction. The mindwitness can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ], + "type": "item" + } + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mindwitness.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Moloch", + "isNamedCreature": true, + "source": "MPMM", + "page": 183, + "otherSources": [ + { + "source": "MTF", + "page": 177 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 253, + "formula": "22d10 + 132" + }, + "speed": { + "walk": 30 + }, + "str": 26, + "dex": 19, + "con": 22, + "int": 21, + "wis": 18, + "cha": 23, + "save": { + "dex": "+11", + "con": "+13", + "wis": "+11", + "cha": "+13" + }, + "skill": { + "deception": "+13", + "intimidation": "+13", + "perception": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Moloch casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell confusion}", + "{@spell detect magic}", + "{@spell fly}", + "{@spell major image}", + "{@spell stinking cloud}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Moloch fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Moloch has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Moloch regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Moloch dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Moloch makes one Bite attack, one Claw attack, and one Many-Tailed Whip attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d8 + 8}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) force damage." + ] + }, + { + "name": "Many-Tailed Whip", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}13 ({@damage 2d4 + 8}) lightning damage plus 11 ({@damage 2d10}) thunder damage. If the target is a creature, it must succeed on a {@dc 24} Strength saving throw or be pulled up to 30 feet in a straight line toward Moloch." + ] + }, + { + "name": "Breath of Despair {@recharge 5}", + "entries": [ + "Moloch exhales in a 30-foot cube. Each creature in that area must succeed on a {@dc 21} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage, drop whatever it is holding, and become {@condition frightened} of Moloch for 1 minute. While {@condition frightened} in this way, a creature must take the {@action Dash} action and move away from Moloch by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the {@action Dash} action. If the creature ends its turn in a location where it doesn't have line of sight to Moloch, the creature can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Teleport", + "entries": [ + "Moloch teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Moloch makes one Bite, Claw, or Many-Tailed Whip attack." + ] + }, + { + "name": "Teleport", + "entries": [ + "Moloch uses Teleport." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Moloch uses Spellcasting." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/moloch.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "F", + "L", + "O", + "T", + "Y" + ], + "damageTagsSpell": [ + "B", + "F", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Molydeus", + "source": "MPMM", + "page": 184, + "otherSources": [ + { + "source": "MTF", + "page": 134 + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112" + }, + "speed": { + "walk": 40 + }, + "str": 28, + "dex": 22, + "con": 25, + "int": 21, + "wis": 24, + "cha": 24, + "save": { + "str": "+16", + "con": "+14", + "wis": "+14", + "cha": "+14" + }, + "skill": { + "perception": "+21" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 31, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "poisoned", + "stunned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The molydeus casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell dispel magic}", + "{@spell polymorph}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "daily": { + "3": [ + "{@spell lightning bolt}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the molydeus fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The molydeus has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The molydeus makes one Demonic Weapon attack, one Snakebite attack, and one Wolf Bite attack." + ] + }, + { + "name": "Demonic Weapon", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}35 ({@damage 4d12 + 9}) force damage. If the target has at least one head and the molydeus rolled a 20 on the attack roll, the target is decapitated and dies if it can't survive without that head. A target is immune to this effect if it takes none of the damage, has legendary actions, or is Huge or larger. Such a creature takes an extra 27 ({@damage 6d8}) force damage from the hit." + ] + }, + { + "name": "Snakebite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one creature. {@h}16 ({@damage 2d6 + 9}) poison damage. The target must succeed on a {@dc 22} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target transforms into a {@creature manes} if this reduces its hit point maximum to 0. This transformation can be ended only by a {@spell wish} spell." + ] + }, + { + "name": "Wolf Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d10 + 9}) necrotic damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The molydeus makes one Demonic Weapon or Snakebite attack." + ] + }, + { + "name": "Move", + "entries": [ + "The molydeus moves without provoking {@action opportunity attack||opportunity attacks}." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The molydeus uses Spellcasting." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Demon Summoning", + "entries": [ + "You can give a molydeus the ability to summon other demons.", + { + "name": "Summon Demon (1/Day)", + "type": "entries", + "entries": [ + "As an action, the molydeus has a {@chance 50} chance of summoning its choice of {@dice 1d6} {@creature babau|MPMM|babaus}, {@dice 1d4} {@creature chasme||chasmes}, or one {@creature marilith}. A summoned demon appears in an unoccupied space within 60 feet of the molydeus, acts as an ally of the molydeus, and can't summon other demons. It remains for 1 minute, until it or the molydeus dies, or until the molydeus dismisses it as an action." + ] + } + ], + "_version": { + "name": "Molydeus (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/molydeus.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "I", + "N", + "O" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Morkoth", + "source": "MPMM", + "page": 186, + "otherSources": [ + { + "source": "VGM", + "page": 177 + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 165, + "formula": "22d10 + 44" + }, + "speed": { + "walk": 25, + "swim": 50 + }, + "str": 14, + "dex": 14, + "con": 14, + "int": 20, + "wis": 15, + "cha": 13, + "save": { + "dex": "+6", + "int": "+9", + "wis": "+6" + }, + "skill": { + "arcana": "+9", + "history": "+9", + "perception": "+10", + "stealth": "+6" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "languages": [ + "telepathy 120 ft." + ], + "cr": { + "cr": "11", + "lair": "12" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The morkoth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell mage hand}" + ], + "daily": { + "3e": [ + "{@spell darkness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell lightning bolt}", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The morkoth can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The morkoth makes either two Bite attacks and one Tentacles attack or three Bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage plus 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}15 ({@damage 3d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained} and takes 15 ({@damage 3d8 + 2}) bludgeoning damage at the start of each of its turns, and the morkoth can't use its tentacles on another target." + ] + }, + { + "name": "Hypnosis", + "entries": [ + "The morkoth projects a 30-foot cone of magical energy. Each creature in that area must make a {@dc 17} Wisdom saving throw. On a failed save, the creature is {@condition charmed} by the morkoth for 1 minute. While {@condition charmed} in this way, the target tries to get as close to the morkoth as possible, using its actions to {@action Dash} until it is within 5 feet of the morkoth. A {@condition charmed} target can repeat the saving throw at the end of each of its turns and whenever it takes damage, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature has advantage on saving throws against the morkoth's Hypnosis for 24 hours." + ] + } + ], + "reaction": [ + { + "name": "Spell Reflection", + "entries": [ + "If the morkoth makes a successful saving throw against a spell or a spell attack misses it, the morkoth can choose another creature (including the spellcaster) it can see within 120 feet of it. The spell targets the chosen creature instead of the morkoth. If the spell forced a saving throw, the chosen creature makes its own save. If the spell was an attack, the attack roll is rerolled against the chosen creature." + ] + } + ], + "legendaryGroup": { + "name": "Morkoth", + "source": "MPMM" + }, + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/morkoth.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "B", + "S", + "Y" + ], + "damageTagsSpell": [ + "L", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mouth of Grolantor", + "source": "MPMM", + "page": 187, + "otherSources": [ + { + "source": "VGM", + "page": 149 + } + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "hill giant" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40" + }, + "speed": { + "walk": 50 + }, + "str": 21, + "dex": 10, + "con": 18, + "int": 5, + "wis": 7, + "cha": 5, + "skill": { + "perception": "+1" + }, + "passive": 11, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Giant" + ], + "cr": "6", + "trait": [ + { + "name": "Mouth of Chaos", + "entries": [ + "The giant is immune to the {@spell confusion} spell.", + "On each of its turns, the giant uses all its movement to move toward the nearest creature or whatever else it might perceive as food. Roll a {@dice d10} at the start of each of the giant's turns to determine its action for that turn:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1\u20133:", + "entry": "The giant makes three Fist attacks against one random creature within reach. If no creatures are within reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn." + }, + { + "type": "item", + "name": "4\u20135:", + "entry": "The giant makes one Fist attack against each creature within reach. If no creatures are within reach, the giant makes one Fist attack against itself." + }, + { + "type": "item", + "name": "6\u20137:", + "entry": "The giant makes one Bite attack against one random creature within reach. If no other creatures are within reach, its eyes glaze over and it is {@condition stunned} until the start of its next turn." + }, + { + "type": "item", + "name": "8\u201310:", + "entry": "The giant makes one Bite attack and two Fist attacks against one random creature within reach. If no creatures are within reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn." + } + ] + } + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}15 ({@damage 3d6 + 5}) piercing damage, and the giant magically regains hit points equal to the damage dealt." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mouth-of-grolantor.mp3" + }, + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nabassu", + "source": "MPMM", + "page": 188, + "otherSources": [ + { + "source": "MTF", + "page": 135 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 190, + "formula": "20d8 + 100" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 22, + "dex": 14, + "con": 21, + "int": 14, + "wis": 15, + "cha": 17, + "save": { + "str": "+11", + "dex": "+7" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "15", + "trait": [ + { + "name": "Demonic Shadows", + "entries": [ + "The nabassu darkens the area around its body in a 10-foot radius. Nonmagical light can't illuminate this area of dim light." + ] + }, + { + "name": "Devour Soul", + "entries": [ + "A nabassu can eat the soul of a creature it has killed within the last hour, provided that creature is neither a Construct nor an Undead. The devouring requires the nabassu to be within 5 feet of the corpse for at least 10 minutes, after which it gains a number of Hit Dice (d8s) equal to half the creature's number of Hit Dice. Roll those dice, and increase the nabassu's hit points by the numbers rolled. For every 4 Hit Dice the nabassu gains in this way, its attacks deal an extra 3 ({@damage 1d6}) damage on a hit. The nabassu retains these benefits for 6 days. A creature devoured by a nabassu can be restored to life only by a {@spell wish} spell." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The nabassu has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nabassu makes one Bite attack and one Claw attack, and it uses Soul-Stealing Gaze." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}38 ({@damage 5d12 + 6}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}28 ({@damage 4d10 + 6}) force damage." + ] + }, + { + "name": "Soul-Stealing Gaze", + "entries": [ + "The nabassu targets one creature it can see within 30 feet of it. If the target isn't a Construct or an Undead, it must succeed on a {@dc 16} Charisma saving throw or take 13 ({@damage 2d12}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage dealt, and the nabassu regains hit points equal to half that amount. This reduction lasts until the target finishes a short or long rest. The target dies if its hit point maximum is reduced to 0, and if the target is a Humanoid, it immediately rises as a {@creature ghoul} under the nabassu's control." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nabassu.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "AOE", + "HPR", + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nagpa", + "source": "MPMM", + "page": 189, + "otherSources": [ + { + "source": "MTF", + "page": 215 + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 203, + "formula": "37d8 + 37" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 15, + "con": 12, + "int": 23, + "wis": 18, + "cha": 21, + "save": { + "int": "+12", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "arcana": "+12", + "deception": "+11", + "history": "+12", + "insight": "+10", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "languages": [ + "Common plus up to five other languages" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The nagpa casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}" + ], + "daily": { + "2e": [ + "{@spell fireball}", + "{@spell fly}", + "{@spell hold person}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "1e": [ + "{@spell dominate person}", + "{@spell etherealness}", + "{@spell feeblemind}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nagpa makes three Staff or Deathly Ray attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage plus 24 ({@damage 7d6}) necrotic damage." + ] + }, + { + "name": "Deathly Ray", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}30 ({@damage 7d6 + 6}) necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Corruption", + "entries": [ + "The nagpa targets one creature it can see within 90 feet of it. The target must make a {@dc 20} Charisma saving throw. An evil creature makes the save with disadvantage. On a failed save, the target is {@condition charmed} by the nagpa until the start of the nagpa's next turn. On a successful save, the target becomes immune to the nagpa's Corruption for the next 24 hours." + ] + }, + { + "name": "Paralysis {@recharge 6}", + "entries": [ + "The nagpa forces each creature within 30 feet of it to make a {@dc 20} Wisdom saving throw, excluding Undead and Constructs. On a failed save, a target is {@condition paralyzed} for 1 minute. A {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "coastal", + "desert", + "forest", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nagpa.mp3" + }, + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "F", + "O", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "charmed", + "paralyzed" + ], + "conditionInflictSpell": [ + "charmed", + "paralyzed" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Narzugon", + "source": "MPMM", + "page": 190, + "otherSources": [ + { + "source": "MTF", + "page": 167 + }, + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 10, + "con": 17, + "int": 16, + "wis": 14, + "cha": 19, + "save": { + "dex": "+5", + "con": "+8", + "cha": "+9" + }, + "skill": { + "perception": "+12" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 22, + "resist": [ + "acid", + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "cr": "13", + "trait": [ + { + "name": "Infernal Tack", + "entries": [ + "The narzugon wears spurs that are part of {@item infernal tack|MTF}, which allow it to summon its {@creature nightmare} companion as an action." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The narzugon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The narzugon makes three Hellfire Lance attacks. It also uses Infernal Command or Terrifying Command." + ] + }, + { + "name": "Hellfire Lance", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 16 ({@damage 3d10}) fire damage. If this damage kills a creature with a soul, the soul rises from the River Styx as a {@creature lemure} in Avernus in {@dice 1d4} hours. If the creature isn't revived before then, only a {@spell wish} spell or killing the lemure and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ] + }, + { + "name": "Infernal Command", + "entries": [ + "Each ally of the narzugon within 60 feet of it can't be {@condition charmed} or {@condition frightened} until the end of the narzugon's next turn." + ] + }, + { + "name": "Terrifying Command", + "entries": [ + "Each creature within 60 feet of the narzugon that isn't a Fiend must succeed on a {@dc 17} Charisma saving throw or become {@condition frightened} of the narzugon 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. A creature that makes a successful saving throw is immune to this narzugon's Terrifying Command for 24 hours." + ] + }, + { + "name": "Healing (1/Day)", + "entries": [ + "The narzugon, or one creature it touches, regains 100 hit points." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/narzugon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I", + "TP" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Necromancer Wizard", + "source": "MPMM", + "page": 264, + "otherSources": [ + { + "source": "VGM", + "page": 217 + }, + { + "source": "VEoR" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+7", + "wis": "+5" + }, + "skill": { + "arcana": "+7", + "history": "+7" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "languages": [ + "any four languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The necromancer casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell bestow curse}", + "{@spell dimension door}", + "{@spell mage armor}", + "{@spell web}" + ], + "1e": [ + "{@spell circle of death}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The necromancer makes three Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}25 ({@damage 4d10 + 3}) necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Summon Undead (1/Day)", + "entries": [ + "The necromancer magically summons five {@creature skeleton||skeletons} or {@creature zombie||zombies}. The summoned creatures appear in unoccupied spaces within 60 feet of the necromancer, whom they obey. They take their turns immediately after the necromancer. Each lasts for 1 hour, until it or the necromancer dies, or until the necromancer dismisses it as a bonus action." + ] + } + ], + "reaction": [ + { + "name": "Grim Harvest (1/Turn)", + "entries": [ + "When the necromancer kills a creature with necrotic damage, the necromancer regains 9 ({@damage 2d8}) hit points. " + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/necromancer.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "F", + "N", + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neogi", + "source": "MPMM", + "page": 192, + "otherSources": [ + { + "source": "VGM", + "page": 180 + }, + { + "source": "CoA" + } + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 6, + "dex": 16, + "con": 14, + "int": 13, + "wis": 12, + "cha": 15, + "skill": { + "intimidation": "+4", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "cr": "3", + "trait": [ + { + "name": "Mental Fortitude", + "entries": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The neogi makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Enslave (Recharges after a Short or Long Rest)", + "entries": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neogi.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neogi Hatchling", + "source": "MPMM", + "page": 191, + "otherSources": [ + { + "source": "VGM", + "page": 179 + }, + { + "source": "SjA" + } + ], + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 11 + ], + "hp": { + "average": 7, + "formula": "3d4" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 6, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/8", + "trait": [ + { + "name": "Mental Fortitude", + "entries": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage plus 3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 10} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neogi-hatchling.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neogi Master", + "source": "MPMM", + "page": 192, + "otherSources": [ + { + "source": "VGM", + "page": 180 + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 6, + "dex": 16, + "con": 14, + "int": 16, + "wis": 12, + "cha": 18, + "save": { + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "deception": "+6", + "intimidation": "+6", + "perception": "+3", + "persuasion": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Deep Speech", + "Undercommon", + "telepathy 30 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The neogi casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell dimension door}", + "{@spell hold person}", + "{@spell hunger of Hadar}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the neogi's {@sense darkvision}." + ] + }, + { + "name": "Mental Fortitude", + "entries": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The neogi makes one Bite attack and one Claw attack, or it makes two Tentacle of Hadar attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ] + }, + { + "name": "Tentacle of Hadar", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}14 ({@damage 3d6 + 4}) necrotic damage, and the target can't take reactions until the end of the neogi's next turn, as a spectral tentacle clings to the target." + ] + } + ], + "bonus": [ + { + "name": "Enslave (Recharges after a Short or Long Rest)", + "entries": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neogi-master.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "TP", + "U" + ], + "damageTags": [ + "I", + "N", + "P" + ], + "damageTagsSpell": [ + "A", + "C", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "conditionInflictSpell": [ + "blinded", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Neothelid", + "source": "MPMM", + "page": 193, + "otherSources": [ + { + "source": "VGM", + "page": 181 + } + ], + "size": [ + "G" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 232, + "formula": "15d20 + 75" + }, + "speed": { + "walk": 30 + }, + "str": 27, + "dex": 7, + "con": 21, + "int": 3, + "wis": 16, + "cha": 12, + "save": { + "int": "+1", + "wis": "+8", + "cha": "+6" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 13, + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The neothelid casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell feeblemind}", + "{@spell telekinesis}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The neothelid is aware of the presence of creatures within 1 mile of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The neothelid has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 11 ({@damage 2d10}) psychic damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be swallowed by the neothelid. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the neothelid, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the neothelid's turns.", + "If the neothelid takes 30 damage or more on a single turn from a creature inside it, the neothelid must succeed on a {@dc 18} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the neothelid. If the neothelid dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Acid Breath {@recharge 5}", + "entries": [ + "The neothelid exhales acid in a 60-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 35 ({@damage 10d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neothelid.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Swallow", + "Tentacles" + ], + "damageTags": [ + "A", + "B", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nightwalker", + "source": "MPMM", + "page": 194, + "otherSources": [ + { + "source": "MTF", + "page": 216 + } + ], + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 337, + "formula": "25d12 + 175" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 22, + "dex": 19, + "con": 24, + "int": 6, + "wis": 9, + "cha": 8, + "save": { + "con": "+13" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 9, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "cr": "20", + "trait": [ + { + "name": "Annihilating Aura", + "entries": [ + "Any creature that starts its turn within 30 feet of the nightwalker must succeed on a {@dc 21} Constitution saving throw or take 21 ({@damage 6d6}) necrotic damage. Undead are immune to this aura." + ] + }, + { + "name": "Life Eater", + "entries": [ + "A creature dies if reduced to 0 hit points by the nightwalker and can't be revived except by a {@spell wish} spell." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The nightwalker doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nightwalker makes two Enervating Focus attacks, one of which can be replaced by Finger of Doom, if available." + ] + }, + { + "name": "Enervating Focus", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}28 ({@damage 5d8 + 6}) necrotic damage. The target must succeed on a {@dc 21} Constitution saving throw or its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Finger of Doom {@recharge}", + "entries": [ + "The nightwalker points at one creature it can see within 300 feet of it. The target must succeed on a {@dc 21} Wisdom saving throw or take 39 ({@damage 6d12}) necrotic damage and become {@condition frightened} until the end of the nightwalker's next turn. While {@condition frightened} in this way, the creature is also {@condition paralyzed}. If a target's saving throw is successful, the target is immune to the nightwalker's Finger of Doom for the next 24 hours." + ] + } + ], + "environment": [ + "arctic", + "desert", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nightwalker.mp3" + }, + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nilbog", + "source": "MPMM", + "page": 195, + "otherSources": [ + { + "source": "VGM", + "page": 182 + } + ], + "size": [ + "S" + ], + "type": { + "type": "fey", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 10, + "wis": 8, + "cha": 15, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The nilbog casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell Tasha's hideous laughter}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Nilbogism", + "entries": [ + "Any creature that attempts to damage the nilbog must first succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} until the end of the creature's next turn. A creature {@condition charmed} in this way must use its action praising the nilbog.", + "The nilbog can't regain hit points, including through magical healing, except through its Reversal of Fortune reaction." + ] + } + ], + "action": [ + { + "name": "Fool's Scepter", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Mocking Word", + "entries": [ + "The nilbog targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or take 5 ({@damage 2d4}) psychic damage and have disadvantage on its next attack roll before the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "The nilbog takes the {@action Disengage} or {@action Hide} action." + ] + } + ], + "reaction": [ + { + "name": "Reversal of Fortune", + "entries": [ + "In response to another creature dealing damage to the nilbog, the nilbog reduces the damage to 0 and regains 3 ({@dice 1d6}) hit points." + ] + } + ], + "environment": [ + "forest", + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nilbog.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nupperibo", + "source": "MPMM", + "page": 196, + "otherSources": [ + { + "source": "MTF", + "page": 168 + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 20 + }, + "str": 16, + "dex": 11, + "con": 13, + "int": 3, + "wis": 8, + "cha": 1, + "skill": { + "perception": "+1" + }, + "senses": [ + "blindsight 20 ft. (blind beyond this radius)" + ], + "passive": 11, + "resist": [ + "acid", + "cold" + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Infernal but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Cloud of Vermin", + "entries": [ + "Any creature, other than a devil, that starts its turn within 20 feet of one or more nupperibos must succeed on a {@dc 11} Constitution saving throw or take 5 ({@damage 2d4}) acid damage. A creature within the areas of two or more nupperibos makes the saving throw with disadvantage." + ] + }, + { + "name": "Driven Tracker", + "entries": [ + "In the Nine Hells, the nupperibo can flawlessly track any creature that has taken damage from any nupperibo's Cloud of Vermin within the previous 24 hours." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nupperibo.mp3" + }, + "senseTags": [ + "B" + ], + "languageTags": [ + "CS", + "I" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oblex Spawn", + "source": "MPMM", + "page": 197, + "otherSources": [ + { + "source": "MTF", + "page": 217 + } + ], + "size": [ + "T" + ], + "type": "ooze", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 13 + ], + "hp": { + "average": 18, + "formula": "4d4 + 8" + }, + "speed": { + "walk": 20 + }, + "str": 8, + "dex": 16, + "con": 15, + "int": 14, + "wis": 11, + "cha": 10, + "save": { + "int": "+4", + "cha": "+2" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 12, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "prone" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Aversion to Fire", + "entries": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The oblex doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) psychic damage." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oblex-spawn.mp3" + }, + "traitTags": [ + "Amorphous", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ogre Battering Ram", + "source": "MPMM", + "page": 200, + "otherSources": [ + { + "source": "MTF", + "page": 220 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 11, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 76, + "formula": "9d10 + 27" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "4", + "trait": [ + { + "name": "Siege Monster", + "entries": [ + "The ogre deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ogre makes two Bash attacks." + ] + }, + { + "name": "Bash", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) bludgeoning damage, and the ogre can push the target 5 feet away if the target is Huge or smaller." + ] + } + ], + "reaction": [ + { + "name": "Block the Path", + "entries": [ + "When a creature enters a space within 5 feet of the ogre, the ogre makes a Bash attack against that creature. If the attack hits, the target's speed is reduced to 0 until the start of the ogre's next turn." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-battering-ram.mp3" + }, + "traitTags": [ + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ogre Bolt Launcher", + "source": "MPMM", + "page": 200, + "otherSources": [ + { + "source": "MTF", + "page": 220 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 12, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "2", + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ] + }, + { + "name": "Bolt Launcher", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 120/480 ft., one target. {@h}17 ({@damage 3d10 + 1}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-bolt-launcher.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ogre Chain Brute", + "source": "MPMM", + "page": 201, + "otherSources": [ + { + "source": "MTF", + "page": 221 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 11, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "3", + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ] + }, + { + "name": "Chain Smash {@recharge}", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target must make a {@dc 14} Constitution saving throw or be {@condition stunned} for 1 minute. The target repeats the saving throw if it takes damage and at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Chain Sweep", + "entries": [ + "The ogre swings its chain, and every creature within 10 feet of it must make a {@dc 14} Dexterity saving throw. On a failed saving throw, a creature takes 8 ({@damage 1d8 + 4}) bludgeoning damage and is knocked {@condition prone}. On a successful save, the creature takes half as much damage and isn't knocked {@condition prone}." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-chain-brute.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ogre Howdah", + "source": "MPMM", + "page": 201, + "otherSources": [ + { + "source": "MTF", + "page": 221 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}, {@item shield|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "2", + "trait": [ + { + "name": "Howdah", + "entries": [ + "The ogre carries a compact fort on its back. Up to four Small creatures can ride in the fort without squeezing. To make a melee attack against a target within 5 feet of the ogre, they must use spears or weapons with reach. Creatures in the fort have {@quickref Cover||3||three-quarters cover} against attacks and effects from outside it. If the ogre dies, creatures in the fort are placed in unoccupied spaces within 5 feet of the ogre." + ] + } + ], + "action": [ + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-howdah.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oinoloth", + "source": "MPMM", + "page": 202, + "otherSources": [ + { + "source": "MTF", + "page": 251 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 17, + "con": 18, + "int": 17, + "wis": 16, + "cha": 19, + "save": { + "con": "+8", + "wis": "+7" + }, + "skill": { + "deception": "+8", + "intimidation": "+8", + "perception": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The oinoloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell hold monster}", + "{@spell invisibility} (self only)" + ], + "daily": { + "1e": [ + "{@spell feeblemind}", + "{@spell globe of invulnerability}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The oinoloth has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oinoloth makes two Claw attacks, and it uses Spellcasting or Teleport." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) slashing damage plus 22 ({@damage 4d10}) necrotic damage." + ] + }, + { + "name": "Corrupted Healing {@recharge}", + "entries": [ + "The oinoloth touches one willing creature within 5 feet of it. The target regains all its hit points. In addition, the oinoloth can end one disease on the target or remove one of the following conditions from it: {@condition blinded}, {@condition deafened}, {@condition paralyzed}, or {@condition poisoned}. The target then gains 1 level of {@condition exhaustion}, and its hit point maximum is reduced by 7 ({@dice 2d6}). This reduction can be removed only by a {@spell wish} spell or by casting {@spell greater restoration} on the target three times within the same hour. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Teleport", + "entries": [ + "The oinoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "bonus": [ + { + "name": "Bringer of Plagues {@recharge 5}", + "entries": [ + "The oinoloth blights the area in a 30-foot-radius sphere centered on itself. The blight lasts for 24 hours. While the area is blighted, all normal plants there wither and die.", + "Furthermore, when a creature moves into the blighted area or starts its turn there, that creature must make a {@dc 16} Constitution saving throw. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and is {@condition poisoned}. On a successful save, the creature is immune to the oinoloth's Bringer of Plagues for the next 24 hours.", + "The {@condition poisoned} creature can't regain hit points. After every 24 hours that elapse, the {@condition poisoned} creature can repeat the saving throw. On a failed save, the creature's hit point maximum is reduced by 5 ({@damage 1d10}). This reduction lasts until the poison ends, and the target dies if its hit point maximum is reduced to 0. The poison ends after the creature successfully saves against it three times." + ] + } + ], + "environment": [ + "desert", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oinoloth.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "I", + "N", + "S" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "HPR", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orcus", + "isNamedCreature": true, + "source": "MPMM", + "page": 204, + "otherSources": [ + { + "source": "MTF", + "page": 153 + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + }, + { + "ac": 20, + "from": [ + "with the {@item Wand of Orcus}" + ] + } + ], + "hp": { + "average": 405, + "formula": "30d12 + 210" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 27, + "dex": 14, + "con": 25, + "int": 20, + "wis": 20, + "cha": 25, + "save": { + "dex": "+10", + "con": "+15", + "wis": "+13" + }, + "skill": { + "arcana": "+13", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Orcus casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "1": [ + "{@spell time stop}" + ], + "3": [ + "{@spell dispel magic}" + ] + }, + "ability": "cha", + "displayAs": "action" + }, + { + "name": "Wand Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "While holding the {@item Wand of Orcus}, Orcus casts one of the following spells (spell save {@dc 18}), some of which require charges; the wand has 7 charges to fuel these spells, and it regains {@dice 1d4 + 3} charges daily at dawn:" + ], + "will": [ + "{@spell animate dead} (as an action)", + "{@spell blight}", + "{@spell speak with dead}" + ], + "charges": { + "1e": [ + "{@spell circle of death}", + "{@spell finger of death}" + ], + "2e": [ + "{@spell power word kill}" + ] + }, + "chargesItem": "wand of orcus|dmg", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Orcus fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Orcus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Master of Undeath", + "entries": [ + "Orcus can cast {@spell animate dead} (at will) and {@spell create undead} (3/day). He chooses the level at which the spells are cast, and the creatures created by them remain under his control indefinitely. Additionally, he can cast {@spell create undead} even when it isn't night." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Orcus wields the {@item Wand of Orcus}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Orcus makes three Wand of Orcus, Tail, or Necrotic Bolt attacks." + ] + }, + { + "name": "Wand of Orcus", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d8 + 11}) bludgeoning damage plus 13 ({@damage 2d12}) necrotic damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) force damage plus 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Necrotic Bolt", + "entries": [ + "{@atk rs} {@hit 15} to hit, range 120 ft., one target. {@h}29 ({@damage 5d8 + 7}) necrotic damage." + ] + }, + { + "name": "Conjure Undead (1/Day)", + "entries": [ + "While holding the {@item Wand of Orcus}, Orcus conjures {@filter Undead creatures|bestiary|type=undead} whose combined average hit points don't exceed 500. These creatures magically rise up from the ground or otherwise form in unoccupied spaces within 300 feet of Orcus and obey his commands until they are destroyed or until he dismisses them as an action." + ] + } + ], + "legendaryHeader": [ + "Orcus can take 3 legendary actions, choosing from the options below. Only one legendary action option can be used at a time and only at the end of another creature's turn. Orcus regains spent legendary actions at the start of his turn." + ], + "legendaryActions": 3, + "legendary": [ + { + "name": "Attack", + "entries": [ + "Orcus makes one Tail or Necrotic Bolt attack." + ] + }, + { + "name": "Creeping Death (Costs 2 Actions)", + "entries": [ + "Orcus chooses a point on the ground that he can see within 100 feet of him. A cylinder of swirling necrotic energy 60 feet tall and with a 10-foot radius rises from that point and lasts until the end of Orcus's next turn. Creatures in that area have vulnerability to necrotic damage." + ] + } + ], + "legendaryGroup": { + "name": "Orcus", + "source": "MPMM" + }, + "attachedItems": [ + "wand of orcus|dmg" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "I", + "N", + "O" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForcedLegendary": [ + "strength" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orthon", + "source": "MPMM", + "page": 205, + "otherSources": [ + { + "source": "MTF", + "page": 169 + }, + { + "source": "CoA" + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb|half plate}" + ] + } + ], + "hp": { + "average": 105, + "formula": "10d10 + 50" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 22, + "dex": 16, + "con": 21, + "int": 15, + "wis": 15, + "cha": 16, + "save": { + "dex": "+7", + "con": "+9", + "wis": "+6" + }, + "skill": { + "perception": "+10", + "stealth": "+11", + "survival": "+10" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "passive": 20, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The orthon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Infernal Dagger", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d4 + 6}) force damage, and the target must make a {@dc 17} Constitution saving throw, taking 22 ({@damage 4d10}) poison damage on a failed save, or half as much damage on a successful one. On a failure, the target is {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Brass Crossbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 100/400 ft., one target. {@h}14 ({@damage 2d10 + 3}) force damage. The target also suffers one of the following effects of the orthon's choice; the orthon can't use the same effect two rounds in a row:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Acid", + "entry": "The target must make a {@dc 17} Constitution saving throw, taking an additional 17 ({@damage 5d6}) acid damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Blindness", + "entry": "The target takes 5 ({@damage 1d10}) radiant damage. In addition, the target and all other creatures within 20 feet of it must each make a successful {@dc 17} Dexterity saving throw or be {@condition blinded} until the end of the orthon's next turn." + }, + { + "type": "item", + "name": "Concussion", + "entry": "The target and each creature within 20 feet of it must make a {@dc 17} Constitution saving throw, taking 13 ({@damage 2d12}) thunder damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Entanglement", + "entry": "The target must make a successful {@dc 17} Dexterity saving throw or be {@condition restrained} for 1 hour by strands of sticky webbing. The target can escape by taking an action to make a {@dc 17} Strength or Dexterity check and succeeding." + }, + { + "type": "item", + "name": "Paralysis", + "entry": "The target takes 22 ({@damage 4d10}) lightning damage and must make a successful {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "Tracking", + "entry": "For the next 24 hours, the orthon knows the direction and distance to the target, as long as it's on the same plane of existence. If the target is on a different plane, the orthon knows which one, but not the exact location there." + } + ] + } + ] + } + ], + "bonus": [ + { + "name": "Invisibility Field {@recharge 4}", + "entries": [ + "The orthon becomes {@condition invisible}. Any equipment it wears or carries is also {@condition invisible} as long as the equipment is on its person. This invisibility ends immediately after it makes an attack roll or is hit by an attack roll." + ] + } + ], + "reaction": [ + { + "name": "Explosive Retribution", + "entries": [ + "In response to dropping to 15 hit points or fewer, the orthon explodes. All other creatures within 30 feet of it must each make a {@dc 17} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage plus 9 ({@damage 2d8}) thunder damage on a failed save, or half as much damage on a successful one. The orthon, its infernal dagger, and its brass crossbow are destroyed." + ] + } + ], + "environment": [ + "desert", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orthon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD", + "U" + ], + "languageTags": [ + "C", + "I", + "TP" + ], + "damageTags": [ + "A", + "F", + "I", + "L", + "O", + "R", + "T" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "blinded", + "paralyzed", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ox", + "source": "MPMM", + "page": 72, + "otherSources": [ + { + "source": "VGM", + "page": 208 + } + ], + "size": [ + "L" + ], + "type": { + "type": "beast", + "tags": [ + "cattle" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 15, + "formula": "2d10 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Beast of Burden", + "entries": [ + "The ox is considered to be one size larger for the purpose of determining its carrying capacity." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the ox moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ox.mp3" + }, + "traitTags": [ + "Beast of Burden" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Phoenix", + "source": "MPMM", + "page": 206, + "otherSources": [ + { + "source": "MTF", + "page": 199 + }, + { + "source": "CoA" + } + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 18 + ], + "hp": { + "average": 175, + "formula": "10d20 + 70" + }, + "speed": { + "walk": 20, + "fly": 120 + }, + "str": 19, + "dex": 26, + "con": 25, + "int": 2, + "wis": 21, + "cha": 18, + "save": { + "wis": "+10", + "cha": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "16", + "trait": [ + { + "name": "Fiery Death and Rebirth", + "entries": [ + "If the phoenix dies, it explodes. Each creature in 60-foot-radius sphere centered on the phoenix must make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.", + "The explosion destroys the phoenix's body and leaves behind an egg-shaped cinder, which weighs 5 pounds. The cinder deals 21 ({@damage 6d6}) fire damage to any creature that touches it, though no more than once per round. The cinder is immune to all damage, and after {@dice 1d6} days, it hatches a new phoenix." + ] + }, + { + "name": "Fire Form", + "entries": [ + "The phoenix can move through a space as narrow as 1 inch wide without squeezing.", + "Any creature that touches the phoenix or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage. In addition, the phoenix can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage.", + "With a touch, the phoenix can also ignite flammable objects that aren't worn or carried (no action required)." + ] + }, + { + "name": "Flyby", + "entries": [ + "The phoenix doesn't provoke {@action opportunity attack||opportunity attacks} when it flies out of an enemy's reach." + ] + }, + { + "name": "Illumination", + "entries": [ + "The phoenix sheds bright light in a 60-foot radius and dim light for an additional 30 feet." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the phoenix fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The phoenix deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The phoenix makes two attacks: one Beak attack and one Fiery Talons attack." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d6 + 8}) fire damage." + ] + }, + { + "name": "Fiery Talons", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) fire damage." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The phoenix moves up to its speed." + ] + }, + { + "name": "Peck", + "entries": [ + "The phoenix makes one beak attack." + ] + }, + { + "name": "Swoop (Costs 2 Actions)", + "entries": [ + "The phoenix moves up to its speed and makes one Fiery Talons attack." + ] + } + ], + "environment": [ + "desert", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/phoenix.mp3" + }, + "traitTags": [ + "Flyby", + "Illumination", + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quetzalcoatlus", + "source": "MPMM", + "page": 96, + "otherSources": [ + { + "source": "VGM", + "page": 140 + } + ], + "size": [ + "H" + ], + "type": { + "type": "beast", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d12 + 4" + }, + "speed": { + "walk": 10, + "fly": 80 + }, + "str": 15, + "dex": 13, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+2" + }, + "passive": 12, + "cr": "2", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The quetzalcoatlus doesn't provoke an {@action opportunity attack} when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one creature. {@h}12 ({@damage 3d6 + 2}) piercing damage. If the quetzalcoatlus flew least 30 feet toward the target immediately before the hit, the target takes an extra 10 ({@damage 3d6}) piercing damage." + ] + } + ], + "environment": [ + "coastal", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quetzalcoatlus.mp3" + }, + "traitTags": [ + "Flyby" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Quickling", + "source": "MPMM", + "page": 207, + "otherSources": [ + { + "source": "VGM", + "page": 187 + } + ], + "size": [ + "T" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 16 + ], + "hp": { + "average": 10, + "formula": "3d4 + 3" + }, + "speed": { + "walk": 120 + }, + "str": 4, + "dex": 23, + "con": 13, + "int": 10, + "wis": 12, + "cha": 7, + "skill": { + "acrobatics": "+8", + "sleight of hand": "+8", + "stealth": "+8", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1", + "trait": [ + { + "name": "Blurred Movement", + "entries": [ + "Attack rolls against the quickling have disadvantage unless it is {@condition incapacitated} or its speed is 0." + ] + }, + { + "name": "Evasion", + "entries": [ + "If the quickling is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided it isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quickling makes three Dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quickling.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Red Abishai", + "source": "MPMM", + "page": 40, + "otherSources": [ + { + "source": "MTF", + "page": 160 + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 289, + "formula": "34d8 + 136" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 23, + "dex": 16, + "con": 19, + "int": 14, + "wis": 15, + "cha": 19, + "save": { + "str": "+12", + "con": "+10", + "wis": "+8" + }, + "skill": { + "intimidation": "+10", + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "frightened", + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "19", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes one Bite attack and one Claw attack, and it can use Frightful Presence or Incite Fanaticism." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage plus 38 ({@damage 7d10}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) force damage plus 11 ({@damage 2d10}) fire damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the abishai's choice that is within 120 feet and aware of the abishai must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} of it 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the abishai's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Incite Fanaticism", + "entries": [ + "The abishai chooses up to four other creatures within 60 feet of it that can see it. Until the start of the abishai's next turn, each of those creatures makes attack rolls with advantage and can't be {@condition frightened}." + ] + }, + { + "name": "Power of the Dragon Queen", + "entries": [ + "The abishai targets one Dragon it can see within 120 feet of it. The Dragon must make a {@dc 18} Charisma saving throw. A chromatic dragon makes this save with disadvantage. On a successful save, the target is immune to the abishai's Power of the Dragon Queen for 1 hour. On a failed save, the target is {@condition charmed} by the abishai for 1 hour. While {@condition charmed} in this way, the target regards the abishai as a trusted friend to be heeded and protected. This effect ends if the abishai or its companions deal damage to the target." + ] + } + ], + "environment": [ + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/red-abishai.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "F", + "O", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Redcap", + "source": "MPMM", + "page": 208, + "otherSources": [ + { + "source": "VGM", + "page": 188 + } + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d6 + 24" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 13, + "con": 18, + "int": 10, + "wis": 12, + "cha": 9, + "skill": { + "athletics": "+6", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "3", + "trait": [ + { + "name": "Iron Boots", + "entries": [ + "The redcap has disadvantage on Dexterity ({@skill Stealth}) checks." + ] + }, + { + "name": "Outsize Strength", + "entries": [ + "While grappling, the redcap is considered to be Medium. Also, wielding a heavy weapon doesn't impose disadvantage on its attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The redcap makes three Wicked Sickle attacks." + ] + }, + { + "name": "Wicked Sickle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ] + }, + { + "name": "Ironbound Pursuit", + "entries": [ + "The redcap moves up to its speed to a creature it can see and kicks with its iron boots. The target must succeed on a {@dc 14} Dexterity saving throw or take 20 ({@damage 3d10 + 4}) bludgeoning damage and be knocked {@condition prone}." + ] + } + ], + "environment": [ + "forest", + "hill", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/redcap.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Retriever", + "source": "MPMM", + "page": 209, + "otherSources": [ + { + "source": "MTF", + "page": 222 + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 22, + "dex": 16, + "con": 20, + "int": 3, + "wis": 11, + "cha": 4, + "save": { + "dex": "+8", + "con": "+10", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+8" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "necrotic", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands Abyssal", + "Elvish", + "and Undercommon but can't speak" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The retriever casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "3e": [ + "{@spell plane shift} (only self and up to one incapacitated creature, which is considered willing for the spell)", + "{@spell web}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Faultless Tracker", + "entries": [ + "The retriever is given a quarry by its master. The quarry can be a specific creature or object the master is personally acquainted with, or it can be a general type of creature or object the master has seen before. The retriever knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The retriever can have only one such quarry at a time. The retriever also always knows the location of its master." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The retriever makes two Foreleg attacks, and it uses Force Beam or Paralyzing Beam, if available." + ] + }, + { + "name": "Foreleg", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) slashing damage." + ] + }, + { + "name": "Force Beam", + "entries": [ + "The retriever targets one creature it can see within 60 feet of it. The target must make a {@dc 16} Dexterity saving throw, taking 27 ({@damage 5d10}) force damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Paralyzing Beam {@recharge 5}", + "entries": [ + "The retriever targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If the {@condition paralyzed} creature is Medium or smaller, the retriever can pick it up as part of the retriever's move and walk or climb with it at full speed." + ] + } + ], + "environment": [ + "desert", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/retriever.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "CS", + "E", + "U" + ], + "damageTags": [ + "O", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rot Troll", + "source": "MPMM", + "page": 247, + "otherSources": [ + { + "source": "MTF", + "page": 244 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d10 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 22, + "int": 5, + "wis": 8, + "cha": 4, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "necrotic" + ], + "languages": [ + "Giant" + ], + "cr": "9", + "trait": [ + { + "name": "Rancid Degeneration", + "entries": [ + "At the end of each of the troll's turns, each creature within 5 feet of it takes 11 ({@damage 2d10}) necrotic damage, unless the troll has taken acid or fire damage since the end of its last turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 16 ({@damage 3d10}) necrotic damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + } + ], + "environment": [ + "desert", + "forest", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rot-troll.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rutterkin", + "source": "MPMM", + "page": 210, + "otherSources": [ + { + "source": "MTF", + "page": 136 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 20 + }, + "str": 14, + "dex": 15, + "con": 17, + "int": 5, + "wis": 12, + "cha": 6, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Immobilizing Fear", + "entries": [ + "When a creature that isn't a demon starts its turn within 30 feet of one or more rutterkins, that creature must make a {@dc 11} Wisdom saving throw. The creature has disadvantage on the save if it's within 30 feet of six or more rutterkins. On a failed save, the creature becomes {@condition frightened} of the rutterkins for 1 minute. While {@condition frightened} in this way, the creature is {@condition restrained}. At the end of each of the {@condition frightened} creature's turns, it can repeat the saving throw, ending the effect on itself on a success. On a successful save, the creature is immune to the Crippling Fear of all rutterkins for 24 hours." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned}. At the end of each long rest, the {@condition poisoned} target can repeat the saving throw, ending the effect on itself on a success. If the target is reduced to 0 hit points while {@condition poisoned} in this way, it dies and instantly transforms into a living {@creature manes}. The transformation can be undone only by a {@spell wish} spell." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rutterkin.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "DIS", + "MW" + ], + "conditionInflict": [ + "frightened", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sacred Statue", + "source": "MPMM", + "page": 114, + "otherSources": [ + { + "source": "MTF", + "page": 194 + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + { + "special": "as the eidolon's alignment" + } + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 25 + }, + "str": 19, + "dex": 8, + "con": 19, + "int": 14, + "wis": 19, + "cha": 16, + "save": { + "wis": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "acid", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "the languages the {@creature eidolon|MPMM} knew in life" + ], + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the statue is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the statue move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the statue isn't an object." + ] + }, + { + "name": "Ghostly Inhabitant", + "entries": [ + "The {@creature eidolon|MPMM} that enters the statue remains inside it until the statue drops to 0 hit points, the eidolon uses a bonus action to move out of the statue, or the eidolon is turned or forced out by an effect such as the {@spell dispel evil and good} spell. When the eidolon leaves the statue, it appears in an unoccupied space within 5 feet of the statue." + ] + }, + { + "name": "Inert", + "entries": [ + "Without an {@creature eidolon|MPMM} inside, the statue is an object." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The statue doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The statue makes two Slam or Rock attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}43 ({@damage 6d12 + 4}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 60 ft./240 ft., one target. {@h}37 ({@damage 6d10 + 4}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sacred-statue.mp3" + }, + "traitTags": [ + "False Appearance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sea Spawn", + "source": "MPMM", + "page": 211, + "otherSources": [ + { + "source": "VGM", + "page": 189 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 20, + "swim": 30 + }, + "str": 15, + "dex": 8, + "con": 15, + "int": 6, + "wis": 10, + "cha": 8, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "languages": [ + "understands Aquan and Common but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Limited Amphibiousness", + "entries": [ + "The sea spawn can breathe air and water, but it needs to be submerged in the sea at least once a day for 1 minute to avoid suffocating." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sea spawn makes two Unarmed Strike attacks and one Piscine Anatomy attack." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Piscine Anatomy", + "entries": [ + "The sea spawn uses one of the following options (choose one or roll a {@dice d6}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1\u20132: Bite", + "type": "item", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "3\u20134: Poison Quills", + "type": "item", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "5\u20136: Tentacle", + "type": "item", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}) if it is a Medium or smaller creature. Until this grapple ends, the sea spawn can't use this tentacle on another target." + ] + } + ] + } + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sea-spawn.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C", + "CS" + ], + "damageTags": [ + "B", + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadar-kai Gloom Weaver", + "source": "MPMM", + "page": 213, + "otherSources": [ + { + "source": "MTF", + "page": 224 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 15, + "wis": 12, + "cha": 18, + "save": { + "dex": "+8", + "con": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "exhaustion" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The shadar-kai casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell arcane eye}", + "{@spell mage armor}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell speak with dead}" + ], + "daily": { + "1e": [ + "{@spell arcane gate}", + "{@spell bane}", + "{@spell confusion}", + "{@spell darkness}", + "{@spell fear}", + "{@spell major image}", + "{@spell true seeing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Burden of Time", + "entries": [ + "Beasts and Humanoids (except elves) have disadvantage on saving throws while within 10 feet of the shadar-kai." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The shadar-kai has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shadar-kai makes three Shadow Spear attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Shadow Spear", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 30/120, one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 26 ({@damage 4d12}) necrotic damage. {@hom}The spear magically returns to the shadar-kai's hand immediately after a ranged attack." + ] + } + ], + "reaction": [ + { + "name": "Misty Escape {@recharge 6}", + "entries": [ + "When the shadar-kai takes damage, it turns {@condition invisible} and teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks or casts a spell." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gloom-weaver.mp3" + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "N", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadar-kai Shadow Dancer", + "source": "MPMM", + "page": 213, + "otherSources": [ + { + "source": "MTF", + "page": 225 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 13, + "int": 11, + "wis": 12, + "cha": 12, + "save": { + "dex": "+6", + "cha": "+4" + }, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "exhaustion" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "7", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The shadar-kai has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shadar-kai makes three Spiked Chain attacks.", + "It can use Shadow Jump after one of these attacks." + ] + }, + { + "name": "Spiked Chain", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. The target must succeed on a {@dc 14} Dexterity saving throw or suffer one of the following effects (choose one or roll a {@dice d6}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "1\u20132: Decay", + "type": "item", + "entries": [ + "The target takes 22 ({@damage 4d10}) necrotic damage." + ] + }, + { + "name": "3\u20134: Grapple", + "type": "item", + "entries": [ + "The target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition restrained}, and the shadar-kai can't grapple another target." + ] + }, + { + "name": "5\u20136: Topple", + "type": "item", + "entries": [ + "The target is knocked {@condition prone}." + ] + } + ] + } + ] + } + ], + "bonus": [ + { + "name": "Shadow Jump", + "entries": [ + "The shadar-kai teleports, along with any equipment is it wearing or carrying, up to 30 feet to an unoccupied space it can see. Both the space it teleports from and the space it teleports to must be in dim light or darkness." + ] + } + ], + "environment": [ + "forest", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shadow-dancer.mp3" + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadar-kai Soul Monger", + "source": "MPMM", + "page": 214, + "otherSources": [ + { + "source": "MTF", + "page": 226 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 136, + "formula": "21d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 17, + "con": 14, + "int": 19, + "wis": 16, + "cha": 13, + "save": { + "dex": "+7", + "wis": "+7", + "cha": "+5" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "immune": [ + "necrotic", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The shadar-kai casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "daily": { + "1e": [ + "{@spell bestow curse}", + "{@spell finger of death}", + "{@spell gaseous form}", + "{@spell seeming}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The shadar-kai has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The shadar-kai has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Soul Thirst", + "entries": [ + "When it reduces a creature to 0 hit points, the shadar-kai can gain temporary hit points equal to half the creature's hit point maximum. While the shadar-kai has temporary hit points from this trait, it has advantage on attack rolls." + ] + }, + { + "name": "Weight of Ages", + "entries": [ + "Any Beast or Humanoid (except an elf) that starts its turn within 5 feet of the shadar-kai has its speed reduced by 20 feet until the start of that creature's next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shadar-kai makes two Shadow Dagger attacks." + ] + }, + { + "name": "Shadow Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage plus 19 ({@damage 3d12}) necrotic damage, and the target has disadvantage on saving throws until the end of the shadar-kai's next turn. {@hom}The dagger magically returns to the shadar-kai's hand immediately after a ranged attack." + ] + }, + { + "name": "Wave of Weariness {@recharge 4}", + "entries": [ + "The shadar-kai emits weariness in a 60-foot cube. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 45 ({@damage 10d8}) psychic damage and suffers 1 level of {@condition exhaustion}. On a successful save, it takes half as much damage and doesn't gain a level of {@condition exhaustion}." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/soul-monger.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "N", + "P", + "Y" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "exhaustion" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadow Mastiff", + "source": "MPMM", + "page": 215, + "otherSources": [ + { + "source": "VGM", + "page": 190 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 5, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks while in dim light or darkness", + "cond": true + } + ], + "cr": "2", + "trait": [ + { + "name": "Ethereal Awareness", + "entries": [ + "The shadow mastiff can see ethereal creatures and objects." + ] + }, + { + "name": "Sunlight Weakness", + "entries": [ + "While in bright light created by sunlight, the shadow mastiff has disadvantage on attack rolls, ability checks, and saving throws." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "bonus": [ + { + "name": "Shadow Blend", + "entries": [ + "While in dim light or darkness, the shadow mastiff becomes {@condition invisible}, along with anything it is wearing or carrying. The invisibility lasts until the shadow mastiff uses a bonus action to end it or until the shadow mastiff attacks, is in bright light, or is {@condition incapacitated}." + ] + } + ], + "environment": [ + "forest", + "hill", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shadow-mastiff.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadow Mastiff Alpha", + "source": "MPMM", + "page": 215, + "otherSources": [ + { + "source": "VGM", + "page": 190 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 6, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks while in dim light or darkness", + "cond": true + } + ], + "cr": "3", + "trait": [ + { + "name": "Ethereal Awareness", + "entries": [ + "The shadow mastiff can see ethereal creatures and objects." + ] + }, + { + "name": "Sunlight Weakness", + "entries": [ + "While in bright light created by sunlight, the shadow mastiff has disadvantage on attack rolls, ability checks, and saving throws." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Terrifying Howl {@recharge}", + "entries": [ + "The shadow mastiff howls. Any Beast or Humanoid within 300 feet of it must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} of it for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's save is successful or the effect ends for it, the target is immune to any shadow mastiff's Terrifying Howl for the next 24 hours." + ] + } + ], + "bonus": [ + { + "name": "Shadow Blend", + "entries": [ + "While in dim light or darkness, the shadow mastiff becomes {@condition invisible}, along with anything it is wearing or carrying. The invisibility lasts until the shadow mastiff uses a bonus action to end it or until the shadow mastiff attacks, is in bright light, or is {@condition incapacitated}." + ] + } + ], + "environment": [ + "forest", + "hill", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shadow-mastiff.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Shoosuva", + "source": "MPMM", + "page": 216, + "otherSources": [ + { + "source": "VGM", + "page": 137 + }, + { + "source": "BMT" + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 13, + "con": 17, + "int": 7, + "wis": 14, + "cha": 9, + "save": { + "dex": "+4", + "con": "+6", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Gnoll", + "telepathy 120 ft." + ], + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shoosuva makes one Bite attack and one Tail Stinger attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d10 + 4}) piercing damage." + ] + }, + { + "name": "Tail Stinger", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one creature. {@h}13 ({@damage 2d8 + 4}) piercing damage, and the target must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target is also {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Rampage", + "entries": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the shoosuva can move up to half its speed and make one Bite attack." + ] + } + ], + "environment": [ + "coastal", + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shoosuva.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH", + "TP" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sibriex", + "source": "MPMM", + "page": 217, + "otherSources": [ + { + "source": "MTF", + "page": 137 + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "12d12 + 72" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 3, + "con": 23, + "int": 25, + "wis": 24, + "cha": 25, + "save": { + "int": "+13", + "cha": "+13" + }, + "skill": { + "arcana": "+13", + "history": "+13", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sibriex casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell command}", + "{@spell dispel magic}", + "{@spell hold monster}" + ], + "daily": { + "1": [ + "{@spell feeblemind}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Contamination", + "entries": [ + "The sibriex emits an aura of corruption 30 feet in every direction. Vegetation withers in the aura, and the ground in the aura is {@quickref difficult terrain||3} for other creatures. Any creature that starts its turn in the aura must succeed on a {@dc 20} Constitution saving throw or take 14 ({@damage 4d6}) poison damage. A creature that succeeds on the save is immune to this sibriex's Contamination for 24 hours." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the sibriex fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The sibriex has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sibriex makes three Chain attacks, and it uses Squirt Bile." + ] + }, + { + "name": "Chain", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d12 + 7}) force damage." + ] + }, + { + "name": "Squirt Bile", + "entries": [ + "The sibriex targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or take 31 ({@damage 9d6}) acid damage." + ] + }, + { + "name": "Warp Creature", + "entries": [ + "The sibriex targets up to three creatures it can see within 120 feet of it. Each target must make a {@dc 20} Constitution saving throw. On a successful save, a creature becomes immune to this sibriex's Warp Creature. On a failed save, the target is {@condition poisoned}, which causes it to also gain 1 level of {@condition exhaustion}. While {@condition poisoned} in this way, the target must repeat the saving throw at the start of each of its turns. Three successful saves against the poison end it, and ending the poison removes any levels of {@condition exhaustion} caused by it. Each failed save causes the target to gain another level of {@condition exhaustion}. Once the target reaches 6 levels of {@condition exhaustion}, it dies and instantly transforms into a living {@creature manes} under the sibriex's control. The transformation of the body can be undone only by a {@spell wish} spell." + ] + } + ], + "legendary": [ + { + "name": "Cast a Spell", + "entries": [ + "The sibriex uses Spellcasting." + ] + }, + { + "name": "Spray Bile", + "entries": [ + "The sibriex uses Squirt Bile." + ] + }, + { + "name": "Warp (Costs 2 Actions)", + "entries": [ + "The sibriex uses Warp Creature." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Flesh Warping", + "entries": [ + "Creatures that encounter a sibriex can be twisted beyond recognition. Whenever a creature fails a saving throw against the sibriex's Warp Creature effect, you can roll percentile dice and consult the Flesh Warping table to determine an additional effect, which vanishes when Warp Creature ends on the creature. If the creature transforms into a manes, the effect becomes a permanent feature of that body. A creature can willingly submit to flesh warping, an agonizing process that takes at least 1 hour while the creature stays within 30 feet of the sibriex. At the end of the process, roll once on the table (or choose one effect) to determine how the creature is transformed permanently.", + { + "type": "table", + "caption": "Flesh Warping", + "colLabels": [ + "d100", + "Effect" + ], + "colStyles": [ + "col-1 text-center", + "col-11" + ], + "rows": [ + [ + "01\u201305", + "The color of the target's hair, eyes, and skin becomes blue, red, yellow, or patterned." + ], + [ + "06\u201310", + "The target's eyes push out of its head at the end of stalks." + ], + [ + "11\u201315", + "The target's hands grow claws, which can be used as daggers." + ], + [ + "16\u201320", + "One of the target's legs grows longer than the other, reducing its walking speed by 10 feet." + ], + [ + "21\u201325", + "The target's eyes become beacons, filling a 15-foot cone with dim light when they are open." + ], + [ + "26\u201330", + "A pair of wings, either feathered or leathery, sprout from the target's back, granting it a flying speed of 30 feet." + ], + [ + "31\u201335", + "The target's ears tear free from its head and scurry away; the target is {@condition deafened}." + ], + [ + "36\u201340", + "Two of the target's teeth turn into short tusks." + ], + [ + "41\u201345", + "The target's skin develops bark-like scales, granting it a +1 bonus to AC but reducing its Charisma score by 2 (to a minimum of 1)." + ], + [ + "46\u201350", + "The target's arms and legs switch places, preventing the target from moving unless it crawls." + ], + [ + "51\u201355", + "The target's arms become tentacles with fingers on the ends, increasing its reach by 5 feet." + ], + [ + "56\u201360", + "The target's legs grow incredibly long and springy, increasing its walking speed by 10 feet." + ], + [ + "61\u201365", + "The target grows a long, thin tail, which it can use as a whip." + ], + [ + "66\u201370", + "The target's entire eyes turn black, and it gains {@sense darkvision} out to a range of 120 feet." + ], + [ + "71\u201375", + "The target swells, tripling its weight." + ], + [ + "76\u201380", + "The target becomes thin and skeletal, halving its weight." + ], + [ + "81\u201385", + "The target's head triples in size." + ], + [ + "86\u201390", + "The target's ears become wings, giving it a flying speed of 5 feet." + ], + [ + "91\u201395", + "The target's body becomes unusually brittle, causing the target to have vulnerability to bludgeoning, piercing, and slashing damage." + ], + [ + "96\u201300", + "The target grows another head, causing it to have advantage on saving throws against being {@condition charmed}, {@condition frightened}, or {@condition stunned}." + ] + ] + } + ], + "_version": { + "name": "Sibriex (Flesh Warping)", + "addAs": "trait" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sibriex.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "I", + "O" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "deafened", + "exhaustion", + "poisoned" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skulk", + "source": "MPMM", + "page": 219, + "otherSources": [ + { + "source": "MTF", + "page": 227 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 19, + "con": 10, + "int": 10, + "wis": 7, + "cha": 1, + "save": { + "con": "+2" + }, + "skill": { + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 8, + "conditionImmune": [ + "blinded" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Fallible Invisibility", + "entries": [ + "The skulk is {@condition invisible}. This invisibility can be circumvented by three things:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Charnel Candles", + "entries": [ + "The skulk appears as a dim, translucent form in the light of a candle made of fat rendered from a corpse whose identity is unknown." + ] + }, + { + "type": "item", + "name": "Children", + "entries": [ + "Humanoid children, aged 10 and under, can see through this invisibility." + ] + }, + { + "type": "item", + "name": "Reflective Surfaces", + "entries": [ + "The skulk appears as a drab, smoothskinned biped if its reflection can be seen in a mirror or on another surface." + ] + } + ] + } + ] + }, + { + "name": "Trackless", + "entries": [ + "The skulk leaves no tracks to indicate where it has been or where it's headed." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage plus 3 ({@damage 1d6}) necrotic damage." + ] + } + ], + "environment": [ + "coastal", + "forest", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/skulk.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skull Lord", + "source": "MPMM", + "page": 220, + "otherSources": [ + { + "source": "MTF", + "page": 230 + }, + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 17, + "int": 16, + "wis": 15, + "cha": 21, + "skill": { + "athletics": "+7", + "history": "+8", + "perception": "+12", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 22, + "resist": [ + "cold", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "poisoned", + "stunned", + "unconscious" + ], + "languages": [ + "all the languages it knew in life" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The skull, lord casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell message}" + ], + "daily": { + "2e": [ + "{@spell dimension door}", + "{@spell fear}" + ], + "1e": [ + "{@spell cloudkill}", + "{@spell cone of cold}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Evasion", + "entries": [ + "If the skull lord is subjected to an effect that allows it to make a Dexterity saving throw to take only half the damage, the skull lord instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided it isn't {@condition incapacitated}." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the skull lord fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Master of the Grave", + "entries": [ + "While within 30 feet of the skull lord, any Undead ally of the skull lord makes saving throws with advantage, and that ally regains {@dice 1d6} hit points whenever it starts its turn there." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The skull lord doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skull lord makes three Bone Staff or Deathly Ray attacks." + ] + }, + { + "name": "Bone Staff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage." + ] + }, + { + "name": "Deathly Ray", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 60 ft., one target. {@h}27 ({@damage 5d8 + 5}) necrotic damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The skull lord makes one Bone Staff or Deathly Ray attack." + ] + }, + { + "name": "Move", + "entries": [ + "The skull lord moves up to its speed without provoking {@action opportunity attack||opportunity attacks}." + ] + }, + { + "name": "Summon Undead (Costs 2 Actions)", + "entries": [ + "The skull lord summons up to five {@creature skeleton||skeletons} or {@creature zombie||zombies} in unoccupied spaces within 30 feet of it. They remain until destroyed. Undead summoned in this way roll initiative, act in the next available turn, and obey the skull lord. The skull lord can have no more than five Undead summoned by this ability at a time." + ] + } + ], + "environment": [ + "desert", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/skull-lord.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "C", + "I", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Slithering Tracker", + "source": "MPMM", + "page": 221, + "otherSources": [ + { + "source": "VGM", + "page": 191 + } + ], + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30, + "climb": 30, + "swim": 30 + }, + "str": 16, + "dex": 19, + "con": 15, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "stealth": "+8", + "survival": "+6" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "cold", + "fire" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "understands languages it knew in its previous form but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the slithering tracker is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the slithering tracker move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the slithering tracker isn't a puddle." + ] + }, + { + "name": "Liquid Form", + "entries": [ + "The slithering tracker can enter an enemy's space and stop there. It can also move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The slithering tracker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage." + ] + }, + { + "name": "Life Leech", + "entries": [ + "One Large or smaller creature that the slithering tracker can see within 5 feet of it must succeed on a {@dc 13} Dexterity saving throw or be {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained} and unable to breathe unless it can breathe water. In addition, the {@condition grappled} target takes 16 ({@damage 3d10}) necrotic damage at the start of each of its turns. The slithering tracker can grapple only one target at a time.", + "While grappling the target, the slithering tracker takes only half any damage dealt to it (rounded down), and the target takes the other half." + ] + } + ], + "bonus": [ + { + "name": "Watery Stealth", + "entries": [ + "If underwater, the slithering tracker takes the {@action Hide} action, and it makes the Dexterity ({@skill Stealth}) check with advantage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/slithering-tracker.mp3" + }, + "traitTags": [ + "False Appearance", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spawn of Kyuss", + "source": "MPMM", + "page": 225, + "otherSources": [ + { + "source": "VGM", + "page": 192 + }, + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 10 + ], + "hp": { + "average": 76, + "formula": "9d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 18, + "int": 5, + "wis": 7, + "cha": 3, + "save": { + "wis": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The spawn of Kyuss regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or a body of running water. If the spawn takes acid, fire, or radiant damage, this trait doesn't function at the start of the spawn's next turn. The spawn is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Worms", + "entries": [ + "If the spawn of Kyuss is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away, and it loses its Burrowing Worm action." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The spawn of Kyuss requires no air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spawn of Kyuss makes two Claw attacks, and it uses Burrowing Worm." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Burrowing Worm", + "entries": [ + "A worm launches from the spawn of Kyuss at one Humanoid that the spawn can see within 10 feet of it. The worm latches onto the target's skin unless the target succeeds on a {@dc 11} Dexterity saving throw. The worm is a Tiny Undead with AC 6, 1 hit point, a 2 (-4) in every ability score, and a speed of 1 foot. While on the target's skin, the worm can be killed by normal means or scraped off using an action (the spawn can use Burrowing Worm to launch a scraped-off worm at a Humanoid it can see within 10 feet of the worm). Otherwise, the worm burrows under the target's skin at the end of the target's next turn, dealing 1 piercing damage to it. At the end of each of its turns thereafter, the target takes 7 ({@damage 2d6}) necrotic damage per worm infesting it (maximum of {@damage 10d6}), and if it drops to 0 hit points, it dies and then rises 10 minutes later as a spawn of Kyuss. If a worm-infested target is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away." + ] + } + ], + "environment": [ + "desert", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spawn-of-kyuss.mp3" + }, + "traitTags": [ + "Regeneration", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "DIS", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spirit Troll", + "source": "MPMM", + "page": 247, + "otherSources": [ + { + "source": "MTF", + "page": 244 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 130, + "formula": "20d10 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 1, + "dex": 17, + "con": 13, + "int": 8, + "wis": 9, + "cha": 16, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "acid", + "cold", + "fire" + ], + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Giant" + ], + "cr": "11", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The troll can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes psychic or force damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}19 ({@damage 3d10 + 3}) psychic damage, and the target must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}19 ({@damage 3d10 + 3}) psychic damage." + ] + } + ], + "environment": [ + "coastal", + "forest", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spirit-troll.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "O", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spring Eladrin", + "source": "MPMM", + "page": 116, + "otherSources": [ + { + "source": "MTF", + "page": 196 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 16, + "int": 18, + "wis": 11, + "cha": 18, + "skill": { + "deception": "+8", + "persuasion": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "psychic" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eladrin casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell Tasha's hideous laughter}" + ], + "daily": { + "1e": [ + "{@spell major image}", + "{@spell suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Joyful Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by the eladrin for 1 minute. On a successful save, the creature becomes immune to any eladrin's Joyful Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eladrin makes two Longsword or Longbow attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) psychic damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 22 ({@damage 5d8}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "environment": [ + "forest", + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spring-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Spawn Grue", + "source": "MPMM", + "page": 227, + "otherSources": [ + { + "source": "MTF", + "page": 234 + }, + { + "source": "BMT" + } + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 11 + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 13, + "con": 10, + "int": 9, + "wis": 11, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "psychic" + ], + "languages": [ + "Deep Speech" + ], + "cr": "1/4", + "trait": [ + { + "name": "Aura of Shrieks", + "entries": [ + "Creatures within 20 feet of the grue that aren't Aberrations have disadvantage on saving throws, as well as on attack rolls against creatures other than a star spawn grue." + ] + } + ], + "action": [ + { + "name": "Confounding Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Wisdom saving throw or attack rolls against it have advantage until the start of the grue's next turn." + ] + } + ], + "environment": [ + "mountain", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-grue.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Spawn Hulk", + "source": "MPMM", + "page": 227, + "otherSources": [ + { + "source": "MTF", + "page": 234 + }, + { + "source": "BMT" + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 8, + "con": 21, + "int": 7, + "wis": 12, + "cha": 9, + "save": { + "dex": "+3", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Deep Speech" + ], + "cr": "10", + "trait": [ + { + "name": "Psychic Mirror", + "entries": [ + "If the hulk takes psychic damage, each creature within 10 feet of the hulk takes that damage instead; the hulk takes none of the damage. In addition, the hulk's thoughts and location can't be discerned by magic." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hulk makes two Slam attacks. If both attacks hit the same target, the target also takes 9 ({@damage 2d8}) psychic damage and must succeed on a {@dc 17} Constitution saving throw or be {@condition stunned} until the end of the target's next turn." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ] + }, + { + "name": "Reaping Arms {@recharge 5}", + "entries": [ + "The hulk makes a separate Slam attack against each creature within 10 feet of it. Each creature that is hit must also succeed on a {@dc 17} Dexterity saving throw or be knocked {@condition prone}." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-hulk.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Spawn Larva Mage", + "source": "MPMM", + "page": 228, + "otherSources": [ + { + "source": "MTF", + "page": 235 + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d8 + 96" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 12, + "con": 23, + "int": 18, + "wis": 12, + "cha": 16, + "save": { + "dex": "+6", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "restrained" + ], + "languages": [ + "Deep Speech" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}" + ], + "daily": { + "1": [ + "{@spell dominate monster}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Return to Worms", + "entries": [ + "When the mage is reduced to 0 hit points, it breaks apart into a {@creature swarm of insects} in the same space. Unless the swarm is destroyed, the mage reforms from it 24 hours later." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mage makes three Slam or Eldritch Bolt attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ] + }, + { + "name": "Eldritch Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 60 ft., one target. {@h}19 ({@damage 3d10 + 3}) force damage." + ] + }, + { + "name": "Plague of Worms {@recharge}", + "entries": [ + "Each creature other than a star spawn within 10 feet of the mage must succeed on a {@dc 19} Dexterity saving throw or take 22 ({@damage 5d8}) necrotic damage and be {@condition blinded} and {@condition restrained} by masses of swarming worms. The affected creature takes 22 ({@damage 5d8}) necrotic damage at the start of each of the mage's turns. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "reaction": [ + { + "name": "Feed on Weakness", + "entries": [ + "When a creature within 20 feet of the mage fails a saving throw, the mage gains 10 temporary hit points." + ] + } + ], + "legendary": [ + { + "name": "Slam", + "entries": [ + "The mage makes one Slam attack." + ] + }, + { + "name": "Eldritch Bolt (Costs 2 Actions)", + "entries": [ + "The mage makes one Eldritch Bolt attack." + ] + }, + { + "name": "Feed (Costs 3 Actions)", + "entries": [ + "Each creature {@condition restrained} by the mage's Plague of Worms takes 13 ({@damage 3d8}) necrotic damage, and the mage gains 6 temporary hit points." + ] + } + ], + "environment": [ + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-larva-mage.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "B", + "N", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "poisoned", + "restrained" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Spawn Mangler", + "source": "MPMM", + "page": 229, + "otherSources": [ + { + "source": "MTF", + "page": 236 + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 14 + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 8, + "dex": 18, + "con": 12, + "int": 11, + "wis": 12, + "cha": 7, + "save": { + "dex": "+7", + "con": "+4" + }, + "skill": { + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "cold" + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "prone" + ], + "languages": [ + "Deep Speech" + ], + "cr": "5", + "pbNote": "+3", + "trait": [ + { + "name": "Ambusher", + "entries": [ + "The mangler has advantage on initiative rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mangler makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage. If the attack roll has advantage, the target also takes 7 ({@damage 2d6}) psychic damage." + ] + }, + { + "name": "Flurry of Claws {@recharge 5}", + "entries": [ + "The mangler makes six Claw attacks. Either before or after these attacks, it can move up to its speed without provoking {@action opportunity attack||opportunity attacks}." + ] + } + ], + "bonus": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the mangler takes the {@action Hide} action." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-mangler.mp3" + }, + "traitTags": [ + "Ambusher" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Spawn Seer", + "source": "MPMM", + "page": 230, + "otherSources": [ + { + "source": "MTF", + "page": 236 + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 18, + "int": 22, + "wis": 19, + "cha": 16, + "save": { + "dex": "+6", + "int": "+11", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "perception": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "cr": "13", + "trait": [ + { + "name": "Out-Of-Phase Movement", + "entries": [ + "The seer can move through other creatures and objects as if they were {@quickref difficult terrain||3}, and its movement doesn't provoke {@action opportunity attack||opportunity attacks}.", + "Each creature it moves through takes 5 ({@damage 1d10}) psychic damage; no creature can take this damage more than once per turn.", + "The seer takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The seer makes two Comet Staff or Psychic Orb attacks." + ] + }, + { + "name": "Comet Staff", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage, and if the target is a creature, it must succeed on a {@dc 19} Constitution saving throw or be {@condition incapacitated} until the end of its next turn." + ] + }, + { + "name": "Psychic Orb", + "entries": [ + "{@atk rs} {@hit 11} to hit, range 120 feet, one creature. {@h}27 ({@damage 5d10}) psychic damage." + ] + }, + { + "name": "Collapse Distance {@recharge}", + "entries": [ + "The seer warps space around one creature it can see within 30 feet of it. That creature must make a {@dc 19} Wisdom saving throw. On a failed save, the target, along with any equipment it is wearing or carrying, is teleported up to 60 feet to an unoccupied space the seer can see, and then each creature within 10 feet of the target's original space takes 39 ({@damage 6d12}) psychic damage. On a successful save, the target takes 19 ({@damage 3d12}) psychic damage and isn't teleported." + ] + } + ], + "reaction": [ + { + "name": "Bend Space", + "entries": [ + "When the seer would be hit by an attack roll, it teleports, along with any equipment it is wearing or carrying, exchanging positions with another star spawn it can see within 60 feet of it. The other star spawn is hit by the attack instead." + ] + } + ], + "environment": [ + "mountain", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-seer.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "U" + ], + "damageTags": [ + "B", + "O", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Steel Predator", + "source": "MPMM", + "page": 232, + "otherSources": [ + { + "source": "MTF", + "page": 239 + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d10 + 108" + }, + "speed": { + "walk": 40 + }, + "str": 24, + "dex": 17, + "con": 22, + "int": 4, + "wis": 14, + "cha": 6, + "skill": { + "perception": "+7", + "stealth": "+8", + "survival": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "lightning", + "necrotic", + "thunder" + ], + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "understands Modron and the language of its owner but can't speak" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The steel predator casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability:" + ], + "daily": { + "3e": [ + "{@spell dimension door} (self only)", + "{@spell plane shift} (self only)" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The steel predator has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The steel predator doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The steel predator makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d10 + 7}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) force damage." + ] + }, + { + "name": "Stunning Roar {@recharge 5}", + "entries": [ + "The steel predator emits a roar in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) thunder damage, drops everything it's holding, and is {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, a creature takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/steel-predator.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "OTH" + ], + "damageTags": [ + "L", + "O", + "T" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stegosaurus", + "source": "MPMM", + "page": 96, + "otherSources": [ + { + "source": "VGM", + "page": 140 + }, + { + "source": "BMT" + } + ], + "size": [ + "H" + ], + "type": { + "type": "beast", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 9, + "con": 17, + "int": 2, + "wis": 11, + "cha": 5, + "passive": 10, + "cr": "4", + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}26 ({@damage 6d6 + 5}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stegosaurus.mp3" + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stench Kow", + "source": "MPMM", + "page": 72, + "otherSources": [ + { + "source": "VGM", + "page": 208 + }, + { + "source": "AATM" + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "cattle" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 15, + "formula": "2d10 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "poison" + ], + "cr": "1/2", + "trait": [ + { + "name": "Stench", + "entries": [ + "Any creature other than a stench kow that starts its turn within 5 feet of the stench kow must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the Stench of all stench kows for 1 hour." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the stench kow moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stench-cow.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Stone Cursed", + "source": "MPMM", + "page": 233, + "otherSources": [ + { + "source": "MTF", + "page": 240 + } + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 10 + }, + "str": 16, + "dex": 5, + "con": 14, + "int": 5, + "wis": 8, + "cha": 7, + "passive": 9, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "1", + "trait": [ + { + "name": "Cunning Opportunist", + "entries": [ + "The stone cursed has advantage on the attack rolls of {@action opportunity attack||opportunity attacks}." + ] + }, + { + "name": "False Appearance", + "entries": [ + "If the stone cursed is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the stone cursed move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the stone cursed isn't a statue." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The stone cursed doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Petrifying Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw, or it begins to turn to stone and is {@condition restrained} until the end of its next turn, when it must repeat the saving throw. The effect ends if the second save is successful; otherwise the target is {@condition petrified} for 24 hours." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-cursed.mp3" + }, + "traitTags": [ + "False Appearance", + "Unusual Nature" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Giant Dreamwalker", + "source": "MPMM", + "page": 234, + "otherSources": [ + { + "source": "VGM", + "page": 150 + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 14, + "con": 21, + "int": 10, + "wis": 8, + "cha": 12, + "save": { + "dex": "+6", + "con": "+9", + "wis": "+3" + }, + "skill": { + "athletics": "+14", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "10", + "trait": [ + { + "name": "Dreamwalker's Charm", + "entries": [ + "An enemy that starts its turn within 30 feet of the giant must make a {@dc 13} Charisma saving throw, provided that the giant isn't {@condition incapacitated}. On a failed save, the creature is {@condition charmed} by the giant. A creature {@condition charmed} in this way can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it succeeds on the saving throw, the creature is immune to this giant's Dreamwalker's Charm for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Greatclub or Rock attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}24 ({@damage 4d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Petrifying Touch", + "entries": [ + "The giant touches one Medium or smaller creature within 10 feet of it that is {@condition charmed} by it. The target must make a {@dc 17} Constitution saving throw. On a failed save, the target becomes {@condition petrified}, and the giant can adhere the target to its stony body. {@spell greater restoration} spells and other magic that can undo petrification have no effect on a {@condition petrified} creature adhered to the giant unless the giant is dead, in which case the magic works normally, freeing the {@condition petrified} creature as well as ending the {@condition petrified} condition on it." + ] + } + ], + "environment": [ + "coastal", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-giant-dreamwalker.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "charmed", + "petrified", + "prone" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Storm Giant Quintessent", + "source": "MPMM", + "page": 235, + "otherSources": [ + { + "source": "VGM", + "page": 151 + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 230, + "formula": "20d12 + 100" + }, + "speed": { + "walk": 50, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "swim": 50, + "canHover": true + }, + "str": 29, + "dex": 14, + "con": 20, + "int": 17, + "wis": 20, + "cha": 19, + "save": { + "str": "+14", + "con": "+10", + "wis": "+10", + "cha": "+9" + }, + "skill": { + "arcana": "+8", + "history": "+8", + "perception": "+10" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 20, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "thunder" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "16", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The giant can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Lightning Sword attacks, or it uses Wind Javelin twice." + ] + }, + { + "name": "Lightning Sword", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}40 ({@damage 9d6 + 9}) lightning damage." + ] + }, + { + "name": "Wind Javelin", + "entries": [ + "The giant coalesces wind into a javelin-like form and hurls it at a creature it can see within 600 feet of it. The javelin deals 19 ({@damage 3d6 + 9}) force damage to the target, striking unerringly. The javelin disappears after it hits." + ] + } + ], + "legendary": [ + { + "name": "Gust", + "entries": [ + "The giant targets a creature it can see within 60 feet of it and creates a magical gust of wind around the target, who must succeed on a {@dc 18} Strength saving throw or be moved up to 20 feet in any horizontal direction the giant chooses." + ] + }, + { + "name": "Thunderbolt (Costs 2 Actions)", + "entries": [ + "The giant hurls a thunderbolt at a creature it can see within 600 feet of it. The target must make a {@dc 18} Dexterity saving throw, taking 22 ({@damage 4d10}) thunder damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "One with the Storm (Costs 3 Actions)", + "entries": [ + "The giant vanishes, dispersing itself into the storm surrounding its lair. The giant can end this effect at the start of any of its turns, becoming a giant once more and appearing in any location it chooses within its lair. While dispersed, the giant can't take any actions other than lair actions, and it can't be targeted by attacks, spells, or other effects. The giant can't use this ability outside its lair, nor can it use this ability if another creature is using a {@spell control weather} spell or similar magic to quell the storm." + ] + } + ], + "legendaryGroup": { + "name": "Storm Giant Quintessent", + "source": "MPMM" + }, + "environment": [ + "coastal", + "desert", + "mountain", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/storm-giant-quintessent.mp3" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "L", + "O", + "T" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Summer Eladrin", + "source": "MPMM", + "page": 116, + "otherSources": [ + { + "source": "MTF", + "page": 196 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66" + }, + "speed": { + "walk": 50 + }, + "str": 19, + "dex": 21, + "con": 16, + "int": 14, + "wis": 12, + "cha": 18, + "skill": { + "athletics": "+8", + "intimidation": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "trait": [ + { + "name": "Fearsome Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition frightened} of the eladrin 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Fearsome Presence for the next 24 hours." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eladrin makes two Longsword or Longbow attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands, plus 9 ({@damage 2d8}) fire damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 150/600 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 9 ({@damage 2d8}) fire damage." + ] + } + ], + "bonus": [ + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The eladrin adds 3 to its AC against one melee attack that would hit it. To do so, the eladrin must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "desert", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/summer-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Cranium Rats", + "source": "MPMM", + "page": 83, + "otherSources": [ + { + "source": "VGM", + "page": 133 + } + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "swarmSize": "T" + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 76, + "formula": "17d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 10, + "int": 15, + "wis": 11, + "cha": 14, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "telepathy 30 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "As long as it has more than half of its hit points remaining, the swarm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell command}", + "{@spell comprehend languages}", + "{@spell detect thoughts}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell dominate monster}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Telepathic Shroud", + "entries": [ + "The swarm is immune to any effect that would sense its emotions or read its thoughts, as well as to all divination spells." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer, plus 22 ({@damage 5d8}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Illumination", + "entries": [ + "The swarm sheds dim light from its brains in a 5-foot radius, increases the illumination to bright light in a 5- to 20-foot radius (and dim light for an additional number of feet equal to the chosen radius), or extinguishes the light." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-cranium-rats.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Rot Grubs", + "source": "MPMM", + "page": 237, + "otherSources": [ + { + "source": "VGM", + "page": 208 + }, + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 5, + "climb": 5 + }, + "str": 2, + "dex": 7, + "con": 10, + "int": 1, + "wis": 2, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 6, + "resist": [ + "piercing", + "slashing" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained" + ], + "cr": "1/2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny maggot. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 0 ft., one creature in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned}. At the end of each of the {@condition poisoned} target's turns, the target takes 3 ({@damage 1d6}) poison damage. Whenever the {@condition poisoned} target takes fire damage, the target can repeat the saving throw, ending the effect on itself on a success. If the {@condition poisoned} target ends its turn with 0 hit points, it dies." + ] + } + ], + "environment": [ + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-rot-grubs.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swashbuckler", + "source": "MPMM", + "page": 238, + "otherSources": [ + { + "source": "VGM", + "page": 217 + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item leather armor|PHB}", + "suave defense" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 12, + "int": 14, + "wis": 11, + "cha": 15, + "skill": { + "acrobatics": "+8", + "athletics": "+5", + "persuasion": "+6" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "trait": [ + { + "name": "Suave Defense", + "entries": [ + "While the swashbuckler is wearing light or no armor and wielding no {@item shield|PHB}, its AC includes its Charisma modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The swashbuckler makes one Dagger attack and two Rapier attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Lightfooted", + "entries": [ + "The swashbuckler takes the {@action Dash} or {@action Disengage} action." + ] + } + ], + "environment": [ + "coastal", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swashbuckler.mp3" + }, + "attachedItems": [ + "dagger|phb", + "rapier|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sword Wraith Commander", + "source": "MPMM", + "page": 239, + "otherSources": [ + { + "source": "MTF", + "page": 241 + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item breastplate|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 11, + "wis": 12, + "cha": 14, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "poisoned", + "unconscious" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "8", + "trait": [ + { + "name": "Turning Defiance", + "entries": [ + "The commander and any other sword wraiths within 30 feet of it have advantage on saving throws against effects that turn Undead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The commander doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The commander makes two Longsword or Longbow attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Call to Honor (1/Day)", + "entries": [ + "If the commander has taken damage during this combat, it gives itself advantage on attack rolls until the end of its next turn, and {@dice 1d4 + 1} {@creature sword wraith warrior|MPMM|sword wraith warriors} appear in unoccupied spaces within 30 feet of it. The warriors last until they drop to 0 hit points, and they take their turns immediately after the commander's turn on the same initiative count." + ] + } + ], + "bonus": [ + { + "name": "Martial Fury", + "entries": [ + "The commander makes one Longsword or Longbow attack, which deals an extra 9 ({@damage 2d8}) necrotic damage on a hit, and attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "environment": [ + "grassland", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sword-wraith-commander.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Turn Resistance", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sword Wraith Warrior", + "source": "MPMM", + "page": 239, + "otherSources": [ + { + "source": "MTF", + "page": 241 + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain shirt|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 17, + "int": 6, + "wis": 9, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "poisoned", + "unconscious" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The warrior doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Martial Fury", + "entries": [ + "The warrior makes one Battleaxe or Longbow attack, and attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "environment": [ + "grassland", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sword-wraith-warrior.mp3" + }, + "attachedItems": [ + "battleaxe|phb", + "longbow|phb" + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tanarukk", + "source": "MPMM", + "page": 240, + "otherSources": [ + { + "source": "VGM", + "page": 186 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d8 + 50" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 20, + "int": 9, + "wis": 9, + "cha": 9, + "skill": { + "intimidation": "+2", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "fire", + "poison" + ], + "languages": [ + "Abyssal", + "Common", + "plus any one language" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The tanarukk has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tanarukk makes one Bite attack and one Greatsword attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Aggressive", + "entries": [ + "The tanarukk moves up to its speed toward an enemy that it can see." + ] + } + ], + "reaction": [ + { + "name": "Unbridled Fury", + "entries": [ + "In response to being hit by a melee attack, the tanarukk can make one Bite or Greatsword attack with advantage against the attacker." + ] + } + ], + "environment": [ + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tanarukk.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thorny Vegepygmy", + "source": "MPMM", + "page": 253, + "otherSources": [ + { + "source": "VGM", + "page": 197 + } + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 13, + "int": 2, + "wis": 10, + "cha": 6, + "skill": { + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "lightning", + "piercing" + ], + "cr": "1", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The thorny has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The thorny regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the thorny's next turn. The thorny dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Thorny Body", + "entries": [ + "At the start of its turn, the thorny deals 2 ({@damage 1d4}) piercing damage to any creature grappling it." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/thorny.mp3" + }, + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Titivilus", + "isNamedCreature": true, + "source": "MPMM", + "page": 242, + "otherSources": [ + { + "source": "MTF", + "page": 179 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 19, + "dex": 22, + "con": 17, + "int": 24, + "wis": 22, + "cha": 26, + "save": { + "dex": "+11", + "con": "+8", + "wis": "+11", + "cha": "+13" + }, + "skill": { + "deception": "+13", + "insight": "+11", + "intimidation": "+13", + "persuasion": "+13" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Titivilus casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell alter self}", + "{@spell major image}", + "{@spell nondetection}", + "{@spell sending}", + "{@spell suggestion}" + ], + "daily": { + "3e": [ + "{@spell mislead}", + "{@spell modify memory}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Titivilus fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Titivilus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Titivilus regains 10 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Titivilus dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Ventriloquism", + "entries": [ + "Whenever Titivilus speaks, he can choose a point within 60 feet of him; his voice emanates from that point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Titivilus makes one Silver Sword attack, and he uses Frightful Word." + ] + }, + { + "name": "Silver Sword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage, or 9 ({@damage 1d10 + 4}) force damage if used with two hands, plus 16 ({@damage 3d10}) necrotic damage. If the target is a creature, its hit point maximum is reduced by an amount equal to half the necrotic damage taken." + ] + }, + { + "name": "Frightful Word", + "entries": [ + "Titivilus targets one creature he can see within 10 feet of him. The target must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} of him for 1 minute. While {@condition frightened} in this way, the target must take the {@action Dash} action and move away from Titivilus by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the {@action Dash} action. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Teleport", + "entries": [ + "Titivilus teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ] + }, + { + "name": "Twisting Words", + "entries": [ + "Titivilus targets one creature he can see within 60 feet of him. The target must succeed on a {@dc 21} Charisma saving throw or become {@condition charmed} by Titivilus for 1 minute. The {@condition charmed} target can repeat the saving throw if Titivilus deals any damage to it. A creature that succeeds on the saving throw is immune to Titivilus's Twisting Words for 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Corrupting Guidance", + "entries": [ + "Titivilus uses Twisting Words. Alternatively, he targets one creature {@condition charmed} by him that is within 60 feet of him; that {@condition charmed} target must succeed on a {@dc 21} Charisma saving throw, or Titivilus decides how the target acts during its next turn." + ] + }, + { + "name": "Teleport", + "entries": [ + "Titivilus uses Teleport." + ] + }, + { + "name": "Assault (Costs 2 Actions)", + "entries": [ + "Titivilus makes one Silver Sword attack, or he uses Frightful Word." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/titivilus.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "N", + "O" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tlincalli", + "source": "MPMM", + "page": 242, + "otherSources": [ + { + "source": "VGM", + "page": 193 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 13, + "con": 16, + "int": 8, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+4", + "stealth": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Tlincalli" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tlincalli makes one Longsword or Spiked Chain attack and one Sting attack." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Spiked Chain", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the tlincalli can't use the spiked chain against another target." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} for 1 minute. If it fails the saving throw by 5 or more, the target is also {@condition paralyzed} while {@condition poisoned}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tlincalli.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "paralyzed", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tortle", + "source": "MPMM", + "page": 244, + "otherSources": [ + { + "source": "MTF", + "page": 242 + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 12, + "int": 11, + "wis": 13, + "cha": 12, + "skill": { + "athletics": "+4", + "survival": "+3" + }, + "passive": 11, + "languages": [ + "Aquan", + "Common" + ], + "cr": "1/4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The tortle can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands in melee." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ] + } + ], + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tortle.mp3" + }, + "attachedItems": [ + "light crossbow|phb", + "spear|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tortle Druid", + "source": "MPMM", + "page": 244, + "otherSources": [ + { + "source": "MTF", + "page": 242 + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 12, + "int": 11, + "wis": 15, + "cha": 12, + "skill": { + "animal handling": "+4", + "nature": "+2", + "survival": "+4" + }, + "passive": 12, + "languages": [ + "Aquan", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The tortle casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell druidcraft}", + "{@spell guidance}" + ], + "daily": { + "2e": [ + "{@spell cure wounds}", + "{@spell hold person}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The tortle can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tortle makes four Claw attacks or two {@skill Nature}'s Wrath attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Nature's Wrath", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 90 ft., one target. {@h}9 ({@damage 2d6 + 2}) damage of a type chosen by the tortle: cold, fire, lightning, or thunder." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ] + } + ], + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tortle-druid.mp3" + }, + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Transmuter Wizard", + "source": "MPMM", + "page": 265, + "otherSources": [ + { + "source": "VGM", + "page": 218 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 49, + "formula": "11d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The transmuter casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell light}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell fireball}", + "{@spell hold person}", + "{@spell knock}", + "{@spell mage armor}", + "{@spell polymorph}", + "{@spell slow}" + ], + "1e": [ + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Transmuter's Stone", + "entries": [ + "The transmuter carries a magic stone it crafted. The stone grants it one of the following benefits while bearing the stone; the transmuter chooses the benefit at the end of each long rest:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Darkvision", + "entry": "The transmuter has {@sense darkvision} out to a range of 60 feet." + }, + { + "type": "item", + "name": "Resilience", + "entry": "The transmuter has proficiency in Constitution saving throws. " + }, + { + "type": "item", + "name": "Resistance", + "entry": "The transmuter has resistance to acid, cold, fire, lightning, or thunder damage (transmuter's choice whenever choosing this benefit)." + }, + { + "type": "item", + "name": "Speed", + "entry": "The transmuter's walking speed is increased by 10 feet." + } + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The transmuter makes three Arcane Burst attacks." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}19 ({@damage 3d10 + 3}) acid damage." + ] + } + ], + "bonus": [ + { + "name": "Transmute {@recharge 4}", + "entries": [ + "The transmuter casts {@spell alter self} or changes the benefit of Transmuter's Stone if bearing the stone." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/transmuter.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "A" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Trapper", + "source": "MPMM", + "page": 245, + "otherSources": [ + { + "source": "VGM", + "page": 194 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 17, + "dex": 10, + "con": 17, + "int": 2, + "wis": 13, + "cha": 4, + "skill": { + "stealth": "+2" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 11, + "cr": "3", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the trapper is motionless on a floor, wall, or ceiling at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the trapper move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the trapper isn't part of the floor, wall, or ceiling." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The trapper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Smother", + "entries": [ + "One Large or smaller creature within 10 feet of the trapper must succeed on a {@dc 13} Dexterity saving throw or be {@condition grappled} (escape {@dc 14}). Until the grapple ends, the target takes 13 ({@damage 3d6 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) acid damage at the start of each of its turns. While {@condition grappled} in this way, the target is {@condition restrained}, {@condition blinded}, and deprived of air. The trapper can smother only one creature at a time." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/trapper.mp3" + }, + "traitTags": [ + "False Appearance", + "Spider Climb" + ], + "senseTags": [ + "B", + "D" + ], + "damageTags": [ + "A", + "B" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ulitharid", + "source": "MPMM", + "page": 249, + "otherSources": [ + { + "source": "VGM", + "page": 175 + } + ], + "size": [ + "L" + ], + "type": { + "type": "aberration", + "tags": [ + "mind flayer" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 12, + "con": 15, + "int": 21, + "wis": 19, + "cha": 21, + "save": { + "int": "+9", + "wis": "+8", + "cha": "+9" + }, + "skill": { + "arcana": "+9", + "insight": "+8", + "perception": "+8", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 2 miles" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The ulitharid casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell feeblemind}", + "{@spell mass suggestion}", + "{@spell plane shift} (self only)", + "{@spell project image}", + "{@spell scrying}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The ulitharid is aware of the presence of creatures within 2 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The ulitharid has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Psionic Hub", + "entries": [ + "If an elder brain establishes a psychic link with the ulitharid, the elder brain can form a psychic link with any other creature the ulitharid can detect using its Creature Sense. Any such link ends if the creature falls outside the telepathy ranges of both the ulitharid and the elder brain. The ulitharid can maintain its psychic link with the elder brain regardless of the distance between them, so long as they are both on the same plane of existence. If the ulitharid is more than 5 miles away from the elder brain, it can end the psychic link at any time (no action required)." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}27 ({@damage 4d10 + 5}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 14}) and must succeed on a {@dc 17} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition incapacitated} Humanoid {@condition grappled} by the ulitharid. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ulitharid kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The ulitharid magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 17} Intelligence saving throw or take 31 ({@damage 4d12 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ulitharid.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "frightened", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampiric Mist", + "source": "MPMM", + "page": 250, + "otherSources": [ + { + "source": "MTF", + "page": 246 + }, + { + "source": "AATM" + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 13 + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 6, + "dex": 16, + "con": 16, + "int": 6, + "wis": 12, + "cha": 7, + "save": { + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "cold", + "lightning", + "necrotic", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "cr": "3", + "trait": [ + { + "name": "Life Sense", + "entries": [ + "The mist can sense the location of any creature within 60 feet of it, unless that creature's type is Construct or Undead." + ] + }, + { + "name": "Forbiddance", + "entries": [ + "The mist can't enter a residence without an invitation from one of the occupants." + ] + }, + { + "name": "Misty Form", + "entries": [ + "The mist can occupy another creature's space and vice versa. In addition, if air can pass through a space, the mist can pass through it without squeezing. Each foot of movement in water costs it 2 extra feet, rather than 1 extra foot. The mist can't manipulate objects in any way that requires fingers or manual dexterity." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "The mist takes 10 radiant damage whenever it starts its turn in sunlight. While in sunlight, the mist has disadvantage on attack rolls and ability checks." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The mist doesn't require air or sleep." + ] + } + ], + "action": [ + { + "name": "Life Drain", + "entries": [ + "The mist touches one creature in its space. The target must succeed on a {@dc 13} Constitution saving throw (Undead and Constructs automatically succeed), or it takes 10 ({@damage 2d6 + 3}) necrotic damage, the mist regains 10 hit points, and the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "environment": [ + "arctic", + "coastal", + "forest", + "grassland", + "mountain", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vampiric-mist.mp3" + }, + "altArt": [ + { + "name": "Vampiric Mist (Alt)", + "source": "TftYP" + } + ], + "traitTags": [ + "Sunlight Sensitivity", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "N", + "R" + ], + "miscTags": [ + "HPR" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vargouille", + "source": "MPMM", + "page": 251, + "otherSources": [ + { + "source": "VGM", + "page": 195 + }, + { + "source": "AATM" + } + ], + "size": [ + "T" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 18, + "formula": "4d4 + 8" + }, + "speed": { + "walk": 5, + "fly": 40 + }, + "str": 6, + "dex": 14, + "con": 14, + "int": 4, + "wis": 7, + "cha": 2, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Abyssal", + "Infernal", + "and any languages it knew before becoming a vargouille but can't speak" + ], + "cr": "1", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Abyssal Curse", + "entries": [ + "The vargouille targets one {@condition incapacitated} Humanoid within 5 feet of it. The target must succeed on a {@dc 12} Charisma saving throw or become cursed. The cursed target loses 1 point of Charisma after each hour, as its head takes on fiendish aspects. The curse doesn't advance while the target is in sunlight or the area of a {@spell daylight} spell; don't count that time. When the cursed target's Charisma becomes 2, it dies, and its head tears from its body and becomes a new vargouille. Casting {@spell remove curse}, {@spell greater restoration}, or a similar spell on the target before the transformation is complete can end the curse. Doing so undoes the changes made to the target by the curse." + ] + }, + { + "name": "Stunning Shriek {@recharge 5}", + "entries": [ + "The vargouille shrieks. Each Humanoid and Beast within 30 feet of the vargouille and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} of the vargouille until the end of the vargouille's next turn. While {@condition frightened} in this way, a target is {@condition stunned}. If a target's saving throw is successful or the effect ends for it, the target is immune to the Stunning Shriek of all vargouilles for 1 hour." + ] + } + ], + "environment": [ + "desert", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vargouille.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS", + "I" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "frightened", + "stunned" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vegepygmy", + "source": "MPMM", + "page": 252, + "otherSources": [ + { + "source": "VGM", + "page": 196 + } + ], + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 14, + "con": 13, + "int": 6, + "wis": 11, + "cha": 7, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "lightning", + "piercing" + ], + "languages": [ + "Vegepygmy" + ], + "cr": "1/4", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vegepygmy regains 3 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vegepygmy.mp3" + }, + "attachedItems": [ + "sling|phb" + ], + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Vegepygmy Chief", + "source": "MPMM", + "page": 253, + "otherSources": [ + { + "source": "VGM", + "page": 197 + } + ], + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 14, + "int": 7, + "wis": 12, + "cha": 9, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "lightning", + "piercing" + ], + "languages": [ + "Vegepygmy" + ], + "cr": "2", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vegepygmy regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vegepygmy makes two Claw attacks or two melee Spear attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Spores (1/Day)", + "entries": [ + "A 15-foot-radius cloud of toxic spores extends out from the vegepygmy. The spores spread around corners. Each creature in that area that isn't a Plant must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned}. While {@condition poisoned} in this way, a target takes 9 ({@damage 2d8}) 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." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vegepygmy-chief.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Velociraptor", + "source": "MPMM", + "page": 96, + "otherSources": [ + { + "source": "VGM", + "page": 140 + } + ], + "size": [ + "T" + ], + "type": { + "type": "beast", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 14, + "con": 13, + "int": 4, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1/4", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The velociraptor has advantage on an attack roll against a creature if at least one of the velociraptor's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The velociraptor makes one Bite attack and one Claw attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "environment": [ + "forest", + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/velociraptor.mp3" + }, + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Venom Troll", + "source": "MPMM", + "page": 248, + "otherSources": [ + { + "source": "MTF", + "page": 245 + } + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 20, + "int": 7, + "wis": 9, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Giant" + ], + "cr": "7", + "trait": [ + { + "name": "Poison Splash", + "entries": [ + "When the troll takes damage of any type but psychic, each creature within 5 feet of the troll takes 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 4 ({@damage 1d8}) poison damage, and the creature is {@condition poisoned} until the start of the troll's next turn." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 4 ({@damage 1d8}) poison damage." + ] + }, + { + "name": "Venom Spray {@recharge}", + "entries": [ + "The troll slices itself with a claw, releasing a spray of poison in a 15-foot cube. The troll takes 7 ({@damage 2d6}) slashing damage (this damage can't be reduced in any way). Each creature in the area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "forest", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/venom-troll.mp3" + }, + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "War Priest", + "source": "MPMM", + "page": 254, + "otherSources": [ + { + "source": "VGM", + "page": 218 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb|plate}" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 14, + "int": 11, + "wis": 17, + "cha": 13, + "save": { + "con": "+6", + "wis": "+7" + }, + "skill": { + "intimidation": "+5", + "religion": "+4" + }, + "passive": 13, + "languages": [ + "any two languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The war priest casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell light}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell banishment}", + "{@spell command}", + "{@spell dispel magic}", + "{@spell flame strike}", + "{@spell guardian of faith}", + "{@spell hold person}", + "{@spell lesser restoration}", + "{@spell revivify}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The war priest makes two Maul attacks, and it uses Holy Fire." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage plus {@h}10 ({@damage 3d6}) radiant damage." + ] + }, + { + "name": "Holy Fire", + "entries": [ + "The war priest targets one creature it can see within 60 feet of it. The target must make a {@dc 15} Wisdom saving throw. On a failed save, the target takes 12 ({@damage 2d8 + 3}) radiant damage, and it is {@condition blinded} until the start of the war priest's next turn. On a successful save, the target takes half as much damage and isn't {@condition blinded}." + ] + } + ], + "bonus": [ + { + "name": "Healing Light {@recharge 4}", + "entries": [ + "The war priest or one creature of its choice within 60 feet of it regains 12 ({@dice 2d8 + 3}) hit points." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/war-priest.mp3" + }, + "attachedItems": [ + "maul|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "F", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "incapacitated", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warlock of the Archfey", + "source": "MPMM", + "page": 255, + "otherSources": [ + { + "source": "VGM", + "page": 219 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 67, + "formula": "15d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 16, + "con": 11, + "int": 11, + "wis": 12, + "cha": 18, + "save": { + "wis": "+3", + "cha": "+6" + }, + "skill": { + "arcana": "+2", + "deception": "+6", + "nature": "+2", + "persuasion": "+6" + }, + "passive": 11, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "any two languages (usually Sylvan)" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}): " + ], + "will": [ + "{@spell dancing lights}", + "{@spell disguise self}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell speak with animals}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell dimension door}", + "{@spell hold monster}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warlock makes two Rapier attacks, or it uses Bewildering Word twice." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) force damage." + ] + }, + { + "name": "Bewildering Word", + "entries": [ + "The warlock utters a magical bewilderment, targeting one creature it can see within 60 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or take 9 ({@damage 2d8}) psychic damage and have disadvantage on attack rolls until the end of the warlock's next turn." + ] + } + ], + "reaction": [ + { + "name": "Misty Escape (Recharges after a Short or Long Rest)", + "entries": [ + "In response to taking damage, the warlock turns {@condition invisible} and teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks, makes a damage roll, or casts a spell." + ] + } + ], + "environment": [ + "arctic", + "forest", + "mountain", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlock-of-the-archfey.mp3" + }, + "attachedItems": [ + "rapier|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "S", + "X" + ], + "damageTags": [ + "O", + "P", + "Y" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "CL" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "paralyzed", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Warlock of the Fiend", + "source": "MPMM", + "page": 255, + "otherSources": [ + { + "source": "VGM", + "page": 219 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 15, + "int": 12, + "wis": 12, + "cha": 18, + "save": { + "wis": "+4", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "deception": "+7", + "persuasion": "+7", + "religion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "any two languages (usually Abyssal or Infernal)" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 15}): " + ], + "will": [ + "{@spell alter self}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell banishment}", + "{@spell plane shift}", + "{@spell suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Dark One's Own Luck (Recharges after a Short or Long Rest)", + "entries": [ + "When the warlock makes an ability check or saving throw, it can add a {@dice d10} to the roll. It can do this after the roll is made but before any of the roll's effects occur." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warlock makes three Scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 14 ({@damage 4d6}) fire damage." + ] + }, + { + "name": "Hellfire", + "entries": [ + "Green flame explodes in a 10-foot-radius sphere centered on a point within 120 feet of the warlock. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage and 11 ({@damage 2d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "reaction": [ + { + "name": "Fiendish Rebuke (3/Day)", + "entries": [ + "In response to being damaged by a visible creature within 60 feet of it, the warlock forces that creature to make a {@dc 15} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "arctic", + "desert", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlock-of-the-fiend.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "X" + ], + "damageTags": [ + "B", + "F", + "N" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "CL" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Warlock of the Great Old One", + "source": "MPMM", + "page": 256, + "otherSources": [ + { + "source": "VGM", + "page": 220 + }, + { + "source": "BMT" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 16, + "con": 15, + "int": 12, + "wis": 12, + "cha": 18, + "save": { + "wis": "+4", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "psychic" + ], + "languages": [ + "any two languages", + "telepathy 30 ft." + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 15}): " + ], + "will": [ + "{@spell detect magic}", + "{@spell guidance}", + "{@spell levitate}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell arcane gate}", + "{@spell detect thoughts}", + "{@spell true seeing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Whispering Aura", + "entries": [ + "At the start of each of the warlock's turns, each creature of its choice within 10 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage, provided that the warlock isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warlock makes two Dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Howling Void", + "entries": [ + "The warlock opens a momentary extraplanar rift within 60 feet of it. The rift is a scream-filled, 20-foot cube. Each creature in that area must make a {@dc 15} Wisdom saving throw. On a failed save, a creature takes 9 ({@damage 2d8}) psychic damage and is {@condition frightened} of the warlock until the start of the warlock's next turn. On a successful save, a creature takes half as much damage and isn't {@condition frightened}." + ] + } + ], + "environment": [ + "arctic", + "hill", + "mountain", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlock-of-the-great-old-one.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "CL" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warlord", + "source": "MPMM", + "page": 257, + "otherSources": [ + { + "source": "VGM", + "page": 220 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid" + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb|plate}" + ] + } + ], + "hp": { + "average": 229, + "formula": "27d8 + 108" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 16, + "con": 18, + "int": 12, + "wis": 12, + "cha": 18, + "save": { + "str": "+9", + "dex": "+7", + "con": "+8" + }, + "skill": { + "athletics": "+9", + "intimidation": "+8", + "perception": "+5", + "persuasion": "+8" + }, + "passive": 15, + "languages": [ + "any two languages" + ], + "cr": "12", + "trait": [ + { + "name": "Indomitable (3/Day)", + "entries": [ + "The warlord can reroll a saving throw it fails. It must use the new roll." + ] + }, + { + "name": "Survivor", + "entries": [ + "The warlord regains 10 hit points at the start of its turn if it has fewer than half its hit points but at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warlord makes two Greatsword or Short bow attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "legendary": [ + { + "name": "Command Ally", + "entries": [ + "The warlord targets one ally it can see within 30 feet of it. If the target can see and hear the warlord, the target can make one weapon attack as a reaction and gains advantage on the attack roll." + ] + }, + { + "name": "Weapon Attack", + "entries": [ + "The warlord makes one Greatsword or Shortbow attack." + ] + }, + { + "name": "Frighten Foe (Costs 2 Actions)", + "entries": [ + "The warlord targets one creature it can see within 30 feet of it. If the target can see and hear it, the target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} until the end of warlord's next turn." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlord.mp3" + }, + "attachedItems": [ + "greatsword|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wastrilith", + "source": "MPMM", + "page": 258, + "otherSources": [ + { + "source": "MTF", + "page": 139 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75" + }, + "speed": { + "walk": 30, + "swim": 80 + }, + "str": 19, + "dex": 18, + "con": 21, + "int": 19, + "wis": 12, + "cha": 14, + "save": { + "str": "+9", + "con": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "13", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The wastrilith can breathe air and water." + ] + }, + { + "name": "Corrupt Water", + "entries": [ + "At the start of each of the wastrilith's turns, exposed water within 30 feet of it is befouled. Underwater, this effect lightly obscures the area until a current clears it away. Water in containers remains corrupted until it evaporates.", + "A creature that consumes this foul water or swims in it must make a {@dc 18} Constitution saving throw. On a successful save, the creature is immune to the foul water for 24 hours. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and is {@condition poisoned} for 1 minute. At the end of this time, the {@condition poisoned} creature must repeat the saving throw. On a failure, the creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} until it finishes a long rest.", + "If another demon drinks the foul water as an action, it gains 11 ({@dice 2d10}) temporary hit points." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The wastrilith has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wastrilith makes one Bite attack and two Claw attacks, and it uses Grasping Spout." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}30 ({@damage 4d12 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ] + }, + { + "name": "Grasping Spout", + "entries": [ + "The wastrilith magically launches a spout of water at one creature it can see within 60 feet of it. The target must make a {@dc 17} Strength saving throw, and it has disadvantage if it's underwater. On a failed save, it takes 22 ({@damage 4d8 + 4}) acid damage and is pulled up to 60 feet toward the wastrilith. On a successful save, it takes half as much damage and isn't pulled." + ] + } + ], + "bonus": [ + { + "name": "Undertow", + "entries": [ + "If the wastrilith is underwater, it causes all water within 60 feet of it to be {@quickref difficult terrain||3} for other creatures until the start of its next turn." + ] + } + ], + "environment": [ + "coastal", + "swamp", + "underdark", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wastrilith.mp3" + }, + "traitTags": [ + "Amphibious", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "A", + "I", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Water Elemental Myrmidon", + "source": "MPMM", + "page": 123, + "otherSources": [ + { + "source": "MTF", + "page": 203 + } + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "str": 18, + "dex": 14, + "con": 16, + "int": 8, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "acid", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Aquan", + "one language of its creator's choice" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes three Trident attacks." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) force damage, or 8 ({@damage 1d8 + 4}) force damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Freezing Strikes {@recharge}", + "entries": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 5 ({@damage 1d10}) cold damage. A target that is hit by one or more of these attacks has its speed reduced by 10 feet until the end of the myrmidon's next turn." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/water-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "trident|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ" + ], + "damageTags": [ + "C", + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "White Abishai", + "source": "MPMM", + "page": 41, + "otherSources": [ + { + "source": "MTF", + "page": 163 + }, + { + "source": "CoA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 16, + "dex": 11, + "con": 18, + "int": 11, + "wis": 12, + "cha": 13, + "save": { + "str": "+6", + "con": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "cold", + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "6", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the abishai can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes one Bite attack, one Claw attack, and one Longsword attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) force damage, or 8 ({@damage 1d10 + 3}) force damage if used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Vicious Reprisal", + "entries": [ + "In response to taking damage, the abishai makes one Bite attack against a random creature within 5 feet of it. If no creature is within reach, the abishai moves up to half its speed toward an enemy it can see, without provoking {@action opportunity attack||opportunity attacks}." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/white-abishai.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance", + "Reckless" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "C", + "O", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Winter Eladrin", + "source": "MPMM", + "page": 117, + "otherSources": [ + { + "source": "MTF", + "page": 197 + } + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 16, + "int": 18, + "wis": 17, + "cha": 13, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "cold" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eladrin casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell sleet storm}" + ], + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sorrowful Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 13} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by the eladrin for 1 minute. While {@condition charmed} in this way, the creature has disadvantage on ability checks and saving throws. The {@condition charmed} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Sorrowful Presence for the next 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eladrin makes two Longsword or Longbow attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) slashing damage, or 5 ({@damage 1d10}) slashing damage if used with two hands, plus 13 ({@damage 3d8}) cold damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 13 ({@damage 3d8}) cold damage." + ] + } + ], + "bonus": [ + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "reaction": [ + { + "name": "Frigid Rebuke", + "entries": [ + "When the eladrin takes damage from a creature the eladrin can see within 60 feet of it, the eladrin can force that creature to make a {@dc 16} Constitution saving throw. On a failed save, the creature takes 11 ({@damage 2d10}) cold damage." + ] + } + ], + "environment": [ + "arctic", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/winter-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wood Woad", + "source": "MPMM", + "page": 266, + "otherSources": [ + { + "source": "VGM", + "page": 198 + } + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 12, + "con": 16, + "int": 10, + "wis": 13, + "cha": 8, + "skill": { + "athletics": "+7", + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "bludgeoning", + "piercing" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Sylvan" + ], + "cr": "5", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The wood woad has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The wood woad regains 10 hit points at the start of its turn if it is in contact with the ground. If the wood woad takes fire damage, this trait doesn't function at the start of the wood woad's next turn. The wood woad dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Tree Stride", + "entries": [ + "Once on each of its turns, the wood woad can use 10 feet of its movement to step magically into one living tree within 5 feet of it and emerge from a second living tree within 60 feet of it that it can see, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wood woad makes two Club attacks." + ] + }, + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) force damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wood-woad.mp3" + }, + "attachedItems": [ + "club|phb" + ], + "traitTags": [ + "Camouflage", + "Regeneration", + "Tree Stride" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "S" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wretched Sorrowsworn", + "source": "MPMM", + "page": 224, + "otherSources": [ + { + "source": "MTF", + "page": 233 + } + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "4d6 - 4" + }, + "speed": { + "walk": 40 + }, + "str": 7, + "dex": 12, + "con": 9, + "int": 5, + "wis": 6, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "cr": "1/4", + "trait": [ + { + "name": "Wretched Pack Tactics", + "entries": [ + "The sorrowsworn has advantage on an attack roll against a creature if at least one of the sorrowsworn's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}. The sorrowsworn otherwise has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage, and the sorrowsworn attaches to the target. While attached, the sorrowsworn can't attack, and at the start of each of the sorrowsworn's turns, the target takes 6 ({@damage 1d10 + 1}) necrotic damage.", + "The attached sorrowsworn moves with the target whenever the target moves, requiring none of the sorrowsworn's movement. The sorrowsworn can detach itself by spending 5 feet of its movement on its turn. A creature, including the target, can use its action to detach the sorrowsworn." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-wretched.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xvart", + "source": "MPMM", + "page": 267, + "otherSources": [ + { + "source": "VGM", + "page": 200 + } + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 8, + "wis": 7, + "cha": 7, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 8, + "languages": [ + "Abyssal" + ], + "cr": "1/8", + "trait": [ + { + "name": "Raxivort's Tongue", + "entries": [ + "The xvart can communicate with ordinary {@creature bat|mm|bats} and {@creature rat|mm|rats}, as well as {@creature giant bat|mm|giant bats} and {@creature giant rat|mm|giant rats}." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If at least one of the xvart's allies is within 5 feet of the target, the xvart can push the target 5 feet if the target is a Medium or smaller creature." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Low Cunning", + "entries": [ + "The xvart takes the {@action Disengage} action." + ] + } + ], + "environment": [ + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/xvart.mp3" + }, + "attachedItems": [ + "shortsword|phb", + "sling|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xvart Warlock of Raxivort", + "source": "MPMM", + "page": 267, + "otherSources": [ + { + "source": "VGM", + "page": 200 + } + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 12, + "int": 8, + "wis": 11, + "cha": 12, + "skill": { + "stealth": "+3" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "languages": [ + "Abyssal" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The xvart casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell burning hands}", + "{@spell invisibility}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Raxivort's Blessing", + "entries": [ + "When the xvart reduces an enemy to 0 hit points, the xvart gains 4 temporary hit points." + ] + }, + { + "name": "Raxivort's Tongue", + "entries": [ + "The xvart can communicate with ordinary {@creature bat|mm|bats} and {@creature rat|mm|rats}, as well as {@creature giant bat|mm|giant bats} and {@creature giant rat|mm|giant rats}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The xvart makes two Scimitar or Raxivort's Bite attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Raxivort's Bite", + "entries": [ + "{@atk rs} {@hit 3} to hit, range 30 ft., one creature. {@h}7 ({@damage 1d10 + 2}) poison damage." + ] + } + ], + "bonus": [ + { + "name": "Low Cunning", + "entries": [ + "The xvart takes the {@action Disengage} action." + ] + } + ], + "environment": [ + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/xvart-warlock-of-raxivort.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "I", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Yagnoloth", + "source": "MPMM", + "page": 268, + "otherSources": [ + { + "source": "MTF", + "page": 252 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 14, + "con": 21, + "int": 16, + "wis": 15, + "cha": 18, + "save": { + "dex": "+6", + "int": "+7", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "deception": "+8", + "insight": "+6", + "perception": "+6", + "persuasion": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The yagnoloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "daily": { + "3": [ + "{@spell lightning bolt}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The yagnoloth has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yagnoloth makes one Electrified Touch attack and one Massive Arm attack, or it makes one Massive Arm attack and uses Battlefield Cunning, if available, or Teleport." + ] + }, + { + "name": "Electrified Touch", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}27 ({@damage 6d8}) lightning damage." + ] + }, + { + "name": "Massive Arm", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}23 ({@damage 3d12 + 4}) force damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or become {@condition stunned} until the end of the yagnoloth's next turn." + ] + }, + { + "name": "Battlefield Cunning {@recharge 4}", + "entries": [ + "Up to two allied yugoloths within 60 feet of the yagnoloth that can hear it can use their reactions to make one melee attack each." + ] + }, + { + "name": "Life Leech", + "entries": [ + "The yagnoloth touches one {@condition incapacitated} creature within 15 feet of it. The target takes 36 ({@damage 7d8 + 4}) necrotic damage, and the yagnoloth gains temporary hit points equal to half the damage dealt. The target must succeed on a {@dc 16} Constitution saving throw, or its hit point maximum is reduced by an amount equal to half the necrotic damage taken. This reduction lasts until the target finishes a long rest, and the target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Teleport", + "entries": [ + "The yagnoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yagnoloth.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "L", + "N", + "O" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yeenoghu", + "isNamedCreature": true, + "source": "MPMM", + "page": 270, + "otherSources": [ + { + "source": "MTF", + "page": 155 + } + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 333, + "formula": "23d12 + 184" + }, + "speed": { + "walk": 50 + }, + "str": 29, + "dex": 16, + "con": 26, + "int": 16, + "wis": 24, + "cha": 15, + "save": { + "dex": "+10", + "con": "+15", + "wis": "+14" + }, + "skill": { + "intimidation": "+9", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": { + "cr": "24", + "lair": "25" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Yeenoghu casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "1": [ + "{@spell teleport}" + ], + "3e": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell invisibility}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Yeenoghu fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Yeenoghu has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Yeenoghu makes three Flail attacks." + ] + }, + { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}22 ({@damage 2d12 + 9}) force damage. If it's his turn, Yeenoghu can cause the target to suffer one of the following additional effects, each of which he can apply only once per turn", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Confusion", + "entries": [ + "The target must succeed on a {@dc 17} Wisdom saving throw or be affected by the confusion spell until the start of Yeenoghu's next turn." + ] + }, + { + "type": "item", + "name": "Force", + "entries": [ + "The target takes an extra 13 ({@damage 2d12}) force damage." + ] + }, + { + "type": "item", + "name": "Paralysis", + "entries": [ + "The target must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} until the start of Yeenoghu's next turn." + ] + } + ] + } + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}20 ({@damage 2d10 + 9}) acid damage." + ] + } + ], + "bonus": [ + { + "name": "Rampage", + "entries": [ + "When Yeenoghu reduces a creature to 0 hit points with a melee attack, he moves up to half his speed and makes one Bite attack." + ] + } + ], + "legendary": [ + { + "name": "Charge", + "entries": [ + "Yeenoghu moves up to his speed." + ] + }, + { + "name": "Swat Away", + "entries": [ + "Yeenoghu makes one Flail attack. If the attack hits, the target must succeed on a {@dc 24} Strength saving throw or be pushed up to 15 feet in a straight line away from Yeenoghu. If the saving throw fails by 5 or more, the target is also knocked {@condition prone}." + ] + }, + { + "name": "Savage (Costs 2 Actions)", + "entries": [ + "Yeenoghu makes a separate Bite attack against each creature within 10 feet of him." + ] + } + ], + "legendaryGroup": { + "name": "Yeenoghu", + "source": "MPMM" + }, + "attachedItems": [ + "flail|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "O" + ], + "damageTagsLegendary": [ + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed", + "prone" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "conditionInflictSpell": [ + "frightened", + "invisible" + ], + "savingThrowForced": [ + "constitution", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yeth Hound", + "source": "MPMM", + "page": 271, + "otherSources": [ + { + "source": "VGM", + "page": 201 + }, + { + "source": "BMT" + } + ], + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 17, + "con": 16, + "int": 5, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "understands Common, Elvish and Sylvan but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Sunlight Banishment", + "entries": [ + "If the yeth hound starts its turn in sunlight, it is transported to the Ethereal Plane. While sunlight shines on the spot from which it vanished, the hound must remain in the Deep Ethereal. After sunset, it returns to the Border Ethereal at the same spot, whereupon it typically sets out to find its pack or its master. The hound is visible on the Material Plane while it is in the Border Ethereal, and vice versa, but it can't affect or be affected by anything on the other plane. Once it is adjacent to its master or a pack mate that is on the Material Plane, a yeth hound in the Border Ethereal can return to the Material Plane as an action." + ] + }, + { + "name": "Telepathic Bond", + "entries": [ + "While the yeth hound is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, plus 14 ({@damage 4d6}) psychic damage if the target is {@condition frightened}." + ] + }, + { + "name": "Baleful Baying", + "entries": [ + "The yeth hound bays magically. Every enemy within 300 feet of the hound that can hear it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of the hound until the end of the hound's next turn or until the hound is {@condition incapacitated}. A {@condition frightened} target that starts its turn within 30 feet of the hound must use all its movement on that turn to get as far from the hound as possible, must finish the move before taking an action, and must take the most direct route, even if hazards lie that way. A target that successfully saves is immune to the baying of all yeth hounds for the next 24 hours." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yeth-hound.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS", + "E", + "S" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Kruthik", + "source": "MPMM", + "page": 168, + "otherSources": [ + { + "source": "MTF", + "page": 211 + } + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 30, + "burrow": 10, + "climb": 30 + }, + "str": 13, + "dex": 16, + "con": 13, + "int": 4, + "wis": 10, + "cha": 6, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 30 ft.", + "tremorsense 60 ft." + ], + "passive": 14, + "languages": [ + "Kruthik" + ], + "cr": "1/8", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 2\u00bd-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Stab", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "environment": [ + "desert", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/young-kruthik.mp3" + }, + "traitTags": [ + "Pack Tactics", + "Tunneler" + ], + "senseTags": [ + "D", + "T" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Anathema", + "source": "MPMM", + "page": 272, + "otherSources": [ + { + "source": "VGM", + "page": 202 + } + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d12 + 72" + }, + "speed": { + "walk": 40, + "climb": 40, + "swim": 40 + }, + "str": 23, + "dex": 13, + "con": 19, + "int": 19, + "wis": 17, + "cha": 20, + "skill": { + "perception": "+11", + "stealth": "+5" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 21, + "resist": [ + "acid", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting (Anathema Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The anathema casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3e": [ + "{@spell darkness}", + "{@spell entangle}", + "{@spell fear}", + "{@spell polymorph}", + "{@spell suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The anathema has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Ophidiophobia Aura", + "entries": [ + "Any creature of the anathema's choice, other than a snake or a yuan-ti, that starts its turn within 30 feet of the anathema must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of snakes and yuan-ti. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this anathama's aura for the next 24 hours." + ] + }, + { + "name": "Six Heads", + "entries": [ + "The anathema has advantage on saves against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + } + ], + "action": [ + { + "name": "Multiattack (Anathema Form Only)", + "entries": [ + "The anathema makes two Claw attacks and one Flurry of Bites attack." + ] + }, + { + "name": "Claw (Anathema Form Only)", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Flurry of Bites (Anathema Form Only)", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one creature. {@h}27 ({@damage 6d6 + 6}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Constrict (Snake Form Only)", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}, and it takes 16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage at the start of each of its turns. The anathema can constrict only one creature at a time." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The anathema transforms into a Huge constrictor snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ] + } + ], + "environment": [ + "desert", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-anathema.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "I", + "P", + "S" + ], + "spellcastingTags": [ + "F" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Broodguard", + "source": "MPMM", + "page": 273, + "otherSources": [ + { + "source": "VGM", + "page": 203 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 14, + "int": 6, + "wis": 11, + "cha": 4, + "save": { + "str": "+4", + "dex": "+4", + "wis": "+2" + }, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "paralyzed", + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "2", + "trait": [ + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the broodguard can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The broodguard makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "environment": [ + "desert", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-broodguard.mp3" + }, + "traitTags": [ + "Reckless" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Mind Whisperer", + "source": "MPMM", + "page": 274, + "otherSources": [ + { + "source": "VGM", + "page": 204 + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 14, + "cha": 16, + "save": { + "wis": "+4", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell animal friendship} (snakes only)", + "{@spell message}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ], + "2e": [ + "{@spell detect thoughts}", + "{@spell hypnotic pattern}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the yuan-ti's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sseth's Blessing", + "entries": [ + "When the yuan-ti reduces an enemy to 0 hit points, the yuan-ti gains 9 temporary hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yuan-ti makes two Bite attacks and one Scimitar attack, or it makes two Spectral Fangs attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Spectral Fangs", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}16 ({@damage 3d8 + 3}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The yuan-ti transforms into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ] + } + ], + "environment": [ + "desert", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-mind-whisperer.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "Y" + ], + "spellcastingTags": [ + "F" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Nightmare Speaker", + "source": "MPMM", + "page": 275, + "otherSources": [ + { + "source": "VGM", + "page": 205 + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "wis": "+3", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell animal friendship} (snakes only)", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ], + "2e": [ + "{@spell darkness}", + "{@spell fear}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the yuan-ti's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yuan-ti makes one Constrict attack and one Scimitar attack, or it makes two Spectral Fangs attacks." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}. The yuan-ti can constrict only one creature at a time." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Spectral Fangs", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}16 ({@damage 3d8 + 3}) necrotic damage." + ] + }, + { + "name": "Invoke Nightmare (Recharges after a Short or Long Rest)", + "entries": [ + "The yuan-ti taps into the nightmares of one creature it can see within 60 feet of it and creates an illusory, immobile manifestation of the creature's deepest fears, visible only to that creature.", + "The target must make a {@dc 13} Intelligence saving throw. On a failed save, the target takes 22 ({@damage 4d10}) psychic damage and is {@condition frightened} of the manifestation, believing it to be real. The yuan-ti must concentrate to maintain the illusion (as if {@status concentration||concentrating} on a spell), which lasts for up to 1 minute and can't be harmed. The target can repeat the saving throw at the end of each of its turns, ending the illusion on a success or taking 11 ({@damage 2d10}) psychic damage on a failure." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The yuan-ti transforms into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ] + } + ], + "environment": [ + "desert", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-nightmare-speaker.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "B", + "N", + "Y" + ], + "spellcastingTags": [ + "F" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Pit Master", + "source": "MPMM", + "page": 276, + "otherSources": [ + { + "source": "VGM", + "page": 206 + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "wis": "+4", + "cha": "+6" + }, + "skill": { + "deception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell animal friendship} (snakes only)", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell message}" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ], + "2e": [ + "{@spell hold person}", + "{@spell invisibility}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the yuan-ti's {@sense darkvision}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yuan-ti makes three Bite attacks or two Spectral Fangs attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Spectral Fangs", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}16 ({@damage 3d8 + 3}) poison damage." + ] + }, + { + "name": "Merrshaulk's Slumber (1/Day)", + "entries": [ + "The yuan-ti targets up to five creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 13} Constitution saving throw or fall into a magical sleep and be {@condition unconscious} for 10 minutes. A sleeping target awakens if it takes damage or if someone uses an action to shake or slap it awake. This magical sleep has no effect on a creature immune to being {@condition charmed}." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The yuan-ti transforms into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + } + ], + "environment": [ + "desert", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-pit-master.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "F" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zaratan", + "source": "MPMM", + "page": 278, + "otherSources": [ + { + "source": "MTF", + "page": 201 + } + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "Typically ", + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 307, + "formula": "15d20 + 150" + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "str": 30, + "dex": 10, + "con": 30, + "int": 2, + "wis": 21, + "cha": 18, + "save": { + "wis": "+12", + "cha": "+11" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "cr": "22", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the zaratan fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The elemental deals double damage to objects and structures (included in Earth-Shaking Movement)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zaratan makes one Bite attack and one Stomp attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) force damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}26 ({@damage 3d10 + 10}) thunder damage." + ] + }, + { + "name": "Spit Rock", + "entries": [ + "{@atk rw} {@hit 17} to hit, range 120 ft./240 ft., one target. {@h}31 ({@damage 6d8 + 10}) force damage." + ] + }, + { + "name": "Spew Debris {@recharge 5}", + "entries": [ + "The zaratan exhales rocky debris in a 90-foot cube. Each creature in that area must make a {@dc 25} Dexterity saving throw. A creature takes 33 ({@damage 6d10}) bludgeoning damage on a failed save, or half as much damage on a successful one. A creature that fails the save by 5 or more is knocked {@condition prone}." + ] + } + ], + "bonus": [ + { + "name": "Earth-Shaking Movement", + "entries": [ + "After moving at least 10 feet on the ground, the zaratan sends a shock wave through the ground in a 120-foot-radius circle centered on itself. That area becomes {@quickref difficult terrain||3} for 1 minute. Each creature on the ground that is {@status concentration||concentrating} must succeed on a {@dc 25} Constitution saving throw or the creature's {@status concentration} is broken. The shock wave deals 100 thunder damage to all structures in contact with the ground in the area. If a creature is near a structure that collapses, the creature might be buried; a creature within half the distance of the structure's height must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 17 ({@damage 5d6}) bludgeoning damage, is knocked {@condition prone}, and is trapped in the rubble. A trapped creature is {@condition restrained}, requiring a successful {@dc 20} Strength ({@skill Athletics}) check as an action to escape. Another creature within 5 feet of the buried creature can use its action to clear rubble and grant advantage on the check. If three creatures use their actions in this way, the check is an automatic success. On a successful save, the creature takes half as much damage and doesn't fall {@condition prone} or become trapped." + ] + } + ], + "legendary": [ + { + "name": "Stomp", + "entries": [ + "The zaratan makes one Stomp attack." + ] + }, + { + "name": "Move", + "entries": [ + "The zaratan moves up to its speed." + ] + }, + { + "name": "Spit (Costs 2 Actions)", + "entries": [ + "The zaratan makes one Spit Rock attack." + ] + }, + { + "name": "Retract (Costs 2 Actions)", + "entries": [ + "The zaratan retracts into its shell. Until it takes its Emerge action, it has resistance to all damage, and it is {@condition restrained}. The next time it takes a legendary action, it must take its Revitalize or Emerge action." + ] + }, + { + "name": "Revitalize (Costs 2 Actions)", + "entries": [ + "The zaratan can use this option only if it is retracted in its shell. It regains 52 ({@dice 5d20}) hit points. The next time it takes a legendary action, it must take its Emerge action." + ] + }, + { + "name": "Emerge (Costs 2 Actions)", + "entries": [ + "The zaratan emerges from its shell and makes one Spit Rock attack. It can use this option only if it is retracted in its shell." + ] + } + ], + "environment": [ + "desert", + "forest", + "grassland", + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/zaratan.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "O", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zariel", + "isNamedCreature": true, + "source": "MPMM", + "page": 280, + "otherSources": [ + { + "source": "MTF", + "page": 180 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 420, + "formula": "29d10 + 261" + }, + "speed": { + "walk": 50, + "fly": 150 + }, + "str": 27, + "dex": 24, + "con": 28, + "int": 26, + "wis": 27, + "cha": 30, + "save": { + "int": "+16", + "wis": "+16", + "cha": "+18" + }, + "skill": { + "intimidation": "+18", + "perception": "+16" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 26, + "resist": [ + "cold", + "fire", + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zariel casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 26}):" + ], + "will": [ + "{@spell alter self} (can become Medium when changing her appearance)", + "{@spell detect evil and good}", + "{@spell fireball}", + "{@spell invisibility} (self only)", + "{@spell major image}", + "{@spell wall of fire}" + ], + "daily": { + "3e": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell finger of death}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede Zariel's {@sense darkvision}." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Zariel fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Zariel has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Zariel regains 20 hit points at the start of her turn. If she takes radiant damage, this trait doesn't function at the start of her next turn. Zariel dies only if she starts her turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zariel makes three Flail or Longsword attacks. She can replace one attack with a use of Horrid Touch, if available." + ] + }, + { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) force damage plus 36 ({@damage 8d8}) fire damage." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) radiant damage, or 19 ({@damage 2d10 + 8}) radiant damage when used with two hands, plus 36 ({@damage 8d8}) fire damage." + ] + }, + { + "name": "Horrid Touch {@recharge 5}", + "entries": [ + "Zariel touches one creature within 10 feet of her. The target must succeed on a {@dc 26} Constitution saving throw or take 44 ({@damage 8d10}) necrotic damage and be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is {@condition blinded} and {@condition deafened}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Teleport", + "entries": [ + "Zariel teleports, along with any equipment she is wearing or carrying, up to 120 feet to an unoccupied space she can see." + ] + } + ], + "legendary": [ + { + "name": "Teleport", + "entries": [ + "Zariel uses Teleport." + ] + }, + { + "name": "Immolating Gaze (Costs 2 Actions)", + "entries": [ + "Zariel turns her magical gaze toward one creature she can see within 120 feet of her and commands it to burn. The target must succeed on a {@dc 26} Wisdom saving throw or take 22 ({@damage 4d10}) fire damage." + ] + } + ], + "legendaryGroup": { + "name": "Zariel", + "source": "MPMM" + }, + "attachedItems": [ + "flail|phb", + "longsword|phb" + ], + "traitTags": [ + "Devil's Sight", + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "F", + "N", + "O", + "R" + ], + "damageTagsLegendary": [ + "F" + ], + "damageTagsSpell": [ + "B", + "F", + "N", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "deafened", + "poisoned" + ], + "conditionInflictLegendary": [ + "frightened" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zuggtmoy", + "isNamedCreature": true, + "source": "MPMM", + "page": 281, + "otherSources": [ + { + "source": "MTF", + "page": 157 + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 304, + "formula": "32d10 + 128" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 15, + "con": 18, + "int": 20, + "wis": 19, + "cha": 24, + "save": { + "dex": "+9", + "con": "+11", + "wis": "+11" + }, + "skill": { + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zuggtmoy casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell locate animals or plants}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell entangle}", + "{@spell plant growth}" + ], + "1e": [ + "{@spell etherealness}", + "{@spell teleport}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Zuggtmoy fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Zuggtmoy has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zuggtmoy makes three Pseudopod attacks." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit +13} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) force damage plus 9 ({@damage 2d8}) poison damage." + ] + } + ], + "bonus": [ + { + "name": "Infestation Spores (3/Day)", + "entries": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Any creature in the cloud when it appears, or that enters it later, must make a {@dc 19} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy, which lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a {@creature quaggoth spore servant||spore servant} if it's a type of creature that can be." + ] + }, + { + "name": "Mind Control Spores {@recharge 5}", + "entries": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Humanoids and Beasts in the cloud when it appears, or that enter it later, must make a {@dc 19} Wisdom saving throw. On a successful save, a creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the influence of Zuggtmoy for 24 hours. While infected in this way, the creature is {@condition charmed} by her and can't be reinfected by these spores." + ] + } + ], + "reaction": [ + { + "name": "Protective Thrall", + "entries": [ + "When Zuggtmoy is hit by an attack roll, one creature within 10 feet of her that is {@condition charmed} by her is hit by the attack instead." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Zuggtmoy makes one Pseudopod attack." + ] + }, + { + "name": "Exert Will", + "entries": [ + "One creature {@condition charmed} by Zuggtmoy that she can see must use its reaction, if a available, to move up to its speed as she directs or to make one weapon attack against a target that she designates." + ] + } + ], + "legendaryGroup": { + "name": "Zuggtmoy", + "source": "MPMM" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "I" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "DIS", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Abhorrent Overlord", + "source": "MOT", + "page": 219, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 20, + "dex": 18, + "con": 16, + "int": 15, + "wis": 14, + "cha": 16, + "save": { + "con": "+7", + "cha": "+7" + }, + "skill": { + "deception": "+7", + "intimidation": "+7", + "persuasion": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "cold", + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The abhorrent overlord's spellcasting ability is Charisma (spell save {@dc 15}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell crown of madness}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Insatiable Greed", + "entries": [ + "The abhorrent overlord can sense the presence of gold within 1,000 feet of itself. It can determine which location has the greatest amount of gold and can sense the direction to that site. If the gold is being moved, it knows the direction of the movement. It can't locate gold if any thickness of clay or lead, even a thin sheet, blocks a direct path between it and the gold." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abhorrent overlord has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abhorrent overlord makes two attacks with its claws." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage plus 14 ({@damage 4d6}) necrotic damage. The abhorrent overlord regains hit points equal to half the amount of necrotic damage dealt if the target is a creature." + ] + }, + { + "name": "Storm of Crows {@recharge}", + "entries": [ + "The abhorrent overlord conjures a swarm of spectral crows and harpies in a 20-foot-radius sphere centered on a point the overlord can see within 120 feet of it. The sphere remains for 1 minute or until the overlord loses {@status concentration} (as if {@status concentration||concentrating} on a spell), and its area is lightly obscured and {@quickref difficult terrain||3}.", + "Any creature that moves into the area for the first time on a turn or starts its turn there must make a {@dc 15} Constitution saving throw. A creature takes 16 ({@damage 3d10}) slashing damage plus 16 ({@damage 3d10}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "N", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Akroan Hoplite", + "source": "MOT", + "page": 228, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item breastplate|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 14, + "int": 11, + "wis": 14, + "cha": 13, + "save": { + "str": "+5", + "dex": "+5" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Hold the Line", + "entries": [ + "While the hoplite is holding a spear, other creatures provoke an opportunity attack from the hoplite when they move within 5 feet of it. When the hoplite hits a creature with an opportunity attack using its spear, the creature takes an extra 4 ({@damage 1d8}) piercing damage, and the creature's speed becomes 0 for the rest of the turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hoplite makes three melee attacks or two ranged attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft., or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Shield Bash", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Alseid", + "group": [ + "Nymph" + ], + "source": "MOT", + "page": 235, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 12, + "int": 13, + "wis": 14, + "cha": 18, + "skill": { + "persuasion": "+6" + }, + "passive": 12, + "resist": [ + "radiant" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The alseid's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell cure wounds}", + "{@spell charm person}", + "{@spell sleep}" + ], + "1e": [ + "{@spell calm emotions}", + "{@spell lesser restoration}", + "{@spell plant growth}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Hide in Plain Sight", + "entries": [ + "The alseid has advantage on Dexterity ({@skill Stealth}) checks made to hide while it is in grassland." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The alseid has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The alseid makes two radiant touch attacks." + ] + }, + { + "name": "Radiant Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) radiant damage." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "R" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflictSpell": [ + "charmed", + "unconscious" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Anvilwrought Raptor", + "source": "MOT", + "page": 209, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d4 + 8" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 3, + "wis": 14, + "cha": 1, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The raptor has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Recorded Mimicry", + "entries": [ + "The raptor can mimic any sound, including voices, it has heard in the last 24 hours. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The raptor makes two attacks with its beak." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Anvilwrought Raptor Familiar", + "entries": [ + "Some anvilwrought raptors are created expressly to be familiars. Such creatures have the following trait.", + { + "type": "entries", + "name": "Familiar", + "entries": [ + "The anvilwrought can serve another creature as a familiar, forming a magical, telepathic bond with its willing master. While the two are bonded, the master can sense what the anvilwrought senses, as long as they are within 1 mile of each other." + ] + } + ], + "_version": { + "addHeadersAs": "trait" + } + } + ], + "familiar": true, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aphemia", + "source": "MOT", + "page": 226, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 20, + "fly": 50 + }, + "str": 13, + "dex": 16, + "con": 15, + "int": 13, + "wis": 14, + "cha": 16, + "save": { + "dex": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+4", + "intimidation": "+6", + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Aphemia fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Aphemia has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Aphemia makes two attacks: one with her bite and one with her claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Discordant Song", + "entries": [ + "Aphemia shrieks a cacophony of magical sounds. Each humanoid within 120 feet of her must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of her until the song ends. A {@condition frightened} creature takes 7 ({@damage 2d6}) psychic damage at the start of its turn while Aphemia is singing. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Aphemia's Discordant Song for the next 24 hours. Aphemia must take a bonus action on her subsequent turns to continue singing. She can stop singing at any time. The song ends if Aphemia is {@condition incapacitated} or dies." + ] + }, + { + "name": "Grave Calling Song", + "entries": [ + "Aphemia intones a low, growling magical melody. Every undead within 300 feet of her must succeed on a {@dc 14} Wisdom saving throw or fall under her control until the song ends. Aphemia must take a bonus action on her subsequent turns to continue singing, and she can mentally command the undead under her control as part of the same bonus action. She can stop singing at any time. The song ends if Aphemia is {@condition incapacitated} or dies." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "P", + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Arasta", + "isNamedCreature": true, + "source": "MOT", + "page": 248, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 24, + "dex": 16, + "con": 23, + "int": 15, + "wis": 22, + "cha": 17, + "save": { + "dex": "+10", + "con": "+13", + "wis": "+13" + }, + "skill": { + "arcana": "+9", + "deception": "+10", + "intimidation": "+10", + "nature": "+9", + "perception": "+13", + "stealth": "+10" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 23, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Celestial", + "Common", + "Sylvan" + ], + "cr": "21", + "trait": [ + { + "name": "Armor of Spiders (Mythic Trait; Recharges after a Short or Long Rest)", + "entries": [ + "If Arasta is reduced to 0 hit points, she doesn't die or fall {@condition unconscious}. Instead, she regains 200 hit points. In addition, Arasta's children immediately swarm over her body to protect her, granting her 100 temporary hit points." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Arasta fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Arasta has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Arasta can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Walker", + "entries": [ + "Arasta ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Arasta makes three attacks: one with her bite and two with her claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one creature. {@h}20 ({@damage 3d8 + 7}) piercing damage, and the target must make a {@dc 21} Constitution saving throw, taking 32 ({@damage 5d12}) poison damage on a failed save, or half as much damage on a successful one. If the damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d6 + 7}) slashing damage." + ] + }, + { + "name": "Web of Hair {@recharge 4}", + "entries": [ + "Arasta unleashes her hair in the form of webbing that fills a 30-foot cube next to her. The web is {@quickref difficult terrain||3}, its area is lightly obscured, and it lasts for 1 minute. Any creature that moves into the web or that starts its turn there must make a {@dc 21} Dexterity saving throw. On a failed save, the creature is {@condition restrained} while in the web. A creature can use an action to make a {@dc 21} Strength check. On a success, it can free itself or a creature within 5 feet of it that is {@condition restrained} by the web. This webbing is immune to all damage except magical fire. A 5-foot cube of the web is destroyed if it takes at least 20 fire damage from a spell or other magical source on a single turn." + ] + } + ], + "legendary": [ + { + "name": "Claws", + "entries": [ + "Arasta makes one attack with her claws." + ] + }, + { + "name": "Swarm (Costs 2 Actions)", + "entries": [ + "Arasta causes two {@creature swarm of spiders||swarms of spiders} to appear in unoccupied spaces within 5 feet of her." + ] + }, + { + "name": "Toxic Web (Costs 3 Actions)", + "entries": [ + "Each creature {@condition restrained} by Arasta's Web of Hair takes 18 ({@damage 4d8}) poison damage." + ] + } + ], + "mythicHeader": [ + "If Arasta's mythic trait is active, she can use the options below as legendary actions, as long as she has temporary hit points from her Armor of Spiders." + ], + "mythic": [ + { + "name": "Swipe", + "entries": [ + "Arasta makes two attacks with her claws." + ] + }, + { + "name": "Web of Hair (Costs 2 Actions)", + "entries": [ + "Arasta recharges Web of Hair and uses it." + ] + }, + { + "name": "Nyx Weave (Costs 2 Actions)", + "entries": [ + "Each creature {@condition restrained} by Arasta's Web of Hair must succeed on a {@dc 21} Constitution saving throw, or the creature takes 26 ({@damage 4d12}) force damage and any spell of 6th level or lower on it ends." + ] + } + ], + "legendaryGroup": { + "name": "Arasta", + "source": "MOT" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Spider Climb", + "Web Walker" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "S" + ], + "damageTags": [ + "F", + "I", + "O", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Archon of Falling Stars", + "source": "MOT", + "page": 212, + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 19, + "int": 15, + "wis": 21, + "cha": 19, + "save": { + "str": "+9", + "con": "+8", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archon's spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The archon can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell spare the dying}" + ], + "daily": { + "1e": [ + "{@spell crusader's mantle}", + "{@spell spirit guardians}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The archon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Mount", + "entries": [ + "If the archon isn't mounted, it can use a bonus action to magically teleport onto the creature serving as its mount, provided the archon and its mount are on the same plane of existence. When it teleports, the archon appears astride the mount, along with any equipment it is wearing or carrying. While mounted and not {@condition incapacitated}, the archon can't be {@status surprised}, and both it and its mount have advantage on Dexterity saving throws. If the archon is reduced to 0 hit points while riding its mount, the mount is reduced to 0 hit points as well." + ] + }, + { + "name": "Radiant Rebirth (Recharges after a Long Rest)", + "entries": [ + "If the archon is reduced to 0 hit points, it regains 30 hit points and springs back to its feet with a burst of radiance. Each creature of the archon's choice within 30 feet of it must succeed on a {@dc 16} Constitution saving throw, or the creature takes 13 ({@damage 3d8}) radiant damage and is {@condition blinded} until the start of the archon's turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archon makes two attacks with its radiant spear." + ] + }, + { + "name": "Radiant Spear", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 10 ({@damage 3d6}) radiant damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The archon makes a radiant spear attack or casts {@spell guiding bolt}." + ] + }, + { + "name": "Coordinated Assault (Costs 2 Actions)", + "entries": [ + "The archon makes a radiant spear attack, and then its mount can use its reaction to make a melee weapon attack." + ] + }, + { + "name": "Return to Nyx (Costs 3 Actions)", + "entries": [ + "The archon causes a corpse it can see within 30 feet of it to burst into a shower of radiant stars leaving no trace of it behind. Everything it is wearing or carrying remains. Each creature within 10 feet of the corpse when it bursts must succeed on a {@dc 16} Dexterity saving throw or take 22 ({@damage 4d10}) radiant damage." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "P", + "R" + ], + "damageTagsSpell": [ + "N", + "R" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ashen Rider", + "source": "MOT", + "page": 213, + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 178, + "formula": "21d8 + 84" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 16, + "con": 19, + "int": 15, + "wis": 21, + "cha": 18, + "save": { + "str": "+10", + "con": "+9", + "wis": "+10", + "cha": "+9" + }, + "skill": { + "history": "+7", + "insight": "+10", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "immune": [ + "thunder" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "all" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ashen rider's spellcasting ability is Wisdom (spell save {@dc 18}). The rider can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell command}", + "{@spell compelled duel}" + ], + "daily": { + "1e": [ + "{@spell banishment}", + "{@spell blade barrier}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Aura of Silence", + "entries": [ + "When a creature starts its turn within 30 feet of the ashen rider, the rider can force that creature to make a {@dc 18} Wisdom saving throw if the rider can see it. On a successful save, the creature is immune to this aura for the next 24 hours. On a failed save, the creature can't speak and is {@condition deafened} until the start of its next turn." + ] + }, + { + "name": "Mount", + "entries": [ + "If the ashen rider isn't mounted, it can use a bonus action to magically teleport onto the creature serving as its mount, provided the ashen rider and its mount are on the same plane of existence. When it teleports, the ashen rider appears astride the mount along with any equipment it is wearing or carrying.", + "While mounted and not {@condition incapacitated}, the ashen rider can't be {@status surprised}, and both it and its mount have advantage on Dexterity saving throws. If the ashen rider is reduced to 0 hit points while riding its mount, the mount is reduced to 0 hit points as well." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ashen rider makes three attacks with its ashen blade or two attacks with its bolt of ash." + ] + }, + { + "name": "Ashen Blade", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage plus 13 ({@damage 2d12}) radiant damage." + ] + }, + { + "name": "Bolt of Ash", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one creature. {@h}22 ({@damage 4d10}) necrotic damage, and the target can't regain hit points until the start of the ashen rider's next turn." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The ashen rider makes an attack using its ashen blade or bolt of ash." + ] + }, + { + "name": "Coordinated Assault (Costs 2 Actions)", + "entries": [ + "The ashen rider makes an attack using its ashen blade or bolt of ash, and then its mount can use its reaction to make a melee weapon attack." + ] + }, + { + "name": "Reduce to Ash (Costs 3 Actions)", + "entries": [ + "The ashen rider targets a creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Constitution saving throw, or it takes 27 ({@damage 5d10}) necrotic damage and its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. If the target's hit point maximum is reduced to 0, its body and everything it is wearing and carrying, except for magic items, are reduced to ash. A creature reduced to ash can't be revived by any means short of a {@spell wish} spell." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "N", + "R", + "S" + ], + "damageTagsSpell": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "deafened" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blood-Toll Harpy", + "source": "MOT", + "page": 227, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 20, + "fly": 40 + }, + "str": 12, + "dex": 13, + "con": 10, + "int": 6, + "wis": 11, + "cha": 13, + "skill": { + "intimidation": "+3" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1/8", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The harpy has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Dark Devotion", + "entries": [ + "The harpy has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The harpy makes two melee attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Broken King Antigonos", + "source": "MOT", + "page": 189, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "9d10 + 27" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 11, + "con": 16, + "int": 6, + "wis": 16, + "cha": 9, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "languages": [ + "Abyssal" + ], + "cr": "3", + "trait": [ + { + "name": "Charge", + "entries": [ + "If Antigonos moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ] + }, + { + "name": "Labyrinthine Recall", + "entries": [ + "Antigonos can perfectly recall any path he has traveled." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of his turn, Antigonos can gain advantage on all melee weapon attack rolls he makes during that turn, but attack rolls against him have advantage until the start of his next turn." + ] + }, + { + "name": "Decrepit State", + "entries": [ + "Antigonos has disadvantage on his attack rolls." + ] + } + ], + "action": [ + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + }, + { + "name": "Amphora", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one Medium or smaller creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If there is not already a creature inside the amphora, the target is {@condition restrained} inside. As an action, the {@condition restrained} creature can make a {@dc 14} Dexterity ({@skill Acrobatics}) check, escaping from the amphora on a success. The effect also ends if the amphora is destroyed. The amphora has AC 8, 20 hit points, and immunity to poison and psychic damage." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Charge", + "Reckless" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Bronze Sable", + "source": "MOT", + "page": 210, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 13, + "dex": 16, + "con": 15, + "int": 3, + "wis": 14, + "cha": 1, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the sable remains motionless, it is indistinguishable from a normal statue." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The sable has advantage on an attack roll against a creature if at least one of the sable's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Surprise Attack", + "entries": [ + "If the sable surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 ({@damage 3d6}) damage from the attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sable makes two bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "traitTags": [ + "False Appearance", + "Pack Tactics" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Burnished Hart", + "source": "MOT", + "page": 211, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 50 + }, + "str": 17, + "dex": 14, + "con": 16, + "int": 3, + "wis": 15, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the hart moves at least 20 feet straight toward a target and then hits it with an antlers attack on the same turn, the target takes an extra 7 ({@damage 2d6}) fire damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Heated Body", + "entries": [ + "A creature that touches the hart or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The hart has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hart makes two attacks: one with its antlers and one with its hooves." + ] + }, + { + "name": "Antlers", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) fire damage." + ] + } + ], + "traitTags": [ + "Charge" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Colossus of Akros", + "source": "MOT", + "page": 218, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 350, + "formula": "20d20 + 140" + }, + "speed": { + "walk": 60 + }, + "str": 28, + "dex": 10, + "con": 25, + "int": 3, + "wis": 11, + "cha": 1, + "save": { + "str": "+16", + "con": "+14" + }, + "skill": { + "athletics": "+16", + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "immune": [ + "fire", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned", + "unconscious" + ], + "languages": [ + "understands Common and Celestial but can't speak" + ], + "cr": "23", + "trait": [ + { + "name": "Crumbling Destruction", + "entries": [ + "When the colossus drops to 0 hit points, it crumbles and is destroyed. Any creature on the ground within 30 feet of the crumbling statue must make a {@dc 22} Dexterity saving throw, taking 22 ({@damage 4d10}) bludgeoning damage and 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Fire Absorption", + "entries": [ + "Whenever the colossus is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The colossus is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The colossus's weapon attacks are magical." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The colossus deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The colossus of Akros makes two melee attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 16} to hit, reach 15 ft., or range 200/600 ft., one target. {@h}23 ({@damage 4d6 + 9}) piercing damage, or 27 ({@damage 4d8 + 9}) piercing damage if used with two hands to make a melee attack. If the colossus makes a ranged attack with this spear, the spear magically returns to its hand after the attack." + ] + }, + { + "name": "Sword", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}36 ({@damage 6d8 + 9}) slashing damage." + ] + }, + { + "name": "Flames of Akros {@recharge}", + "entries": [ + "Magical flames issue from the colossus toward up to three creatures the colossus can see within 90 feet of it. Each target must make a {@dc 24} Dexterity saving throw, taking 36 ({@damage 8d8}) fire damage on a failed save, or half as much damage on a successful one. On a failed save, a target also magically catches fire for 1 minute. At the end of each of its turns thereafter, the burning target repeats the saving throw. It takes 18 ({@damage 4d8}) fire damage on a failed save, and the effect ends on a successful one." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Weapons", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "CS" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Doomwake Giant", + "source": "MOT", + "page": 224, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 162, + "formula": "13d12 + 78" + }, + "speed": { + "walk": 40 + }, + "str": 24, + "dex": 12, + "con": 22, + "int": 12, + "wis": 14, + "cha": 16, + "save": { + "con": "+10", + "wis": "+6" + }, + "skill": { + "intimidation": "+7", + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "frightened", + "poisoned" + ], + "languages": [ + "Giant" + ], + "cr": "11", + "trait": [ + { + "name": "Aura of Erebos", + "entries": [ + "Any creature that starts its turn within 10 feet of the giant must succeed on a {@dc 18} Constitution saving throw, or it takes 10 ({@damage 3d6}) necrotic damage and can't regain hit points until the start of its next turn. On a successful saving throw, the creature is immune to the giant's Aura of Erebos for 24 hours." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The giant has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage." + ] + }, + { + "name": "Noxious Gust {@recharge 5}", + "entries": [ + "The giant exhales a mighty gust that creates a blast of deadly mist in a 60-foot line that is 10 feet wide. Each creature in that line must make a {@dc 18} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) necrotic damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eater of Hope", + "source": "MOT", + "page": 220, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 19, + "dex": 17, + "con": 14, + "int": 12, + "wis": 11, + "cha": 16, + "save": { + "con": "+5", + "cha": "+6" + }, + "skill": { + "deception": "+6", + "intimidation": "+6", + "persuasion": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "6", + "trait": [ + { + "name": "Insatiable Greed", + "entries": [ + "The eater of hope can sense the presence of gold within 1,000 feet of itself. It can determine which location has the greatest amount of gold and can sense the direction to that site. If the gold is being moved, it knows the direction of the movement. It can't locate gold if any thickness of clay or lead, even a thin sheet, blocks a direct path between it and the gold." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eater of hope has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eater of hope makes two attacks with its claws." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Breath of Hopelessness {@recharge 5}", + "entries": [ + "The eater of hope exhales a miasma of Underworld winds in a 30-foot cone. Each creature in that area must make a {@dc 14} Charisma saving throw. On a failed save, the target takes 26 ({@damage 4d12}) necrotic damage and is cursed for 1 minute. While cursed in this way, the target takes an extra 6 ({@damage 1d12}) necrotic damage whenever the eater of hope hits it with an attack. On a successful save, the target takes half as much damage and isn't cursed." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fleecemane Lion", + "source": "MOT", + "page": 223, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 50 + }, + "str": 19, + "dex": 16, + "con": 14, + "int": 6, + "wis": 14, + "cha": 10, + "save": { + "str": "+6", + "con": "+4" + }, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "passive": 14, + "cr": "3", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The lion has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the lion moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the lion can make one bite attack against it as a bonus action." + ] + }, + { + "name": "Running Leap", + "entries": [ + "With a 10-foot running start, the lion can long jump up to 25 feet." + ] + }, + { + "name": "Spell Turning", + "entries": [ + "The lion has advantage on saving throws against any spell that targets only the lion (not an area). If the lion's saving throw succeeds and the spell is of 4th level or lower, the spell has no effect on the lion and instead targets the caster." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lion makes two attacks: one with its bite and one with its claw." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + } + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Claw", + "entries": [ + "The lion makes one claw attack." + ] + }, + { + "name": "Roar (Costs 2 Actions)", + "entries": [ + "The lion emits a magical roar. Each creature within 60 feet of the lion that can hear the roar must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} of the lion until the end of the lion's next turn." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Pounce" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flitterstep Eidolon", + "source": "MOT", + "page": 222, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 14 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 40 + }, + "str": 8, + "dex": 18, + "con": 13, + "int": 11, + "wis": 12, + "cha": 10, + "skill": { + "perception": "+3", + "stealth": "+8" + }, + "passive": 13, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "trait": [ + { + "name": "Blurred Form", + "entries": [ + "Attack rolls against the eidolon are made with disadvantage unless the eidolon is {@condition incapacitated}." + ] + }, + { + "name": "Evasion", + "entries": [ + "If the eidolon is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the eidolon instead takes no damage if it succeeds on the saving throw, and only half damage if it fails. It can't use this trait if it's {@condition incapacitated}." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The eidolon has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eidolon makes two melee attacks. Immediately before or after one of its attacks, it can use Flitterstep if it is available." + ] + }, + { + "name": "Flickering Dagger", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) psychic damage." + ] + }, + { + "name": "Flitterstep {@recharge 5}", + "entries": [ + "The eidolon magically teleports to an unoccupied space it can see within 30 feet of it. If it makes an attack immediately after teleporting, it has advantage on the attack roll." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Turn Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O", + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ghostblade Eidolon", + "source": "MOT", + "page": 222, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 15, + "con": 12, + "int": 13, + "wis": 12, + "cha": 14, + "skill": { + "acrobatics": "+5", + "athletics": "+6", + "perception": "+4" + }, + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "trait": [ + { + "name": "Blurred Form", + "entries": [ + "Attack rolls against the eidolon are made with disadvantage unless the eidolon is {@condition incapacitated}." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The eidolon has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eidolon makes two ghostblade attacks." + ] + }, + { + "name": "Ghostblade", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 3}) slashing damage plus 11 ({@damage 2d10}) force damage." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Turn Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gold-Forged Sentinel", + "source": "MOT", + "page": 211, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d10 + 32" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 18, + "dex": 13, + "con": 19, + "int": 3, + "wis": 16, + "cha": 10, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the sentinel moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 10 ({@damage 3d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Spell Turning", + "entries": [ + "The sentinel has advantage on saving throws against any spell that targets only the sentinel (not an area). If the sentinel's saving throw succeeds and the spell is of 4th level or lower, the spell has no effect on the sentinel and instead targets the caster." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sentinel makes two ram attacks." + ] + }, + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "The sentinel exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 27 ({@damage 6d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Charge" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hippocamp", + "source": "MOT", + "page": 227, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d10" + }, + "speed": { + "walk": 20, + "swim": 50 + }, + "str": 14, + "dex": 15, + "con": 11, + "int": 5, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold" + ], + "cr": "1/2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The hippocamp can breathe air and water." + ] + }, + { + "name": "Charge", + "entries": [ + "If the hippocamp moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Amphibious", + "Charge" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hundred-Handed One", + "source": "MOT", + "page": 225, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 243, + "formula": "18d12 + 126" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 15, + "con": 25, + "int": 14, + "wis": 16, + "cha": 16, + "save": { + "con": "+12", + "wis": "+8" + }, + "skill": { + "intimidation": "+8", + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Giant" + ], + "cr": "15", + "trait": [ + { + "name": "Reactive", + "entries": [ + "The giant can take one reaction on every turn in a combat." + ] + }, + { + "name": "Vigilant", + "entries": [ + "The giant can't be {@status surprised}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes four longsword attacks or two rock attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Deflect Attack", + "entries": [ + "The giant adds 5 to its AC against one weapon attack that would hit it. To do so, the giant must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hythonia", + "isNamedCreature": true, + "source": "MOT", + "page": 252, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 199, + "formula": "21d10 + 84" + }, + "speed": { + "walk": 40, + "climb": 40, + "swim": 40 + }, + "str": 21, + "dex": 17, + "con": 19, + "int": 14, + "wis": 16, + "cha": 18, + "save": { + "str": "+11", + "con": "+10", + "cha": "+10" + }, + "skill": { + "deception": "+10", + "insight": "+9", + "perception": "+9", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Hythonia's spellcasting ability is Charisma (spell save {@dc 18}). She can innately cast {@spell animate objects} once per day requiring no material components." + ], + "daily": { + "1": [ + "{@spell animate objects}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Hythonia fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Petrifying Gaze", + "entries": [ + "When a creature that can see Hythonia's eyes starts its turn within 30 feet of her, Hythonia can force it to make a {@dc 18} Constitution saving throw if she isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, on a failed save the creature begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the {@spell greater restoration} spell or other magic. Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see Hythonia until the start of its next turn, when it can avert its eyes again. If the creature looks at Hythonia in the meantime, it must immediately make the save. If Hythonia sees herself reflected on a polished surface within 30 feet of her and in an area of bright light, she is affected by her own gaze." + ] + }, + { + "name": "Shed Skin (Mythic Trait; Recharges after a Short or Long Rest)", + "entries": [ + "If Hythonia is reduced to 0 hit points, she doesn't die or fall {@condition unconscious}. Instead, she sheds her skin, regains 199 hit points, and moves up to her speed without provoking opportunity attacks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hythonia makes three attacks: one with her claws, one to constrict, and one with her snaky hair." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage plus 4 ({@damage 1d8}) poison damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained} and takes 15 ({@damage 3d6 + 5}) bludgeoning damage at the start of each of its turns, and Hythonia can't constrict another target." + ] + }, + { + "name": "Snaky Hair", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}31 ({@damage 4d12 + 5}) bludgeoning damage, and Hythonia can pull the target up to 5 feet closer to her if it is a Large or smaller creature." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "Hythonia moves up to her speed without provoking opportunity attacks." + ] + }, + { + "name": "Snaky Hair", + "entries": [ + "Hythonia makes one attack with her snaky hair." + ] + }, + { + "name": "Petrified Earth (Costs 2 Actions)", + "entries": [ + "Hythonia causes stone spikes to erupt from the ground in a 30-foot radius centered on her. The area becomes {@quickref difficult terrain||3} until the start of her next turn. Any creature, other than Hythonia, takes 9 ({@damage 2d8}) piercing damage for every 5 feet it moves on those spikes." + ] + } + ], + "mythicHeader": [ + "If Hythonia's mythic trait is active, she can use the options below as legendary actions for 1 hour after using Shed Skin." + ], + "mythic": [ + { + "name": "Numbing Claws", + "entries": [ + "Hythonia makes two attacks with her claws. If both attacks hit the same creature, it takes an extra 7 ({@damage 2d6}) poison damage and must succeed on a {@dc 18} Constitution saving throw or become {@condition paralyzed} until the start of her next turn." + ] + }, + { + "name": "Look at Me (Costs 3 Actions)", + "entries": [ + "Hythonia can force a sighted creature she has {@condition grappled} to see her eyes and be affected by her gaze." + ] + } + ], + "legendaryGroup": { + "name": "Hythonia", + "source": "MOT" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "I", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "P" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "petrified", + "restrained" + ], + "conditionInflictLegendary": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ironscale Hydra", + "source": "MOT", + "page": 231, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 181, + "formula": "11d20 + 66" + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "str": 22, + "dex": 10, + "con": 22, + "int": 2, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "immune": [ + "acid" + ], + "cr": "12", + "trait": [ + { + "name": "Acidic Blood", + "entries": [ + "When the hydra takes piercing or slashing damage, each creature within 5 feet of the hydra takes 9 ({@damage 2d8}) acid damage." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The hydra can hold its breath for 1 hour." + ] + }, + { + "name": "Multiple Heads", + "entries": [ + "The hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}. Whenever the hydra takes 35 or more damage in a single turn, one of its heads dies. If all its heads die, the hydra dies. At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The hydra regains 10 hit points for each head regrown in this way." + ] + }, + { + "name": "Reactive Heads", + "entries": [ + "For each head the hydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks." + ] + }, + { + "name": "Wakeful", + "entries": [ + "While the hydra sleeps, at least one of its heads is awake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hydra makes as many bite attacks as it has heads." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ] + } + ], + "traitTags": [ + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lampad", + "group": [ + "Nymph" + ], + "source": "MOT", + "page": 235, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 13, + "con": 14, + "int": 11, + "wis": 12, + "cha": 18, + "skill": { + "deception": "+6", + "intimidation": "+6" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The lampad's spellcasting ability is Charisma ({@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell gentle repose}" + ], + "ability": "cha" + } + ], + "trait": [ + { + "name": "Corpse Stride", + "entries": [ + "Once on its turn, the lampad can use 10 feet of its movement to step magically into one creature's corpse within its reach and emerge from a second creature's corpse within 60 feet of the first corpse, appearing in an unoccupied space within 5 feet of the second corpse. Both corpses must be Medium or bigger." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The lampad has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lampad attacks twice with its necrotic touch or chill touch." + ] + }, + { + "name": "Necrotic Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) necrotic damage." + ] + }, + { + "name": "Chill Touch (Cantrip)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}9 ({@damage 2d8}) necrotic damage, and the target can't regain hit points until the start of the lampad's next turn. If the target is undead, it has disadvantage on attack rolls against the lampad until the end of the lampad's next turn." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Leonin Iconoclast", + "source": "MOT", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "leonin" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 18, + "con": 16, + "int": 13, + "wis": 17, + "cha": 10, + "save": { + "dex": "+7", + "wis": "+6" + }, + "skill": { + "arcana": "+4", + "insight": "+6", + "intimidation": "+3", + "stealth": "+7", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Leonin" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The leonin's spellcasting ability is Wisdom (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell banishment}", + "{@spell detect evil and good}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Evasion", + "entries": [ + "If the leonin is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails. It can't use this trait if it's {@condition incapacitated}." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "While the leonin is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The leonin makes three weapon attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 7 ({@damage 2d6}) force damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dart|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Medusa", + "source": "MOT", + "page": 206, + "_copy": { + "name": "Medusa", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The medusa makes either three melee attacks\u2014one with its snake hair, one to constrict, and one with its shortsword\u2014or two ranged attacks with its longbow." + ] + } + }, + { + "mode": "appendArr", + "items": { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 10 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the target is {@condition restrained}, and the medusa can't constrict another target." + ] + } + } + ] + } + }, + "damageTags": [ + "B", + "I", + "P" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Meletian Hoplite", + "source": "MOT", + "page": 229, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item breastplate|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 12, + "int": 16, + "wis": 13, + "cha": 11, + "save": { + "dex": "+4", + "int": "+5" + }, + "skill": { + "arcana": "+5", + "history": "+5", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hoplite is a 3rd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell ray of frost} (see \"Actions\" below)" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell color spray}", + "{@spell expeditious retreat}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell blur}", + "{@spell cloud of daggers}", + "{@spell invisibility}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hoplite makes three weapon attacks. It can replace one weapon attack with ray of frost." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Shield Bash", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Ray of Frost (Cantrip)", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}4 ({@damage 1d8}) cold damage, and the target's speed is reduced by 10 feet until the start of the hoplite's next turn." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "C", + "P" + ], + "damageTagsSpell": [ + "C", + "S" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "blinded", + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Naiad", + "group": [ + "Nymph" + ], + "source": "MOT", + "page": 236, + "otherSources": [ + { + "source": "CM" + } + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 10, + "dex": 16, + "con": 11, + "int": 15, + "wis": 10, + "cha": 18, + "skill": { + "persuasion": "+6", + "sleight of hand": "+5" + }, + "passive": 10, + "resist": [ + "psychic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The naiad's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell minor illusion}" + ], + "daily": { + "3": [ + "{@spell phantasmal force}" + ], + "1e": [ + "{@spell fly}", + "{@spell hypnotic pattern}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The naiad can breathe air and water." + ] + }, + { + "name": "Invisible in Water", + "entries": [ + "The naiad is {@condition invisible} while fully immersed in water." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The naiad has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The naiad makes two psychic touch attacks." + ] + }, + { + "name": "Psychic Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) psychic damage." + ] + } + ], + "traitTags": [ + "Amphibious", + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nightmare Shepherd", + "source": "MOT", + "page": 221, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 19, + "dex": 15, + "con": 18, + "int": 14, + "wis": 17, + "cha": 20, + "save": { + "con": "+8", + "wis": "+7" + }, + "skill": { + "arcana": "+6", + "deception": "+9", + "perception": "+7", + "persuasion": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The shepherd's spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell dispel magic}", + "{@spell hold person}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Aura of Nightmares", + "entries": [ + "Undead creatures within 30 feet of the shepherd gain a +5 bonus to attack and damage rolls. When any other creature that isn't undead or a construct starts its turn within 30 feet of the shepherd, that creature must succeed on a {@dc 17} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The shepherd has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shepherd makes two attacks: one with its claws and one with its staff." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage plus 16 ({@damage 3d10}) necrotic damage." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, or 13 ({@damage 2d8 + 4}) bludgeoning damage if used with two hands, plus 26 ({@damage 4d12}) psychic damage." + ] + }, + { + "name": "Herd the Underworld (Recharges after a Short or Long Rest)", + "entries": [ + "The shepherd pulls twisted souls from the Underworld; {@dice 1d6} {@creature shadow||shadows} (without Sunlight Weakness) arise in unoccupied spaces within 20 feet of the shepherd. The shadows act right after the shepherd on the same initiative count and fight until they're destroyed. They disappear when the shepherd dies." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "B", + "N", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nyx-Fleece Ram", + "source": "MOT", + "page": 233, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 14, + "con": 12, + "int": 3, + "wis": 13, + "cha": 10, + "passive": 11, + "cr": "1", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the ram moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 5 ({@damage 2d4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The ram has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The ram has advantage on Strength and Dexterity saving throws against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) force damage." + ] + } + ], + "traitTags": [ + "Charge", + "Magic Resistance" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oracle", + "source": "MOT", + "page": 238, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "Blessings Of The Gods" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 13, + "wis": 16, + "cha": 15, + "save": { + "wis": "+5", + "cha": "+4" + }, + "skill": { + "insight": "+5", + "persuasion": "+4", + "religion": "+5" + }, + "passive": 13, + "languages": [ + "Celestial", + "Common" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The oracle's spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell guidance}", + "{@spell light}", + "{@spell thaumaturgy}" + ], + "daily": { + "3e": [ + "{@spell bless}", + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell hold person}" + ], + "1e": [ + "{@spell augury}", + "{@spell scrying}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Blessings of the Gods", + "entries": [ + "While the oracle is wearing no armor and wielding no shield, its AC includes its Wisdom modifier. In addition, a creature that hits the oracle with a melee attack while within 5 feet of it takes 9 ({@damage 2d8}) force damage." + ] + } + ], + "action": [ + { + "name": "Eldritch Touch", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Divine Insight (3/Day)", + "entries": [ + "When the oracle or a creature it can see makes an attack roll, a saving throw, or an ability check, the oracle can cause the roll to be made with advantage or disadvantage." + ] + } + ], + "languageTags": [ + "C", + "CE" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oread", + "group": [ + "Nymph" + ], + "source": "MOT", + "page": 237, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 12, + "int": 11, + "wis": 13, + "cha": 18, + "skill": { + "acrobatics": "+4", + "athletics": "+4", + "performance": "+6" + }, + "passive": 11, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The oread's spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell fire bolt} (see \"Actions\" below)" + ], + "daily": { + "3": [ + "{@spell burning hands}" + ], + "1e": [ + "{@spell hellish rebuke} (see \"Reactions\" below)", + "{@spell scorching ray}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Invisible in Fire", + "entries": [ + "The oread is {@condition invisible} while fully immersed in fire." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The oread has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oread attacks twice with its fiery touch or fire bolt." + ] + }, + { + "name": "Fiery Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) fire damage." + ] + }, + { + "name": "Fire Bolt (Cantrip)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}5 ({@damage 1d10}) fire damage." + ] + } + ], + "reaction": [ + { + "name": "Hellish Rebuke (2nd-Level Spell; 1/Day)", + "entries": [ + "When the oread is damaged by a creature within 60 feet of the oread that it can see, the creature that damaged the oread must make a {@dc 14} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "F" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Phylaskia", + "source": "MOT", + "page": 239, + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 15, + "con": 18, + "int": 10, + "wis": 16, + "cha": 14, + "save": { + "con": "+8", + "wis": "+7" + }, + "skill": { + "insight": "+7", + "perception": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all" + ], + "cr": "9", + "trait": [ + { + "name": "Gatekeeper's Aura", + "entries": [ + "Any creature that starts its turn within 10 feet of the phylaskia must make a {@dc 15} Wisdom saving throw. On a successful save, the creature is immune to this aura for the next 24 hours. On a failed save, the creature has disadvantage on saving throws and its speed is halved until the start of its next turn." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the phylaskia to 0 hit points, it must make a Constitution saving throw with a DC equal to 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the phylaskia drops to 1 hit point instead." + ] + }, + { + "name": "Vigilant", + "entries": [ + "The phylaskia can't be {@status surprised}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The phylaskia makes two longsword attacks and uses its Strength Drain once." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage, or 16 ({@damage 2d10 + 5}) slashing damage if used with two hands, plus 11 ({@damage 2d10}) necrotic damage." + ] + }, + { + "name": "Strength Drain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d6 + 5}) necrotic damage. Unless the target is immune to necrotic damage, its Strength score is reduced by {@dice 1d4}. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Polukranos", + "isNamedCreature": true, + "source": "MOT", + "page": 231, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 232, + "formula": "15d20 + 75" + }, + "speed": { + "walk": 50, + "swim": 50 + }, + "str": 25, + "dex": 15, + "con": 21, + "int": 4, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+14" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 24, + "immune": [ + "acid" + ], + "cr": "19", + "trait": [ + { + "name": "Acidic Blood", + "entries": [ + "When Polukranos takes piercing or slashing damage, each creature within 5 feet of Polukranos takes 10 ({@damage 3d6}) acid damage." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "Polukranos can hold its breath for 1 hour." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Polukranos fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Multiple Heads", + "entries": [ + "Polukranos has five heads. While it has more than one head, Polukranos has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}. Whenever Polukranos takes 40 or more damage in a single turn, one of its heads dies. If all its heads die, Polukranos dies. At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken 40 or more fire damage since its last turn. Polukranos regains 20 hit points for each head regrown in this way." + ] + }, + { + "name": "Reactive Heads", + "entries": [ + "For each head Polukranos has beyond one, it gets an extra reaction that can be used only to make opportunity attacks." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "Polukranos deals double damage to objects and structures." + ] + }, + { + "name": "Wakeful", + "entries": [ + "While Polukranos sleeps, at least one of its heads is awake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Polukranos makes as many bite attacks as it has heads." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pushed up to 20 feet away from Polukranos." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "Polukranos makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Swipe", + "entries": [ + "Polukranos makes a tail attack." + ] + }, + { + "name": "Trampling Charge (Costs 3 Actions)", + "entries": [ + "Polukranos moves up to 50 feet in a straight line and can move through the space of any creature Huge or smaller. The first time it enters each creature's space during this move, it can make a stomp attack against that creature." + ] + } + ], + "traitTags": [ + "Hold Breath", + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Returned Drifter", + "source": "MOT", + "page": 240, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 15, + "con": 12, + "int": 10, + "wis": 12, + "cha": 11, + "passive": 11, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "1/4", + "trait": [ + { + "name": "Turn Resistance", + "entries": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Unreadable Face", + "entries": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ] + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage plus 3 ({@damage 1d6}) poison damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb", + "sling|phb" + ], + "traitTags": [ + "Turn Resistance" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "I", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Returned Kakomantis", + "source": "MOT", + "page": 240, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 17, + "con": 14, + "int": 13, + "wis": 12, + "cha": 15, + "skill": { + "acrobatics": "+5", + "athletics": "+2", + "stealth": "+5" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "4", + "trait": [ + { + "name": "Fleeting Anger", + "entries": [ + "If another creature deals damage to the Returned, the Returned makes attack rolls with advantage until the end of its next turn." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Unreadable Face", + "entries": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Underworld Bolt", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one creature. {@h}13 ({@damage 2d8 + 2}) necrotic damage, and the target can't regain hit points until the start of the Returned's next turn. If the target is missing any of its hit points, it instead takes 17 ({@damage 2d12 + 2}) necrotic damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Turn Resistance" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "I", + "N", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Returned Palamnite", + "source": "MOT", + "page": 241, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 17, + "con": 14, + "int": 13, + "wis": 12, + "cha": 15, + "skill": { + "acrobatics": "+5", + "athletics": "+2", + "stealth": "+5" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "4", + "trait": [ + { + "name": "Fleeting Anger", + "entries": [ + "If another creature deals damage to the Returned, the Returned makes attack rolls with advantage until the end of its next turn." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Unreadable Face", + "entries": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Returned makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Turn Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Returned Sentry", + "source": "MOT", + "page": 241, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 15, + "con": 12, + "int": 10, + "wis": 12, + "cha": 11, + "passive": 11, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "1", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The Returned has advantage on an attack roll against a creature if at least one of the Returned's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Unreadable Face", + "entries": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack, plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "sling|phb", + "spear|phb" + ], + "traitTags": [ + "Pack Tactics", + "Turn Resistance" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Satyr Reveler", + "source": "MOT", + "page": 242, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 16, + "con": 13, + "int": 12, + "wis": 10, + "cha": 16, + "skill": { + "acrobatics": "+5", + "performance": "+7", + "stealth": "+5" + }, + "passive": 10, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1", + "trait": [ + { + "name": "Enthralling Performance", + "entries": [ + "If the satyr performs for at least 1 minute, it chooses up to four humanoids within 60 feet of it who watched or listened to the entire performance. Each target must succeed on a {@dc 13} Wisdom saving throw or be {@condition charmed}. While {@condition charmed} in this way, the target idolizes the satyr and will take part in the satyr's revels. The {@condition charmed} condition ends for the creature after 1 hour, if it takes any damage, if the satyr attacks the target, or if the target witnesses the satyr attacking or damaging any of the target's allies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The satyr has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sleepless Reveler", + "entries": [ + "Magic can't put the satyr to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The satyr makes two ram attacks or two shortbow attacks." + ] + }, + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortbow|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Satyr Thornbearer", + "source": "MOT", + "page": 243, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 18, + "con": 12, + "int": 11, + "wis": 13, + "cha": 14, + "skill": { + "perception": "+5", + "performance": "+6", + "stealth": "+6" + }, + "passive": 15, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "2", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The satyr has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sleepless Reveler", + "entries": [ + "Magic can't put the satyr to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The satyr makes three ram attacks or three shortbow attacks." + ] + }, + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Hail of Arrows (Recharges after a Short or Long Rest)", + "entries": [ + "The satyr fires an arrow that magically transforms into a flurry of missiles in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 17 ({@damage 5d6}) piercing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "shortbow|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Setessan Hoplite", + "source": "MOT", + "page": 229, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item leather armor|PHB|leather}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 14, + "int": 13, + "wis": 16, + "cha": 11, + "save": { + "dex": "+5", + "wis": "+5" + }, + "skill": { + "acrobatics": "+5", + "perception": "+5", + "survival": "+5" + }, + "passive": 15, + "languages": [ + "Common" + ], + "cr": "4", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The hoplite has advantage on an attack roll against a creature if at least one of the hoplite's allies is within 5 feet of the hoplite and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hoplite makes two scimitar attacks or two longbow attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Theran Chimera", + "source": "MOT", + "page": 216, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 18, + "dex": 13, + "con": 19, + "int": 3, + "wis": 14, + "cha": 10, + "save": { + "con": "+7", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "7", + "trait": [ + { + "name": "Spell Turning", + "entries": [ + "The chimera has advantage on a saving throw against any spell that targets only the chimera (not an area). If the chimera's saving throw is successful and the spell is of 4th level or lower, the spell has no effect on the chimera and instead targets the caster." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chimera makes three attacks: one with its claws, one with its head, and one with its tail. When its breath weapon is available, it can use the breath in place of its head or its claws." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Head", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The chimera exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 32 ({@damage 5d12}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Triton Master of Waves", + "source": "MOT", + "page": 245, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "triton" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 10, + "wis": 12, + "cha": 19, + "save": { + "dex": "+3", + "int": "+3", + "cha": "+7" + }, + "skill": { + "athletics": "+6", + "nature": "+6", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire" + ], + "languages": [ + "Common", + "Primordial" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The triton's spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell ray of frost} (see \"Actions\" below)" + ], + "daily": { + "2": [ + "{@spell cone of cold}" + ], + "1e": [ + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell wind wall}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The triton can breathe air and water." + ] + }, + { + "name": "Summon Water Weird (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the triton magically summons {@dice 1d4} {@creature water weird||water weirds}. The summoned weirds appear in unoccupied spaces in water within 60 feet of the triton. The water weirds act immediately after the triton on the same initiative count and fight until they're destroyed. They disappear if the triton dies." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The triton makes two attacks using Wave Touch and casts {@spell ray of frost}." + ] + }, + { + "name": "Wave Touch", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d10}) cold damage." + ] + }, + { + "name": "Ray of Frost (Cantrip)", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 60 ft., one creature. {@h}13 ({@damage 3d8}) cold damage, and the target's speed is reduced by 10 feet until the start of the triton's next turn." + ] + } + ], + "reaction": [ + { + "name": "Frigid Shield", + "entries": [ + "When a creature the triton can see targets the triton with an attack, the triton gains 10 temporary hit points. If the attack hits and reduces the temporary hit points to 0, each creature within 5 feet of the triton takes 9 ({@damage 2d8}) cold damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "P" + ], + "damageTags": [ + "C" + ], + "damageTagsSpell": [ + "B", + "C" + ], + "spellcastingTags": [ + "I" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Triton Shorestalker", + "source": "MOT", + "page": 244, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "triton" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 11, + "dex": 16, + "con": 14, + "int": 10, + "wis": 15, + "cha": 11, + "skill": { + "nature": "+4", + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold" + ], + "languages": [ + "Common", + "Primordial" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The triton's spellcasting ability is Wisdom (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell fog cloud}", + "{@spell gust of wind}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The triton can breathe air and water." + ] + }, + { + "name": "Nimble Escape", + "entries": [ + "The triton can take the Disengage or Hide actions as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The triton makes two urchin-spine shortsword attacks." + ] + }, + { + "name": "Urchin-Spine Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage. If the damage reduces a creature to 0 hit points, that creature is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + }, + { + "name": "Poisoned Spine", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "P" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tromokratis", + "isNamedCreature": true, + "source": "MOT", + "page": 254, + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "titan" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 409, + "formula": "21d20 + 189" + }, + "speed": { + "walk": 30, + "swim": 80 + }, + "str": 30, + "dex": 11, + "con": 29, + "int": 22, + "wis": 11, + "cha": 10, + "save": { + "int": "+14", + "wis": "+8" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "lightning", + "thunder" + ], + "immune": [ + "fire", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "restrained" + ], + "cr": "26", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Tromokratis can breathe air and water." + ] + }, + { + "name": "Hearts of the Kraken (Mythic Trait; Recharges after a Short or Long Rest)", + "entries": [ + "When Tromokratis is reduced to 0 hit points, it doesn't die or fall {@condition unconscious}. Instead, the damage creates cracks in its carapace, revealing its hearts. Tromokratis has four hearts: two on its chest, one on its back, and one at the base of its tail. A heart has an AC of 22 and 100 hit points. It is immune to bludgeoning, piercing, and slashing damage from nonmagical attacks, and it is immune to all conditions. If it is forced to make a saving throw, treat its ability scores as 10 (+0). If it finishes a short or long rest, the carapace heals, any destroyed hearts regenerate, and the hearts are covered again. Tromokratis dies when all the hearts are destroyed." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Tromokratis fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Tromokratis's weapon attacks are magical." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "Tromokratis deals double damage to objects and structures." + ] + }, + { + "name": "Spell-Resistant Carapace", + "entries": [ + "Tromokratis has advantage on saving throws against spells, and any creature that makes a spell attack against Tromokratis has disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tromokratis makes three attacks: one with its pincer, one with its tail, and one with its tentacle grasp." + ] + }, + { + "name": "Pincer", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 26}). Until the grapple ends, the target is {@condition restrained}, and Tromokratis can't use this attack on anyone else." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}23 ({@damage 3d8 + 10}) bludgeoning damage, and if the target is a creature, it is knocked {@condition prone}." + ] + }, + { + "name": "Tentacle Grasp", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one creature. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 26}). If the target doesn't escape by the end of its next turn, Tromokratis throws the target up to 60 feet in a straight line. The target lands {@condition prone} and takes 21 ({@damage 6d6}) bludgeoning damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 5 ft., one target. {@h}29 ({@damage 3d12 + 10}) piercing damage. If the target is a Large or smaller creature {@condition grappled} by Tromokratis, that creature is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside Tromokratis, and it takes 42 ({@damage 12d6}) acid damage at the start of each of Tromokratis's turns. If Tromokratis takes 50 damage or more on a single turn from a creature inside it, Tromokratis must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of Tromokratis. If Tromokratis dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "Tromokratis moves up to half its speed." + ] + }, + { + "name": "Tail", + "entries": [ + "Tromokratis makes one tail attack." + ] + }, + { + "name": "Bite (Costs 3 Actions)", + "entries": [ + "Tromokratis makes one bite attack." + ] + } + ], + "mythicHeader": [ + "If Tromokratis's mythic trait is active, it can use the options below as legendary actions for 1 hour after using Hearts of the Kraken." + ], + "mythic": [ + { + "name": "Rampage", + "entries": [ + "Tromokratis makes two attacks: one with its tail and one with its tentacle grasp." + ] + }, + { + "name": "Coral Growth (Costs 2 Actions)", + "entries": [ + "Each creature within 10 feet of Tromokratis must make a {@dc 25} Dexterity saving throw, taking 13 ({@damage 3d8}) slashing damage on a failed save, or half as much damage on a successful one. Until the start of its next turn, Tromokratis and its hearts gain a +2 bonus to AC." + ] + } + ], + "legendaryGroup": { + "name": "Tromokratis", + "source": "MOT" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Magic Weapons", + "Siege Monster" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Two-Headed Cerberus", + "source": "MOT", + "page": 215, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 14, + "con": 14, + "int": 3, + "wis": 13, + "cha": 6, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "fire", + "necrotic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "stunned" + ], + "cr": "2", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the cerberus can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Multiheaded", + "entries": [ + "The cerberus can't be {@status surprised}, and it has advantage on saving throws against being knocked {@condition unconscious}." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The cerberus has advantage on an attack roll against a creature if at least one of the cerberus's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cerberus makes two bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 2 ({@damage 1d4}) fire damage." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The cerberus exhales a 15-foot cone of molten rock. Each creature in the cone must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one. On a failed save, a creature is also {@condition restrained} by the hardening rock. A creature can make a {@dc 12} Strength ({@skill Athletics}) check as an action, freeing itself or a creature within reach from the rock on a success. The rock has AC 17 and 10 hit points, and it is immune to fire, poison, and psychic damage." + ] + } + ], + "traitTags": [ + "Aggressive", + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Typhon", + "source": "MOT", + "page": 246, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "speed": { + "walk": 40 + }, + "str": 24, + "dex": 10, + "con": 20, + "int": 7, + "wis": 12, + "cha": 13, + "save": { + "con": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "acid", + "necrotic" + ], + "languages": [ + "Common" + ], + "cr": "15", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The typhon has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The typhon regains 20 hit points at the start of its turn. If it takes radiant damage, this trait doesn't function at the start of its next turn. The typhon dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The typhon makes three attacks: one with its Flurry of Bites, one to constrict, and one with its maw." + ] + }, + { + "name": "Flurry of Bites", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}35 ({@damage 8d6 + 7}) piercing damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one Large or smaller creature. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained} and takes 17 ({@damage 3d6 + 7}) bludgeoning damage at the start of each of its turns. The typhon can have up to two creatures constricted." + ] + }, + { + "name": "Maw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) piercing damage plus 19 ({@damage 3d12}) acid damage." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Underworld Cerberus", + "source": "MOT", + "page": 215, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44" + }, + "speed": { + "walk": 60 + }, + "str": 19, + "dex": 12, + "con": 18, + "int": 10, + "wis": 16, + "cha": 9, + "skill": { + "athletics": "+7", + "perception": "+9", + "stealth": "+4" + }, + "senses": [ + "truesight 30 ft." + ], + "passive": 19, + "immune": [ + "fire", + "necrotic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "stunned" + ], + "languages": [ + "understands all languages but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the cerberus can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Multiheaded", + "entries": [ + "The cerberus can't be {@status surprised}, and it has advantage on saving throws against being knocked {@condition unconscious}." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The cerberus has advantage on an attack roll against a creature if at least one of the cerberus's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cerberus makes three bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "The cerberus exhales a 30-foot cone of molten rock. Each creature in the cone must make a {@dc 15} Dexterity saving throw, taking 21 ({@damage 6d6}) fire damage on a failed save, or half as much damage on a successful one. On a failed save, a creature is also {@condition restrained} by the hardening rock. A creature can make a {@dc 15} Strength ({@skill Athletics}) check as an action, freeing itself or a creature within reach from the rock on a success. The rock has AC 17 and 20 hit points, and it is immune to fire, poison, and psychic damage." + ] + } + ], + "traitTags": [ + "Aggressive", + "Pack Tactics" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Winged Bull", + "source": "MOT", + "page": 214, + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 60, + "fly": 60 + }, + "str": 20, + "dex": 14, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "passive": 10, + "languages": [ + "understands Celestial but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the bull moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, the target takes an extra 19 ({@damage 3d12}) piercing damage." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) piercing damage." + ] + } + ], + "traitTags": [ + "Charge" + ], + "languageTags": [ + "CE", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Winged Lion", + "source": "MOT", + "page": 214, + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 60, + "fly": 60 + }, + "str": 20, + "dex": 16, + "con": 18, + "int": 6, + "wis": 14, + "cha": 5, + "passive": 12, + "languages": [ + "understands Celestial but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Pounce", + "entries": [ + "If the lion moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the lion can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ] + } + ], + "traitTags": [ + "Pounce" + ], + "languageTags": [ + "CE", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Woe Strider", + "source": "MOT", + "page": 247, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 8, + "wis": 14, + "cha": 14, + "skill": { + "intimidation": "+5", + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Antimagic Cone", + "entries": [ + "The woe strider's open mouth creates an area of antimagic, as in the {@spell antimagic field} spell, in a 60-foot cone. At the start of each of its turns, the woe strider decides which way the cone faces and whether its mouth is open or closed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The woe strider makes two claw attacks and one bite attack. If both claws hit the same creature, the target is {@condition grappled} (escape {@dc 14})." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 3 ({@damage 1d6}) psychic damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature that is {@condition grappled}, {@condition incapacitated}, or {@condition restrained}. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 16 ({@damage 3d10}) psychic damage. In addition, each magic item the creature is carrying that isn't an artifact has its magical properties suppressed for 1 minute." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Abyssal Wretch", + "source": "MTF", + "page": 136, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 20 + }, + "str": 9, + "dex": 12, + "con": 11, + "int": 5, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 120 ft." + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/abyssal-wretch.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Adult Kruthik", + "source": "MTF", + "page": 212, + "reprintedAs": [ + "Adult Kruthik|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 40, + "burrow": 20, + "climb": 40 + }, + "str": 15, + "dex": 16, + "con": 15, + "int": 7, + "wis": 12, + "cha": 8, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 11, + "languages": [ + "Kruthik" + ], + "cr": "2", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The kruthik has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kruthik makes two stab attacks or two spike attacks." + ] + }, + { + "name": "Stab", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Spike", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "environment": [ + "desert", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/adult-kruthik.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics", + "Tunneler" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Adult Oblex", + "source": "MTF", + "page": 218, + "otherSources": [ + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Adult Oblex|MPMM" + ], + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "L", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 20 + }, + "str": 8, + "dex": 19, + "con": 16, + "int": 19, + "wis": 12, + "cha": 15, + "save": { + "int": "+7", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "perception": "+4", + "other": [ + { + "oneOf": { + "arcana": "+7", + "history": "+7", + "nature": "+7", + "religion": "+7" + } + } + ] + }, + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "passive": 14, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "prone" + ], + "languages": [ + "Common plus two more languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The oblex's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "daily": { + "3e": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell color spray}", + "{@spell detect thoughts}", + "{@spell hold person} (as 3rd-level spell)" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Aversion to Fire", + "entries": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Sulfurous Impersonation", + "entries": [ + "As a bonus action, the oblex can extrude a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 1d4 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. For all practical purposes, the simulacrum is the oblex, meaning that the oblex occupies its space and the simulacrum's space simultaneously. The slimy tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex's main body and the simulacrum. The simulacrum disappears if the tether is severed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oblex makes one pseudopod attack and uses Eat Memories." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 5 ({@damage 2d4}) psychic damage." + ] + }, + { + "name": "Eat Memories", + "entries": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 15} Wisdom saving throw or take 18 ({@damage 4d8}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, oozes, plants, and undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from any ability check or attack roll it makes. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "When an oblex causes a target to become memory drained, the oblex learns all the languages the target knows and gains all its proficiencies, except for any saving throw proficiencies." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oblex-adult.mp3" + }, + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "paralyzed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Air Elemental Myrmidon", + "source": "MTF", + "page": 202, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "PotA", + "page": 212 + } + ], + "reprintedAs": [ + "Air Elemental Myrmidon|MPMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 9, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Auran", + "one language of its creator's choice" + ], + "cr": "7", + "trait": [ + { + "name": "Magic Weapons", + "entries": [ + "The myrmidon's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes three flail attacks." + ] + }, + { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Lightning Strike {@recharge}", + "entries": [ + "The myrmidon makes one flail attack. On a hit, the target takes an extra 18 ({@damage 4d8}) lightning damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the myrmidon's next turn." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/air-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "flail|phb" + ], + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU" + ], + "damageTags": [ + "B", + "L" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Alkilith", + "source": "MTF", + "page": 130, + "otherSources": [ + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "reprintedAs": [ + "Alkilith|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d8 + 90" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 19, + "con": 22, + "int": 6, + "wis": 11, + "cha": 7, + "save": { + "dex": "+8", + "con": "+10" + }, + "skill": { + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "11", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The alkilith can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the alkilith is motionless, it is indistinguishable from an ordinary slime or fungus." + ] + }, + { + "name": "Foment Madness", + "entries": [ + "Any creature that isn't a demon that starts its turn within 30 feet of the alkilith must succeed on a {@dc 18} Wisdom saving throw, or it hears a faint buzzing in its head for a moment and has disadvantage on its next attack roll, saving throw, or ability check.", + "If the saving throw against Foment Madness fails by 5 or more, the creature is instead subjected to the {@spell confusion} spell for 1 minute (no {@status concentration} required by the alkilith). While under the effect of that confusion, the creature is immune to Foment Madness." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The alkilith has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The alkilith makes three tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}18 ({@damage 4d6 + 4}) acid damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/alkilith.mp3" + }, + "traitTags": [ + "Amorphous", + "False Appearance", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "A" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Allip", + "source": "MTF", + "page": 116, + "otherSources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "reprintedAs": [ + "Allip|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 6, + "dex": 17, + "con": 10, + "int": 17, + "wis": 15, + "cha": 16, + "save": { + "int": "+6", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The allip can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Maddening Touch", + "entries": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) psychic damage." + ] + }, + { + "name": "Whispers of Madness", + "entries": [ + "The allip chooses up to three creatures it can see within 60 feet of it. Each target must succeed on a {@dc 14} Wisdom saving throw, or it takes 7 ({@damage 1d8 + 3}) psychic damage and must use its reaction to make a melee weapon attack against one creature of the allip's choice that the allip can see. Constructs and undead are immune to this effect." + ] + }, + { + "name": "Howling Babble {@recharge}", + "entries": [ + "Each creature within 30 feet of the allip that can hear it must make a {@dc 14} Wisdom saving throw. On a failed save, a target takes 12 ({@damage 2d8 + 3}) psychic damage, and it is {@condition stunned} until the end of its next turn. On a successful save, it takes half as much damage and isn't {@condition stunned}. Constructs and undead are immune to this effect." + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/allip.mp3" + }, + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O", + "Y" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Amnizu", + "source": "MTF", + "page": 164, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Amnizu|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 11, + "dex": 13, + "con": 16, + "int": 20, + "wis": 12, + "cha": 18, + "save": { + "dex": "+7", + "con": "+9", + "wis": "+7", + "cha": "+10" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "telepathy 1,000 ft." + ], + "cr": "18", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The amnizu's innate spellcasting ability is Intelligence (spell save {@dc 19}, {@hit 11} to hit with spell attacks). The amnizu can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person}", + "{@spell command}" + ], + "daily": { + "3e": [ + "{@spell dominate person}", + "{@spell fireball}" + ], + "1e": [ + "{@spell dominate monster}", + "{@spell feeblemind}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the amnizu's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The amnizu has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The amnizu uses Poison Mind. It also makes two attacks: one with its whip and one with its Disruptive Touch." + ] + }, + { + "name": "Taskmaster Whip", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 33 ({@damage 6d10}) force damage." + ] + }, + { + "name": "Disruptive Touch", + "entries": [ + "{@atk ms} {@hit 11} to hit, reach 5 ft., one target. {@h}44 ({@damage 8d10}) necrotic damage." + ] + }, + { + "name": "Poison Mind", + "entries": [ + "The amnizu targets one or two creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 19} Wisdom saving throw or take 26 ({@damage 4d12}) necrotic damage and is {@condition blinded} until the start of the amnizu's next turn." + ] + }, + { + "name": "Forgetfulness {@recharge}", + "entries": [ + "The amnizu targets one creature it can see within 60 feet of it. That creature must make a {@dc 18} Intelligence saving throw and on a failure the target is {@condition stunned} for 1 minute. A {@condition stunned} creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target remains {@condition stunned} for the full minute, it forgets everything it sensed, experienced, and learned during the last 5 hours." + ] + } + ], + "reaction": [ + { + "name": "Instinctive Charm", + "entries": [ + "When a creature within 60 feet of the amnizu makes an attack roll against it, and another creature is within the attack's range, the attacker must make a {@dc 19} Wisdom saving throw. On a failed save, the attacker must target the creature that is closest to it, not including the amnizu or itself. If multiple creatures are closest, the attacker chooses which one to target. If the saving throw is successful, the attacker is immune to the amnizu's Instinctive Charm for 24 hours." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Devil Summoning", + "entries": [ + "Some amnizus have an action that allows them to summon other devils.", + { + "name": "Summon Devil (1/Day)", + "type": "entries", + "entries": [ + "The amnizu summons {@dice 2d4} bearded devils or {@dice 1d4} barbed devils. A summoned devil appears in an unoccupied space within 60 feet of the amnizu, acts as an ally of the amnizu, and can't summon other devils. It remains for 1 minute, until the amnizu dies, or until its summoner dismisses it as an action" + ] + } + ], + "_version": { + "name": "Amnizu (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/amnizu.mp3" + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I", + "TP" + ], + "damageTags": [ + "N", + "O", + "S" + ], + "damageTagsSpell": [ + "F", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Armanite", + "source": "MTF", + "page": 131, + "reprintedAs": [ + "Armanite|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 60 + }, + "str": 21, + "dex": 18, + "con": 21, + "int": 8, + "wis": 12, + "cha": 13, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The armanite has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The armanite's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The armanite makes three attacks: one with its hooves, one with its claws, and one with its serrated tail." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage." + ] + }, + { + "name": "Serrated Tail", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ] + }, + { + "name": "Lightning Lance {@recharge 5}", + "entries": [ + "The armanite looses a bolt of lightning in a line 60 feet long and 10 feet wide. Each creature in the line must make a {@dc 15} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/armanite.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "B", + "L", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Astral Dreadnought", + "source": "MTF", + "page": 117, + "reprintedAs": [ + "Astral Dreadnought|MPMM" + ], + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "titan" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119" + }, + "speed": { + "walk": 15, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 28, + "dex": 7, + "con": 25, + "int": 5, + "wis": 14, + "cha": 18, + "save": { + "dex": "+5", + "wis": "+9" + }, + "skill": { + "perception": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "stunned" + ], + "cr": "21", + "trait": [ + { + "name": "Antimagic Cone", + "entries": [ + "The astral dreadnought's opened eye creates an area of antimagic, as in the {@spell antimagic field} spell, in a 150-foot cone. At the start of each of its turns, the dreadnought decides which way the cone faces. The cone doesn't function while the dreadnought's eye is closed or while the dreadnought is {@condition blinded}." + ] + }, + { + "name": "Astral Entity", + "entries": [ + "The astral dreadnought can't leave the Astral Plane, nor can it be banished or otherwise transported out of the Astral Plane." + ] + }, + { + "name": "Demiplanar Donjon", + "entries": [ + "Any creature or object that the astral dreadnought swallows is transported to a demiplane that can be entered by no other means except a {@spell wish} spell or this creature's Donjon Visit ability. A creature can leave the demiplane only by using magic that enables planar travel, such as the {@spell plane shift} spell. The demiplane resembles a stone cave roughly 1,000 feet in diameter with a ceiling 100 feet high. Like a stomach, it contains the remains of the dreadnought's past meals.", + "The dreadnought can't be harmed from within the demiplane. If the dreadnought dies, the demiplane disappears, and everything inside it appears around the corpse. The demiplane is otherwise indestructible." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the astral dreadnought fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "An astral dreadnought's weapon attacks are magical." + ] + }, + { + "name": "Sever Silver Cord", + "entries": [ + "If the astral dreadnought scores a critical hit against a creature traveling through the Astral Plane by means of the {@spell astral projection} spell, the dreadnought can cut the target's silver cord instead of dealing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The astral dreadnought makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}36 ({@damage 5d10 + 9}) piercing damage. If the target is a creature of Huge size or smaller and this damage reduces it to 0 hit points or it is {@condition incapacitated}, the astral dreadnought swallows it. The swallowed target, along with everything it is wearing and carrying, appears in an unoccupied space on the floor of the astral dreadnought's Demiplanar Donjon." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d6 + 9}) slashing damage." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "The astral dreadnought makes one claw attack." + ] + }, + { + "name": "Donjon Visit (Costs 2 Actions)", + "entries": [ + "One creature that is Huge or smaller that the astral dreadnought can see within 60 feet of it must succeed on a {@dc 19} Charisma saving throw or be magically teleported to an unoccupied space on the floor of the astral dreadnought's Demiplanar Donjon. At the end of the target's next turn, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied." + ] + }, + { + "name": "Psychic Projection (Costs 3 Actions)", + "entries": [ + "Each creature within 60 feet of the astral dreadnought must make a {@dc 19} Wisdom saving throw, taking 15 ({@damage 2d10 + 4}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/astral-dreadnought.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Autumn Eladrin", + "source": "MTF", + "page": 195, + "reprintedAs": [ + "Autumn Eladrin|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 16, + "int": 14, + "wis": 17, + "cha": 18, + "skill": { + "insight": "+7", + "medicine": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eladrin's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell calm emotions}", + "{@spell sleep}" + ], + "daily": { + "3e": [ + "{@spell cure wounds} (as a 5th-level spell)", + "{@spell lesser restoration}" + ], + "1e": [ + "{@spell greater restoration}", + "{@spell heal}", + "{@spell raise dead}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Enchanting Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature is {@condition charmed} by the eladrin for 1 minute. On a successful save, the creature becomes immune to any eladrin's Enchanting Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the creature can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage plus 18 ({@damage 4d8}) psychic damage, or 6 ({@damage 1d10 + 1}) slashing damage plus 18 ({@damage 4d8}) psychic damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 18 ({@damage 4d8}) psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Foster Peace", + "entries": [ + "If a creature {@condition charmed} by the eladrin hits with an attack roll while within 60 feet of the eladrin, the eladrin magically causes the attack to miss, provided the eladrin can see the attacker." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/autumn-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bael", + "isNamedCreature": true, + "source": "MTF", + "page": 170, + "reprintedAs": [ + "Bael|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 24, + "dex": 17, + "con": 20, + "int": 21, + "wis": 24, + "cha": 24, + "save": { + "dex": "+9", + "con": "+11", + "int": "+11", + "cha": "+13" + }, + "skill": { + "intimidation": "+13", + "perception": "+13", + "persuasion": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "19", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Bael's innate spellcasting ability is Charisma (spell save {@dc 21}, {@hit 13} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell animate dead}", + "{@spell charm person}", + "{@spell detect magic}", + "{@spell inflict wounds} (as an 8th-level spell)", + "{@spell invisibility} (self only)", + "{@spell major image}" + ], + "daily": { + "3e": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "1e": [ + "{@spell dominate monster}", + "{@spell symbol} (stunning only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Dreadful", + "entries": [ + "Bael can use a bonus action to appear dreadful until the start of his next turn. Each creature, other than a devil, that starts its turn within 10 feet of Bael must succeed on a {@dc 22} Wisdom saving throw or be {@condition frightened} until the start of the creature's next turn." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Bael fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Bael has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Bael's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Bael regains 20 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Bael dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bael makes two melee attacks." + ] + }, + { + "name": "Hellish Morningstar", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ] + }, + { + "name": "Infernal Command", + "entries": [ + "Each ally of Bael's within 60 feet of him can't be {@condition charmed} or {@condition frightened} until the end of his next turn." + ] + }, + { + "name": "Teleport", + "entries": [ + "Bael magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "legendary": [ + { + "name": "Attack (Cost 2 Actions)", + "entries": [ + "Bael attacks once with his hellish morningstar." + ] + }, + { + "name": "Awaken Greed", + "entries": [ + "Bael casts {@spell charm person} or major image." + ] + }, + { + "name": "Infernal Command", + "entries": [ + "Bael uses his Infernal Command action." + ] + }, + { + "name": "Teleport", + "entries": [ + "Bael uses his Teleport action." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bael.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "N", + "P" + ], + "damageTagsSpell": [ + "B", + "F", + "N", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "invisible", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Balhannoth", + "source": "MTF", + "page": 119, + "reprintedAs": [ + "Balhannoth|MPMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 17, + "dex": 8, + "con": 18, + "int": 6, + "wis": 15, + "cha": 8, + "save": { + "con": "+8" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "blindsight 500 ft. (blind beyond this radius)" + ], + "passive": 16, + "conditionImmune": [ + "blinded" + ], + "languages": [ + "understands Deep Speech", + "telepathy 1 mile" + ], + "cr": "11", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the balhannoth fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The balhannoth makes a bite attack and up to two tentacle attacks, or it makes up to four tentacle attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}25 ({@damage 4d10 + 3}) piercing damage." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) and is moved up to 5 feet toward the balhannoth. Until this grapple ends, the target is {@condition restrained}, and the balhannoth can't use this tentacle against other targets. The balhannoth has four tentacles." + ] + } + ], + "legendary": [ + { + "name": "Bite Attack", + "entries": [ + "The balhannoth makes one bite attack against one creature it has {@condition grappled}." + ] + }, + { + "name": "Teleport", + "entries": [ + "The balhannoth magically teleports, along with any equipment it is wearing or carrying and any creatures it has {@condition grappled}, up to 60 feet to an unoccupied space it can see." + ] + }, + { + "name": "Vanish", + "entries": [ + "The balhannoth magically becomes {@condition invisible} for up to 10 minutes or until immediately after it makes an attack roll." + ] + } + ], + "legendaryGroup": { + "name": "Balhannoth", + "source": "MTF" + }, + "environment": [ + "coastal", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/balhannoth.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "invisible", + "restrained" + ], + "conditionInflictLegendary": [ + "invisible" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Baphomet", + "isNamedCreature": true, + "source": "MTF", + "page": 143, + "otherSources": [ + { + "source": "OotA", + "page": 235 + }, + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Baphomet|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 275, + "formula": "19d12 + 152" + }, + "speed": { + "walk": 40 + }, + "str": 30, + "dex": 14, + "con": 26, + "int": 18, + "wis": 24, + "cha": 16, + "save": { + "dex": "+9", + "con": "+15", + "wis": "+14" + }, + "skill": { + "intimidation": "+17", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "23", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Baphomet's spellcasting ability is Charisma (spell save {@dc 18}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "1": [ + "{@spell teleport}" + ], + "3e": [ + "{@spell dispel magic}", + "{@spell dominate beast}", + "{@spell hunter's mark}", + "{@spell maze}", + "{@spell wall of stone}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Charge", + "entries": [ + "If Baphomet moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 16 ({@damage 3d10}) piercing damage. If the target is a creature, it must succeed on a {@dc 25} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ] + }, + { + "name": "Labyrinthine Recall", + "entries": [ + "Baphomet can perfectly recall any path he has traveled, and he is immune to the {@spell maze} spell." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Baphomet fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Baphomet has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Baphomet's weapon attacks are magical." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of his turn, Baphomet can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against him have advantage until the start of his next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Baphomet makes three attacks: one with Heartcleaver, one with his bite, and one with his gore attack." + ] + }, + { + "name": "Heartcleaver", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) piercing damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) piercing damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Baphomet's choice within 120 feet of him and aware of him must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. These later saves have disadvantage if Baphomet is within line of sight of the creature.", + "If a creature succeeds on any of these saves or the effect ends on it, the creature is immune to Baphomet's Frightful Presence for the next 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Heartcleaver Attack", + "entries": [ + "Baphomet makes a melee attack with Heartcleaver." + ] + }, + { + "name": "Charge (Costs 2 Actions)", + "entries": [ + "Baphomet moves up to his speed, then makes a gore attack." + ] + } + ], + "legendaryGroup": { + "name": "Baphomet", + "source": "MTF" + }, + "traitTags": [ + "Charge", + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Reckless" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Berbalang", + "source": "MTF", + "page": 120, + "reprintedAs": [ + "Berbalang|MPMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "11d8 - 11" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 9, + "dex": 16, + "con": 9, + "int": 17, + "wis": 11, + "cha": 10, + "save": { + "dex": "+5", + "int": "+5" + }, + "skill": { + "arcana": "+5", + "history": "+5", + "insight": "+2", + "perception": "+2", + "religion": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 12, + "languages": [ + "all but rarely speaks" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The berbalang's innate spellcasting ability is Intelligence (spell save {@dc 13}). The berbalang can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell speak with dead}" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Spectral Duplicate (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the berbalang creates one spectral duplicate of itself in an unoccupied space it can see within 60 feet of it. While the duplicate exists, the berbalang is {@condition unconscious}. A berbalang can have only one duplicate at a time. The duplicate disappears when it or the berbalang drops to 0 hit points or when the berbalang dismisses it (no action required).", + "The duplicate has the same statistics and knowledge as the berbalang, and everything experienced by the duplicate is known by the berbalang. All damage dealt by the duplicate's attacks is psychic damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The berbalang makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/berbalang.mp3" + }, + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Black Abishai", + "source": "MTF", + "page": 160, + "reprintedAs": [ + "Black Abishai|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 14, + "dex": 17, + "con": 14, + "int": 13, + "wis": 16, + "cha": 11, + "save": { + "dex": "+6", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "acid", + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The abishai's weapon attacks are magical." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the abishai can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes three attacks: two with its scimitar and one with its bite." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ] + }, + { + "name": "Creeping Darkness {@recharge}", + "entries": [ + "The abishai casts {@spell darkness} at a point within 120 feet of it, requiring no components. Wisdom is its spellcasting ability for this spell. While the spell persists, the abishai can move the area of darkness up to 60 feet as a bonus action." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/black-abishai.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "A", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blue Abishai", + "source": "MTF", + "page": 161, + "reprintedAs": [ + "Blue Abishai|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 15, + "dex": 14, + "con": 17, + "int": 22, + "wis": 23, + "cha": 18, + "save": { + "int": "+12", + "wis": "+12" + }, + "skill": { + "arcana": "+12" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "lightning", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The abishai is a 13th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). The abishai has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell disguise self}", + "{@spell expeditious retreat}", + "{@spell magic missile}", + "{@spell charm person}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell teleport}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The abishai's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes two attacks: one with its quarterstaff and one with its bite." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage plus 14 ({@damage 4d6}) lightning damage." + ] + } + ], + "environment": [ + "coastal", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blue-abishai.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "B", + "L", + "P" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boneclaw", + "source": "MTF", + "page": 121, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + } + ], + "reprintedAs": [ + "Boneclaw|MPMM" + ], + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 34" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 16, + "con": 15, + "int": 13, + "wis": 15, + "cha": 9, + "save": { + "dex": "+7", + "con": "+6", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "cold", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common plus the main language of its master" + ], + "cr": "12", + "trait": [ + { + "name": "Rejuvenation", + "entries": [ + "While its master lives, a destroyed boneclaw gains a new body in {@dice 1d10} hours, with all its hit points. The new body appears within 1 mile of the boneclaw's master." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the boneclaw can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The boneclaw makes two claw attacks." + ] + }, + { + "name": "Piercing Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}20 ({@damage 3d10 + 4}) piercing damage. If the target is a creature, the boneclaw can pull the target up to 10 feet toward itself, and the target is {@condition grappled} (escape {@dc 14}). The boneclaw has two claws. While a claw grapples a target, the claw can attack only that target." + ] + }, + { + "name": "Shadow Jump", + "entries": [ + "If the boneclaw is in dim light or darkness, each creature of the boneclaw's choice within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or take 34 ({@damage 5d12 + 2}) necrotic damage.", + "The boneclaw then magically teleports up to 60 feet to an unoccupied space it can see. It can bring one creature it's grappling, teleporting that creature to an unoccupied space it can see within 5 feet of its destination. The destination spaces of this teleportation must be in dim light or darkness." + ] + } + ], + "reaction": [ + { + "name": "Deadly Reach", + "entries": [ + "In response to a visible enemy moving into its reach, the boneclaw makes one claw attack against that enemy. If the attack hits, the boneclaw can make a second claw attack against the target." + ] + } + ], + "environment": [ + "arctic", + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/boneclaw.mp3" + }, + "traitTags": [ + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bronze Scout", + "source": "MTF", + "page": 125, + "reprintedAs": [ + "Clockwork Bronze Scout|MPMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 10, + "dex": 16, + "con": 11, + "int": 3, + "wis": 14, + "cha": 1, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Earth Armor", + "entries": [ + "The bronze scout doesn't provoke opportunity attacks when it burrows." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The bronze scout has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) lightning damage." + ] + }, + { + "name": "Lightning Flare (Recharges after a Short or Long Rest)", + "entries": [ + "Each creature in contact with the ground within 15 feet of the bronze scout must make a {@dc 13} Dexterity saving throw, taking 14 ({@damage 4d6}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bronze-scout.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bulezau", + "source": "MTF", + "page": 131, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Bulezau|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 14, + "con": 17, + "int": 8, + "wis": 9, + "cha": 6, + "senses": [ + "darkvision 120 ft." + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 60 ft." + ], + "cr": "3", + "trait": [ + { + "name": "Rotting Presence", + "entries": [ + "When any creature that isn't a demon starts its turn within 30 feet one or more bulezaus, that creature must succeed on a {@dc 13} Constitution saving throw or take {@dice 1d6} necrotic damage plus 1 necrotic damage for each bulezau within 30 feet of it." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The bulezau's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The bulezau has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Barbed Tail", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned} until the disease ends. While {@condition poisoned} in this way, the target sports festering boils, coughs up flies, and sheds rotting skin, and the target must repeat the saving throw after every 24 hours that elapse. On a successful save, the disease ends. On a failed save, the target's hit point maximum is reduced by 4 ({@dice 1d8}). The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bulezau.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "DIS", + "HPR", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cadaver Collector", + "source": "MTF", + "page": 122, + "reprintedAs": [ + "Cadaver Collector|MPMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 14, + "con": 20, + "int": 5, + "wis": 11, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "necrotic", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands all languages but can't speak" + ], + "cr": "14", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The cadaver collector has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Summon Specters (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the cadaver collector calls up the enslaved spirits of those it has slain; {@dice 1d6} {@creature specter||specters} (without Sunlight Sensitivity) arise in unoccupied spaces within 15 feet of the cadaver collector. The specters act right after the cadaver collector on the same initiative count and fight until they're destroyed. They disappear when the cadaver collector is destroyed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cadaver collector makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 16 ({@damage 3d10}) necrotic damage." + ] + }, + { + "name": "Paralyzing Breath {@recharge 5}", + "entries": [ + "The cadaver collector releases paralyzing gas in a 30-foot cone. Each creature in that area must make a successful {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. A {@condition paralyzed} creature repeats the saving throw at the end of each of its turns, ending the effect on itself with a success." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cadaver-collector.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Canoloth", + "source": "MTF", + "page": 247, + "reprintedAs": [ + "Canoloth|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 5, + "wis": 17, + "cha": 12, + "skill": { + "investigation": "+3", + "perception": "+9" + }, + "senses": [ + "darkvision 60 ft.", + "truesight 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "8", + "trait": [ + { + "name": "Dimensional Lock", + "entries": [ + "Other creatures can't teleport to or from a space within 60 feet of the canoloth. Any attempt to do so is wasted." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The canoloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The canoloth's weapon attacks are magical." + ] + }, + { + "name": "Uncanny Senses", + "entries": [ + "The canoloth can't be {@status surprised} while it isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The canoloth makes two attacks: one with its tongue or its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}25 ({@damage 6d6 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage." + ] + }, + { + "name": "Tongue", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 30 ft., one target. {@h}17 ({@damage 2d12 + 4}) piercing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}), pulled up to 30 feet toward the canoloth, and is {@condition restrained} until the grapple ends. The canoloth can grapple one target at a time with its tongue." + ] + } + ], + "environment": [ + "coastal", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/canoloth.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Choker", + "source": "MTF", + "page": 123, + "otherSources": [ + { + "source": "TftYP", + "page": 232 + } + ], + "reprintedAs": [ + "Choker|MPMM" + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 4, + "wis": 12, + "cha": 7, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Deep Speech" + ], + "cr": "1", + "trait": [ + { + "name": "Aberrant Quickness (Recharges after a Short or Long Rest)", + "entries": [ + "The choker can take an extra action on its turn." + ] + }, + { + "name": "Boneless", + "entries": [ + "The choker can move through and occupy a space as narrow as 4 inches wide without squeezing." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The choker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The choker makes two tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) piercing damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the choker can't use this tentacle on another target. The choker has two tentacles. If this attack is a critical hit, the target also can't breathe or speak until the grapple ends." + ] + } + ], + "environment": [ + "forest", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/choker.mp3" + }, + "altArt": [ + { + "name": "Choker (Alt)", + "source": "TftYP" + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Corpse Flower", + "source": "MTF", + "page": 127, + "reprintedAs": [ + "Corpse Flower|MPMM" + ], + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 14, + "dex": 14, + "con": 16, + "int": 7, + "wis": 15, + "cha": 3, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 12, + "conditionImmune": [ + "blinded", + "deafened" + ], + "cr": "8", + "trait": [ + { + "name": "Corpses", + "entries": [ + "When first encountered, a corpse flower contains the corpses of {@dice 1d6 + 3} humanoids. A corpse flower can hold the remains of up to nine dead humanoids. These remains have {@quickref Cover||3||total cover} against attacks and other effects outside the corpse flower. If the corpse flower dies, the corpses within it can be pulled free.", + "While it has at least one humanoid corpse in its body, the corpse flower can use a bonus action to do one of the following:", + { + "type": "list", + "items": [ + "The corpse flower digests one humanoid corpse in its body and instantly regains 11 ({@dice 2d10}) hit points. Nothing of the digested body remains. Any equipment on the corpse is expelled from the corpse flower in its space.", + "The corpse flower animates one dead humanoid in its body, turning it into a zombie. The zombie appears in an unoccupied space within 5 feet of the corpse flower and acts immediately after it in the initiative order. The zombie acts as an ally of the corpse flower but isn't under its control, and the flower's stench clings to it (see the Stench of Death trait)." + ] + } + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The corpse flower can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Stench of Death", + "entries": [ + "Each creature that starts its turn within 10 feet of the corpse flower or one of its zombies must make a {@dc 14} Constitution saving throw, unless the creature is a construct or undead. On a failed save, the creature is {@condition incapacitated} until the end of the turn. Creatures that are immune to poison damage or the {@condition poisoned} condition automatically succeed on this saving throw. On a successful save, the creature is immune to the stench of all corpse flowers for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The corpse flower makes three tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage, and the target must succeed on a {@dc 14} Constitution saving throw or take 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Harvest the Dead", + "entries": [ + "The corpse flower grabs one unsecured dead humanoid within 10 feet of it and stuffs the corpse into itself, along with any equipment the corpse is wearing or carrying. The remains can be used with the Corpses trait." + ] + } + ], + "environment": [ + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/corpse-flower.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "B", + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deathlock", + "source": "MTF", + "page": 128, + "reprintedAs": [ + "Deathlock|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 15, + "con": 10, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "int": "+4", + "cha": "+5" + }, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deathlock's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deathlock is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell dispel magic}", + "{@spell hold person}", + "{@spell hunger of Hadar}", + "{@spell invisibility}", + "{@spell spider climb}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Turn Resistance", + "entries": [ + "The deathlock has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Deathly Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) necrotic damage." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Patron-Specific Spells", + "entries": [ + "You can customize a deathlock by replacing some or all of the spells in its Spellcasting trait with spells specific to its patron. Here are examples.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + "Archfey patron: {@spell blink}, {@spell faerie fire}, {@spell hunger of Hadar}, {@spell hypnotic pattern}, {@spell phantasmal force}, {@spell sleep}", + "Fiend patron: {@spell blindness/deafness}, {@spell burning hands}, {@spell command}, {@spell fireball}, {@spell hellish rebuke}, {@spell scorching ray}", + "Great Old One patron: {@spell armor of Agathys}, {@spell detect thoughts}, {@spell dissonant whispers}, {@spell hunger of Hadar}, {@spell Tasha's hideous laughter}, {@spell phantasmal force}" + ] + } + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deathlock.mp3" + }, + "traitTags": [ + "Turn Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "A", + "C", + "N", + "O" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Deathlock (Archfey Patron)", + "source": "MTF", + "_mod": { + "spellcasting": { + "mode": "replaceArr", + "replace": "Spellcasting", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "The deathlock is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell blink}", + "{@spell faerie fire}", + "{@spell hunger of Hadar}", + "{@spell hypnotic pattern}", + "{@spell phantasmal force}", + "{@spell sleep}" + ] + } + }, + "ability": "cha" + } + } + }, + "variant": null + }, + { + "name": "Deathlock (Fiend Patron)", + "source": "MTF", + "_mod": { + "spellcasting": { + "mode": "replaceArr", + "replace": "Spellcasting", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "The deathlock is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell blindness/deafness}", + "{@spell burning hands}", + "{@spell command}", + "{@spell fireball}", + "{@spell hellish rebuke}", + "{@spell scorching ray}" + ] + } + }, + "ability": "cha" + } + } + }, + "variant": null + }, + { + "name": "Deathlock (Great Old One Patron)", + "source": "MTF", + "_mod": { + "spellcasting": { + "mode": "replaceArr", + "replace": "Spellcasting", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "The deathlock is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell armor of Agathys}", + "{@spell detect thoughts}", + "{@spell dissonant whispers}", + "{@spell hunger of Hadar}", + "{@spell Tasha's hideous laughter}", + "{@spell phantasmal force}" + ] + } + }, + "ability": "cha" + } + } + }, + "variant": null + } + ] + }, + { + "name": "Deathlock Mastermind", + "source": "MTF", + "page": 129, + "otherSources": [ + { + "source": "SDW" + } + ], + "reprintedAs": [ + "Deathlock Mastermind|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 12, + "int": 15, + "wis": 12, + "cha": 17, + "save": { + "int": "+5", + "cha": "+6" + }, + "skill": { + "arcana": "+5", + "history": "+5", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft. (including magical darkness)" + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deathlock's innate spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deathlock is a 10th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}" + ] + }, + "5": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell blight}", + "{@spell counterspell}", + "{@spell crown of madness}", + "{@spell darkness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell hold monster}", + "{@spell invisibility}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Turn Resistance", + "entries": [ + "The deathlock has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Deathly Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) necrotic damage)." + ] + }, + { + "name": "Grave Bolts", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one or two targets. {@h}18 ({@damage 4d8}) necrotic damage. If the target is Large or smaller, it must succeed on a {@dc 16} Strength saving throw or become {@condition restrained} as shadowy tendrils wrap around it for 1 minute. A {@condition restrained} target can use its action to repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Patron-Specific Spells", + "entries": [ + "You can customize a deathlock by replacing some or all of the spells in its Spellcasting trait with spells specific to its patron. Here are examples.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + "Archfey patron: {@spell blink}, {@spell dominate beast}, {@spell dominate person}, {@spell faerie fire}, {@spell greater invisibility}, {@spell hunger of Hadar}, {@spell hypnotic pattern}, {@spell phantasmal force}, {@spell seeming}, {@spell sleep}", + "Fiend patron: {@spell blindness/deafness}, {@spell burning hands}, {@spell command}, {@spell fire shield}, {@spell fireball}, {@spell flame strike}, {@spell hellish rebuke}, {@spell scorching ray}, {@spell stinking cloud}, {@spell wall of fire}", + "Great Old One patron: {@spell clairvoyance}, {@spell detect thoughts}, {@spell dissonant whispers}, {@spell dominate person}, {@spell Evard's black tentacles}, {@spell hunger of Hadar}, {@spell phantasmal force}, {@spell sending}, {@spell Tasha's hideous laughter}, {@spell telekinesis}" + ] + } + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deathlock-mastermind.mp3" + }, + "traitTags": [ + "Turn Resistance" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "I", + "N", + "O" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Deathlock Mastermind (Archfey Patron)", + "source": "MTF", + "_mod": { + "spellcasting": { + "mode": "replaceArr", + "replace": "Spellcasting", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "The deathlock is a 10th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}" + ] + }, + "5": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell blink}", + "{@spell dominate beast}", + "{@spell dominate person}", + "{@spell faerie fire}", + "{@spell greater invisibility}", + "{@spell hunger of Hadar}", + "{@spell hypnotic pattern}", + "{@spell phantasmal force}", + "{@spell seeming}", + "{@spell sleep}" + ] + } + }, + "ability": "cha" + } + } + }, + "variant": null + }, + { + "name": "Deathlock Mastermind (Fiend Patron)", + "source": "MTF", + "_mod": { + "spellcasting": { + "mode": "replaceArr", + "replace": "Spellcasting", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "The deathlock is a 10th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}" + ] + }, + "5": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell blindness/deafness}", + "{@spell burning hands}", + "{@spell command}", + "{@spell fire shield}", + "{@spell fireball}", + "{@spell flame strike}", + "{@spell hellish rebuke}", + "{@spell scorching ray}", + "{@spell stinking cloud}", + "{@spell wall of fire}" + ] + } + }, + "ability": "cha" + } + } + }, + "variant": null + }, + { + "name": "Deathlock Mastermind (Great Old One Patron)", + "source": "MTF", + "_mod": { + "spellcasting": { + "mode": "replaceArr", + "replace": "Spellcasting", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "The deathlock is a 10th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}" + ] + }, + "5": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell clairvoyance}", + "{@spell detect thoughts}", + "{@spell dissonant whispers}", + "{@spell dominate person}", + "{@spell Evard's black tentacles}", + "{@spell hunger of Hadar}", + "{@spell phantasmal force}", + "{@spell sending}", + "{@spell Tasha's hideous laughter}", + "{@spell telekinesis}" + ] + } + }, + "ability": "cha" + } + } + }, + "variant": null + } + ] + }, + { + "name": "Deathlock Wight", + "source": "MTF", + "page": 129, + "otherSources": [ + { + "source": "TftYP", + "page": 233 + } + ], + "reprintedAs": [ + "Deathlock Wight|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 16, + "int": 12, + "wis": 14, + "cha": 16, + "save": { + "wis": "+4" + }, + "skill": { + "arcana": "+3", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The wight's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no verbal or material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "daily": { + "1e": [ + "{@spell fear}", + "{@spell hold person}", + "{@spell misty step}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wight attacks twice with Grave Bolt." + ] + }, + { + "name": "Grave Bolt", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}7 ({@damage 1d8 + 3}) necrotic damage." + ] + }, + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A humanoid slain by this attack rises 24 hours later as a {@creature zombie} under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve {@creature zombie||zombies} under its control at one time." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deathlock-wight.mp3" + }, + "altArt": [ + { + "name": "Deathlock Wight (Alt)", + "source": "TftYP" + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Demogorgon", + "isNamedCreature": true, + "source": "MTF", + "page": 144, + "otherSources": [ + { + "source": "OotA", + "page": 236 + } + ], + "reprintedAs": [ + "Demogorgon|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 406, + "formula": "28d12 + 224" + }, + "speed": { + "walk": 50, + "swim": 50 + }, + "str": 29, + "dex": 14, + "con": 26, + "int": 20, + "wis": 17, + "cha": 25, + "save": { + "dex": "+10", + "con": "+16", + "wis": "+11", + "cha": "+15" + }, + "skill": { + "insight": "+11", + "perception": "+19" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 29, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "26", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Demogorgon's spellcasting ability is Charisma (spell save {@dc 23}). Demogorgon can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell major image}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell feeblemind}", + "{@spell project image}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Demogorgon fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Demogorgon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Demogorgon's weapon attacks are magical." + ] + }, + { + "name": "Two Heads", + "entries": [ + "Demogorgon has advantage on saving throws against being {@condition blinded}, {@condition deafened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Demogorgon makes two tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Gaze", + "entries": [ + "Demogorgon turns his magical gaze toward one creature that he can see within 120 feet of him. That target must make a {@dc 23} Wisdom saving throw. Unless the target is {@condition incapacitated}, it can avert its eyes to avoid the gaze and to automatically succeed on the save. If the target does so, it can't see Demogorgon until the start of his next turn. If the target looks at him in the meantime, it must immediately make the save.", + "If the target fails the save, the target suffers one of the following effects of Demogorgon's choice or at random:", + "1. Beguiling Gaze. The target is {@condition stunned} until the start of Demogorgon's next turn or until Demogorgon is no longer within line of sight.", + "2. Hypnotic Gaze. The target is {@condition charmed} by Demogorgon until the start of Demogorgon's next turn. Demogorgon chooses how the {@condition charmed} target uses its actions, reactions, and movement. Because this gaze requires Demogorgon to focus both heads on the target, he can't use his Maddening Gaze legendary action until the start of his next turn.", + "3. Insanity Gaze. The target suffers the effect of the {@spell confusion} spell without making a saving throw. The effect lasts until the start of Demogorgon's next turn. Demogorgon doesn't need to concentrate on the spell." + ] + } + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage plus 11 ({@damage 2d10}) necrotic damage." + ] + }, + { + "name": "Maddening Gaze", + "entries": [ + "Demogorgon uses his Gaze action, and must choose either the Beguiling Gaze or the Insanity Gaze effect." + ] + } + ], + "legendaryGroup": { + "name": "Demogorgon", + "source": "MTF" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "frightened", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro", + "source": "MTF", + "page": 158, + "reprintedAs": [ + "Derro|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "derro" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 11, + "wis": 5, + "cha": 9, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1/4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The derro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Hooked Spear", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage. If the target is Medium or smaller, the derro can choose to deal no damage and knock it {@condition prone}." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/derro.mp3" + }, + "attachedItems": [ + "light crossbow|phb" + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro Savant", + "source": "MTF", + "page": 159, + "reprintedAs": [ + "Derro Savant|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "derro" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 11, + "wis": 5, + "cha": 14, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The derro savant is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The derro knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell chromatic orb}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell spider climb}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell lightning bolt}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The derro savant has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro savant has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/derro-savant.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dhergoloth", + "source": "MTF", + "page": 248, + "reprintedAs": [ + "Dhergoloth|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 19, + "int": 7, + "wis": 10, + "cha": 9, + "save": { + "str": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dhergoloth's innate spellcasting ability is Charisma (spell save {@dc 10}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell fear}" + ], + "daily": { + "3": [ + "{@spell sleep}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The dhergoloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The dhergoloth's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dhergoloth makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ] + }, + { + "name": "Flailing Claws {@recharge 5}", + "entries": [ + "The dhergoloth moves up to its walking speed in a straight line and targets each creature within 5 feet of it during its movement. Each target must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 3d12 + 3}) slashing damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "The dhergoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dhergoloth.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dire Troll", + "source": "MTF", + "page": 243, + "reprintedAs": [ + "Dire Troll|MPMM" + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 15, + "con": 21, + "int": 9, + "wis": 11, + "cha": 5, + "save": { + "wis": "+5", + "cha": "+2" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "frightened", + "poisoned" + ], + "languages": [ + "Giant" + ], + "cr": "13", + "trait": [ + { + "name": "Keen Senses", + "entries": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell or sight." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, it regains only 5 hit points at the start of its next turn. The troll dies only if it is hit by an attack that deals 10 or more acid or fire damage while the troll has 0 hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes five attacks: one with its bite and four with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) slashing damage." + ] + }, + { + "name": "Whirlwind of Claws {@recharge 5}", + "entries": [ + "Each creature within 10 feet of the troll must make a {@dc 19} Dexterity saving throw, taking 44 ({@damage 8d10}) slashing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "arctic", + "forest", + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dire-troll.mp3" + }, + "traitTags": [ + "Keen Senses", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Arachnomancer", + "source": "MTF", + "page": 182, + "reprintedAs": [ + "Drow Arachnomancer|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 11, + "dex": 17, + "con": 14, + "int": 19, + "wis": 14, + "cha": 16, + "save": { + "con": "+7", + "int": "+9", + "cha": "+8" + }, + "skill": { + "arcana": "+9", + "nature": "+9", + "perception": "+7", + "stealth": "+8" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "poison" + ], + "languages": [ + "Elvish", + "Undercommon", + "can speak with spiders" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow is a 16th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "daily": { + "1": [ + "{@spell eyebite}", + "{@spell etherealness}", + "{@spell dominate monster}" + ] + }, + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}", + "{@spell poison spray}" + ] + }, + "5": { + "lower": 1, + "slots": 3, + "spells": [ + "{@spell conjure animals} (spiders only)", + "{@spell crown of madness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell fear}", + "{@spell fly}", + "{@spell giant insect}", + "{@spell hold monster}", + "{@spell insect plague}", + "{@spell invisibility}", + "{@spell vampiric touch}", + "{@spell web}", + "{@spell witch bolt}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Change Shape (Recharges after a Short or Long Rest)", + "entries": [ + "The drow can use a bonus action to magically polymorph into a {@creature giant spider}, remaining in that form for up to 1 hour. It can revert to its true form as a bonus action. Its statistics, other than its size, are the same in each form. It can speak and cast spells while in giant spider form. Any equipment it is wearing or carrying in humanoid form melds into the giant spider form. It can't activate, use, wield, or otherwise benefit from any of its equipment. It reverts to its humanoid form if it dies." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The drow can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The drow ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes two poisonous touch attacks or two bite attacks. The first of these attacks that hits each round deals an extra 26 ({@damage 4d12}) poison damage to the target." + ] + }, + { + "name": "Poisonous Touch (Humanoid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}28 ({@damage 8d6}) poison damage." + ] + }, + { + "name": "Bite (Giant Spider Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 26 ({@damage 4d12}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + }, + { + "name": "Web (Giant Spider Form Only Recharge 5\u20136)", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 30/60 ft., one target. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 15} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-arachnomancer.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Spider Climb", + "Sunlight Sensitivity", + "Web Walker" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "F", + "I", + "L", + "N", + "O", + "P" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned", + "restrained" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "invisible", + "paralyzed", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Favored Consort", + "source": "MTF", + "page": 183, + "reprintedAs": [ + "Drow Favored Consort|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 15, + { + "ac": 18, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 20, + "con": 16, + "int": 18, + "wis": 15, + "cha": 18, + "save": { + "dex": "+11", + "con": "+9", + "cha": "+10" + }, + "skill": { + "acrobatics": "+11", + "athletics": "+8", + "perception": "+8", + "stealth": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 18}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow is a 11th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell poison spray}", + "{@spell shocking grasp}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell invisibility}", + "{@spell misty step}", + "{@spell shatter}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell haste}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell Otiluke's resilient sphere}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cone of cold}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "War Magic", + "entries": [ + "When the drow uses its action to cast a spell, it can make one weapon attack as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes three scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 18 ({@damage 4d8}) poison damage. In addition, the target has disadvantage on the next saving throw it makes against a spell the drow casts before the end of the drow's next turn." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-favored-consort.mp3" + }, + "attachedItems": [ + "hand crossbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "damageTagsSpell": [ + "C", + "F", + "I", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow House Captain", + "source": "MTF", + "page": 184, + "reprintedAs": [ + "Drow House Captain|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 19, + "con": 15, + "int": 12, + "wis": 14, + "cha": 13, + "save": { + "dex": "+8", + "con": "+6", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 13}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Battle Command", + "entries": [ + "As a bonus action, the drow targets one ally he can see within 30 feet of him. If the target can see or hear the drow, the target can use its reaction to make one melee attack or to take the Dodge or Hide action." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes three attacks: two with his scimitar and one with his whip or his hand crossbow." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Whip", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage. If the target is an ally, it has advantage on attack rolls until the end of its next turn." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The drow adds 3 to his AC against one melee attack that would hit him. To do so, the drow must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-house-captain.mp3" + }, + "attachedItems": [ + "hand crossbow|phb", + "scimitar|phb", + "whip|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Drow Inquisitor", + "source": "MTF", + "page": 184, + "reprintedAs": [ + "Drow Inquisitor|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 15, + "con": 14, + "int": 16, + "wis": 21, + "cha": 20, + "save": { + "con": "+7", + "wis": "+10", + "cha": "+10" + }, + "skill": { + "insight": "+10", + "perception": "+10", + "religion": "+8", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 20, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 18}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell detect magic}" + ], + "daily": { + "1e": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell levitate} (self only)", + "{@spell suggestion}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow is a 12th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell message}", + "{@spell poison spray}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell cure wounds}", + "{@spell inflict wounds}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell dispel magic}", + "{@spell magic circle}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell divination}", + "{@spell freedom of movement}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell dispel evil and good}", + "{@spell insect plague}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell harm}", + "{@spell true seeing}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Discern Lie", + "entries": [ + "The drow knows when she hears a creature speak a lie in a language she knows." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The drow has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes three death lance attacks." + ] + }, + { + "name": "Death Lance", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 18 ({@damage 4d8}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage it takes. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Demon Summoning", + "entries": [ + "Some drow inquisitors have an action that allows them to summon a demon.", + { + "name": "Summon Demon (1/Day)", + "type": "entries", + "entries": [ + "The drow attempts to magically summon a yochlol, with a {@chance 50} chance of success. If the attempt fails, the drow takes 5 ({@damage 1d10}) psychic damage. Otherwise, the summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action. (see notes for link)" + ] + } + ], + "_version": { + "name": "Drow Inquisitor (Summoner)", + "addHeadersAs": "action" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-inquisitor.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "N", + "P", + "Y" + ], + "damageTagsSpell": [ + "I", + "N", + "O", + "P" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "HPR", + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "incapacitated", + "poisoned", + "stunned" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Drow Matron Mother", + "source": "MTF", + "page": 186, + "reprintedAs": [ + "Drow Matron Mother|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 262, + "formula": "35d8 + 105" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 16, + "int": 17, + "wis": 21, + "cha": 22, + "save": { + "con": "+9", + "wis": "+11", + "cha": "+12" + }, + "skill": { + "insight": "+11", + "perception": "+11", + "religion": "+9", + "stealth": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "20", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 20}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell detect magic}" + ], + "daily": { + "1e": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell levitate} (self only)", + "{@spell suggestion}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow is a 20th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 19}, {@hit 11} to hit with spell attacks). The drow has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell cure wounds}", + "{@spell guiding bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell death ward}", + "{@spell freedom of movement}", + "{@spell guardian of faith}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell contagion}", + "{@spell flame strike}", + "{@spell geas}", + "{@spell mass cure wounds}" + ] + }, + "6": { + "slots": 2, + "spells": [ + "{@spell blade barrier}", + "{@spell harm}" + ] + }, + "7": { + "slots": 2, + "spells": [ + "{@spell divine word}", + "{@spell plane shift}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell holy aura}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell gate}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Lolth's Fickle Favor", + "entries": [ + "As a bonus action, the matron can bestow the Spider Queen's blessing on one ally she can see within 30 feet of her. The ally takes 7 ({@damage 2d6}) psychic damage but has advantage on the next attack roll it makes until the end of its next turn." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The drow has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The matron mother makes two demon staff attacks or three tentacle rod attacks." + ] + }, + { + "name": "Demon Staff", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if used with two hands, plus 14 ({@damage 4d6}) psychic damage. In addition, the target must succeed on a DC19 Wisdom saving throw or become {@condition frightened} of the drow for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Tentacle Rod", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage. If the target is hit three times by the rod on one turn, the target must succeed on a {@dc 15} Constitution saving throw or suffer the following effects for 1 minute: the target's speed is halved, it has disadvantage on Dexterity saving throws, and it can't use reactions. Moreover, on each of its turns, it can take either an action or a bonus action, but not both. At the end of each of its turns, it can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Summon Servant (1/Day)", + "entries": [ + "The drow magically summons a {@creature retriever|mtf} or a {@creature yochlol}. The summoned creature appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ] + } + ], + "legendary": [ + { + "name": "Demon Staff", + "entries": [ + "The drow makes one attack with her demon staff." + ] + }, + { + "name": "Compel Demon (Costs 2 Actions)", + "entries": [ + "An allied demon within 30 feet of the drow uses its reaction to make one attack against a target of the drow's choice that she can see." + ] + }, + { + "name": "Cast a Spell (Costs 1\u20133 Actions)", + "entries": [ + "The drow expends a spell slot to cast a 1st-, 2nd-, or 3rd-level spell that she has prepared. Doing so costs 1 legendary action per level of the spell." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-matron-mother.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "B", + "Y" + ], + "damageTagsSpell": [ + "F", + "N", + "O", + "R", + "S", + "Y" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "incapacitated", + "paralyzed", + "poisoned", + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Shadowblade", + "source": "MTF", + "page": 187, + "reprintedAs": [ + "Drow Shadowblade|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 21, + "con": 16, + "int": 12, + "wis": 14, + "cha": 13, + "save": { + "dex": "+9", + "con": "+7", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Shadow Step", + "entries": [ + "While in dim light or darkness, the drow can teleport as a bonus action up to 60 feet to an unoccupied space it can see that is also in dim light or darkness. It then has advantage on the first melee attack it makes before the end of the turn." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes two attacks with its shadow sword. If either attack hits and the target is within 10 feet of a 5-foot cube of darkness created by the shadow sword on a previous turn, the drow can dismiss that darkness and cause the target to take 21 ({@damage 6d6}) necrotic damage. The drow can dismiss darkness in this way no more than once per turn." + ] + }, + { + "name": "Shadow Sword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 10 ({@damage 3d6}) necrotic damage and 10 ({@damage 3d6}) poison damage. The drow can then fill an unoccupied 5-foot cube within 5 feet of the target with magical darkness, which remains for 1 minute." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Shadow Demon Summoning", + "entries": [ + "Some drow shadowblades have an action that allows them to summon a demon.", + { + "name": "Summon Shadow Demon (1/Day)", + "type": "entries", + "entries": [ + "The drow attempts to magically summon a shadow demon with a {@chance 50} chance of success. If the attempt fails, the drow takes 5 ({@damage 1d10}) psychic damage. Otherwise, the summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ] + } + ], + "_version": { + "name": "Drow Shadowblade (Summoner)", + "addHeadersAs": "action" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/drow-shadowblade.mp3" + }, + "attachedItems": [ + "hand crossbow|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "N", + "P", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Despot", + "source": "MTF", + "page": 188, + "reprintedAs": [ + "Duergar Despot|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56" + }, + "speed": { + "walk": 25 + }, + "str": 20, + "dex": 5, + "con": 19, + "int": 15, + "wis": 14, + "cha": 13, + "save": { + "con": "+8", + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The duergar despot's innate spellcasting ability is Intelligence (spell save {@dc 12}). It can cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell counterspell}", + "{@spell misty step}", + "{@spell stinking cloud}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The duergar has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Psychic Engine", + "entries": [ + "When the duergar despot suffers a critical hit or is reduced to 0 hit points, psychic energy erupts from its frame to deal 14 ({@damage 4d6}) psychic damage to each creature within 5 feet of it." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar despot has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The despot makes two iron fist attacks and two stomping foot attacks. It can replace up to four of these attacks with uses of its Flame Jet." + ] + }, + { + "name": "Iron Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must make a successful {@dc 17} Strength saving throw or be thrown up to 30 feet away in a straight line. The target is knocked {@condition prone} and then takes 10 ({@damage 3d6}) bludgeoning damage." + ] + }, + { + "name": "Stomping Foot", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage, or 18 ({@damage 3d8 + 5}) bludgeoning damage to a {@condition prone} target." + ] + }, + { + "name": "Flame Jet", + "entries": [ + "The duergar spews flames in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 16} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-despot.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "B", + "F", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Hammerer", + "source": "MTF", + "page": 188, + "otherSources": [ + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Duergar Hammerer|MPMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 20 + }, + "str": 17, + "dex": 7, + "con": 12, + "int": 5, + "wis": 5, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Engine of Pain", + "entries": [ + "Once per turn, a creature that attacks the hammerer can target the duergar trapped in it. The attacker has disadvantage on the attack roll. On a hit, the attack deals an extra 5 ({@damage 1d10}) damage to the hammerer, and the hammerer can respond by using its Multiattack with its reaction." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The hammerer deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hammerer makes two attacks: one with its claw and one with its hammer." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Hammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-hammerer.mp3" + }, + "traitTags": [ + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "D" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Kavalrachni", + "source": "MTF", + "page": 189, + "otherSources": [ + { + "source": "OotA", + "page": 226 + } + ], + "reprintedAs": [ + "Duergar Kavalrachni|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Cavalry Training", + "entries": [ + "When the duergar hits a target with a melee attack while mounted on a female steeder, the steeder can make one melee attack against the same target as a reaction." + ] + }, + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes two war pick attacks." + ] + }, + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + }, + { + "name": "Shared Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it. While the {@condition invisible} duergar is mounted on a female steeder, the steeder is {@condition invisible} as well. The invisibility ends early on the steeder immediately after it attacks." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-kavalrachni.mp3" + }, + "attachedItems": [ + "heavy crossbow|phb", + "war pick|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Mind Master", + "source": "MTF", + "page": 189, + "otherSources": [ + { + "source": "IDRotF" + } + ], + "reprintedAs": [ + "Duergar Mind Master|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + }, + { + "ac": 19, + "condition": "while reduced" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 11, + "dex": 17, + "con": 14, + "int": 15, + "wis": 10, + "cha": 12, + "save": { + "wis": "+2" + }, + "skill": { + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "passive": 12, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes two melee attacks. It can replace one of those attacks with a use of Mind Mastery." + ] + }, + { + "name": "Mind-Poison Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage and 10 ({@damage 3d6}) psychic damage, or 1 piercing damage and 14 ({@damage 4d6}) psychic damage while reduced." + ] + }, + { + "name": "Invisibility {@recharge 4}", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Reduce, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + }, + { + "name": "Mind Mastery", + "entries": [ + "The duergar targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 12} Intelligence saving throw, or the duergar causes it to use its reaction either to make one weapon attack against another creature the duergar can see or to move up to 10 feet in a direction of the duergar's choice. Creatures that can't be {@condition charmed} are immune to this effect." + ] + }, + { + "name": "Reduce (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically decreases in size, along with anything it is wearing or carrying. While reduced, the duergar is Tiny, reduces its weapon damage to 1, and makes attacks, checks, and saving throws with disadvantage if they use Strength. It gains a +5 bonus to all Dexterity ({@skill Stealth}) checks and a +5 bonus to its AC. It can also take a bonus action on each of its turns to take the Hide action." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-mind-master.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Screamer", + "source": "MTF", + "page": 190, + "reprintedAs": [ + "Duergar Screamer|MPMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 7, + "con": 12, + "int": 5, + "wis": 5, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Engine of Pain", + "entries": [ + "Once per turn, a creature that attacks the screamer can target the duergar trapped in it. The attacker has disadvantage on the attack roll. On a hit, the attack deals an extra 11 ({@damage 2d10}) damage to the screamer, and the screamer can respond by using its Multiattack with its reaction." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The screamer makes one drill attack and uses its Sonic Scream." + ] + }, + { + "name": "Drill", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage." + ] + }, + { + "name": "Sonic Scream", + "entries": [ + "The screamer emits destructive energy in a 15-foot cube. Each creature in that area must succeed on a {@dc 11} Strength saving throw or take 7 ({@damage 2d6}) thunder damage and be knocked {@condition prone}." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-screamer.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "D" + ], + "damageTags": [ + "P", + "T" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Soulblade", + "source": "MTF", + "page": 190, + "otherSources": [ + { + "source": "OotA", + "page": 227 + } + ], + "reprintedAs": [ + "Duergar Soulblade|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 25 + }, + "str": 11, + "dex": 16, + "con": 10, + "int": 11, + "wis": 10, + "cha": 12, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The duergar's innate spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell blade ward}", + "{@spell true strike}" + ], + "daily": { + "3e": [ + "{@spell jump}", + "{@spell hunter's mark}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Create Soulblade", + "entries": [ + "As a bonus action, the duergar can create a shortsword-sized, visible blade of psionic energy. The weapon appears in the duergar's hand and vanishes if it leaves the duergar's grip, or if the duergar dies or is {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Soulblade", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage, or 10 ({@damage 2d6 + 3}) force damage while enlarged. If the soulblade has advantage on the attack roll, the attack deals an extra 3 ({@damage 1d6}) force damage." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-soulblade.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Stone Guard", + "source": "MTF", + "page": 191, + "otherSources": [ + { + "source": "OotA", + "page": 227 + } + ], + "reprintedAs": [ + "Duergar Stone Guard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Phalanx Formation", + "entries": [ + "The duergar has advantage on attack rolls and Dexterity saving throws while standing within 5 feet of a duergar ally wielding a shield." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "King's Knife (Shortsword)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while enlarged." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while enlarged." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-stone-guard.mp3" + }, + "attachedItems": [ + "javelin|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duergar Warlord", + "source": "MTF", + "page": 192, + "reprintedAs": [ + "Duergar Warlord|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 11, + "con": 17, + "int": 12, + "wis": 12, + "cha": 14, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "6", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The duergar makes three hammer or javelin attacks and uses Call to Attack, or Enlarge if it is available." + ] + }, + { + "name": "Psychic-Attuned Hammer", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage plus 5 ({@damage 1d10}) psychic damage, or 15 ({@damage 2d10 + 4}) bludgeoning damage plus 5 ({@damage 1d10}) psychic damage while enlarged," + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while enlarged." + ] + }, + { + "name": "Call to Attack", + "entries": [ + "Up to three allied duergar within 120 feet of this duergar that can hear it can each use their reaction to make one weapon attack." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "Invisibility {@recharge 4}", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "reaction": [ + { + "name": "Scouring Instruction", + "entries": [ + "When an ally that the duergar can see makes a {@dice d20} roll, the duergar can roll a {@dice 1d6} and the ally can add the number rolled to the {@dice d20} roll by taking 3 ({@damage 1d6}) psychic damage. A creature immune to psychic damage can't be affected by Scouring Instruction." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-warlord.mp3" + }, + "attachedItems": [ + "javelin|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "B", + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Xarrorn", + "source": "MTF", + "page": 193, + "otherSources": [ + { + "source": "OotA", + "page": 226 + } + ], + "reprintedAs": [ + "Duergar Xarrorn|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 25 + }, + "str": 16, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Fire Lance", + "entries": [ + "{@atk mw} {@hit 5} to hit (with disadvantage if the target is within 5 feet of the duergar), reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage plus 3 ({@damage 1d6}) fire damage, or 16 ({@damage 2d12 + 3}) piercing damage plus 3 ({@damage 1d6}) fire damage while enlarged." + ] + }, + { + "name": "Fire Spray {@recharge 5}", + "entries": [ + "From its fire lance, the duergar shoots a 15-foot cone of fire or a line of fire 30 feet long and 5 feet wide. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "environment": [ + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/duergar-xarrorn.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dybbuk", + "source": "MTF", + "page": 132, + "reprintedAs": [ + "Dybbuk|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 6, + "dex": 19, + "con": 16, + "int": 16, + "wis": 15, + "cha": 14, + "skill": { + "deception": "+6", + "intimidation": "+4", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dybbuk's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dimension door}" + ], + "daily": { + "3e": [ + "{@spell fear}", + "{@spell phantasmal force}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The dybbuk can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The dybbuk has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Violate Corpse", + "entries": [ + "The dybbuk can use a bonus action while it is possessing a corpse to make it do something unnatural, such as vomit blood, twist its head all the way around, or cause a quadruped to move as a biped. Any beast or humanoid that sees this behavior must succeed on a {@dc 12} Wisdom saving throw or become {@condition frightened} for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on a saving throw against this ability is immune to Violate Corpse for 24 hours." + ] + } + ], + "action": [ + { + "name": "Tendril", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) necrotic damage. If the target is a creature, its hit point maximum is also reduced by 3 ({@dice 1d6}). This reduction lasts until the target finishes a short or long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + }, + { + "name": "Possess Corpse {@recharge}", + "entries": [ + "The dybbuk disappears into an intact corpse it can see within 5 feet of it. The corpse must be Large or smaller and be that of a beast or a humanoid. The dybbuk is now effectively the possessed creature. Its type becomes undead, though it now looks alive, and it gains a number of temporary hit points equal to the corpse's hit point maximum in life.", + "While possessing the corpse, the dybbuk retains its hit points, alignment, Intelligence, Wisdom, Charisma, telepathy, and immunity to poison damage, {@condition exhaustion}, and being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's game statistics, gaining access to its knowledge and proficiencies but not its class features, if any.", + "The possession lasts until the temporary hit points are lost (at which point the body becomes a corpse once more) or the dybbuk ends its possession using a bonus action. When the possession ends, the dybbuk reappears in an unoccupied space within 5 feet of the corpse." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dybbuk.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "N", + "O" + ], + "damageTagsSpell": [ + "O", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Earth Elemental Myrmidon", + "source": "MTF", + "page": 202, + "otherSources": [ + { + "source": "PotA", + "page": 212 + } + ], + "reprintedAs": [ + "Earth Elemental Myrmidon|MPMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 8, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Terran", + "one language of its creator's choice" + ], + "cr": "7", + "trait": [ + { + "name": "Magic Weapons", + "entries": [ + "The myrmidon's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes two maul attacks." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Thunderous Strike {@recharge}", + "entries": [ + "The myrmidon makes one maul attack. On a hit, the target takes an extra 16 ({@damage 3d10}) thunder damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/earth-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "maul|phb" + ], + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "B", + "T" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eidolon", + "source": "MTF", + "page": 194, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Eidolon|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + 9 + ], + "hp": { + "average": 63, + "formula": "18d8 - 18" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 7, + "dex": 8, + "con": 9, + "int": 14, + "wis": 19, + "cha": 16, + "save": { + "wis": "+8" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "12", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object other than a sacred statue." + ] + }, + { + "name": "Sacred Animation {@recharge 5}", + "entries": [ + "When the eidolon moves into a space occupied by a sacred statue, the eidolon can disappear, causing the statue to become a creature under the eidolon's control. The eidolon uses the {@creature sacred statue|mtf}'s statistics in place of its own." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The eidolon has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Divine Dread", + "entries": [ + "Each creature within 60 feet of the eidolon that can see it must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} for 1 minute. While {@condition frightened} in this way, the creature must take the Dash action and move away from the eidolon by the safest available route at the start of each of its turns, unless there is nowhere for it to move, in which case the creature also becomes {@condition stunned} until it can move again. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to any eidolon's Divine Dread for the next 24 hours." + ] + } + ], + "environment": [ + "coastal", + "desert", + "forest", + "grassland", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/eidolon.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Turn Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O" + ], + "conditionInflict": [ + "frightened", + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Elder Oblex", + "source": "MTF", + "page": 219, + "reprintedAs": [ + "Elder Oblex|MPMM" + ], + "size": [ + "H" + ], + "type": "ooze", + "alignment": [ + "L", + "E" + ], + "ac": [ + 16 + ], + "hp": { + "average": 115, + "formula": "10d12 + 50" + }, + "speed": { + "walk": 20 + }, + "str": 15, + "dex": 16, + "con": 21, + "int": 22, + "wis": 13, + "cha": 18, + "save": { + "int": "+10", + "cha": "+8" + }, + "skill": { + "arcana": "+10", + "deception": "+8", + "history": "+10", + "nature": "+10", + "perception": "+5", + "religion": "+10" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "passive": 15, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "prone" + ], + "languages": [ + "Common plus six more" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The oblex's innate spellcasting ability is Intelligence (spell save {@dc 18}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell detect thoughts}", + "{@spell hold person}" + ], + "daily": { + "3e": [ + "{@spell confusion}", + "{@spell dimension door}", + "{@spell dominate person}", + "{@spell fear}", + "{@spell hallucinatory terrain}", + "{@spell hold monster}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Aversion to Fire", + "entries": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Sulfurous Impersonation", + "entries": [ + "As a bonus action, the oblex can extrude a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 2d6 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. For all practical purposes, the simulacrum is the oblex, meaning the oblex occupies its space and the simulacrum's space simultaneously. The slimy tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex's main body and the simulacrum. The simulacrum disappears if the tether is severed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elder oblex makes two pseudopod attacks and uses Eat Memories." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}17 ({@damage 4d6 + 3}) bludgeoning damage plus 7 ({@damage 2d6}) psychic damage." + ] + }, + { + "name": "Eat Memories", + "entries": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 18} Wisdom saving throw or take 44 ({@damage 8d10}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, oozes, plants, and undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from any ability check or attack roll it makes. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "When an oblex causes a target to become memory drained, the oblex learns all the languages the target knows and gains all its proficiencies, except any saving throw proficiencies." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elder-oblex.mp3" + }, + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "Y" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "unconscious" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "paralyzed", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elder Tempest", + "source": "MTF", + "page": 200, + "reprintedAs": [ + "Elder Tempest|MPMM" + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 19 + ], + "hp": { + "average": 264, + "formula": "16d20 + 96" + }, + "speed": { + "walk": 0, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 23, + "dex": 28, + "con": 23, + "int": 2, + "wis": 21, + "cha": 18, + "save": { + "wis": "+12", + "cha": "+11" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison", + "thunder" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "23", + "trait": [ + { + "name": "Air Form", + "entries": [ + "The tempest can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Flyby", + "entries": [ + "The tempest doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the tempest fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Living Storm", + "entries": [ + "The tempest is always at the center of a storm {@dice 1d6 + 4} miles in diameter. Heavy precipitation in the form of either rain or snow falls there, causing the area to be lightly obscured. Heavy rain also extinguishes open flames and imposes disadvantage on Wisdom ({@skill Perception}) checks that rely on hearing.", + "In addition, strong winds swirl in the area covered by the storm. The winds impose disadvantage on ranged attack rolls. The winds extinguish open flames and disperse fog." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The tempest deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tempest makes two attacks with its thunderous slam." + ] + }, + { + "name": "Thunderous Slam", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}23 ({@damage 4d6 + 9}) thunder damage." + ] + }, + { + "name": "Lightning Storm {@recharge}", + "entries": [ + "All other creatures within 120 feet of the tempest must each make a {@dc 20} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage on a failed save, or half as much damage on a successful one. If a target's saving throw fails by 5 or more, the creature is also {@condition stunned} until the end of its next turn." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The tempest moves up to its speed." + ] + }, + { + "name": "Lightning Strike (Costs 2 Actions)", + "entries": [ + "The tempest can cause a bolt of lightning to strike a point on the ground anywhere under its storm. Each creature within 5 feet of that point must make a {@dc 20} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Screaming Gale (Costs 3 Actions)", + "entries": [ + "The tempest releases a blast of thunder and wind in a line that is 1 mile long and 20 feet wide. Objects in that area take 22 ({@damage 4d10}) thunder damage. Each creature there must succeed on a {@dc 21} Dexterity saving throw or take 22 ({@damage 4d10}) thunder damage and be flung up to 60 feet in a direction away from the line. If a thrown target collides with an immovable object, such as a wall or floor, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown before impact. If the target would collide with another creature instead, that other creature must succeed on a {@dc 19} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ] + } + ], + "environment": [ + "arctic", + "coastal", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elder-tempest.mp3" + }, + "traitTags": [ + "Flyby", + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "L", + "T" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Female Steeder", + "source": "MTF", + "page": 238, + "otherSources": [ + { + "source": "OotA", + "page": 231 + } + ], + "reprintedAs": [ + "Female Steeder|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 16, + "con": 14, + "int": 2, + "wis": 10, + "cha": 3, + "skill": { + "stealth": "+7", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "cr": "1", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Extraordinary Leap", + "entries": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to move 3 feet." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Sticky Leg", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is stuck to the steeder's leg and is {@condition grappled} until it escapes (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/female-steeder.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Elemental Myrmidon", + "source": "MTF", + "page": 203, + "otherSources": [ + { + "source": "PotA", + "page": 213 + } + ], + "reprintedAs": [ + "Fire Elemental Myrmidon|MPMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 18, + "con": 15, + "int": 9, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Ignan", + "one language of its creator's choice" + ], + "cr": "7", + "trait": [ + { + "name": "Illumination", + "entries": [ + "The myrmidon sheds bright light in a 20-foot radius and dim light in a 40-foot radius." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The myrmidon's weapon attacks are magical." + ] + }, + { + "name": "Water Susceptibility", + "entries": [ + "For every 5 feet the myrmidon moves in 1 foot or more of water, it takes 2 ({@damage 1d4}) cold damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes three scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Fiery Strikes {@recharge}", + "entries": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 5 ({@damage 1d10}) fire damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fire-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Illumination", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "C", + "F", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fraz-Urb'luu", + "isNamedCreature": true, + "source": "MTF", + "page": 146, + "otherSources": [ + { + "source": "OotA", + "page": 238 + } + ], + "reprintedAs": [ + "Fraz-Urb'luu|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 337, + "formula": "27d10 + 189" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 29, + "dex": 12, + "con": 25, + "int": 26, + "wis": 24, + "cha": 26, + "save": { + "dex": "+8", + "con": "+14", + "int": "+15", + "wis": "+14" + }, + "skill": { + "deception": "+15", + "perception": "+14", + "stealth": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": { + "cr": "23", + "lair": "24" + }, + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Fraz-Urb'luu's spellcasting ability is Charisma (spell save {@dc 23}). Fraz-Urb'luu can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell phantasmal force}" + ], + "daily": { + "3e": [ + "{@spell confusion}", + "{@spell dream}", + "{@spell mislead}", + "{@spell programmed illusion}", + "{@spell seeming}" + ], + "1e": [ + "{@spell mirage arcane}", + "{@spell modify memory}", + "{@spell project image}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Fraz-Urb'luu fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Fraz-Urb'luu has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Fraz-Urb'luu's weapon attacks are magical." + ] + }, + { + "name": "Undetectable", + "entries": [ + "Fraz-Urb'luu can't be targeted by divination magic, perceived through magical scrying sensors, or detected by abilities that sense demons or fiends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Fraz-Urb'luu makes three attacks: one with his bite and two with his fists." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d6 + 9}) piercing damage." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) bludgeoning damage." + ] + } + ], + "legendary": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage. If the target is a Large or smaller creature, it is also {@condition grappled} (escape {@dc 24}). The {@condition grappled} target is also {@condition restrained}. Fraz-Urb'luu can grapple only one creature with his tail at a time." + ] + }, + { + "name": "Phantasmal Killer (Costs 2 Actions)", + "entries": [ + "Fraz-Urb'luu casts {@spell phantasmal killer}, no {@status concentration} required." + ] + } + ], + "legendaryGroup": { + "name": "Fraz-Urb'luu", + "source": "MTF" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsLegendary": [ + "Y" + ], + "damageTagsSpell": [ + "B", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "incapacitated", + "invisible" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Salamander", + "source": "MTF", + "page": 223, + "reprintedAs": [ + "Frost Salamander|MPMM" + ], + "size": [ + "H" + ], + "type": "elemental", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64" + }, + "speed": { + "walk": 60, + "burrow": 40, + "climb": 40 + }, + "str": 20, + "dex": 12, + "con": 18, + "int": 7, + "wis": 11, + "cha": 7, + "save": { + "con": "+8", + "wis": "+4" + }, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "Primordial" + ], + "cr": "9", + "trait": [ + { + "name": "Burning Fury", + "entries": [ + "When the salamander takes fire damage, its Freezing Breath automatically recharges." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The salamander makes five attacks: four with its claws and one with its bite." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage and 5 ({@damage 1d10}) cold damage." + ] + }, + { + "name": "Freezing Breath {@recharge}", + "entries": [ + "The salamander exhales chill wind in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 44 ({@damage 8d10}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/frost-salamander.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "P" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Geryon", + "isNamedCreature": true, + "source": "MTF", + "page": 173, + "reprintedAs": [ + "Geryon|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 29, + "dex": 17, + "con": 22, + "int": 19, + "wis": 16, + "cha": 23, + "save": { + "dex": "+10", + "con": "+13", + "wis": "+10", + "cha": "+13" + }, + "skill": { + "deception": "+13", + "intimidation": "+13", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "cold", + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "22", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Geryon's innate spellcasting ability is Charisma (spell save {@dc 21}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell geas}", + "{@spell ice storm}", + "{@spell invisibility} (self only)", + "{@spell locate object}", + "{@spell suggestion}", + "{@spell wall of ice}" + ], + "daily": { + "1e": [ + "{@spell divine word}", + "{@spell symbol} (pain only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Geryon fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Geryon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Geryon's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Geryon regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Geryon dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Geryon makes two attacks: one with his claws and one with his stinger." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}23 ({@damage 4d6 + 9}) slashing damage. If the target is Large or smaller, it is {@condition grappled} ({@dc 24}) and is {@condition restrained} until the grapple ends. Geryon can grapple one creature at a time. If the target is already {@condition grappled} by Geryon, the target takes an extra 27 ({@damage 6d8}) slashing damage." + ] + }, + { + "name": "Stinger", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one creature. {@h}14 ({@damage 2d4 + 9}) piercing damage, and the target must succeed on a {@dc 21} Constitution saving throw or take 13 ({@damage 2d12}) poison damage and become {@condition poisoned} until it finishes a short or long rest. The target's hit point maximum is reduced by an amount equal to half the poison damage it takes. If its hit point maximum drops to 0, it dies. This reduction lasts until the {@condition poisoned} condition is removed." + ] + }, + { + "name": "Teleport", + "entries": [ + "Geryon magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "legendary": [ + { + "name": "Infernal Glare", + "entries": [ + "Geryon targets one creature he can see within 60 feet of him. If the target can see Geryon, the target must succeed on a {@dc 23} Wisdom saving throw or become {@condition frightened} of Geryon until the end of its next turn." + ] + }, + { + "name": "Swift Sting (Costs 2 Actions)", + "entries": [ + "Geryon attacks with his stinger." + ] + }, + { + "name": "Teleport", + "entries": [ + "Geryon uses his Teleport action." + ] + } + ], + "legendaryGroup": { + "name": "Geryon", + "source": "MTF" + }, + "variant": [ + { + "type": "variant", + "name": "Sound the Horn", + "entries": [ + "Geryon can have an action that allows him to summon enslaved minotaurs.", + { + "name": "Sound the Horn (1/Day)", + "type": "entries", + "entries": [ + "Geryon blows his horn, which causes {@dice 5d4} minotaurs to appear in unoccupied spaces of his choice within 600 feet of him. The minotaurs roll initiative when they appear. They remain until they die or Geryon uses an action to dismiss any or all of them." + ] + } + ], + "_version": { + "name": "Geryon (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/geryon.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "damageTagsLegendary": [ + "C" + ], + "damageTagsSpell": [ + "B", + "C", + "N", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "poisoned", + "restrained" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "frightened", + "incapacitated", + "invisible", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "charisma", + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giff", + "source": "MTF", + "page": 204, + "reprintedAs": [ + "Giff|MPMM" + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 11, + "wis": 12, + "cha": 12, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Headfirst Charge", + "entries": [ + "The giff can try to knock a creature over; if the giff moves at least 20 feet in a straight line that ends within 5 feet of a Large or smaller creature, that creature must succeed on a {@dc 14} Strength saving throw or take 7 ({@damage 2d6}) bludgeoning damage and be knocked {@condition prone}." + ] + }, + { + "name": "Firearms Knowledge", + "entries": [ + "The giff's mastery of its weapons enables it to ignore the loading property of muskets and pistols." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giff makes two pistol attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Musket", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 40/120 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage." + ] + }, + { + "name": "Pistol", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Fragmentation Grenade (1/Day)", + "entries": [ + "The giff throws a grenade up to 60 feet. Each creature within 20 feet of the grenade's detonation must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) piercing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giff.mp3" + }, + "attachedItems": [ + "longsword|phb", + "musket|dmg", + "pistol|dmg" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Gish", + "source": "MTF", + "page": 205, + "otherSources": [ + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Githyanki Gish|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 15, + "con": 14, + "int": 16, + "wis": 15, + "cha": 16, + "save": { + "con": "+6", + "int": "+7", + "wis": "+6" + }, + "skill": { + "insight": "+6", + "perception": "+6", + "stealth": "+6" + }, + "passive": 16, + "languages": [ + "Gith" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ], + "1e": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The githyanki is an 8th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The githyanki has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell message}", + "{@spell true strike}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell magic missile}", + "{@spell sleep}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell invisibility}", + "{@spell levitate}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell haste}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell dimension door}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "War Magic", + "entries": [ + "When the githyanki uses its action to cast a spell, it can make one weapon attack as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes two longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 18 ({@damage 4d8}) psychic damage, or 8 ({@damage 1d10 + 3}) slashing damage plus 18 ({@damage 4d8}) psychic damage if used with two hands." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-gish.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "S", + "Y" + ], + "damageTagsSpell": [ + "F", + "O", + "T" + ], + "spellcastingTags": [ + "CW", + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Kith'rak", + "source": "MTF", + "page": 205, + "reprintedAs": [ + "Githyanki Kith'rak|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 180, + "formula": "24d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 16, + "con": 17, + "int": 16, + "wis": 15, + "cha": 17, + "save": { + "con": "+7", + "int": "+7", + "wis": "+6" + }, + "skill": { + "intimidation": "+7", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Gith" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell blur}", + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ], + "1e": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Rally the Troops", + "entries": [ + "As a bonus action, the githyanki can magically end the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of it." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes three greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 17 ({@damage 5d6}) psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The githyanki adds 4 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-kith_rak.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "S", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githyanki Supreme Commander", + "source": "MTF", + "page": 206, + "reprintedAs": [ + "Githyanki Supreme Commander|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 17, + "con": 18, + "int": 16, + "wis": 16, + "cha": 18, + "save": { + "con": "+9", + "int": "+8", + "wis": "+8" + }, + "skill": { + "insight": "+8", + "intimidation": "+9", + "perception": "+8" + }, + "passive": 18, + "languages": [ + "Gith" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell jump}", + "{@spell levitate} (self only)", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ], + "1e": [ + "{@spell Bigby's hand}", + "{@spell mass suggestion}", + "{@spell plane shift}", + "{@spell telekinesis}" + ] + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githyanki makes two greatsword attacks." + ] + }, + { + "name": "Silver Greatsword", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 17 ({@damage 5d6}) psychic damage. On a critical hit against a target in an astral body (as with the {@spell astral projection} spell), the githyanki can cut the silvery cord that tethers the target to its material body, instead of dealing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The githyanki adds 5 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ] + } + ], + "legendary": [ + { + "name": "Attack (2 Actions)", + "entries": [ + "The githyanki makes a greatsword attack." + ] + }, + { + "name": "Command Ally", + "entries": [ + "The githyanki targets one ally it can see within 30 feet of it. If the target can see or hear the githyanki, the target can make one melee weapon attack using its reaction and has advantage on the attack roll." + ] + }, + { + "name": "Teleport", + "entries": [ + "The githyanki magically teleports, along with any equipment it is wearing and carrying, to an unoccupied space it can see within 30 feet of it. It also becomes insubstantial until the start of its next turn. While insubstantial, it can move through other creatures and objects as if they were {@quickref difficult terrain||3}. If it ends its turn inside an object, it takes 16 ({@damage 3d10}) force damage and is moved to the nearest unoccupied space." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githyanki-supreme-commander.mp3" + }, + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "O", + "S", + "Y" + ], + "damageTagsSpell": [ + "B", + "O" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Anarch", + "source": "MTF", + "page": 207, + "reprintedAs": [ + "Githzerai Anarch|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 20 + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 21, + "con": 18, + "int": 18, + "wis": 20, + "cha": 14, + "save": { + "str": "+8", + "dex": "+10", + "int": "+9", + "wis": "+10" + }, + "skill": { + "arcana": "+9", + "insight": "+10", + "perception": "+10" + }, + "passive": 20, + "languages": [ + "Gith" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The anarch's innate spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell globe of invulnerability}", + "{@spell plane shift}", + "{@spell teleportation circle}", + "{@spell wall of force}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the anarch is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The anarch makes three unarmed strikes." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage." + ] + } + ], + "legendary": [ + { + "name": "Strike", + "entries": [ + "The anarch makes one unarmed strike." + ] + }, + { + "name": "Teleport", + "entries": [ + "The anarch magically teleports, along with any equipment it is wearing and carrying, to an unoccupied space it can see within 30 feet of it." + ] + }, + { + "name": "Change Gravity (Costs 3 Actions)", + "entries": [ + "The anarch casts the {@spell reverse gravity} spell. The spell has the normal effect, except that the anarch can orient the area in any direction and creatures and objects fall toward the end of the area." + ] + } + ], + "legendaryGroup": { + "name": "Githzerai Anarch", + "source": "MTF" + }, + "soundClip": { + "type": "internal", + "path": "bestiary/githzerai-anarch.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "damageTagsLegendary": [ + "L" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Enlightened", + "source": "MTF", + "page": 208, + "reprintedAs": [ + "Githzerai Enlightened|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gith" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 18 + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 19, + "con": 16, + "int": 17, + "wis": 19, + "cha": 13, + "save": { + "str": "+6", + "dex": "+8", + "int": "+7", + "wis": "+8" + }, + "skill": { + "arcana": "+7", + "insight": "+8", + "perception": "+8" + }, + "passive": 18, + "languages": [ + "Gith" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai's innate spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "3e": [ + "{@spell blur}", + "{@spell expeditious retreat}", + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}" + ], + "1e": [ + "{@spell haste}", + "{@spell plane shift}", + "{@spell teleport}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes three unarmed strikes." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) psychic damage." + ] + }, + { + "name": "Temporal Strike {@recharge}", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 52 ({@damage 8d12}) psychic damage. The target must succeed on a {@dc 16} Wisdom saving throw or move 1 round forward in time. A target moved forward in time vanishes for the duration. When the effect ends, the target reappears in the space it left or in an unoccupied space nearest to that space if it's occupied." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/githzerai-enlightened.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gloom Weaver", + "source": "MTF", + "page": 224, + "reprintedAs": [ + "Shadar-kai Gloom Weaver|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 15, + "wis": 12, + "cha": 18, + "save": { + "dex": "+8", + "con": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "exhaustion" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The gloom weaver's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell arcane eye}", + "{@spell mage armor}", + "{@spell speak with dead}" + ], + "daily": { + "1e": [ + "{@spell arcane gate}", + "{@spell bane}", + "{@spell compulsion}", + "{@spell confusion}", + "{@spell true seeing}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The gloom weaver is a 12th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell chill touch}", + "{@spell eldritch blast}*" + ] + }, + "5": { + "lower": 1, + "slots": 3, + "spells": [ + "{@spell armor of Agathys}", + "{@spell blight}", + "{@spell darkness}", + "{@spell dream}", + "{@spell invisibility}", + "{@spell fear}", + "{@spell hypnotic pattern}", + "{@spell major image}", + "{@spell contact other plane}", + "{@spell vampiric touch}", + "{@spell witch bolt}" + ] + } + }, + "footerEntries": [ + "*3 beams +4 bonus to each damage roll" + ], + "ability": "cha" + } + ], + "trait": [ + { + "name": "Burden of Time", + "entries": [ + "Beasts and humanoids, other than shadar-kai, have disadvantage on saving throws while within 10 feet of the gloom weaver." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "The gloom weaver has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gloom weaver makes two spear attacks and casts one spell that takes 1 action to cast." + ] + }, + { + "name": "Shadow Spear", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 26 ({@damage 4d12}) necrotic damage, or 8 ({@damage 1d8 + 4}) piercing damage plus 26 ({@damage 4d12}) necrotic damage if used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Misty Escape (Recharges after a Short or Long Rest)", + "entries": [ + "When the gloom weaver takes damage, it turns {@condition invisible} and teleports up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks or casts a spell." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gloom-weaver.mp3" + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "N", + "P" + ], + "damageTagsSpell": [ + "C", + "L", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "invisible" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gray Render", + "source": "MTF", + "page": 209, + "reprintedAs": [ + "Gray Render|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 13, + "con": 20, + "int": 3, + "wis": 6, + "cha": 8, + "save": { + "str": "+8", + "con": "+9" + }, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "cr": "12", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gray render makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) piercing damage. If the target is Medium or smaller, the target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage. If the target is {@condition prone} an additional 7 ({@damage 2d6}) bludgeoning damage is dealt to the target." + ] + } + ], + "reaction": [ + { + "name": "Bloody Rampage", + "entries": [ + "When the gray render takes damage, it makes one attack with its claws against a random creature within its reach, other than its master." + ] + } + ], + "environment": [ + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gray-render.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Graz'zt", + "isNamedCreature": true, + "source": "MTF", + "page": 149, + "otherSources": [ + { + "source": "OotA", + "page": 241 + } + ], + "reprintedAs": [ + "Graz'zt|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon", + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 346, + "formula": "33d10 + 165" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 15, + "con": 21, + "int": 23, + "wis": 21, + "cha": 26, + "save": { + "dex": "+9", + "con": "+12", + "wis": "+12" + }, + "skill": { + "deception": "+15", + "insight": "+12", + "perception": "+12", + "persuasion": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "24", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Graz'zt's spellcasting ability is Charisma (spell save {@dc 23}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person}", + "{@spell crown of madness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell dissonant whispers}" + ], + "daily": { + "3e": [ + "{@spell counterspell}", + "{@spell darkness}", + "{@spell dominate person}", + "{@spell sanctuary}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "1e": [ + "{@spell dominate monster}", + "{@spell greater invisibility}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "Graz'zt can use his action to polymorph into a form that resembles a Medium humanoid, or back into his true form. Aside from his size, his statistics are the same in each form. Any equipment he is wearing or carrying isn't transformed." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Graz'zt fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Graz'zt has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Graz'zt's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Graz'zt attacks twice with Wave of Sorrow." + ] + }, + { + "name": "Wave of Sorrow (Greatsword)", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}20 ({@damage 4d6 + 6}) slashing damage plus 10 ({@damage 3d6}) acid damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "Graz'zt magically teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Graz'zt attacks once with Wave of Sorrow." + ] + }, + { + "name": "Dance, My Puppet", + "entries": [ + "One creature {@condition charmed} by Graz'zt that Graz'zt can see must use its reaction to move up to its speed as Graz'zt directs." + ] + }, + { + "name": "Sow Discord", + "entries": [ + "Graz'zt casts {@spell crown of madness} or dissonant whispers." + ] + }, + { + "name": "Teleport", + "entries": [ + "Graz'zt uses his Teleport action." + ] + } + ], + "legendaryGroup": { + "name": "Graz'zt", + "source": "MTF" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Shapechanger" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "S" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "restrained" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Green Abishai", + "source": "MTF", + "page": 162, + "reprintedAs": [ + "Green Abishai|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "25d8 + 75" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 12, + "dex": 17, + "con": 16, + "int": 17, + "wis": 12, + "cha": 19, + "save": { + "int": "+8", + "cha": "+9" + }, + "skill": { + "deception": "+9", + "insight": "+6", + "perception": "+6", + "persuasion": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "15", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The abishai's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self}", + "{@spell major image}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell detect thoughts}", + "{@spell fear}" + ], + "1e": [ + "{@spell confusion}", + "{@spell dominate person}", + "{@spell mass suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The abishai's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes two attacks, one with its claws and one with its longsword, or it casts one spell from its Innate Spellcasting trait and makes one claw attack." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/green-abishai.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hellfire Engine", + "source": "MTF", + "page": 165, + "reprintedAs": [ + "Hellfire Engine|MPMM" + ], + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 16, + "con": 24, + "int": 2, + "wis": 10, + "cha": 1, + "save": { + "dex": "+8", + "wis": "+5", + "cha": "+0" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "psychic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "understands Infernal but can't speak" + ], + "cr": "16", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The hellfire engine is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The hellfire engine has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Flesh-Crushing Stride", + "entries": [ + "The hellfire engine moves up to its speed in a straight line. During this move, it can enter Large or smaller creatures' spaces. A creature whose space the hellfire engine enters must make a {@dc 18} Dexterity saving throw. On a successful save, the creature is pushed to the nearest space out of the hellfire engine's path. On a failed save, the creature falls {@condition prone} and takes 28 ({@damage 8d6}) bludgeoning damage.", + "If the hellfire engine remains in the {@condition prone} creature's space, the creature is also {@condition restrained} until it's no longer in the same space as the hellfire engine. While {@condition restrained} in this way, the creature, or another creature within 5 feet of it, can make a {@dc 18} Strength check. On a success, the creature is shunted to an unoccupied space of its choice within 5 feet of the hellfire engine and is no longer {@condition restrained}." + ] + }, + { + "name": "Hellfire Weapons", + "entries": [ + "The hellfire engine uses one of the following options:", + { + "type": "list", + "items": [ + { + "type": "item", + "name": "Bonemelt Sprayer", + "entry": "The hellfire engine spews acidic flame in a 60-foot cone. Each creature in the cone must make a {@dc 20} Dexterity saving throw, taking 11 ({@damage 2d10}) fire damage plus 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one. Creatures that fail the saving throw are drenched in burning acid and take 5 ({@damage 1d10}) fire damage plus 9 ({@damage 2d8}) acid damage at the end of their turns. An affected creature or another creature within 5 feet of it can take an action to scrape off the burning fuel." + }, + { + "type": "item", + "name": "Lightning Flail", + "entry": "{@atk mw} {@hit 11} to hit, reach 15 ft., one creature. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 22 ({@damage 5d8}) lightning damage. Up to three other creatures of the hellfire engine's choice that it can see within 30 feet of the target must each make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 5d8}) lightning damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Thunder Cannon", + "entry": "The hellfire engine targets a point within 120 feet of it that it can see. Each creature within 30 feet of that point must make a {@dc 20} Dexterity saving throw, taking 27 ({@damage 5d10}) bludgeoning damage plus 13 ({@damage 2d12}) thunder damage on a failed save, or half as much damage on a successful one." + } + ] + }, + "If the chosen option kills a creature, the creature's soul rises from the River Styx as a lemure in Avernus in {@dice 1d4} hours. If the creature isn't revived before then, only a {@spell wish} spell or killing the lemure and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hellfire-engine.mp3" + }, + "traitTags": [ + "Immutable Form", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "CS", + "I" + ], + "damageTags": [ + "A", + "B", + "F", + "L", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Howler", + "source": "MTF", + "page": 210, + "reprintedAs": [ + "Howler|MPMM" + ], + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 16, + "con": 15, + "int": 5, + "wis": 20, + "cha": 6, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "A howler has advantage on attack rolls against a creature if at least one of the howler's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The howler makes two bite attacks." + ] + }, + { + "name": "Rending Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is {@condition frightened} it takes an additional 22 ({@damage 4d10}) psychic damage. This attack ignores damage resistance." + ] + }, + { + "name": "Mind-Breaking Howl {@recharge}", + "entries": [ + "The howler emits a keening howl in a 60-foot cone. Each creature in that area that isn't {@condition deafened} must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} until the end of the howler's next turn. While a creature is {@condition frightened} in this way, its speed is halved, and it is {@condition incapacitated}. A target that successfully saves is immune to the Mind-Breaking Howl of all howlers for the next 24 hours." + ] + } + ], + "environment": [ + "desert", + "grassland", + "hill", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/howler.mp3" + }, + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hutijin", + "isNamedCreature": true, + "source": "MTF", + "page": 175, + "reprintedAs": [ + "Hutijin|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 27, + "dex": 15, + "con": 25, + "int": 23, + "wis": 19, + "cha": 25, + "save": { + "dex": "+9", + "con": "+14", + "wis": "+11" + }, + "skill": { + "intimidation": "+14", + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Hutijin's innate spellcasting ability is Charisma (spell save {@dc 22}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell animate dead}", + "{@spell detect magic}", + "{@spell hold monster}", + "{@spell invisibility} (self only)", + "{@spell lightning bolt}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "daily": { + "3": [ + "{@spell dispel magic}" + ], + "1e": [ + "{@spell heal}", + "{@spell symbol} (hopelessness only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Infernal Despair", + "entries": [ + "Each creature within 15 feet of Hutijin that isn't a devil makes saving throws with disadvantage." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Hutijin fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Hutijin has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Hutijin's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Hutijin regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Hutijin dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hutijin makes four attacks: one with his bite, one with his claw, one with his mace, and one with his tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) piercing damage. The target must succeed on a {@dc 22} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target can't regain hit points, and it takes 10 ({@damage 3d6}) poison damage at the start of each of its turns. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) bludgeoning damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) bludgeoning damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "Hutijin magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "reaction": [ + { + "name": "Fearful Voice {@recharge 5}", + "entries": [ + "In response to taking damage, Hutijin utters a dreadful word of power. Each creature within 30 feet of him that isn't a devil must succeed on a {@dc 22} Wisdom saving throw or become {@condition frightened} of him 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. A creature that saves against this effect is immune to Hutijin's Fearful Voice for 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Hutijin attacks once with his mace." + ] + }, + { + "name": "Lightning Storm (Costs 2 Actions)", + "entries": [ + "Hutijin releases lightning in a 20-foot radius. All other creatures in that area must each make a {@dc 22} Dexterity saving throw, taking 18 ({@damage 4d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Teleport", + "entries": [ + "Hutijin uses his Teleport action." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hutijin.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "I", + "L", + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "N", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "poisoned" + ], + "conditionInflictSpell": [ + "frightened", + "incapacitated", + "invisible", + "paralyzed", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hydroloth", + "source": "MTF", + "page": 249, + "reprintedAs": [ + "Hydroloth|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 15 + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 12, + "dex": 21, + "con": 16, + "int": 19, + "wis": 10, + "cha": 14, + "skill": { + "insight": "+4", + "perception": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hydroloth's innate spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell water walk}" + ], + "daily": { + "3e": [ + "{@spell control water}", + "{@spell crown of madness}", + "{@spell fear}", + "{@spell phantasmal killer}", + "{@spell suggestion}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The hydroloth can breathe air and water." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The hydroloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The hydroloth's weapon attacks are magical." + ] + }, + { + "name": "Secure Memory", + "entries": [ + "The hydroloth is immune to the waters of the River Styx as well as any effect that would steal or modify its memories or detect or read its thoughts." + ] + }, + { + "name": "Watery Advantage", + "entries": [ + "While submerged in liquid, the hydroloth has advantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hydroloth makes two melee attacks. In place of one of these attacks, it can cast one spell that takes 1 action to cast." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ] + }, + { + "name": "Steal Memory (1/Day)", + "entries": [ + "The hydroloth targets one creature it can see within 60 feet of it. The target takes {@damage 4d6} psychic damage, and it must make a {@dc 16} Intelligence saving throw. On a successful save, the target becomes immune to this hydroloth's Steal Memory for 24 hours. On a failed save, the target loses all proficiencies, it can't cast spells, it can't understand language, and if its Intelligence and Charisma scores are higher than 5, they become 5. Each time the target finishes a long rest, it can repeat the saving throw, ending the effect on itself on a success. A {@spell greater restoration} or {@spell remove curse} spell cast on the target ends this effect early." + ] + }, + { + "name": "Teleport", + "entries": [ + "The hydroloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hydroloth.mp3" + }, + "traitTags": [ + "Amphibious", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "B", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "CUR", + "MW" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Iron Cobra", + "source": "MTF", + "page": 125, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "RtG", + "page": 33 + } + ], + "reprintedAs": [ + "Clockwork Iron Cobra|MPMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 3, + "wis": 10, + "cha": 1, + "skill": { + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The iron cobra has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or suffer one random poison effect:", + "1. Poison Damage: The target takes 13 ({@damage 3d8}) poison damage.", + "2. Confusion: On its next turn, the target must use its action to make one weapon attack against a random creature it can see within 30 feet of it, using whatever weapon it has in hand and moving beforehand if necessary to get in range. If it's holding no weapon, it makes an unarmed strike. If no creature is visible within 30 feet, it takes the Dash action, moving toward the nearest creature.", + "3. Paralysis: The target is {@condition paralyzed} until the end of its next turn." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/iron-cobra.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Juiblex", + "isNamedCreature": true, + "source": "MTF", + "page": 151, + "otherSources": [ + { + "source": "OotA", + "page": 243 + } + ], + "reprintedAs": [ + "Juiblex|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 350, + "formula": "28d12 + 168" + }, + "speed": { + "walk": 30 + }, + "str": 24, + "dex": 10, + "con": 23, + "int": 20, + "wis": 20, + "cha": 16, + "save": { + "dex": "+7", + "con": "+13", + "wis": "+12" + }, + "skill": { + "perception": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned", + "unconscious" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "23", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Juiblex's spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). Juiblex can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell acid splash} (17th level)", + "{@spell detect magic}" + ], + "daily": { + "3e": [ + "{@spell blight}", + "{@spell contagion}", + "{@spell gaseous form}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Foul", + "entries": [ + "Any creature, other than an ooze, that starts its turn within 10 feet of Juiblex must succeed on a {@dc 21} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Juiblex fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Juiblex has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Juiblex's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Juiblex regains 20 hit points at the start of its turn. If it takes fire or radiant damage, this trait doesn't function at the start of its next turn. Juiblex dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Juiblex can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Juiblex makes three acid lash attacks." + ] + }, + { + "name": "Acid Lash", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}21 ({@damage 4d6 + 7}) acid damage. Any creature killed by this attack is drawn into Juiblex's body, and the corpse is obliterated after 1 minute." + ] + }, + { + "name": "Eject Slime {@recharge 5}", + "entries": [ + "Juiblex spews out a corrosive slime, targeting one creature that it can see within 60 feet of it. The target must make a {@dc 21} Dexterity saving throw. On a failure, the target takes 55 ({@damage 10d10}) acid damage. Unless the target avoids taking any of this damage, any metal armor worn by the target takes a permanent \u22121 penalty to the AC it offers, and any metal weapon it is carrying or wearing takes a permanent \u22121 penalty to damage rolls. The penalty worsens each time a target is subjected to this effect. If the penalty on an object drops to \u22125, the object is destroyed." + ] + } + ], + "legendary": [ + { + "name": "Acid Splash", + "entries": [ + "Juiblex casts {@spell acid splash}." + ] + }, + { + "name": "Attack", + "entries": [ + "Juiblex makes one acid lash attack." + ] + }, + { + "name": "Corrupting Touch (Costs 2 Actions)", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one creature. {@h}21 ({@damage 4d6 + 7}) poison damage, and the target is slimed. Until the slime is scraped off with an action, the target is {@condition poisoned}, and any creature, other than an ooze, is {@condition poisoned} while within 10 feet of the target." + ] + } + ], + "legendaryGroup": { + "name": "Juiblex", + "source": "MTF" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Regeneration", + "Spider Climb" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "I" + ], + "damageTagsLegendary": [ + "F" + ], + "damageTagsSpell": [ + "A", + "N" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictLegendary": [ + "prone", + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kruthik Hive Lord", + "source": "MTF", + "page": 212, + "reprintedAs": [ + "Kruthik Hive Lord|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36" + }, + "speed": { + "walk": 40, + "burrow": 20, + "climb": 40 + }, + "str": 19, + "dex": 16, + "con": 17, + "int": 10, + "wis": 14, + "cha": 10, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 12, + "languages": [ + "Kruthik" + ], + "cr": "5", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The kruthik has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kruthik makes two stab attacks or two spike attacks." + ] + }, + { + "name": "Stab", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ] + }, + { + "name": "Spike", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Acid Spray {@recharge 5}", + "entries": [ + "The kruthik sprays acid in a 15-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 22 ({@damage 4d10}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "desert", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kruthik-hive-lord.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics", + "Tunneler" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Leviathan", + "source": "MTF", + "page": 198, + "reprintedAs": [ + "Leviathan|MPMM" + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 17 + ], + "hp": { + "average": 328, + "formula": "16d20 + 160" + }, + "speed": { + "walk": 40, + "swim": 120 + }, + "str": 30, + "dex": 24, + "con": 30, + "int": 2, + "wis": 18, + "cha": 17, + "save": { + "wis": "+10", + "cha": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "20", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the leviathan fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Partial Freeze", + "entries": [ + "If the leviathan takes 50 cold damage or more during a single turn, the leviathan partially freezes; until the end of its next turn, its speeds are reduced to 20 feet, and it makes attack rolls with disadvantage." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The leviathan deals double damage to objects and structures (included in Tidal Wave)." + ] + }, + { + "name": "Water Form", + "entries": [ + "The leviathan can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The leviathan makes two attacks: one with its slam and one with its tail." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}15 ({@damage 1d10 + 10}) bludgeoning damage plus 5 ({@damage 1d10}) acid damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}16 ({@damage 1d12 + 10}) bludgeoning damage plus 6 ({@damage 1d12}) acid damage." + ] + }, + { + "name": "Tidal Wave {@recharge}", + "entries": [ + "While submerged, the leviathan magically creates a wall of water centered on itself. The wall is up 250 feet long, up to 250 feet high, and up to 50 feet thick. When the wall appears, all other creatures within its area must each make a {@dc 24} Strength saving throw. A creature takes 33 ({@damage 6d10}) bludgeoning damage on failed save, or half as much damage on a successful one.", + "At the start of each of the leviathan's turns after the wall appears, the wall, along with any other creatures in it, moves 50 feet away from the leviathan. Any Huge or smaller creature inside the wall or whose space the wall enters when it moves must succeed on a {@dc 24} Strength saving throw or take 27 ({@damage 5d10}) bludgeoning damage. A creature takes this damage no more than once on a turn. At the end of each turn the wall moves, the wall's height is reduced by 50 feet, and the damage creatures take from the wall on subsequent rounds is reduced by {@dice 1d10}. When the wall reaches 0 feet in height, the effect ends.", + "A creature caught in the wall can move by swimming. Because of the force of the wave, though, the creature must make a successful {@dc 24} Strength ({@skill Athletics}) check to swim at all during that turn." + ] + } + ], + "legendary": [ + { + "name": "Slam (Costs 2 Actions)", + "entries": [ + "The leviathan makes one slam attack." + ] + }, + { + "name": "Move", + "entries": [ + "The leviathan moves up to its speed." + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/leviathan.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "C" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Male Steeder", + "source": "MTF", + "page": 238, + "otherSources": [ + { + "source": "OotA", + "page": 231 + } + ], + "reprintedAs": [ + "Male Steeder|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 12, + "con": 14, + "int": 2, + "wis": 10, + "cha": 3, + "skill": { + "stealth": "+5", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "cr": "1/4", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Extraordinary Leap", + "entries": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to jump 3 feet." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ] + }, + { + "name": "Sticky Leg", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Small or Tiny creature. {@h}The target is stuck to the steeder's leg and is {@condition grappled} until it escapes (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/male-steeder.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Marut", + "source": "MTF", + "page": 213, + "reprintedAs": [ + "Marut|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "construct", + "tags": [ + "inevitable" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 432, + "formula": "32d10 + 256" + }, + "speed": { + "walk": 40, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 28, + "dex": 12, + "con": 26, + "int": 19, + "wis": 15, + "cha": 18, + "save": { + "int": "+12", + "wis": "+10", + "cha": "+12" + }, + "skill": { + "insight": "+10", + "intimidation": "+12", + "perception": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 20, + "resist": [ + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "all but rarely speaks" + ], + "cr": "25", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The marut's innate spellcasting ability is Intelligence (spell save {@dc 20}). The marut can innately cast the following spell, requiring no material components." + ], + "will": [ + "{@spell plane shift} (self only)" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The marut is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the marut fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The marut has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The marut makes two slam attacks." + ] + }, + { + "name": "Unerring Slam", + "entries": [ + "{@atk mw} automatic hit, reach 5 ft., one target. {@h}60 force damage, and the target is pushed up to 5 feet away from the marut if it is Huge or smaller." + ] + }, + { + "name": "Blazing Edict {@recharge 5}", + "entries": [ + "Arcane energy emanates from the marut's chest in a 60-foot cube. Every creature in that area takes 45 radiant damage. Each creature that takes any of this damage must succeed on a {@dc 20} Wisdom saving throw or be {@condition stunned} until the end of the marut's next turn." + ] + }, + { + "name": "Justify", + "entries": [ + "The marut targets up to two creatures it can see within 60 feet of it. Each target must succeed on a {@dc 20} Charisma saving throw or be teleported to a teleportation circle in the Hall of Concordance in Sigil. A target fails automatically if it is {@condition incapacitated}. If either target is teleported in this way, the marut teleports with it to the circle.", + "After teleporting in this way, the marut can't use this action again until it finishes a short or long rest." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/marut.mp3" + }, + "traitTags": [ + "Immutable Form", + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O", + "R" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maurezhi", + "source": "MTF", + "page": 133, + "reprintedAs": [ + "Maurezhi|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 17, + "con": 12, + "int": 11, + "wis": 12, + "cha": 15, + "skill": { + "deception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "Abyssal", + "Elvish", + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Assume Form", + "entries": [ + "The maurezhi can assume the appearance of any Medium humanoid it has eaten. It remains in this form for {@dice 1d6} days, during which time the form gradually decays until, when the effect ends, the form sloughs from the demon's body." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The maurezhi has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The maurezhi makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage. If the target is a humanoid, its Charisma score is reduced by {@dice 1d4}. This reduction lasts until the target finishes a short or long rest. The target dies if this reduces its Charisma to 0. It rises 24 hours later as a ghoul, unless it has been revived or its corpse has been destroyed." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage. If the target is a creature other than an undead, it must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Raise Ghoul {@recharge 5}", + "entries": [ + "The maurezhi targets one dead ghoul or ghast it can see within 30 feet of it. The target is revived with all its hit points." + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/maurezhi.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "E", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Meazel", + "source": "MTF", + "page": 214, + "reprintedAs": [ + "Meazel|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "meazel" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 35, + "formula": "10d8 - 10" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 17, + "con": 9, + "int": 14, + "wis": 13, + "cha": 10, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the meazel can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Garrote", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target of the meazel's size or smaller. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13} with disadvantage). Until the grapple ends, the target takes 10 ({@damage 2d6 + 3}) bludgeoning damage at the start of each of the meazel's turns. The meazel can't make weapon attacks while grappling a creature in this way." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, plus 3 ({@damage 1d6}) necrotic damage." + ] + }, + { + "name": "Shadow Teleport {@recharge 5}", + "entries": [ + "The meazel, any equipment it is wearing or carrying, and any creature it is grappling teleport to an unoccupied space within 500 feet of it, provided that the starting space and the destination are in dim light or darkness. The destination must be a place the meazel has seen before, but it need not be within line of sight. If the destination space is occupied, the teleportation leads to the nearest unoccupied space.", + "Any other creature the meazel teleports becomes cursed by shadow for 1 hour. Until this curse ends, every undead and every creature native to the Shadowfell within 300 feet of the cursed creature can sense it, which prevents that creature from hiding from them." + ] + } + ], + "environment": [ + "desert", + "forest", + "grassland", + "hill", + "mountain", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/meazel.mp3" + }, + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "N", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Merregon", + "source": "MTF", + "page": 166, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Merregon|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 6, + "wis": 12, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "frightened", + "poisoned" + ], + "languages": [ + "understands Infernal but can't speak", + "telepathy 120 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the merregon's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The merregon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The merregon makes two halberd attacks, or if an allied fiend of challenge rating 6 or higher is within 60 feet of it, the merregon makes three halberd attacks." + ] + }, + { + "name": "Halberd", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Loyal Bodyguard", + "entries": [ + "When another fiend within 5 feet of the merregon is hit by an attack, the merregon causes itself to be hit instead." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/merregon.mp3" + }, + "attachedItems": [ + "halberd|phb", + "heavy crossbow|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Merrenoloth", + "source": "MTF", + "page": 250, + "reprintedAs": [ + "Merrenoloth|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 8, + "dex": 17, + "con": 10, + "int": 17, + "wis": 14, + "cha": 11, + "save": { + "dex": "+5", + "int": "+5" + }, + "skill": { + "history": "+5", + "nature": "+5", + "perception": "+4", + "survival": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The merrenoloth's innate spellcasting ability is Intelligence (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person}", + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell gust of wind}" + ], + "daily": { + "1": [ + "{@spell control weather}" + ], + "3": [ + "{@spell control water}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The merrenoloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The merrenoloth's weapon attacks are magical." + ] + }, + { + "name": "Teleport", + "entries": [ + "As a bonus action, the merrenoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The merrenoloth uses Fear Gaze once and makes one oar attack." + ] + }, + { + "name": "Oar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ] + }, + { + "name": "Fear Gaze", + "entries": [ + "The merrenoloth targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendaryGroup": { + "name": "Merrenoloth", + "source": "MTF" + }, + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/merrenoloth.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictLegendary": [ + "prone" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "strength" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Moloch", + "isNamedCreature": true, + "source": "MTF", + "page": 177, + "reprintedAs": [ + "Moloch|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 253, + "formula": "22d10 + 132" + }, + "speed": { + "walk": 30 + }, + "str": 26, + "dex": 19, + "con": 22, + "int": 21, + "wis": 18, + "cha": 23, + "save": { + "dex": "+11", + "con": "+13", + "wis": "+11", + "cha": "+13" + }, + "skill": { + "deception": "+13", + "intimidation": "+13", + "perception": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Moloch's innate spellcasting ability is Charisma (spell save {@dc 21}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell animate dead}", + "{@spell burning hands} (as a 7th-level spell)", + "{@spell confusion}", + "{@spell detect magic}", + "{@spell fly}", + "{@spell geas}", + "{@spell major image}", + "{@spell stinking cloud}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "daily": { + "1e": [ + "{@spell flame strike}", + "{@spell symbol} (stunning only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Moloch fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Moloch has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Moloch's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Moloch regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Moloch dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Moloch makes three attacks: one with his bite, one with his claw, and one with his whip." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d8 + 8}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ] + }, + { + "name": "Many-Tailed Whip", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}13 ({@damage 2d4 + 8}) slashing damage plus 11 ({@damage 2d10}) lightning damage. If the target is a creature, it must succeed on a {@dc 24} Strength saving throw or be pulled up to 30 feet in a straight line toward Moloch." + ] + }, + { + "name": "Breath of Despair {@recharge 5}", + "entries": [ + "Moloch exhales in a 30-foot cube. Each creature in that area must succeed on a {@dc 21} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage, drop whatever it is holding, and become {@condition frightened} for 1 minute. While {@condition frightened} in this way, a creature must take the Dash action and move away from Moloch by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the Dash action. If the creature ends its turn in a location where it doesn't have line of sight to Moloch, the creature can repeat the saving throw. On a success, the effect ends." + ] + }, + { + "name": "Teleport", + "entries": [ + "Moloch magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ] + } + ], + "legendary": [ + { + "name": "Stinking Cloud", + "entries": [ + "Moloch casts {@spell stinking cloud}." + ] + }, + { + "name": "Teleport", + "entries": [ + "Moloch uses his Teleport action." + ] + }, + { + "name": "Whip", + "entries": [ + "Moloch makes one attack with his whip." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/moloch.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "L", + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "B", + "F", + "N", + "P", + "R", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Molydeus", + "source": "MTF", + "page": 134, + "reprintedAs": [ + "Molydeus|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112" + }, + "speed": { + "walk": 40 + }, + "str": 28, + "dex": 22, + "con": 25, + "int": 21, + "wis": 24, + "cha": 24, + "save": { + "str": "+16", + "con": "+14", + "wis": "+14", + "cha": "+14" + }, + "skill": { + "perception": "+21" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 31, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "poisoned", + "stunned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The molydeus's innate spellcasting ability is Charisma (spell save {@dc 22}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dispel magic}", + "{@spell polymorph}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "daily": { + "1": [ + "{@spell imprisonment}" + ], + "3": [ + "{@spell lightning bolt}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the molydeus fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The molydeus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The molydeus's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The molydeus makes three attacks: one with its weapon, one with its wolf bite, and one with its snakebite." + ] + }, + { + "name": "Demonic Weapon", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) slashing damage. If the target has at least one head and the molydeus rolled a 20 on the attack roll, the target is decapitated and dies if it can't survive without that head. A target is immune to this effect if it takes none of the damage, has legendary actions, or is Huge or larger. Such a creature takes an extra {@damage 6d8} slashing damage from the hit." + ] + }, + { + "name": "Wolf Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) piercing damage." + ] + }, + { + "name": "Snakebite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one creature. {@h}12 ({@damage 1d6 + 9}) piercing damage, and the target must succeed on a {@dc 22} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target transforms into a {@creature manes} if this reduces its hit point maximum to 0. This transformation can be ended only by a {@spell wish} spell." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The molydeus makes one attack, either with its demonic weapon or with its snakebite." + ] + }, + { + "name": "Move", + "entries": [ + "The molydeus moves without provoking opportunity attacks." + ] + }, + { + "name": "Cast a Spell", + "entries": [ + "The molydeus casts one spell from its Innate Spellcasting trait." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Demon Summoning", + "entries": [ + "You can give a molydeus the ability to summon other demons.", + { + "name": "Summon Demon (1/Day)", + "type": "entries", + "entries": [ + "As an action, the molydeus has a {@chance 50} chance of summoning its choice of {@dice 1d6} babaus, {@dice 1d4} {@creature chasme||chasmes}, or one {@creature marilith}. A summoned demon appears in an unoccupied space within 60 feet of the molydeus, acts as an ally of the molydeus, and can't summon other demons. It remains for 1 minute, until it or the molydeus dies, or until the molydeus dismisses it as an action." + ] + } + ], + "_version": { + "name": "Molydeus (Summoner)", + "addHeadersAs": "action" + } + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/molydeus.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Nabassu", + "source": "MTF", + "page": 135, + "reprintedAs": [ + "Nabassu|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 190, + "formula": "20d8 + 100" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 22, + "dex": 14, + "con": 21, + "int": 14, + "wis": 15, + "cha": 17, + "save": { + "str": "+11", + "dex": "+7" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "15", + "trait": [ + { + "name": "Demonic Shadows", + "entries": [ + "The nabassu darkens the area around its body in a 10-foot radius. Nonmagical light can't illuminate this area of dim light." + ] + }, + { + "name": "Devour Soul", + "entries": [ + "A nabassu can eat the soul of a creature it has killed within the last hour, provided that creature is neither a construct nor an undead. The devouring requires the nabassu to be within 5 feet of the corpse for at least 10 minutes, after which it gains a number of Hit Dice ({@dice d8}s) equal to half the creature's number of Hit Dice. Roll those dice, and increase the nabassu's hit points by the numbers rolled. For every 4 Hit Dice the nabassu gains in this way, its attacks deal an extra 3 ({@damage 1d6}) damage on a hit. The nabassu retains these benefits for 6 days. A creature devoured by a nabassu can be restored to life only by a {@spell wish} spell." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The nabassu has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The nabassu's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nabassu uses its Soul-Stealing Gaze and makes two attacks: one with its claws and one with its bite." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}32 ({@damage 4d12 + 6}) piercing damage." + ] + }, + { + "name": "Soul-Stealing Gaze", + "entries": [ + "The nabassu targets one creature it can see within 30 feet of it. If the target can see the nabassu and isn't a construct or an undead, it must succeed on a {@dc 16} Charisma saving throw or reduce its hit point maximum by 13 ({@damage 2d12}) damage and give the nabassu an equal number of temporary hit points. This reduction lasts until the target finishes a short or long rest. The target dies if its hit point maximum is reduced to 0, and if the target is a humanoid, it immediately rises as a {@creature ghoul} under the nabassu's control." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nabassu.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "AOE", + "HPR", + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nagpa", + "source": "MTF", + "page": 215, + "reprintedAs": [ + "Nagpa|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "nagpa" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "34d8 + 34" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 15, + "con": 12, + "int": 23, + "wis": 18, + "cha": 21, + "save": { + "int": "+12", + "wis": "+10", + "cha": "+11" + }, + "skill": { + "arcana": "+12", + "deception": "+11", + "history": "+12", + "insight": "+10", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "languages": [ + "Common plus up to five other languages" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The nagpa is a 15th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). A nagpa has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell protection from evil and good}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell ray of enfeeblement}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell hallucinatory terrain}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dominate person}", + "{@spell dream}", + "{@spell geas}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}", + "{@spell disintegrate}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell etherealness}", + "{@spell prismatic spray}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell feeblemind}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Corruption", + "entries": [ + "As a bonus action, the nagpa targets one creature it can see within 90 feet of it. The target must make a {@dc 20} Charisma saving throw. An evil creature makes the save with disadvantage. On a failed save, the target is {@condition charmed} by the nagpa until the start of the nagpa's next turn. On a successful save, the target becomes immune to the nagpa's Corruption for the next 24 hours." + ] + }, + { + "name": "Paralysis {@recharge}", + "entries": [ + "As a bonus action, the nagpa forces each creature within 30 feet of it to succeed on a {@dc 20} Wisdom saving throw or be {@condition paralyzed} for 1 minute. A {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Undead and constructs are immune to this effect." + ] + } + ], + "action": [ + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "coastal", + "desert", + "forest", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nagpa.mp3" + }, + "senseTags": [ + "U" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "paralyzed" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "paralyzed", + "petrified", + "restrained" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Narzugon", + "source": "MTF", + "page": 167, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Narzugon|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 10, + "con": 17, + "int": 16, + "wis": 14, + "cha": 19, + "save": { + "dex": "+5", + "con": "+8", + "cha": "+9" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "acid", + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "cr": "13", + "trait": [ + { + "name": "Diabolical Sense", + "entries": [ + "The narzugon has advantage on Wisdom ({@skill Perception}) checks made to perceive good-aligned creatures." + ] + }, + { + "name": "Infernal Tack", + "entries": [ + "The narzugon wears spurs that are part of infernal tack, which allow it to summon its {@creature nightmare} companion." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The narzugon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The narzugon uses its Infernal Command or Terrifying Command. It also makes three hellfire lance attacks." + ] + }, + { + "name": "Hellfire Lance", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 16 ({@damage 3d10}) fire damage. If this damage kills a creature, the creature's soul rises from the River Styx as a lemure in Avernus in {@dice 1d4} hours.", + "If the creature isn't revived before then, only a {@spell wish} spell or killing the lemure and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ] + }, + { + "name": "Infernal Command", + "entries": [ + "Each ally of the narzugon within 60 feet of it can't be {@condition charmed} or {@condition frightened} until the end of the narzugon's next turn." + ] + }, + { + "name": "Terrifying Command", + "entries": [ + "Each creature that isn't a fiend within 60 feet of the narzugon that can hear it must succeed on a {@dc 17} Charisma saving throw or become {@condition frightened} of it 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. A creature that makes a successful saving throw is immune to this narzugon's Terrifying Command for 24 hours." + ] + }, + { + "name": "Healing (1/Day)", + "entries": [ + "The narzugon, or one creature it touches, regains up to 100 hit points." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/narzugon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I", + "TP" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nightwalker", + "source": "MTF", + "page": 216, + "reprintedAs": [ + "Nightwalker|MPMM" + ], + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 297, + "formula": "22d12 + 154" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 22, + "dex": 19, + "con": 24, + "int": 6, + "wis": 9, + "cha": 8, + "save": { + "con": "+13" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 9, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "cr": "20", + "trait": [ + { + "name": "Annihilating Aura", + "entries": [ + "Any creature that starts its turn within 30 feet of the nightwalker must succeed on a {@dc 21} Constitution saving throw or take 14 ({@damage 4d6}) necrotic damage and grant the nightwalker advantage on attack rolls against it until the start of the creature's next turn. Undead are immune to this aura." + ] + }, + { + "name": "Life Eater", + "entries": [ + "A creature reduced to 0 hit points from damage dealt by the nightwalker dies and can't be revived by any means short of a {@spell wish} spell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nightwalker uses Enervating Focus twice, or it uses Enervating Focus and Finger of Doom, if available." + ] + }, + { + "name": "Enervating Focus", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}28 ({@damage 5d8 + 6}) necrotic damage. The target must succeed on a {@dc 21} Constitution saving throw or its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest." + ] + }, + { + "name": "Finger of Doom {@recharge}", + "entries": [ + "The nightwalker points at one creature it can see within 300 feet of it. The target must succeed on a {@dc 21} Wisdom saving throw or take 26 ({@damage 4d12}) necrotic damage and become {@condition frightened} until the end of the nightwalker's next turn. While {@condition frightened} in this way, the creature is also {@condition paralyzed}. If a target's saving throw is successful, the target is immune to the nightwalker's Finger of Doom for the next 24 hours." + ] + } + ], + "environment": [ + "arctic", + "desert", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nightwalker.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nupperibo", + "source": "MTF", + "page": 168, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Nupperibo|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 20 + }, + "str": 16, + "dex": 11, + "con": 13, + "int": 3, + "wis": 8, + "cha": 1, + "skill": { + "perception": "+1" + }, + "senses": [ + "blindsight 10 ft. (blind beyond this radius)" + ], + "passive": 11, + "resist": [ + "acid", + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Infernal but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Cloud of Vermin", + "entries": [ + "Any creature, other than a devil, that starts its turn within 20 feet of the nupperibo must make a {@dc 11} Constitution saving throw. A creature within the areas of two or more nupperibos makes the saving throw with disadvantage. On a failure, the creature takes 2 ({@damage 1d4}) piercing damage." + ] + }, + { + "name": "Hunger-Driven", + "entries": [ + "In the Nine Hells, the nupperibos can flawlessly track any creature that has taken damage from any nupperibo's Cloud of Vermin within the previous 24 hours." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nupperibo.mp3" + }, + "senseTags": [ + "B" + ], + "languageTags": [ + "CS", + "I" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oaken Bolter", + "source": "MTF", + "page": 126, + "reprintedAs": [ + "Clockwork Oaken Bolter|MPMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 15, + "int": 3, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The oaken bolter has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oaken bolter makes two lancing bolt attacks or one lancing bolt attack and one harpoon attack." + ] + }, + { + "name": "Lancing Bolt", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 100/400 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ] + }, + { + "name": "Harpoon", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 50/200 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 12}). While {@condition grappled} in this way, a creature's speed isn't reduced, but it can move only in directions that bring it closer to the oaken bolter. A creature takes 5 ({@damage 1d10}) slashing damage if it escapes from the grapple or if it tries and fails. As a bonus action, the oaken bolter can pull a creature {@condition grappled} by it 20 feet closer. The oaken bolter can grapple only one creature at a time." + ] + }, + { + "name": "Explosive Bolt {@recharge 5}", + "entries": [ + "The oaken bolter launches an explosive charge at a point within 120 feet. Each creature within 20 feet of that point must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oaken-bolter.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oblex Spawn", + "source": "MTF", + "page": 217, + "reprintedAs": [ + "Oblex Spawn|MPMM" + ], + "size": [ + "T" + ], + "type": "ooze", + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 18, + "formula": "4d4 + 8" + }, + "speed": { + "walk": 20 + }, + "str": 8, + "dex": 16, + "con": 15, + "int": 14, + "wis": 11, + "cha": 10, + "save": { + "int": "+4", + "cha": "+2" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "passive": 12, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "prone" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Aversion to Fire", + "entries": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) psychic damage." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oblex-spawn.mp3" + }, + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ogre Battering Ram", + "source": "MTF", + "page": 220, + "reprintedAs": [ + "Ogre Battering Ram|MPMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item ring mail|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "4", + "trait": [ + { + "name": "Siege Monster", + "entries": [ + "The ogre deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Bash", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) bludgeoning damage, and the ogre can push the target 5 feet away if the target is Huge or smaller." + ] + }, + { + "name": "Block the Path", + "entries": [ + "Until the start of the ogre's next turn, attack rolls against the ogre have disadvantage, it has advantage on the attack roll it makes for an opportunity attack, and that attack deals an extra 16 ({@damage 3d10}) bludgeoning damage on a hit. Also, each enemy that tries to move out of the ogre's reach without teleporting must succeed on a {@dc 14} Strength saving throw or have its speed reduced to 0 until the start of the ogre's next turn." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-battering-ram.mp3" + }, + "traitTags": [ + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ogre Bolt Launcher", + "source": "MTF", + "page": 220, + "reprintedAs": [ + "Ogre Bolt Launcher|MPMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 12, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "2", + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ] + }, + { + "name": "Bolt Launcher", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 120/480 ft., one target. {@h}17 ({@damage 3d10 + 1}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-bolt-launcher.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ogre Chain Brute", + "source": "MTF", + "page": 221, + "reprintedAs": [ + "Ogre Chain Brute|MPMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "3", + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ] + }, + { + "name": "Chain Sweep", + "entries": [ + "The ogre swings its chain, and every creature within 10 feet of it must make a {@dc 14} Dexterity saving throw. On a failed saving throw, a creature takes 8 ({@damage 1d8 + 4}) bludgeoning damage and is knocked {@condition prone}. On a successful save, the creature takes half as much damage and isn't knocked {@condition prone}." + ] + }, + { + "name": "Chain Smash {@recharge}", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target must make a {@dc 14} Constitution saving throw. On a failure the target is {@condition unconscious} for 1 minute. The {@condition unconscious} target repeats the saving throw if it takes damage and at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-chain-brute.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ogre Howdah", + "source": "MTF", + "page": 221, + "reprintedAs": [ + "Ogre Howdah|MPMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 5, + "wis": 7, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "languages": [ + "Common", + "Giant" + ], + "cr": "2", + "trait": [ + { + "name": "Howdah", + "entries": [ + "The ogre carries a compact fort on its back. Up to four Small creatures can ride in the fort without squeezing. To make a melee attack against a target within 5 feet of the ogre, they must use spears or weapons with reach. Creatures in the fort have {@quickref Cover||3||three-quarters cover} against attacks and effects from outside it. If the ogre dies, creatures in the fort are placed in unoccupied spaces within 5 feet of the ogre." + ] + } + ], + "action": [ + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ogre-howdah.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oinoloth", + "source": "MTF", + "page": 251, + "reprintedAs": [ + "Oinoloth|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 126, + "formula": "12d10 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 17, + "con": 18, + "int": 17, + "wis": 16, + "cha": 19, + "save": { + "con": "+8", + "wis": "+7" + }, + "skill": { + "deception": "+8", + "intimidation": "+8", + "perception": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The oinoloth's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)" + ], + "daily": { + "1e": [ + "{@spell feeblemind}", + "{@spell globe of invulnerability}", + "{@spell wall of fire}", + "{@spell wall of ice}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Bringer of Plagues {@recharge 5}", + "entries": [ + "As a bonus action, the oinoloth blights the area within 30 feet of it. The blight lasts for 24 hours. While blighted, all normal plants in the area wither and die, and the number of hit points restored by a spell to a creature in that area is halved.", + "Furthermore, when a creature moves into the blighted area or starts its turn there, that creature must make a {@dc 16} Constitution saving throw. On a successful save, the creature is immune to the oinoloth's Bringer of Plagues for the next 24 hours. On a failed save, the creature takes 14 ({@damage 4d6}) necrotic damage and is {@condition poisoned}.", + "The {@condition poisoned} creature can't regain hit points. After every 24 hours that elapse, the {@condition poisoned} creature can repeat the saving throw. On a failed save, the creature's hit point maximum is reduced by 5 ({@dice 1d10}). This reduction lasts until the poison ends, and the target dies if its hit point maximum is reduced to 0. The poison ends after the creature successfully saves against it three times." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The oinoloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The oinoloth's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oinoloth uses its Transfixing Gaze and makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) slashing damage plus 22 ({@damage 4d10}) necrotic damage." + ] + }, + { + "name": "Corrupted Healing {@recharge}", + "entries": [ + "The oinoloth touches one willing creature within 5 feet of it. The target regains all its hit points. In addition, the oinoloth can end one disease on the target or remove one of the following conditions from it: {@condition blinded}, {@condition deafened}, {@condition paralyzed}, or {@condition poisoned}. The target then gains 1 level of {@condition exhaustion}, and its hit point maximum is reduced by 7 ({@dice 2d6}). This reduction can be removed only by a {@spell wish} spell or by casting {@spell greater restoration} on the target three times within the same hour. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Teleport", + "entries": [ + "The oinoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + }, + { + "name": "Transfixing Gaze", + "entries": [ + "The oinoloth targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 16} Wisdom saving throw against this magic or be {@condition charmed} until the end of the oinoloth's next turn. While {@condition charmed} in this way, the target is {@condition restrained}. If the target's saving throw is successful, the target is immune to the oinoloth's gaze for the next 24 hours." + ] + } + ], + "environment": [ + "desert", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/oinoloth.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "N", + "S" + ], + "damageTagsSpell": [ + "C", + "F", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed", + "exhaustion", + "poisoned", + "restrained" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orcus", + "isNamedCreature": true, + "source": "MTF", + "page": 153, + "otherSources": [ + { + "source": "OotA", + "page": 245 + } + ], + "reprintedAs": [ + "Orcus|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + }, + { + "ac": 20, + "condition": "with the {@item Wand of Orcus}" + } + ], + "hp": { + "average": 405, + "formula": "30d12 + 210" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 27, + "dex": 14, + "con": 25, + "int": 20, + "wis": 20, + "cha": 25, + "save": { + "dex": "+10", + "con": "+15", + "wis": "+13" + }, + "skill": { + "arcana": "+13", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "26", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Orcus's spellcasting ability is Charisma (spell save {@dc 23}, {@hit 15} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell chill touch} (17th level)", + "{@spell detect magic}" + ], + "daily": { + "1": [ + "{@spell time stop}" + ], + "3e": [ + "{@spell create undead}", + "{@spell dispel magic}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Wand of Orcus", + "entries": [ + "The wand has 7 charges, and any of its properties that require a saving throw have a save DC of 18. While holding it, Orcus can use an action to cast {@spell animate dead}, {@spell blight}, or {@spell speak with dead}. Alternatively, he can expend 1 or more of the wand's charges to cast one of the following spells from it: {@spell circle of death} (1 charge), {@spell finger of death} (1 charge), or {@spell power word kill} (2 charges). The wand regains {@dice 1d4 + 3} charges daily at dawn.", + "While holding the wand, Orcus can use an action to conjure undead creatures whose combined average hit points don't exceed 500. These undead magically rise up from the ground or otherwise form in unoccupied spaces within 300 feet of Orcus and obey his commands until they are destroyed or until he dismisses them as an action. Once this property of the wand is used, the property can't be used again until the next dawn." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Orcus fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Orcus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Orcus's weapon attacks are magical." + ] + }, + { + "name": "Master of Undeath", + "entries": [ + "When Orcus casts {@spell animate dead} or {@spell create undead}, he chooses the level at which the spell is cast, and the creatures created by the spells remain under his control indefinitely. Additionally, he can cast {@spell create undead} even when it isn't night." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Orcus makes two Wand of Orcus attacks." + ] + }, + { + "name": "Wand of Orcus", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 13 ({@damage 2d12}) necrotic damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ] + } + ], + "legendary": [ + { + "name": "Tail", + "entries": [ + "Orcus makes one tail attack." + ] + }, + { + "name": "A Taste of Undeath", + "entries": [ + "Orcus casts {@spell chill touch} (17th level)." + ] + }, + { + "name": "Creeping Death (Costs 2 Actions)", + "entries": [ + "Orcus chooses a point on the ground that he can see within 100 feet of him. A cylinder of swirling necrotic energy 60 feet tall and with a 10-foot radius rises from that point and lasts until the end of Orcus's next turn. Creatures in that area have vulnerability to necrotic damage." + ] + } + ], + "legendaryGroup": { + "name": "Orcus", + "source": "MTF" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "I", + "N", + "P" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForcedLegendary": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orthon", + "source": "MTF", + "page": 169, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Orthon|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 105, + "formula": "10d10 + 50" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 22, + "dex": 16, + "con": 21, + "int": 15, + "wis": 15, + "cha": 16, + "save": { + "dex": "+7", + "con": "+9", + "wis": "+6" + }, + "skill": { + "perception": "+10", + "stealth": "+11", + "survival": "+10" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "passive": 20, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Invisibility Field", + "entries": [ + "The orthon can use a bonus action to become {@condition invisible}. Any equipment the orthon wears or carries is also {@condition invisible} as long as the equipment is on its person. This invisibility ends immediately after the orthon makes an attack roll or is hit by an attack." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The orthon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Infernal Dagger", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d4 + 6}) slashing damage, and the target must make a {@dc 17} Constitution saving throw, taking 22 ({@damage 4d10}) poison damage on a failed save, or half as much damage on a successful one. On a failure, the target is {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Brass Crossbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 100/400 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage, plus one of the following effects:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Acid", + "entry": "The target must make a {@dc 17} Constitution saving throw, taking an additional 17 ({@damage 5d6}) acid damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "2. Blindness (1/Day)", + "entry": "The target takes 5 ({@damage 1d10}) radiant damage. In addition, the target and all other creatures within 20 feet of it must each make a successful {@dc 17} Dexterity saving throw or be {@condition blinded} until the end of the orthon's next turn." + }, + { + "type": "item", + "name": "3. Concussion", + "entry": "The target and each creature within 20 feet of it must make a {@dc 17} Constitution saving throw, taking 13 ({@damage 2d12}) thunder damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "4. Entanglement", + "entry": "The target must make a successful {@dc 17} Dexterity saving throw or be {@condition restrained} for 1 hour by strands of sticky webbing. A {@condition restrained} creature can escape by using an action to make a successful {@dc 17} Dexterity or Strength check. Any creature other than an orthon that touches the {@condition restrained} creature must make a successful {@dc 17} Dexterity saving throw or become similarly {@condition restrained}." + }, + { + "type": "item", + "name": "5. Paralysis (1/Day)", + "entry": "The target takes 22 ({@damage 4d10}) lightning damage and must make a successful {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "6. Tracking", + "entry": "For the next 24 hours, the orthon knows the direction and distance to the target, as long as it's on the same plane of existence. If the target is on a different plane, the orthon knows which one, but not the exact location there." + } + ] + } + ] + } + ], + "reaction": [ + { + "name": "Explosive Retribution", + "entries": [ + "When it is reduced to 15 hit points or fewer, the orthon causes itself to explode. All other creatures within 30 feet of it must each make a {@dc 17} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage plus 9 ({@damage 2d8}) thunder damage on a failed save, or half as much damage on a successful one. This explosion destroys the orthon, its infernal dagger, and its brass crossbow." + ] + } + ], + "environment": [ + "desert", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orthon.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD", + "U" + ], + "languageTags": [ + "C", + "I", + "TP" + ], + "damageTags": [ + "A", + "F", + "I", + "L", + "P", + "R", + "S", + "T" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "blinded", + "paralyzed", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Phoenix", + "source": "MTF", + "page": 199, + "otherSources": [ + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Phoenix|MPMM" + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 18 + ], + "hp": { + "average": 175, + "formula": "10d20 + 70" + }, + "speed": { + "walk": 20, + "fly": 120 + }, + "str": 19, + "dex": 26, + "con": 25, + "int": 2, + "wis": 21, + "cha": 18, + "save": { + "wis": "+10", + "cha": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "16", + "trait": [ + { + "name": "Fiery Death and Rebirth", + "entries": [ + "When the phoenix dies, it explodes. Each creature within 60-feet of it must make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't worn or carried.", + "The explosion destroys the phoenix's body and leaves behind an egg-shaped cinder that weighs 5 pounds. The cinder is blazing hot, dealing 21 ({@damage 6d6}) fire damage to any creature that touches it, though no more than once per round. The cinder is immune to all damage, and after {@dice 1d6} days, it hatches a new phoenix." + ] + }, + { + "name": "Fire Form", + "entries": [ + "The phoenix can move through a space as narrow as 1 inch wide without squeezing. Any creature that touches the phoenix or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage. In addition, the phoenix can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage. With a touch, the phoenix can also ignite flammable objects that aren't worn or carried (no action required)." + ] + }, + { + "name": "Flyby", + "entries": [ + "The phoenix doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Illumination", + "entries": [ + "The phoenix sheds bright light in a 60-foot radius and dim light for an additional 30 feet." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the phoenix fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The phoenix deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The phoenix makes two attacks: one with its beak and one with its fiery talons." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d6 + 8}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ] + }, + { + "name": "Fiery Talons", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) fire damage." + ] + } + ], + "legendary": [ + { + "name": "Peck", + "entries": [ + "The phoenix makes one beak attack." + ] + }, + { + "name": "Move", + "entries": [ + "The phoenix moves up to its speed." + ] + }, + { + "name": "Swoop (Costs 2 Actions)", + "entries": [ + "The phoenix moves up to its speed and attacks with its fiery talons." + ] + } + ], + "environment": [ + "desert", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/phoenix.mp3" + }, + "traitTags": [ + "Flyby", + "Illumination", + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Red Abishai", + "source": "MTF", + "page": 160, + "reprintedAs": [ + "Red Abishai|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 23, + "dex": 16, + "con": 19, + "int": 14, + "wis": 15, + "cha": 19, + "save": { + "str": "+12", + "con": "+10", + "wis": "+8" + }, + "skill": { + "intimidation": "+10", + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "19", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The abishai's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai can use its Frightful Presence. It also makes three attacks: one with its morningstar, one with its claw, and one with its bite." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage plus 38 ({@damage 7d10}) fire damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of the abishai's choice that is within 120 feet and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the abishai's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Incite Fanaticism", + "entries": [ + "The abishai chooses up to four of its allies within 60 feet of it that can see it. For 1 minute, each of those allies makes attack rolls with advantage and can't be {@condition frightened}." + ] + }, + { + "name": "Power of the Dragon Queen", + "entries": [ + "The abishai targets one dragon it can see within 120 feet of it. The dragon must make a {@dc 18} Charisma saving throw. A chromatic dragon makes this save with disadvantage. On a successful save, the target is immune to the abishai's Power of the Dragon Queen for 1 hour. On a failed save, the target is {@condition charmed} by the abishai for 1 hour. While {@condition charmed} in this way, the target regards the abishai as a trusted friend to be heeded and protected. This effect ends if the abishai or its companions deal damage to the target." + ] + } + ], + "environment": [ + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/red-abishai.mp3" + }, + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Retriever", + "source": "MTF", + "page": 222, + "reprintedAs": [ + "Retriever|MPMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 22, + "dex": 16, + "con": 20, + "int": 3, + "wis": 11, + "cha": 4, + "save": { + "dex": "+8", + "con": "+10", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+8" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "necrotic", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands Abyssal", + "Elvish", + "and Undercommon but can't speak" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The retriever's innate spellcasting ability is Wisdom (spell save {@dc 13}). The retriever can innately cast the following spells, requiring no material components." + ], + "daily": { + "3e": [ + "{@spell plane shift} (only self and up to one incapacitated creature which is considered willing for the spell)", + "{@spell web}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Faultless Tracker", + "entries": [ + "The retriever is given a quarry by its master. The quarry can be a specific creature or object the master is personally acquainted with, or it can be a general type of creature or object the master has seen before. The retriever knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The retriever can have only one such quarry at a time. The retriever also always knows the location of its master." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The retriever makes two foreleg attacks and uses its force or paralyzing beam once, if available." + ] + }, + { + "name": "Foreleg", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) slashing damage." + ] + }, + { + "name": "Force Beam", + "entries": [ + "The retriever targets one creature it can see within 60 feet of it. The target must make a {@dc 16} Dexterity saving throw, taking 27 ({@damage 5d10}) force damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Paralyzing Beam {@recharge 5}", + "entries": [ + "The retriever targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If the {@condition paralyzed} creature is Medium or smaller, the retriever can pick it up as part of the retriever's move and walk or climb with it at full speed." + ] + } + ], + "environment": [ + "desert", + "forest", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/retriever.mp3" + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "CS", + "E", + "U" + ], + "damageTags": [ + "O", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rot Troll", + "source": "MTF", + "page": 244, + "otherSources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "RtG", + "page": 34 + } + ], + "reprintedAs": [ + "Rot Troll|MPMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d10 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 22, + "int": 5, + "wis": 8, + "cha": 4, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "necrotic" + ], + "languages": [ + "Giant" + ], + "cr": "9", + "trait": [ + { + "name": "Rancid Degeneration", + "entries": [ + "At the end of each of the troll's turns, each creature within 5 feet of it takes 11 ({@damage 2d10}) necrotic damage, unless the troll has taken acid or fire damage since the end of its last turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 16 ({@damage 3d10}) necrotic damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 5 ({@damage 1d10}) necrotic damage." + ] + } + ], + "environment": [ + "desert", + "forest", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rot-troll.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rutterkin", + "source": "MTF", + "page": 136, + "reprintedAs": [ + "Rutterkin|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 20 + }, + "str": 14, + "dex": 15, + "con": 17, + "int": 5, + "wis": 12, + "cha": 6, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Crippling Fear", + "entries": [ + "When a creature that isn't a demon starts its turn within 30 feet of three or more rutterkins, it must make a {@dc 11} Wisdom saving throw. The creature has disadvantage on the save if it's within 30 feet of six or more rutterkins. On a successful save, the creature is immune to the Crippling Fear of all rutterkins for 24 hours. On a failed save, the creature becomes {@condition frightened} for 1 minute. While {@condition frightened} in this way, the creature is {@condition restrained}. At the end of each of the {@condition frightened} creature's turns, it can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned}. At the end of each long rest, the {@condition poisoned} target can repeat the saving throw, ending the effect on itself on a success. If the target is reduced to 0 hit points while {@condition poisoned} in this way, it dies and instantly transforms into a living {@creature abyssal wretch|mtf}. The transformation of the body can be undone only by a {@spell wish} spell." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rutterkin.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "DIS", + "MW" + ], + "conditionInflict": [ + "frightened", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sacred Statue", + "source": "MTF", + "page": 194, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Sacred Statue|MPMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + { + "special": "as the eidolon's alignment" + } + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 25 + }, + "str": 19, + "dex": 8, + "con": 19, + "int": 14, + "wis": 19, + "cha": 16, + "save": { + "wis": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "acid", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "the languages the eidolon knew in life" + ], + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the statue remains motionless, it is indistinguishable from a normal statue." + ] + }, + { + "name": "Ghostly Inhabitant", + "entries": [ + "The {@creature eidolon|MTF} that enters the sacred statue remains inside it until the statue drops to 0 hit points, the eidolon uses a bonus action to move out of the statue, or the eidolon is turned or forced out by an effect such as the {@spell dispel evil and good} spell. When the eidolon leaves the statue, it appears in an unoccupied space within 5 feet of the statue." + ] + }, + { + "name": "Inert", + "entries": [ + "When not inhabited by an {@creature eidolon|MTF}, the statue is an object." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The statue makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}43 ({@damage 6d12 + 4}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}37 ({@damage 6d10 + 4}) bludgeoning damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sacred-statue.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadow Dancer", + "source": "MTF", + "page": 225, + "reprintedAs": [ + "Shadar-kai Shadow Dancer|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 13, + "int": 11, + "wis": 12, + "cha": 12, + "save": { + "dex": "+6", + "cha": "+4" + }, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "exhaustion" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "7", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The shadow dancer has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + }, + { + "name": "Shadow Jump", + "entries": [ + "As a bonus action, the shadow dancer can teleport up to 30 feet to an unoccupied space it can see. Both the space it teleports from and the space it teleports to must be in dim light or darkness. The shadow dancer can use this ability between the weapon attacks of another action it takes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shadow dancer makes three spiked chain attacks." + ] + }, + { + "name": "Spiked Chain", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, and the target must succeed on a {@dc 14} Dexterity saving throw or suffer one additional effect of the shadow dancer's choice:", + { + "type": "list", + "items": [ + "The target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition restrained}, and the shadow dancer can't grapple another target.", + "The target is knocked {@condition prone}.", + "The target takes 22 ({@damage 4d10}) necrotic damage." + ] + } + ] + } + ], + "environment": [ + "forest", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shadow-dancer.mp3" + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sibriex", + "source": "MTF", + "page": 137, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Sibriex|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "12d12 + 72" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 3, + "con": 23, + "int": 25, + "wis": 24, + "cha": 25, + "save": { + "int": "+13", + "cha": "+13" + }, + "skill": { + "arcana": "+13", + "history": "+13", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "18", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sibriex's innate spellcasting ability is Charisma (spell save {@dc 21}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person}", + "{@spell command}", + "{@spell dispel magic}", + "{@spell hold monster}" + ], + "daily": { + "3": [ + "{@spell feeblemind}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Contamination", + "entries": [ + "The sibriex emits an aura of corruption 30 feet in every direction. Plants that aren't creatures wither in the aura, and the ground in it is {@quickref difficult terrain||3} for other creatures. Any creature that starts its turn in the aura must succeed on a {@dc 20} Constitution saving throw or take 14 ({@damage 4d6}) poison damage. A creature that succeeds on the save is immune to this sibriex's Contamination for 24 hours." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the sibriex fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The sibriex has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sibriex uses Squirt Bile once and makes three attacks using its chain, bite, or both." + ] + }, + { + "name": "Chain", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d12 + 7}) piercing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ] + }, + { + "name": "Squirt Bile", + "entries": [ + "The sibriex targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or take 35 ({@damage 10d6}) acid damage." + ] + }, + { + "name": "Warp Creature", + "entries": [ + "The sibriex targets up to three creatures it can see within 120 feet of it. Each target must make a {@dc 20} Constitution saving throw. On a successful save, a creature becomes immune to this sibriex's Warp Creature. On a failed save, the target is {@condition poisoned}, which causes it to also gain 1 level of {@condition exhaustion}. While {@condition poisoned} in this way, the target must repeat the saving throw at the start of each of its turns. Three successful saves against the poison end it, and ending the poison removes any levels of {@condition exhaustion} caused by it. Each failed save causes the target to suffer another level of {@condition exhaustion}. Once the target reaches 6 levels of {@condition exhaustion}, it dies and instantly transforms into a living {@creature abyssal wretch|mtf} under the sibriex's control. The transformation of the body can be undone only by a {@spell wish} spell." + ] + } + ], + "legendary": [ + { + "name": "Cast a Spell", + "entries": [ + "The sibriex casts a spell." + ] + }, + { + "name": "Spray Bile", + "entries": [ + "The sibriex uses Squirt Bile." + ] + }, + { + "name": "Warp (Costs 2 Actions)", + "entries": [ + "The sibriex uses Warp Creature." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Flesh Warping", + "entries": [ + "Creatures that encounter a sibriex can be twisted beyond recognition. Whenever a creature fails a saving throw against the sibriex's Warp Creature effect, you can roll percentile dice and consult the Flesh Warping table to determine an additional effect, which vanishes when Warp Creature ends on the creature. If the creature transforms into an abyssal wretch, the effect becomes a permanent feature of that body.", + "A creature can willingly submit to flesh warping, an agonizing process that takes at least 1 hour while the creature stays within 30 feet of the sibriex. At the end of the process, roll once on the table (or choose one effect) to determine how the creature is transformed permanently.", + { + "type": "table", + "caption": "Flesh Warping", + "colLabels": [ + "{@dice d100}", + "Effect" + ], + "colStyles": [ + "col-2 text-center", + "col-10" + ], + "rows": [ + [ + "01-05", + "The color of the target's hair, eyes, and skin becomes blue, red, yellow, or patterned." + ], + [ + "06-10", + "The target's eyes push out of its head at the end of stalks." + ], + [ + "11-15", + "The target's hands grow claws, which can be used as daggers." + ], + [ + "16-20", + "One of the target's legs grows longer than the other, reducing its walking speed by 10 feet." + ], + [ + "21-25", + "The target's eyes become beacons, filling a 15-foot cone with dim light when they are open." + ], + [ + "26-30", + "A pair of wings, either feathered or leathery, sprout from the target's back, granting it a flying speed of 30 feet." + ], + [ + "31-35", + "The target's ears tear free from its head and scurry away; the target is {@condition deafened}." + ], + [ + "36-40", + "Two of the target's teeth turn into tusks." + ], + [ + "41-45", + "The target's skin becomes scabby, granting it a +1 bonus to AC but reducing its Charisma by 2 (to a minimum of 1)." + ], + [ + "46-50", + "The target's arms and legs switch places, preventing the target from moving unless it crawls." + ], + [ + "51-55", + "The target's arms become tentacles with fingers on the ends, increasing its reach by 5 feet." + ], + [ + "56-60", + "The target's legs grow incredibly long and springy, increasing its walking speed by 10 feet." + ], + [ + "61-65", + "The target grows a whiplike tail, which it can use as a {@item whip|phb}." + ], + [ + "66-70", + "The target's eyes turn black, and it gains darkvision out to a range of 120 feet." + ], + [ + "71-75", + "The target swells, tripling its weight." + ], + [ + "76-80", + "The target becomes thin and skeletal, halving its weight." + ], + [ + "81-85", + "The target's head doubles in size." + ], + [ + "86-90", + "The target's ears become wings, giving it a flying speed of 5 feet." + ], + [ + "91-95", + "The target's body becomes unusually brittle, causing the target to have vulnerability to bludgeoning, piercing, and slashing damage." + ], + [ + "96-00", + "The target grows another head, causing it to have advantage on saving throws against being {@condition charmed}, {@condition frightened}, or {@condition stunned}." + ] + ] + } + ], + "_version": { + "name": "Sibriex (Flesh Warping)", + "addAs": "trait" + } + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sibriex.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "deafened", + "exhaustion", + "poisoned" + ], + "conditionInflictSpell": [ + "charmed", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skulk", + "source": "MTF", + "page": 227, + "reprintedAs": [ + "Skulk|MPMM" + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "C", + "N" + ], + "ac": [ + 14 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 19, + "con": 10, + "int": 10, + "wis": 7, + "cha": 1, + "save": { + "con": "+2" + }, + "skill": { + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 8, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Fallible Invisibility", + "entries": [ + "The skulk is {@condition invisible}. This invisibility can be circumvented by three things:", + { + "type": "list", + "items": [ + "The skulk appears as a drab, smooth-skinned humanoid if its reflection can be seen in a mirror or on another surface.", + "The skulk appears as a dim, translucent form in the light of a candle made of fat rendered from a corpse whose identity is unknown.", + "Humanoid children, aged 10 and under, can see through this invisibility." + ] + } + ] + }, + { + "name": "Trackless", + "entries": [ + "The skulk leaves no tracks to indicate where it has been or where it's headed." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage. If the skulk has advantage on the attack roll, the target also takes 7 ({@damage 2d6}) necrotic damage." + ] + } + ], + "environment": [ + "coastal", + "forest", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/skulk.mp3" + }, + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skull Lord", + "source": "MTF", + "page": 230, + "reprintedAs": [ + "Skull Lord|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 17, + "int": 16, + "wis": 15, + "cha": 21, + "skill": { + "athletics": "+7", + "history": "+8", + "perception": "+12", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 22, + "resist": [ + "cold", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "poisoned", + "stunned", + "unconscious" + ], + "languages": [ + "all the languages it knew in life" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The skull lord is a 13th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The skull lord knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell magic missile}", + "{@spell expeditious retreat}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fear}", + "{@spell haste}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell cone of cold}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the skull lord fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Master of the Grave", + "entries": [ + "While within 30 feet of the skull lord, any undead ally of the skull lord makes saving throws with advantage, and that ally regains {@dice 1d6} hit points whenever it starts its turn there." + ] + }, + { + "name": "Evasion", + "entries": [ + "If the skull lord is subjected to an effect that allows it to make a Dexterity saving throw to take only half the damage, the skull lord instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skull lord makes three bone staff attacks." + ] + }, + { + "name": "Bone Staff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) necrotic damage." + ] + } + ], + "legendary": [ + { + "name": "Bone Staff (Costs 2 Actions)", + "entries": [ + "The skull lord makes a bone staff attack." + ] + }, + { + "name": "Cantrip", + "entries": [ + "The skull lord casts a cantrip." + ] + }, + { + "name": "Move", + "entries": [ + "The skull lord moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Summon Undead (Costs 3 Actions)", + "entries": [ + "Up to five {@creature skeleton||skeletons} or {@creature zombie||zombies} appear in unoccupied spaces within 30 feet of the skull lord and remain until destroyed. Undead summoned in this way roll initiative and act in the next available turn. The skull lord can have up to five undead summoned by this ability at a time." + ] + } + ], + "environment": [ + "desert", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/skull-lord.mp3" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "I", + "L", + "N", + "O", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Soul Monger", + "source": "MTF", + "page": 226, + "reprintedAs": [ + "Shadar-kai Soul Monger|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 17, + "con": 14, + "int": 19, + "wis": 15, + "cha": 13, + "save": { + "dex": "+7", + "wis": "+6", + "cha": "+5" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "immune": [ + "necrotic", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The soul monger's innate spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell chill touch}", + "{@spell poison spray}" + ], + "daily": { + "1e": [ + "{@spell bestow curse}", + "{@spell chain lightning}", + "{@spell finger of death}", + "{@spell gaseous form}", + "{@spell phantasmal killer}", + "{@spell seeming}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The soul monger has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The soul monger has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Soul Thirst", + "entries": [ + "When the soul monger reduces a creature to 0 hit points, the soul monger can gain temporary hit points equal to half the creature's hit point maximum. While the soul monger has temporary hit points from this ability, it has advantage on attack rolls." + ] + }, + { + "name": "Weight of Ages", + "entries": [ + "Any beast or humanoid, other than a shadar-kai, that starts its turn within 5 feet of the soul monger has its speed reduced by 20 feet until the start of that creature's next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The soul monger makes two phantasmal dagger attacks." + ] + }, + { + "name": "Phantasmal Dagger", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage plus 19 ({@damage 3d12}) necrotic damage, and the target has disadvantage on saving throws until the start of the soul monger's next turn." + ] + }, + { + "name": "Wave of Weariness {@recharge 4}", + "entries": [ + "The soul monger emits weariness in a 60-foot cube. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 45 ({@damage 10d8}) psychic damage and suffers 1 level of {@condition exhaustion}. On a successful save, it takes 22 ({@damage 5d8}) psychic damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/soul-monger.mp3" + }, + "traitTags": [ + "Fey Ancestry", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "N", + "P", + "Y" + ], + "damageTagsSpell": [ + "I", + "L", + "N", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "exhaustion" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spirit Troll", + "source": "MTF", + "page": 244, + "reprintedAs": [ + "Spirit Troll|MPMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "15d10 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 1, + "dex": 17, + "con": 13, + "int": 8, + "wis": 9, + "cha": 16, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "Giant" + ], + "cr": "11", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The troll can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes psychic or force damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}19 ({@damage 3d10 + 3}) psychic damage, and the target must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}14 ({@damage 2d10 + 3}) psychic damage." + ] + } + ], + "environment": [ + "coastal", + "forest", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spirit-troll.mp3" + }, + "traitTags": [ + "Incorporeal Movement", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "O", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spring Eladrin", + "source": "MTF", + "page": 196, + "reprintedAs": [ + "Spring Eladrin|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 16, + "int": 18, + "wis": 11, + "cha": 18, + "skill": { + "deception": "+8", + "persuasion": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eladrin's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell charm person}", + "{@spell Tasha's hideous laughter}" + ], + "daily": { + "3e": [ + "{@spell confusion}", + "{@spell enthrall}", + "{@spell suggestion}" + ], + "1e": [ + "{@spell hallucinatory terrain}", + "{@spell Otto's irresistible dance}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Joyful Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature is {@condition charmed} for 1 minute. On a successful save, the creature becomes immune to any eladrin's Joyful Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, it can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eladrin makes two weapon attacks. The eladrin can cast one spell in place of one of these attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage plus 4 ({@damage 1d8}) psychic damage, or 7 ({@damage 1d10 + 2}) slashing damage plus 4 ({@damage 1d8}) psychic damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) psychic damage." + ] + } + ], + "environment": [ + "forest", + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spring-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Spawn Grue", + "source": "MTF", + "page": 234, + "reprintedAs": [ + "Star Spawn Grue|MPMM" + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 13, + "con": 10, + "int": 9, + "wis": 11, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "psychic" + ], + "languages": [ + "Deep Speech" + ], + "cr": "1/4", + "trait": [ + { + "name": "Aura of Madness", + "entries": [ + "Creatures within 20 feet of the grue that aren't aberrations have disadvantage on saving throws, as well as on attack rolls against creatures other than a star spawn grue." + ] + } + ], + "action": [ + { + "name": "Confounding Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Wisdom saving throw or attack rolls against it have advantage until the start of the grue's next turn." + ] + } + ], + "environment": [ + "mountain", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-grue.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Star Spawn Hulk", + "source": "MTF", + "page": 234, + "reprintedAs": [ + "Star Spawn Hulk|MPMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 8, + "con": 21, + "int": 7, + "wis": 12, + "cha": 9, + "save": { + "dex": "+3", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Deep Speech" + ], + "cr": "10", + "trait": [ + { + "name": "Psychic Mirror", + "entries": [ + "If the hulk takes psychic damage, each creature within 10 feet of the hulk takes that damage instead; the hulk takes none of the damage. In addition, the hulk's thoughts and location can't be discerned by magic." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hulk makes two slam attacks. If both attacks hit the same target, the target also takes 9 ({@damage 2d8}) psychic damage and must succeed on a {@dc 17} Constitution saving throw or be {@condition stunned} until the end of the target's next turn." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ] + }, + { + "name": "Reaping Arms {@recharge 5}", + "entries": [ + "The hulk makes a separate slam attack against each creature within 10 feet of it. Each creature that is hit must also succeed on a {@dc 17} Dexterity saving throw or be knocked {@condition prone}." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-hulk.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Star Spawn Larva Mage", + "source": "MTF", + "page": 235, + "otherSources": [ + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Star Spawn Larva Mage|MPMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d8 + 96" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 12, + "con": 23, + "int": 18, + "wis": 12, + "cha": 16, + "save": { + "dex": "+6", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "restrained" + ], + "languages": [ + "Deep Speech" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The larva mage's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell eldritch blast}*", + "{@spell minor illusion}" + ], + "daily": { + "1": [ + "{@spell circle of death}" + ], + "3": [ + "{@spell dominate monster}" + ] + }, + "footerEntries": [ + "*3 beams, +3 bonus to each damage roll" + ], + "ability": "cha" + } + ], + "trait": [ + { + "name": "Return to Worms", + "entries": [ + "When the larva mage is reduced to 0 hit points, it breaks apart into a {@creature swarm of insects} in the same space. Unless the swarm is destroyed, the larva mage reforms from it 24 hours later." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ] + }, + { + "name": "Plague of Worms {@recharge}", + "entries": [ + "Each creature other than a star spawn within 10 feet of the larva mage must make a {@dc 19} Dexterity saving throw. On a failure the target takes 22 ({@damage 5d8}) necrotic damage and is {@condition blinded} and {@condition restrained} by masses of swarming worms. The affected creature takes 22 ({@damage 5d8}) necrotic damage at the start of each of the larva mage's turns. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "reaction": [ + { + "name": "Feed on Weakness", + "entries": [ + "When a creature within 20 feet of the larva mage fails a saving throw, the larva mage gains 10 temporary hit points." + ] + } + ], + "legendary": [ + { + "name": "Cantrip (Costs 2 Actions)", + "entries": [ + "The larva mage casts one cantrip." + ] + }, + { + "name": "Slam (Costs 2 Actions)", + "entries": [ + "The larva mage makes one slam attack." + ] + }, + { + "name": "Feed (Costs 3 Actions)", + "entries": [ + "Each creature {@condition restrained} by the larva mage's Plague of Worms takes 13 ({@damage 3d8}) necrotic damage, and the larva mage gains 6 temporary hit points." + ] + } + ], + "environment": [ + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-larva-mage.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "N", + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "poisoned", + "restrained" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Spawn Mangler", + "source": "MTF", + "page": 236, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "reprintedAs": [ + "Star Spawn Mangler|MPMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 8, + "dex": 18, + "con": 12, + "int": 11, + "wis": 12, + "cha": 7, + "save": { + "dex": "+7", + "con": "+4" + }, + "skill": { + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "cold" + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "prone" + ], + "languages": [ + "Deep Speech" + ], + "cr": "5", + "trait": [ + { + "name": "Ambusher", + "entries": [ + "On the first round of each combat, the mangler has advantage on attack rolls against a creature that hasn't taken a turn yet." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the mangler can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mangler makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage. If the attack roll has advantage, the target also takes 7 ({@damage 2d6}) psychic damage." + ] + }, + { + "name": "Flurry of Claws {@recharge 4}", + "entries": [ + "The mangler makes six claw attacks against one target. Either before or after these attacks, it can move up to its speed as a bonus action without provoking opportunity attacks." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-mangler.mp3" + }, + "traitTags": [ + "Ambusher" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Star Spawn Seer", + "source": "MTF", + "page": 236, + "reprintedAs": [ + "Star Spawn Seer|MPMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 18, + "int": 22, + "wis": 19, + "cha": 16, + "save": { + "dex": "+6", + "int": "+11", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "perception": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "cr": "13", + "trait": [ + { + "name": "Out-of-Phase Movement", + "entries": [ + "The seer can move through other creatures and objects as if they were {@quickref difficult terrain||3}. Each creature it moves through takes 5 ({@damage 1d10}) psychic damage; no creature can take this damage more than once per turn. The seer takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The seer makes two comet staff attacks or uses Psychic Orb twice." + ] + }, + { + "name": "Comet Staff", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage, or 10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage, if used with two hands, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition incapacitated} until the end of its next turn." + ] + }, + { + "name": "Psychic Orb", + "entries": [ + "{@atk rs} {@hit 11} to hit, range 120 feet, one target. {@h}27 ({@damage 5d10}) psychic damage." + ] + }, + { + "name": "Collapse Distance {@recharge}", + "entries": [ + "The seer warps space around a creature it can see within 30 feet of it. That creature must make a {@dc 19} Wisdom saving throw. On a failed save, the target, along with any equipment it is wearing or carrying, is magically teleported up to 60 feet to an unoccupied space the seer can see, and all other creatures within 10 feet of the target's original space each takes 39 ({@damage 6d12}) psychic damage. On a successful save, the target takes 19 ({@damage 3d12}) psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Bend Space", + "entries": [ + "When the seer would be hit by an attack, it teleports, exchanging positions with another star spawn it can see within 60 feet of it. The other star spawn is hit by the attack instead." + ] + } + ], + "environment": [ + "mountain", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/star-spawn-seer.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "U" + ], + "damageTags": [ + "B", + "O", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Steel Predator", + "source": "MTF", + "page": 239, + "reprintedAs": [ + "Steel Predator|MPMM" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d10 + 108" + }, + "speed": { + "walk": 40 + }, + "str": 24, + "dex": 17, + "con": 22, + "int": 4, + "wis": 14, + "cha": 6, + "skill": { + "perception": "+7", + "stealth": "+8", + "survival": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "lightning", + "necrotic", + "thunder" + ], + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "understands Modron and the language of its owner but can't speak" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The steel predator's innate spellcasting ability is Wisdom. The steel predator can innately cast the following spells, requiring no components:" + ], + "daily": { + "3e": [ + "{@spell dimension door} (self only)", + "{@spell plane shift} (self only)" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The steel predator has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The steel predator's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The steel predator makes three attacks: one with its bite and two with its claw." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) slashing damage." + ] + }, + { + "name": "Stunning Roar {@recharge 5}", + "entries": [ + "The steel predator emits a roar in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw. On a failed save, a creature takes 27 ({@damage 5d10}) thunder damage, drops everything it's holding, and is {@condition stunned} for 1 minute. On a successful save, a creature takes half as much damage. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/steel-predator.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "OTH" + ], + "damageTags": [ + "P", + "S", + "T" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Cursed", + "source": "MTF", + "page": 240, + "reprintedAs": [ + "Stone Cursed|MPMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 4" + }, + "speed": { + "walk": 10 + }, + "str": 16, + "dex": 5, + "con": 14, + "int": 5, + "wis": 8, + "cha": 7, + "passive": 9, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "1", + "trait": [ + { + "name": "Cunning Opportunist", + "entries": [ + "The stone cursed has advantage on the attack rolls of opportunity attacks." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the stone cursed remains motionless, it is indistinguishable from a normal statue." + ] + } + ], + "action": [ + { + "name": "Petrifying Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage if the attack roll had advantage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw, or it begins to turn to stone and is {@condition restrained} until the end of its next turn, when it must repeat the saving throw. The effect ends if the second save is successful; otherwise the target is {@condition petrified} for 24 hours." + ] + } + ], + "environment": [ + "desert", + "mountain", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-cursed.mp3" + }, + "traitTags": [ + "False Appearance" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Defender", + "source": "MTF", + "page": 126, + "reprintedAs": [ + "Clockwork Stone Defender|MPMM" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 3, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the stone defender remains motionless against an uneven earthen or stone surface, it is indistinguishable from that surface." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The stone defender has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and if the target is Large or smaller, it is knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Intercept Attack", + "entries": [ + "In response to another creature within 5 feet of it being hit by an attack roll, the stone defender gives that creature a +5 bonus to its AC against that attack, potentially causing a miss. To use this ability, the stone defender must be able to see the creature and the attacker." + ] + } + ], + "environment": [ + "forest", + "grassland", + "hill", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-defender.mp3" + }, + "traitTags": [ + "False Appearance", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Summer Eladrin", + "source": "MTF", + "page": 196, + "reprintedAs": [ + "Summer Eladrin|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 50 + }, + "str": 19, + "dex": 21, + "con": 16, + "int": 14, + "wis": 12, + "cha": 18, + "skill": { + "athletics": "+8", + "intimidation": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "trait": [ + { + "name": "Fearsome Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Fearsome Presence for the next 24 hours." + ] + }, + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eladrin makes two weapon attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage plus 4 ({@damage 1d8}) fire damage, or 15 ({@damage 2d10 + 4}) slashing damage plus 4 ({@damage 1d8}) fire damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 150/600 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 4 ({@damage 1d8}) fire damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The eladrin adds 3 to its AC against one melee attack that would hit it. To do so, the eladrin must see the attacker and be wielding a melee weapon." + ] + } + ], + "environment": [ + "desert", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/summer-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sword Wraith Commander", + "source": "MTF", + "page": 241, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "reprintedAs": [ + "Sword Wraith Commander|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item breastplate|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 11, + "wis": 12, + "cha": 14, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "poisoned", + "unconscious" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "8", + "trait": [ + { + "name": "Martial Fury", + "entries": [ + "As a bonus action, the sword wraith can make one weapon attack, which deals an extra 9 ({@damage 2d8}) necrotic damage on a hit. If it does so, attack rolls against it have advantage until the start of its next turn." + ] + }, + { + "name": "Turning Defiance", + "entries": [ + "The sword wraith and any other sword wraiths within 30 feet of it have advantage on saving throws against effects that turn undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sword wraith makes two weapon attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Call to Honor (1/Day)", + "entries": [ + "To use this action, the sword wraith must have taken damage during the current combat. If the sword wraith can use this action, it gives itself advantage on attack rolls until the end of its next turn, and {@dice 1d4 + 1} {@creature sword wraith warrior|mtf|sword wraith warriors} appear in unoccupied spaces within 30 feet of it. The warriors last until they drop to 0 hit points, and they take their turns immediately after the commander's turn on the same initiative count." + ] + } + ], + "environment": [ + "grassland", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sword-wraith-commander.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Turn Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sword Wraith Warrior", + "source": "MTF", + "page": 241, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "reprintedAs": [ + "Sword Wraith Warrior|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 17, + "int": 6, + "wis": 9, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "poisoned", + "unconscious" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "trait": [ + { + "name": "Martial Fury", + "entries": [ + "As a bonus action, the sword wraith can make one weapon attack. If it does so, attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sword-wraith-warrior.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Angry", + "source": "MTF", + "page": 231, + "reprintedAs": [ + "Angry Sorrowsworn|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 19, + "int": 8, + "wis": 13, + "cha": 6, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "13", + "trait": [ + { + "name": "Two Heads", + "entries": [ + "The Angry has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + }, + { + "name": "Rising Anger", + "entries": [ + "If another creature deals damage to the Angry, the Angry's attack rolls have advantage until the end of its next turn, and the first time it hits with a hook attack on its next turn, the attack's target takes an extra 19 ({@damage 3d12}) psychic damage.", + "On its turn, the Angry has disadvantage on attack rolls if no other creature has dealt damage to it since the end of its last turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Angry makes two hook attacks." + ] + }, + { + "name": "Hook", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d12 + 3}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-angry.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Hungry", + "source": "MTF", + "page": 232, + "reprintedAs": [ + "Hungry Sorrowsworn|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 6, + "wis": 11, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "11", + "trait": [ + { + "name": "Life Hunger", + "entries": [ + "If a creature the Hungry can see regains hit points, the Hungry gains two benefits until the end of its next turn: it has advantage on attack rolls, and its bite deals an extra 22 ({@damage 4d10}) necrotic damage on a hit." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Hungry makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 16}) and is {@condition restrained} until the grapple ends. While grappling a creature, the Hungry can't attack with its claws." + ] + } + ], + "environment": [ + "forest", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-hungry.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Lonely", + "source": "MTF", + "page": 232, + "reprintedAs": [ + "Lonely Sorrowsworn|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 17, + "int": 6, + "wis": 11, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "9", + "trait": [ + { + "name": "Psychic Leech", + "entries": [ + "At the start of each of the Lonely's turns, each creature within 5 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Thrives on Company", + "entries": [ + "The Lonely has advantage on attack rolls while it is within 30 feet of at least two other creatures. It otherwise has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Lonely makes one harpoon arm attack and uses Sorrowful Embrace." + ] + }, + { + "name": "Harpoon Arm", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 60 ft., one target. {@h}21 ({@damage 4d8 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature.", + "The Lonely has two harpoon arms and can grapple up to two creatures at once." + ] + }, + { + "name": "Sorrowful Embrace", + "entries": [ + "Each creature {@condition grappled} by the Lonely must make a {@dc 15} Wisdom saving throw. A creature takes 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one. In either case, the Lonely pulls each creature {@condition grappled} by it up to 30 feet straight toward it." + ] + } + ], + "environment": [ + "coastal", + "desert", + "mountain", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-lonely.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Lost", + "source": "MTF", + "page": 233, + "reprintedAs": [ + "Lost Sorrowsworn|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 6, + "wis": 7, + "cha": 5, + "skill": { + "athletics": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "languages": [ + "Common" + ], + "cr": "7", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Lost makes two arm spike attacks." + ] + }, + { + "name": "Arm Spike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage." + ] + }, + { + "name": "Embrace", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}25 ({@damage 4d10 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition frightened}, and it takes 27 ({@damage 6d8}) psychic damage at the end of each of its turns. The Lost can embrace only one creature at a time." + ] + } + ], + "reaction": [ + { + "name": "Tightening Embrace", + "entries": [ + "If the Lost takes damage while it has a creature {@condition grappled}, that creature takes 18 ({@damage 4d8}) psychic damage." + ] + } + ], + "environment": [ + "arctic", + "desert", + "forest", + "mountain", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-lost.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Wretched", + "source": "MTF", + "page": 233, + "reprintedAs": [ + "Wretched Sorrowsworn|MPMM" + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "4d6 - 4" + }, + "speed": { + "walk": 40 + }, + "str": 7, + "dex": 12, + "con": 9, + "int": 5, + "wis": 6, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "cond": true + } + ], + "cr": "1/4", + "trait": [ + { + "name": "Wretched Pack Tactics", + "entries": [ + "The Wretched has advantage on an attack roll against a creature if at least one of the Wretched's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}. The Wretched otherwise has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage, and the Wretched attaches to the target. While attached, the Wretched can't attack, and at the start of each of the Wretched's turns, the target takes 6 ({@damage 1d10 + 1}) necrotic damage.", + "The attached Wretched moves with the target whenever the target moves, requiring none of the Wretched's movement. The Wretched can detach itself by spending 5 feet of its movement on its turn. A creature, including the target, can use its action to detach a Wretched." + ] + } + ], + "environment": [ + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/the-wretched.mp3" + }, + "senseTags": [ + "D" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Titivilus", + "isNamedCreature": true, + "source": "MTF", + "page": 179, + "reprintedAs": [ + "Titivilus|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 19, + "dex": 22, + "con": 17, + "int": 24, + "wis": 22, + "cha": 26, + "save": { + "dex": "+11", + "con": "+8", + "wis": "+11", + "cha": "+13" + }, + "skill": { + "deception": "+13", + "insight": "+11", + "intimidation": "+13", + "persuasion": "+13" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Titivilus's innate spellcasting ability is Charisma (spell save {@dc 21}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self}", + "{@spell animate dead}", + "{@spell bestow curse}", + "{@spell confusion}", + "{@spell major image}", + "{@spell modify memory}", + "{@spell nondetection}", + "{@spell sending}", + "{@spell suggestion}" + ], + "daily": { + "3e": [ + "{@spell greater invisibility} (self only)", + "{@spell mislead}" + ], + "1e": [ + "{@spell feeblemind}", + "{@spell symbol} (discord or sleep only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Titivilus fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Titivilus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Titivilus's weapon attacks are magical." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Titivilus regains 10 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Titivilus dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Ventriloquism", + "entries": [ + "Whenever Titivilus speaks, he can choose a point within 60 feet; his voice emanates from that point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Titivilus makes one sword attack and uses his Frightful Word once." + ] + }, + { + "name": "Silver Sword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 16 ({@damage 3d10}) necrotic damage, or 9 ({@damage 1d10 + 4}) slashing damage plus 16 ({@damage 3d10}) necrotic damage if used with two hands. If the target is a creature, its hit point maximum is reduced by an amount equal to half the necrotic damage it takes." + ] + }, + { + "name": "Frightful Word", + "entries": [ + "Titivilus targets one creature he can see within 10 feet of him. The target must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} for 1 minute. While {@condition frightened} in this way, the target must take the Dash action and move away from Titivilus by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the Dash action. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Teleport", + "entries": [ + "Titivilus magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ] + }, + { + "name": "Twisting Words", + "entries": [ + "Titivilus targets one creature he can see within 60 feet of him. The target must make a {@dc 21} Charisma saving throw. On a failure the target is {@condition charmed} for 1 minute. The {@condition charmed} target can repeat the saving throw if Titivilus deals any damage to it. A creature that succeeds on the saving throw is immune to Titivilus's Twisting Words for 24 hours." + ] + } + ], + "legendary": [ + { + "name": "Assault (Costs 2 Actions)", + "entries": [ + "Titivilus attacks with his silver sword or uses his Frightful Word." + ] + }, + { + "name": "Corrupting Guidance", + "entries": [ + "Titivilus uses Twisting Words. Alternatively, he targets one creature {@condition charmed} by him that is within 60 feet of him; that {@condition charmed} target must make a {@dc 21} Charisma saving throw. On a failure, Titivilus decides how the target acts during its next turn." + ] + }, + { + "name": "Teleport", + "entries": [ + "Titivilus uses his Teleport action." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/titivilus.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "N", + "S" + ], + "damageTagsSpell": [ + "B", + "N", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "frightened", + "incapacitated", + "invisible", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tortle", + "source": "MTF", + "page": 242, + "otherSources": [ + { + "source": "TTP", + "page": 23 + } + ], + "reprintedAs": [ + "Tortle|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tortle" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 12, + "int": 11, + "wis": 13, + "cha": 12, + "skill": { + "athletics": "+4", + "survival": "+3" + }, + "passive": 11, + "languages": [ + "Aquan", + "Common" + ], + "cr": "1/4", + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The tortle can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ] + } + ], + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tortle.mp3" + }, + "attachedItems": [ + "light crossbow|phb", + "quarterstaff|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tortle Druid", + "source": "MTF", + "page": 242, + "otherSources": [ + { + "source": "TTP", + "page": 23 + } + ], + "reprintedAs": [ + "Tortle Druid|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tortle" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 12, + "int": 11, + "wis": 15, + "cha": 12, + "skill": { + "animal handling": "+4", + "nature": "+2", + "survival": "+4" + }, + "passive": 12, + "languages": [ + "Aquan", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The tortle is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell produce flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell cure wounds}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell hold person}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The tortle can hold its breath for 1 hour." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ] + } + ], + "environment": [ + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tortle-druid.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "B", + "S" + ], + "damageTagsSpell": [ + "F", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "paralyzed" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampiric Mist", + "source": "MTF", + "page": 246, + "otherSources": [ + { + "source": "TftYP", + "page": 247 + } + ], + "reprintedAs": [ + "Vampiric Mist|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 6, + "dex": 16, + "con": 16, + "int": 6, + "wis": 12, + "cha": 7, + "save": { + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "cold", + "lightning", + "necrotic", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "cr": "3", + "trait": [ + { + "name": "Life Sense", + "entries": [ + "The mist can sense the location of any creature within 60 feet of it, unless that creature's type is construct or undead." + ] + }, + { + "name": "Forbiddance", + "entries": [ + "The mist can't enter a residence without an invitation from one of the occupants." + ] + }, + { + "name": "Misty Form", + "entries": [ + "The mist can occupy another creature's space and vice versa. In addition, if air can pass through a space, the mist can pass through it without squeezing. Each foot of movement in water costs it 2 extra feet, rather than 1 extra foot. The mist can't manipulate objects in any way that requires fingers or manual dexterity." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "The mist takes 10 radiant damage whenever it starts its turn in sunlight. While in sunlight, the mist has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Life Drain", + "entries": [ + "The mist touches one creature in its space. The target must succeed on a {@dc 13} Constitution saving throw (undead and constructs automatically succeed), or it takes 10 ({@damage 2d6 + 3}) necrotic damage, the mist regains 10 hit points, and the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "environment": [ + "arctic", + "coastal", + "forest", + "grassland", + "mountain", + "swamp", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vampiric-mist.mp3" + }, + "altArt": [ + { + "name": "Vampiric Mist (Alt)", + "source": "TftYP" + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "N", + "R" + ], + "miscTags": [ + "HPR" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Venom Troll", + "source": "MTF", + "page": 245, + "reprintedAs": [ + "Venom Troll|MPMM" + ], + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 20, + "int": 7, + "wis": 9, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Giant" + ], + "cr": "7", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Poison Splash", + "entries": [ + "When the troll takes damage of any type but psychic, each creature within 5 feet of the troll takes 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troll makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 4 ({@damage 1d8}) poison damage, and the creature is {@condition poisoned} until the start of the troll's next turn." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 4 ({@damage 1d8}) poison damage." + ] + }, + { + "name": "Venom Spray {@recharge}", + "entries": [ + "The troll slices itself with a claw, releasing a spray of poison in a 15-foot cube. The troll takes 7 ({@damage 2d6}) slashing damage (this damage can't be reduced in any way). Each creature in the area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "forest", + "swamp", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/venom-troll.mp3" + }, + "traitTags": [ + "Keen Senses", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wastrilith", + "source": "MTF", + "page": 139, + "reprintedAs": [ + "Wastrilith|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75" + }, + "speed": { + "walk": 30, + "swim": 80 + }, + "str": 19, + "dex": 18, + "con": 21, + "int": 19, + "wis": 12, + "cha": 14, + "save": { + "str": "+9", + "con": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "13", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The wastrilith can breathe air and water." + ] + }, + { + "name": "Corrupt Water", + "entries": [ + "At the start of each of the wastrilith's turns, exposed water within 30 feet of it is befouled. Underwater, this effect lightly obscures the area until a current clears it away. Water in containers remains corrupted until it evaporates.", + "A creature that consumes this foul water or swims in it must make a {@dc 18} Constitution saving throw. On a successful save, the creature is immune to the foul water for 24 hours. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and is {@condition poisoned} for 1 minute. At the end of this time, the {@condition poisoned} creature must repeat the saving throw. On a failure, the creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} until it finishes a long rest.", + "If another demon drinks the foul water as an action, it gains 11 ({@dice 2d10}) temporary hit points." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The wastrilith has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Undertow", + "entries": [ + "As a bonus action when the wastrilith is underwater, it can cause all water within 60 feet of it to be {@quickref difficult terrain||3} for other creatures until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wastrilith uses Grasping Spout and makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}30 ({@damage 4d12 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ] + }, + { + "name": "Grasping Spout", + "entries": [ + "The wastrilith magically launches a spout of water at one creature it can see within 60 feet of it. The target must make a {@dc 17} Strength saving throw, and it has disadvantage if it's underwater. On a failed save, it takes 22 ({@damage 4d8 + 4}) acid damage and is pulled up to 60 feet toward the wastrilith. On a successful save, it takes half as much damage and isn't pulled." + ] + } + ], + "environment": [ + "coastal", + "swamp", + "underdark", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wastrilith.mp3" + }, + "traitTags": [ + "Amphibious", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "A", + "I", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Water Elemental Myrmidon", + "source": "MTF", + "page": 203, + "otherSources": [ + { + "source": "LR" + }, + { + "source": "PotA", + "page": 213 + } + ], + "reprintedAs": [ + "Water Elemental Myrmidon|MPMM" + ], + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 8, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "acid", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Aquan", + "one language of its creator's choice" + ], + "cr": "7", + "trait": [ + { + "name": "Magic Weapons", + "entries": [ + "The myrmidon's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The myrmidon makes three trident attacks." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Freezing Strikes {@recharge}", + "entries": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 5 ({@damage 1d10}) cold damage. A target that is hit by one or more of these attacks has its speed reduced by 10 feet until the end of the myrmidon's next turn." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/water-elemental-myrmidon.mp3" + }, + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "White Abishai", + "source": "MTF", + "page": 163, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "White Abishai|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 16, + "dex": 11, + "con": 18, + "int": 11, + "wis": 12, + "cha": 13, + "save": { + "str": "+6", + "con": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "cold", + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "cr": "6", + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the abishai's darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The abishai's weapon attacks are magical." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the abishai can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The abishai makes two attacks: one with its longsword and one with its claw." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ] + } + ], + "reaction": [ + { + "name": "Vicious Reprisal", + "entries": [ + "In response to taking damage, the abishai makes a bite attack against a random creature within 5 feet of it. If no creature is within reach, the abishai moves up to half its speed toward an enemy it can see, without provoking opportunity attacks." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/white-abishai.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Devil's Sight", + "Magic Resistance", + "Magic Weapons", + "Reckless" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "I", + "TP" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Winter Eladrin", + "source": "MTF", + "page": 197, + "reprintedAs": [ + "Winter Eladrin|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 10, + "con": 16, + "int": 18, + "wis": 17, + "cha": 13, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eladrin's innate spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell fog cloud}", + "{@spell gust of wind}" + ], + "daily": { + "1e": [ + "{@spell cone of cold}", + "{@spell ice storm}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Fey Step {@recharge 4}", + "entries": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sorrowful Presence", + "entries": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 13} Wisdom saving throw. On a failed save, the creature is {@condition charmed} for 1 minute. While {@condition charmed} in this way, the creature has disadvantage on ability checks and saving throws. The {@condition charmed} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Sorrowful Presence for the next 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, it can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) slashing damage, or 5 ({@damage 1d10}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Frigid Rebuke", + "entries": [ + "When the eladrin takes damage from a creature the eladrin can see within 60 feet of it, the eladrin can force that creature to succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) cold damage." + ] + } + ], + "environment": [ + "arctic", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/winter-eladrin.mp3" + }, + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "C" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yagnoloth", + "source": "MTF", + "page": 252, + "reprintedAs": [ + "Yagnoloth|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 14, + "con": 21, + "int": 16, + "wis": 15, + "cha": 18, + "save": { + "dex": "+6", + "int": "+7", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "deception": "+8", + "insight": "+6", + "perception": "+6", + "persuasion": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The yagnoloth's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "daily": { + "3": [ + "{@spell lightning bolt}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The yagnoloth has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The yagnoloth's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yagnoloth makes one massive arm attack and one electrified touch attack, or it makes one massive arm attack and teleports before or after the attack." + ] + }, + { + "name": "Electrified Touch", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}27 ({@damage 6d8}) lightning damage." + ] + }, + { + "name": "Massive Arm", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}23 ({@damage 3d12 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or is {@condition stunned} until the end of the yagnoloth's next turn." + ] + }, + { + "name": "Life Leech", + "entries": [ + "The yagnoloth touches one {@condition incapacitated} creature within 15 feet of it. The target takes 36 ({@damage 7d8 + 4}) necrotic damage, and the yagnoloth gains temporary hit points equal to half the damage dealt. The target must succeed on a {@dc 16} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest, and the target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Battlefield Cunning {@recharge 4}", + "entries": [ + "Up to two allied yugoloths within 60 feet of the yagnoloth that can hear it can use their reactions to make one melee attack each." + ] + }, + { + "name": "Teleport", + "entries": [ + "The yagnoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yagnoloth.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "B", + "L", + "N" + ], + "damageTagsSpell": [ + "L" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yeenoghu", + "isNamedCreature": true, + "source": "MTF", + "page": 155, + "otherSources": [ + { + "source": "OotA", + "page": 247 + }, + { + "source": "BGDIA" + } + ], + "reprintedAs": [ + "Yeenoghu|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 333, + "formula": "23d12 + 184" + }, + "speed": { + "walk": 50 + }, + "str": 29, + "dex": 16, + "con": 26, + "int": 15, + "wis": 24, + "cha": 15, + "save": { + "dex": "+10", + "con": "+15", + "wis": "+14" + }, + "skill": { + "intimidation": "+9", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "24", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Yeenoghu's spellcasting ability is Charisma (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "1": [ + "{@spell teleport}" + ], + "3e": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell invisibility}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Yeenoghu fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Yeenoghu has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Yeenoghu's weapon attacks are magical." + ] + }, + { + "name": "Rampage", + "entries": [ + "When Yeenoghu reduces a creature to 0 hit points with a melee attack on his turn, Yeenoghu can take a bonus action to move up to half his speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Yeenoghu makes three flail attacks. If an attack hits, he can cause it to create an additional effect of his choice or at random (each effect can be used only once per Multiattack):", + "1. The attack deals an extra 13 ({@damage 2d12}) bludgeoning damage.", + "2. The target must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} until the start of Yeenoghu's next turn.", + "3. The target must succeed on a {@dc 17} Wisdom saving throw or be affected by the {@spell confusion} spell until the start of Yeenoghu's next turn." + ] + }, + { + "name": "Flail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}15 ({@damage 1d12 + 9}) bludgeoning damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}14 ({@damage 1d10 + 9}) piercing damage." + ] + } + ], + "legendary": [ + { + "name": "Charge", + "entries": [ + "Yeenoghu moves up to his speed." + ] + }, + { + "name": "Swat Away", + "entries": [ + "Yeenoghu makes a flail attack. If the attack hits, the target must succeed on a {@dc 24} Strength saving throw or be pushed 15 feet in a straight line away from Yeenoghu. If the saving throw fails by 5 or more, the target falls {@condition prone}." + ] + }, + { + "name": "Savage (Costs 2 Actions)", + "entries": [ + "Yeenoghu makes a bite attack against each creature within 10 feet of him." + ] + } + ], + "legendaryGroup": { + "name": "Yeenoghu", + "source": "MTF" + }, + "attachedItems": [ + "flail|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Rampage" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsLegendary": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed", + "prone" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "conditionInflictSpell": [ + "frightened", + "invisible" + ], + "savingThrowForced": [ + "constitution", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Kruthik", + "source": "MTF", + "page": 211, + "reprintedAs": [ + "Young Kruthik|MPMM" + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 30, + "burrow": 10, + "climb": 30 + }, + "str": 13, + "dex": 16, + "con": 13, + "int": 4, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 30 ft.", + "tremorsense 60 ft." + ], + "passive": 10, + "languages": [ + "Kruthik" + ], + "cr": "1/8", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The kruthik has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 2\u00bd-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Stab", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "environment": [ + "desert", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/young-kruthik.mp3" + }, + "traitTags": [ + "Keen Senses", + "Pack Tactics", + "Tunneler" + ], + "senseTags": [ + "D", + "T" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zaratan", + "source": "MTF", + "page": 201, + "reprintedAs": [ + "Zaratan|MPMM" + ], + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 307, + "formula": "15d20 + 150" + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "str": 30, + "dex": 10, + "con": 30, + "int": 2, + "wis": 21, + "cha": 18, + "save": { + "wis": "+12", + "cha": "+11" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "vulnerable": [ + "thunder" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "cr": "22", + "trait": [ + { + "name": "Earth-Shaking Movement", + "entries": [ + "As a bonus action after moving at least 10 feet on the ground, the zaratan can send a shock wave through the ground in a 120-foot-radius circle centered on itself. That area becomes {@quickref difficult terrain||3} for 1 minute. Each creature on the ground that is {@status concentration||concentrating} must succeed on a {@dc 25} Constitution saving throw or the creature's {@status concentration} is broken.", + "The shock wave deals 100 thunder damage to all structures in contact with the ground in the area. If a creature is near a structure that collapses, the creature might be buried; a creature within half the distance of the structure's height must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 17 ({@damage 5d6}) bludgeoning damage, is knocked {@condition prone}, and is trapped in the rubble. A trapped creature is {@condition restrained}, requiring a successful {@dc 20} Strength ({@skill Athletics}) check as an action to escape. Another creature within 5 feet of the buried creature can use its action to clear rubble and grant advantage on the check. If three creatures use their actions in this way, the check is an automatic success. On a successful save, the creature takes half as much damage and doesn't fall {@condition prone} or become trapped." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the zaratan fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The zaratan's weapon attacks are magical." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The elemental deals double damage to objects and structures (included in Earth-Shaking Movement)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zaratan makes two attacks: one with its bite and one with its stomp." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) piercing damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}26 ({@damage 3d10 + 10}) bludgeoning damage." + ] + }, + { + "name": "Spit Rock", + "entries": [ + "{@atk rw} {@hit 17} to hit, range 120/240 ft., one target. {@h}31 ({@damage 6d8 + 10}) bludgeoning damage." + ] + }, + { + "name": "Spew Debris {@recharge 5}", + "entries": [ + "The zaratan exhales rocky debris in a 90-foot cube. Each creature in that area must make a {@dc 25} Dexterity saving throw. A creature takes 33 ({@damage 6d10}) bludgeoning damage on a failed save, or half as much damage on a successful one. A creature that fails the save by 5 or more is knocked {@condition prone}." + ] + } + ], + "legendary": [ + { + "name": "Stomp", + "entries": [ + "The zaratan makes one stomp attack." + ] + }, + { + "name": "Move", + "entries": [ + "The zaratan moves up to its speed." + ] + }, + { + "name": "Spit (Costs 2 Actions)", + "entries": [ + "The zaratan uses Spit Rock." + ] + }, + { + "name": "Retract (Costs 2 Actions)", + "entries": [ + "The zaratan retracts into its shell. Until it takes its Emerge action, it has resistance to all damage, and it is {@condition restrained}. The next time it takes a legendary action, it must take its Revitalize or Emerge action." + ] + }, + { + "name": "Revitalize (Costs 2 Actions)", + "entries": [ + "The zaratan can use this option only if it is retracted in its shell. It regains 52 ({@dice 5d20}) hit points. The next time it takes a legendary action, it must take its Emerge action." + ] + }, + { + "name": "Emerge (Costs 2 Actions)", + "entries": [ + "The zaratan emerges from its shell and uses Spit Rock. It can use this option only if it is retracted in its shell." + ] + } + ], + "environment": [ + "desert", + "forest", + "grassland", + "hill", + "mountain", + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/zaratan.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Weapons", + "Siege Monster" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zariel", + "isNamedCreature": true, + "source": "MTF", + "page": 180, + "reprintedAs": [ + "Zariel|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 580, + "formula": "40d10 + 360" + }, + "speed": { + "walk": 50, + "fly": 150 + }, + "str": 27, + "dex": 24, + "con": 28, + "int": 26, + "wis": 27, + "cha": 30, + "save": { + "int": "+16", + "wis": "+16", + "cha": "+18" + }, + "skill": { + "intimidation": "+18", + "perception": "+16" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 26, + "resist": [ + "cold", + "fire", + "radiant", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "26", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zariel's innate spellcasting ability is Charisma (spell save {@dc 26}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell alter self} (can become Medium when changing her appearance)", + "{@spell detect evil and good}", + "{@spell fireball}", + "{@spell invisibility} (self only)", + "{@spell wall of fire}" + ], + "daily": { + "3e": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell finger of death}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede Zariel's darkvision." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Zariel's weapon attacks are magical. When she hits with any weapon, the weapon deals an extra 36 ({@damage 8d8}) fire damage (included in the weapon attacks below)." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Zariel fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Zariel has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Zariel regains 20 hit points at the start of her turn. If she takes radiant damage, this trait doesn't function at the start of her next turn. Zariel dies only if she starts her turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zariel attacks twice with her longsword or with her javelins. She can substitute Horrid Touch for one of these attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage plus 36 ({@damage 8d8}) fire damage, or 19 ({@damage 2d10 + 8}) slashing damage plus 36 ({@damage 8d8}) fire damage if used with two hands." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 16} to hit, reach 10 ft. or range 30/120 ft., one target. {@h}15 ({@damage 2d6 + 8}) piercing damage plus 36 ({@damage 8d8}) fire damage." + ] + }, + { + "name": "Horrid Touch {@recharge 5}", + "entries": [ + "Zariel touches one creature within 10 feet of her. The target must succeed on a {@dc 26} Constitution saving throw or take 44 ({@damage 8d10}) necrotic damage and be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is also {@condition blinded} and {@condition deafened}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Teleport", + "entries": [ + "Zariel magically teleports, along with any equipment she is wearing and carrying, up to 120 feet to an unoccupied space she can see." + ] + } + ], + "legendary": [ + { + "name": "Immolating Gaze (Costs 2 Actions)", + "entries": [ + "Zariel turns her magical gaze toward one creature she can see within 120 feet of her and commands it to combust. The target must succeed on a {@dc 26} Wisdom saving throw or take 22 ({@damage 4d10}) fire damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "Zariel uses her Teleport action." + ] + } + ], + "legendaryGroup": { + "name": "Zariel", + "source": "MTF" + }, + "attachedItems": [ + "javelin|phb", + "longsword|phb" + ], + "traitTags": [ + "Devil's Sight", + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "F", + "N", + "P", + "S" + ], + "damageTagsLegendary": [ + "F" + ], + "damageTagsSpell": [ + "B", + "F", + "N", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "conditionInflict": [ + "blinded", + "deafened", + "poisoned" + ], + "conditionInflictLegendary": [ + "frightened" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zuggtmoy", + "isNamedCreature": true, + "source": "MTF", + "page": 157, + "otherSources": [ + { + "source": "OotA", + "page": 249 + } + ], + "reprintedAs": [ + "Zuggtmoy|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 304, + "formula": "32d10 + 128" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 15, + "con": 18, + "int": 20, + "wis": 19, + "cha": 24, + "save": { + "dex": "+9", + "con": "+11", + "wis": "+11" + }, + "skill": { + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "23", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zuggtmoy's spellcasting ability is Charisma (spell save {@dc 22}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell locate animals or plants}", + "{@spell ray of sickness}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell ensnaring strike}", + "{@spell entangle}", + "{@spell plant growth}" + ], + "1e": [ + "{@spell etherealness}", + "{@spell teleport}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Zuggtmoy fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Zuggtmoy has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Zuggtmoy's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zuggtmoy makes three pseudopod attacks." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage plus 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Infestation Spores (3/Day)", + "entries": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 19} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of madness (determined by rolling on the Madness of Zuggtmoy table) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ] + }, + { + "name": "Mind Control Spores {@recharge 5}", + "entries": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Humanoids and beasts in the cloud when it appears, or that enter it later, must make a {@dc 19} Wisdom saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the influence of Zuggtmoy for 24 hours. While infected in this way, the creature is {@condition charmed} by her and can't be reinfected by these spores." + ] + } + ], + "reaction": [ + { + "name": "Protective Thrall", + "entries": [ + "When Zuggtmoy is hit by an attack, one creature within 5 feet of Zuggtmoy that is {@condition charmed} by her must use its reaction to be hit by the attack instead." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Zuggtmoy makes one pseudopod attack." + ] + }, + { + "name": "Exert Will", + "entries": [ + "One creature {@condition charmed} by Zuggtmoy that she can see must use its reaction to move up to its speed as she directs or to make a weapon attack against a target that she designates." + ] + } + ], + "legendaryGroup": { + "name": "Zuggtmoy", + "source": "MTF" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "I" + ], + "damageTagsSpell": [ + "I", + "O", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "DIS", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aljanor Keenblade", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 149, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Aljanor", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "ac": [ + 10 + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Amarith Coppervein", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 142, + "_copy": { + "name": "Veteran", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Amarith", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, or 8 ({@damage 1d10 + 3}) bludgeoning damage if used with two hands." + ] + } + } + } + }, + "alignment": [ + "N", + "G" + ], + "damageTags": [ + "B", + "P" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Animated Drow Statue", + "source": "OotA", + "page": 96, + "_copy": { + "name": "Animated Armor", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "suit of armor", + "with": "statue" + }, + { + "mode": "replaceTxt", + "replace": "armor", + "with": "statue" + } + ] + } + }, + "type": "elemental", + "hasToken": true + }, + { + "name": "Asha Vandree", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 9, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Asha", + "flags": "i" + } + } + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true + }, + { + "name": "Awakened Zurkhwood", + "source": "OotA", + "page": 230, + "size": [ + "H" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d12 + 14" + }, + "speed": { + "walk": 20 + }, + "str": 19, + "dex": 6, + "con": 15, + "int": 10, + "wis": 10, + "cha": 7, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "one language known by its creator" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the tree remains motionless, it is indistinguishable from a normal zurkhwood mushroom." + ] + }, + { + "name": "Mute", + "entries": [ + "If the awakened zurkhwood was created by a myconid sovereign, it can't speak." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Blurg", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 29, + "_copy": { + "name": "Orog", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the orog", + "with": "Blurg", + "flags": "i" + }, + "languages": [ + { + "mode": "appendIfNotExistsArr", + "items": [ + "Dwarvish", + "Elvish", + "Undercommon" + ] + } + ], + "spellcasting": { + "mode": "appendArr", + "items": [ + { + "name": "Innate Spellcasting", + "headerEntries": [ + "Blurg can innately cast can cast the {@spell teleport} spell once per day, but the intended destination must be within 30 feet of another {@adventure society member|OotA|1|Society of Brilliance}. This teleport effect can be disrupted (see \"{@adventure Faerzress|OotA|1|Faerzress}\"), which is how society members sometimes end up in far corners of the Underdark, separated from their fellows." + ], + "daily": { + "1e": [ + "{@spell teleport}" + ] + }, + "hidden": [ + "daily" + ] + } + ] + } + } + }, + "alignment": [ + "N" + ], + "int": 18, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bridesmaid of Zuggtmoy", + "source": "OotA", + "page": 230, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 20 + }, + "str": 14, + "dex": 11, + "con": 11, + "int": 14, + "wis": 8, + "cha": 18, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "1/8", + "trait": [ + { + "name": "Fungus Stride", + "entries": [ + "Once on its turn, the bridesmaid can use 10 feet of its movement to step magically into one living mushroom or fungus patch within 5 feet and emerge from another within 60 feet of the first one, appearing in an unoccupied space within 5 feet of the second mushroom or fungus patch. The mushrooms and patches must be large or bigger." + ] + } + ], + "action": [ + { + "name": "Hallucination Spores", + "entries": [ + "The bridesmaid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is {@condition incapacitated}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Infestation Spores (1/Day)", + "entries": [ + "The bridesmaid releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 10} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of indefinite madness (determined by rolling on the Madness of Zuggtmoy table in appendix D) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must be repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS" + ], + "miscTags": [ + "AOE", + "DIS" + ], + "conditionInflict": [ + "incapacitated", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Buppido", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 6, + "_copy": { + "name": "Derro", + "source": "MTF", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the derro", + "with": "Buppido", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Cave Badger", + "source": "OotA", + "page": 96, + "_copy": { + "name": "Giant Badger", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Tunneler", + "entries": [ + "When the badger burrows, it leaves tunnels behind." + ] + } + } + } + }, + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "speed": { + "walk": 30, + "burrow": 15 + }, + "senses": [ + "darkvision 30 ft.", + "tremorsense 60 ft." + ], + "traitTags": [ + "Keen Senses", + "Tunneler" + ], + "senseTags": [ + "D", + "T" + ], + "hasToken": true + }, + { + "name": "Chamberlain of Zuggtmoy", + "source": "OotA", + "page": 230, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 20 + }, + "str": 17, + "dex": 7, + "con": 14, + "int": 11, + "wis": 8, + "cha": 12, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "bludgeoning", + "piercing" + ], + "languages": [ + "Abyssal", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Mushroom Portal", + "entries": [ + "The chamberlain counts as a mushroom for the Fungus Stride feature of the bridesmaid of Zuggtmoy." + ] + }, + { + "name": "Poison Spores", + "entries": [ + "Whenever the chamberlain takes damage, it releases a cloud of spores. Creatures within 5 feet of the chamberlain when this happens must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on a success." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chamberlain makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Infestation Spores (1/Day)", + "entries": [ + "The chamberlain releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 12} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of indefinite madness (determined by rolling on the Madness of Zuggtmoy table in appendix D) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must be repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "U" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "DIS", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Chuul Spore Servant", + "source": "OotA", + "page": 228, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 19, + "dex": 10, + "con": 16, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed", + "poisoned" + ], + "cr": "4", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spore servant makes two pincer attacks." + ] + }, + { + "name": "Pincer", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. The target is {@condition grappled} (Escape {@dc 14}) if it is a Large or smaller creature and the spore servant doesn't have two other creatures {@condition grappled}." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Deepking Horgar Steelshadow V", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 82, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item dwarven plate}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 11, + "con": 14, + "int": 11, + "wis": 11, + "cha": 15, + "save": { + "con": "+4", + "wis": "+2" + }, + "passive": 10, + "languages": [ + "Draconic", + "Giant", + "Dwarvish" + ], + "cr": "3", + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "Horgar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Horgar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Gauntlets of Ogre Power", + "entries": [ + "Horgar wields {@item Gauntlets of Ogre Power} giving him a Strength score of 19 (+4)." + ] + }, + { + "name": "Brave", + "entries": [ + "Horgar has advantage on saving throws against being {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, Horgar magically increases in size, along with anything he is wearing or carrying. While enlarged, Horgar is Large, doubles his damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If Horgar lacks the room to become Large, he attains the maximum size possible in the space available." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "Horgar magically turns {@condition invisible} until he attacks, casts a spell, or uses his Enlarge, or until his {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment Horgar wears or carries is {@condition invisible} with him." + ] + }, + { + "name": "Multiattack", + "entries": [ + "Horgar makes two melee attacks." + ] + }, + { + "name": "+2 Warhammer", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 11 ({@damage 1d10 + 6}) bludgeoning damage if used with two hands. While Horgar is enlarged, the damage increases to 15 ({@damage 2d8 + 6}) or 17 ({@damage 2d10 + 6}) bludgeoning damage, respectively." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + }, + { + "name": "Leadership (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, Horgar can utter a special command or warning whenever a nonhostile creature that he can see within 30 feet of Horgar makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand Horgar. A creature can benefit from only one Leadership die at a time. This effect ends if Horgar is {@condition incapacitated}." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Horgar adds 2 to its AC against one melee attack that would hit him. To do so, Horgar must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "+2 warhammer|dmg", + "gauntlets of ogre power|dmg", + "heavy crossbow|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "D", + "DR", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro", + "source": "OotA", + "page": 224, + "reprintedAs": [ + "Derro|MTF" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "derro" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 11, + "wis": 5, + "cha": 9, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1/4", + "trait": [ + { + "name": "Insanity", + "entries": [ + "The derro has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The derro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Hooked Shortspear", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage. If the target is a creature, the derro can choose to deal no damage and try to trip the target instead, in which case the target must succeed on a {@dc 9} Strength saving throw or fall {@condition prone}." + ] + }, + { + "name": "Light Repeating Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 40/160 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "hooked shortspear|oota", + "light repeating crossbow|oota" + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro Savant", + "source": "OotA", + "page": 224, + "reprintedAs": [ + "Derro Savant|MTF" + ], + "_copy": { + "name": "Derro", + "source": "OotA" + }, + "hp": { + "average": 49, + "formula": "11d6 + 11" + }, + "cha": 14, + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The derro savant is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The derro knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell message}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell chromatic orb}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell spider climb}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell blink}", + "{@spell lightning bolt}" + ] + } + }, + "ability": "cha" + } + ], + "spellcastingTags": [ + "CS" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Droki", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 231, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "derro" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(60 ft. with boots of speed)" + } + }, + "str": 11, + "dex": 16, + "con": 13, + "int": 10, + "wis": 5, + "cha": 16, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Droki's innate spellcasting ability is Charisma (spell save {@dc 13}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell fear}", + "{@spell shatter}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Droki wears {@item boots of speed}." + ] + }, + { + "name": "Insanity", + "entries": [ + "Droki has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Droki deals an extra 7 ({@damage 2d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Droki that isn't {@condition incapacitated} and Droki doesn't have disadvantage on the attack roll." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The derro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Droki makes two attacks with his shortsword" + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. The sword is coated with serpent venom that wears off after the first hit. A target subjected to the venom must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Droki adds 3 to his AC against one melee attack that would hit him. To do so, Droki must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Magic Resistance", + "Sneak Attack", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drow Acolyte", + "source": "OotA", + "page": 201, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true + }, + { + "name": "Drow Bandit", + "source": "OotA", + "page": 194, + "_copy": { + "name": "Bandit", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Drow Commoner", + "source": "OotA", + "page": 194, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Drow Cultist", + "source": "OotA", + "page": 196, + "_copy": { + "name": "Cultist", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Drow Guard", + "source": "OotA", + "page": 195, + "_copy": { + "name": "Guard", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Drow Noble", + "source": "OotA", + "page": 196, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Drow Scout", + "source": "OotA", + "page": 191, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Keen Senses", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Drow Spore Servant", + "source": "OotA", + "page": 229, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 20 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 8, + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed" + ], + "cr": "1/8", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Drow Spy", + "source": "OotA", + "page": 195, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sneak Attack", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Duergar Alchemist", + "source": "OotA", + "page": 76, + "_copy": { + "name": "Duergar", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Javelin", + "items": [ + { + "name": "Acid Vial", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 20 ft., one target. {@h}7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Alchemist's Fire", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 20 ft., one target. {@h}2 ({@damage 1d4}) fire damage at the start of each of the target's turns. A creature can end this damage by using its action to make a successful {@dc 10} Dexterity check to extinguish the flames." + ] + } + ] + } + } + }, + "damageTags": [ + "A", + "F", + "P" + ], + "hasToken": true + }, + { + "name": "Duergar Darkhaft", + "source": "OotA", + "page": 226, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The darkhaft's innate spellcasting ability is Intelligence (spell save {@dc 10}) it can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell friends}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell disguise self}", + "{@spell sleep}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "attachedItems": [ + "javelin|phb", + "war pick|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "unconscious" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Keeper of the Flame", + "source": "OotA", + "page": 226, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 11, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The Keeper of the Flame's innate spellcasting ability is Wisdom (spell save {@dc 12}.) It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell friends}", + "{@spell message}" + ], + "daily": { + "1e": [ + "{@spell command}" + ] + }, + "ability": "wis" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Keeper of the Flame is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The Keeper of the Flame has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell sacred flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell enhance ability}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "attachedItems": [ + "javelin|phb", + "war pick|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC", + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Duergar Spore Servant", + "source": "OotA", + "page": 229, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 15 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 8, + "resist": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed" + ], + "cr": "1/2", + "action": [ + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "war pick|phb" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Eldeth Feldrun", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 6, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Eldeth", + "flags": "i" + } + } + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Emerald Enclave Scout", + "source": "OotA", + "page": 130, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 25 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 11, + "wis": 13, + "cha": 11, + "skill": { + "nature": "+4", + "perception": "+5", + "stealth": "+6", + "survival": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1/2", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "The scout has advantage on saving throws against poison." + ] + }, + { + "name": "Keen Hearing and Sight", + "entries": [ + "The scout has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scout makes two melee attacks." + ] + }, + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "war pick|phb" + ], + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Fiendish Giant Spider", + "source": "OotA", + "page": 97, + "_copy": { + "name": "Giant Wolf Spider", + "source": "MM" + }, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "1/2", + "hasToken": true + }, + { + "name": "Four-Armed Statue", + "source": "OotA", + "page": 206, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "statue" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The statue makes four sword attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Sword", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage." + ] + } + } + ] + } + }, + "damageTags": [ + "S" + ], + "hasToken": true + }, + { + "name": "Gash", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 181, + "_copy": { + "name": "Gnoll", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gnoll", + "with": "Gash", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Wretched", + "entries": [ + "Gash has disadvantage on Wisdom checks and Wisdom saving throws because of the physical and mental abuse he has suffered. A {@spell lesser restoration} spell rids him of these effects." + ] + } + } + } + }, + "hp": { + "average": 11, + "formula": "5d8" + }, + "speed": { + "walk": 25 + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ghazrim DuLoc", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 141, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Ghazrim", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Giant Riding Lizard", + "source": "OotA", + "page": 131, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The lizard can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Giant Rocktopus", + "source": "OotA", + "page": 28, + "_copy": { + "name": "Giant Octopus", + "source": "MM", + "_mod": { + "trait": [ + { + "mode": "replaceArr", + "replace": "Underwater Camouflage", + "items": { + "name": "Camouflage", + "entries": [ + "The octopus has advantage on Dexterity ({@skill Stealth}) checks." + ] + } + }, + { + "mode": "removeArr", + "names": [ + "Hold Breath", + "Water Breathing" + ] + } + ] + } + }, + "speed": { + "walk": 20, + "climb": 10 + }, + "traitTags": [], + "hasToken": true + }, + { + "name": "Glabbagool", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 35, + "_copy": { + "name": "Gelatinous Cube", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the cube", + "with": "Glabbagool", + "flags": "i" + } + } + }, + "int": 10, + "languages": [ + "telepathy 60 ft." + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grazilaxx", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 29, + "_copy": { + "name": "Mind Flayer", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "Grazilaxx", + "flags": "i" + }, + "languages": [ + { + "mode": "appendIfNotExistsArr", + "items": [ + "Dwarvish", + "Elvish", + "Undercommon" + ] + } + ], + "spellcasting": { + "mode": "appendArr", + "items": [ + { + "name": "Innate Spellcasting", + "headerEntries": [ + "Grazilaxx can innately cast can cast the {@spell teleport} spell once per day, but the intended destination must be within 30 feet of another {@adventure society member|OotA|1|Society of Brilliance}. This teleport effect can be disrupted (see \"{@adventure Faerzress|OotA|1|Faerzress}\"), which is how society members sometimes end up in far corners of the Underdark, separated from their fellows." + ], + "daily": { + "1e": [ + "{@spell teleport}" + ] + }, + "hidden": [ + "daily" + ] + } + ] + } + } + }, + "alignment": [ + "N" + ], + "int": 18, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Grisha", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Damaran" + } + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 12, + "int": 11, + "wis": 14, + "cha": 16, + "save": { + "wis": "+4", + "cha": "+5" + }, + "skill": { + "persuasion": "+5", + "religion": "+2" + }, + "passive": 12, + "languages": [ + "Common", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Grisha is a 6th-level-spellcaster. His spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell divine favor}", + "{@spell inflict wounds}", + "{@spell protection from evil and good}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell continual flame}", + "{@spell hold person}", + "{@spell magic weapon}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Grisha makes two attacks with his +1 flail." + ] + }, + { + "name": "+1 Flail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage" + ] + } + ], + "attachedItems": [ + "+1 flail|dmg" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "U" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Hanne Hallen", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 171, + "_copy": { + "name": "Drow", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Hanne", + "flags": "i" + }, + "spellcasting": [ + { + "mode": "appendArr", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "Hanne is a 1st-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell minor illusion}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell shield}", + "{@spell mage armor}" + ] + } + }, + "ability": "int" + } + } + ] + } + }, + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "int": 17, + "skill": { + "perception": "+2", + "stealth": "+4", + "arcana": "+5", + "investigation": "+5" + }, + "languages": [ + "Elvish", + "Undercommon", + "Common" + ], + "hasToken": true + }, + { + "name": "Hook Horror Spore Servant", + "source": "OotA", + "page": 68, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 10" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 18, + "dex": 10, + "con": 15, + "int": 2, + "wis": 6, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 8, + "resist": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spore servant makes two hook attacks." + ] + }, + { + "name": "Hook", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true + }, + { + "name": "Ilvara Mizzrym", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 9, + "_copy": { + "name": "Drow Priestess of Lolth", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Ilvara", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Ilvara wields a {@item tentacle rod} in addition to her scourge." + ] + } + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Infant Basilisk", + "source": "OotA", + "page": 100, + "_copy": { + "name": "Basilisk", + "source": "MM" + }, + "size": [ + "T" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 4, + "formula": "1d4 + 2" + }, + "speed": { + "walk": 10 + }, + "str": 10, + "cr": "0", + "trait": null, + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 piercing damage plus 1 poison damage." + ] + } + ], + "conditionInflict": [], + "hasToken": true + }, + { + "name": "Infant Hook Horror", + "source": "OotA", + "page": 34, + "_copy": { + "name": "Hook Horror", + "source": "MM" + }, + "size": [ + "T" + ], + "ac": [ + { + "ac": 10, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 4, + "formula": "1d4 + 2" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 9, + "cr": "0", + "action": null, + "actionTags": [], + "hasToken": true + }, + { + "name": "Ixitxachitl", + "source": "OotA", + "page": 225, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 0, + "swim": 30 + }, + "str": 12, + "dex": 16, + "con": 13, + "int": 12, + "wis": 13, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Barbed Tail", + "entries": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ixitxachitl Cleric", + "source": "OotA", + "page": 225, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 0, + "swim": 30 + }, + "str": 12, + "dex": 16, + "con": 13, + "int": 12, + "wis": 13, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ixitxachitl is a 5th-level spellcaster that uses Wisdom as its spellcasting ability (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The ixitxachitl has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell create or destroy water}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell tongues}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Barbed Tail", + "entries": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Jade Giant Spider", + "source": "OotA", + "page": 201, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "spider", + "flags": "i" + } + } + }, + "hp": { + "average": 250, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "senses": [ + "truesight 120 ft." + ], + "hasToken": true + }, + { + "name": "Jimjar", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 6, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Deep Gnome", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Jimjar", + "flags": "i" + } + } + }, + "languages": [ + "Common", + "Gnomish", + "Terran", + "Undercommon" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Juvenile Hook Horror", + "source": "OotA", + "page": 34, + "_copy": { + "name": "Hook Horror", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Hook", + "items": { + "name": "Hook", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + } + } + }, + "size": [ + "M" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 15, + "cr": "2", + "hasToken": true + }, + { + "name": "Khalessa Draga", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 149, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "High Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Khalessa", + "flags": "i" + }, + "languages": { + "mode": "appendIfNotExistsArr", + "items": "Undercommon" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Khalessa owns a {@item hat of disguise}, which she uses to appear as a female drow while in the company of drow." + ] + } + } + } + }, + "alignment": [ + "N" + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Khalessa can innately cast the following spell, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "ability": "int" + } + ], + "traitTags": [ + "Fey Ancestry", + "Sneak Attack" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kinyel Druu'giir", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 134, + "_copy": { + "name": "Assassin", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Kinyel", + "flags": "i" + } + } + }, + "traitTags": [ + "Fey Ancestry", + "Sneak Attack", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kurr", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 179, + "_copy": { + "name": "Gnoll Fang of Yeenoghu", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gnoll", + "with": "Kurr", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lords' Alliance Guard", + "source": "OotA", + "page": 131, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 12, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "cr": "1/4", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "The guard has advantage on saving throws against poison." + ] + } + ], + "action": [ + { + "name": "Halberd", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage." + ] + } + ], + "attachedItems": [ + "halberd|phb" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "hasToken": true + }, + { + "name": "Lords' Alliance Spy", + "source": "OotA", + "page": 131, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 10, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "investigation": "+5", + "perception": "+6", + "persuasion": "+5", + "sleight of hand": "+4", + "stealth": "+4" + }, + "passive": 16, + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of its turns, the spy can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "The spy deals an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the spy that isn't {@condition incapacitated} and the spy doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spy makes two melee attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Lorthuun", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 141, + "_copy": { + "name": "Beholder", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the beholder", + "with": "Lorthuun", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Eye Rays", + "items": { + "name": "Eye Rays", + "entries": [ + "The beholder shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Charm Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or be {@condition charmed} by the beholder for 1 hour, or until the beholder harms the creature." + }, + { + "type": "item", + "name": "2. Paralyzing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "3. Fear Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "4. Slowing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 16} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn, not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "5. Enervation Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 16} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "6. Telekinetic Ray", + "style": "italic", + "entries": [ + "If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or the beholder moves it up to 30 feet in any direction. It is {@condition restrained} by the ray's telekinetic grip until the start of the beholder's next turn or until the beholder is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is moved up to 30 feet in any direction. The beholder can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ] + } + ] + } + ] + } + } + } + }, + "cr": "9", + "damageTags": [ + "N", + "P" + ], + "hasToken": true + }, + { + "name": "Mev Flintknapper", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 103, + "_copy": { + "name": "Veteran", + "source": "MM", + "_templates": [ + { + "name": "Deep Gnome", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Mev", + "flags": "i" + } + } + }, + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true + }, + { + "name": "Narrak", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 232, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "derro" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d6 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 13, + "int": 14, + "wis": 5, + "cha": 16, + "skill": { + "arcana": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Narrak is a 5th-level spellcaster. His spellcasting ability is Charisma (Save {@dc 13}, {@hit 5} to hit with spell attacks) Narrak has two 2nd-level spell slots, which he regains after finishing a short or long rest, and knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell eldritch blast}", + "{@spell friends}", + "{@spell poison spray}" + ] + }, + "2": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell armor of Agathys}", + "{@spell charm person}", + "{@spell hex}", + "{@spell hold person}", + "{@spell ray of enfeeblement}", + "{@spell spider climb}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Insanity", + "entries": [ + "Narrak has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Narrak has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Narrak has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Armor of Shadows (Recharges after a Short or Long Rest)", + "entries": [ + "Narrak casts {@spell mage armor} on himself" + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "One with Shadows", + "entries": [ + "While he is in a dim light or darkness, Narrak can become {@condition invisible}. He remains so until he moves or takes an action or reaction." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "I", + "N", + "O" + ], + "spellcastingTags": [ + "CL" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "paralyzed" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Ougalop", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 142, + "_copy": { + "name": "Kuo-Toa", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the kuo-toa", + "with": "Ougalop", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Peebles", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 134, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Deep Gnome", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Peebles", + "flags": "i" + } + } + }, + "spellcastingTags": [ + "I" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Prince Derendil", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 6, + "_copy": { + "name": "Quaggoth", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the quaggoth", + "with": "Prince Derendil", + "flags": "i" + } + } + }, + "languages": [ + "Elvish", + "Undercommon" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Princess Ebonmire", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 111, + "_copy": { + "name": "Black Pudding", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the pudding", + "with": "Princess Ebonmire", + "flags": "i" + } + } + }, + "int": 6, + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or 30 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 18 ({@damage 4d8}) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ] + } + ], + "hasToken": true + }, + { + "name": "Quenthel Baenre", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 204, + "_copy": { + "name": "Drow Priestess of Lolth", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Quenthel", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Quenthel wields a {@item tentacle rod}." + ] + } + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Throne Activation", + "entries": [ + "While seated on her throne, Quenthel can use an action on her turn to cast {@spell disintegrate} (save {@dc 19}). A target that fails its saving throw takes {@damage 10d6 + 40} force damage. If this damage reduces the target to 0 hit points, it is disintegrated." + ] + } + } + } + }, + "ac": [ + { + "ac": 19, + "from": [ + "{@item +3 scale mail}" + ] + } + ], + "hp": { + "average": 132, + "formula": "24d8 + 24" + }, + "int": 18, + "wis": 20, + "save": { + "con": "+8", + "wis": "+12", + "cha": "+11" + }, + "skill": { + "insight": "+12", + "perception": "+12", + "religion": "+11", + "stealth": "+9" + }, + "cr": "22", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Quenthel's spellcasting ability is Charisma (spell save {@dc 19}). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Quenthel is a 20th-level spellcaster. Her spellcasting ability is Wisdom (save {@dc 20}, {@hit 12} to hit with spell attacks). The drow has the following cleric spells prepared:" + ], + "will": [ + "Any {@filter cleric spell up to 9th level|spells|level=0;1;2;3;4;5;6;7;8;9|class=cleric}." + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell poison spray}", + "{@spell resistance}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell cure wounds}", + "{@spell detect poison and disease}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell protection from poison}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell conjure animals} (2 giant spiders)", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell freedom of movement}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell insect plague}", + "{@spell mass cure wounds}" + ] + } + }, + "ability": "wis" + } + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Regenerating Black Pudding", + "source": "OotA", + "page": 211, + "_copy": { + "name": "Black Pudding", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Regeneration", + "entries": [ + "The pudding regains 10 hit points at the start of its turn. If the pudding takes fire damage, this trait doesn't function at the start of the pudding's next turn. The pudding dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + } + } + }, + "int": 6, + "cr": "5", + "traitTags": [ + "Amorphous", + "Regeneration", + "Spider Climb" + ], + "hasToken": true + }, + { + "name": "Ront", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 7, + "_copy": { + "name": "Orc", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the orc", + "with": "Ront", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Rumpadump", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 72, + "_copy": { + "name": "Myconid Sprout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the myconid", + "with": "Rumpadump", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Rystia Zav", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 135, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Rystia", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sarith Kzekarit", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 7, + "_copy": { + "name": "Drow", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Sarith", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Shedrak of the Eyes", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 176, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Shedrak", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "trait": [ + { + "name": "Eye Tattoos", + "entries": [ + "Shedrak has ten small eyes tattooed on his bald head that allow him to see {@condition invisible} creatures and objects as if they were visible." + ] + } + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Shuushar the Awakened", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 7, + "_copy": { + "name": "Kuo-Toa", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the kuo-toa", + "with": "Shuushar", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Skriss", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 29, + "_copy": { + "name": "Troglodyte", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the troglodyte", + "with": "Skriss", + "flags": "i" + }, + "languages": [ + { + "mode": "appendIfNotExistsArr", + "items": [ + "Dwarvish", + "Elvish", + "Undercommon" + ] + } + ], + "spellcasting": { + "mode": "appendArr", + "items": [ + { + "name": "Innate Spellcasting", + "headerEntries": [ + "Skriss can innately cast can cast the {@spell teleport} spell once per day, but the intended destination must be within 30 feet of another {@adventure society member|OotA|1|Society of Brilliance}. This teleport effect can be disrupted (see \"{@adventure Faerzress|OotA|1|Faerzress}\"), which is how society members sometimes end up in far corners of the Underdark, separated from their fellows." + ], + "daily": { + "1e": [ + "{@spell teleport}" + ] + }, + "hidden": [ + "daily" + ] + } + ] + } + } + }, + "alignment": [ + "N" + ], + "int": 18, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sladis Vadir", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 135, + "_copy": { + "name": "Druid", + "source": "MM", + "_templates": [ + { + "name": "High Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the druid", + "with": "Sladis", + "flags": "i" + }, + "languages": { + "mode": "appendIfNotExistsArr", + "items": "Undercommon" + } + } + }, + "alignment": [ + "N", + "G" + ], + "traitTags": [ + "Fey Ancestry" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sloopidoop", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 29, + "_copy": { + "name": "Kuo-toa Archpriest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the kuo-toa", + "with": "Sloopidoop", + "flags": "i" + }, + "languages": [ + { + "mode": "appendIfNotExistsArr", + "items": [ + "Dwarvish", + "Elvish", + "Undercommon" + ] + } + ], + "spellcasting": { + "mode": "appendArr", + "items": [ + { + "name": "Innate Spellcasting", + "headerEntries": [ + "Sloopidoop can innately cast can cast the {@spell teleport} spell once per day, but the intended destination must be within 30 feet of another {@adventure society member|OotA|1|Society of Brilliance}. This teleport effect can be disrupted (see \"{@adventure Faerzress|OotA|1|Faerzress}\"), which is how society members sometimes end up in far corners of the Underdark, separated from their fellows." + ], + "daily": { + "1e": [ + "{@spell teleport}" + ] + }, + "hidden": [ + "daily" + ] + } + ] + } + } + }, + "alignment": [ + "N" + ], + "int": 18, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sovereign Basidia", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 88, + "_copy": { + "name": "Myconid Sovereign", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the myconid", + "with": "Basidia", + "flags": "i" + } + } + }, + "damageTags": [ + "B", + "I" + ], + "conditionInflict": [ + "incapacitated", + "poisoned", + "stunned" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Spider King", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 74, + "_copy": { + "name": "Giant Spider", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Two Heads", + "entries": [ + "Because of its two heads, the Spider King has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ] + } + } + } + }, + "hp": { + "average": 44, + "formula": "4d10 + 4" + }, + "save": { + "con": "+3", + "wis": "+2" + }, + "skill": { + "stealth": "+7", + "perception": "+4" + }, + "passive": 14, + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "B", + "D" + ], + "hasToken": true + }, + { + "name": "Spiderbait", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 31, + "_copy": { + "name": "Goblin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the goblin", + "with": "Spiderbait", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "skill": { + "acrobatics": "+6", + "athletics": "+3", + "stealth": "+6" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Stool", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 7, + "_copy": { + "name": "Myconid Sprout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the myconid", + "with": "Stool", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Svirfneblin Wererat", + "source": "OotA", + "page": 97, + "_copy": { + "name": "Wererat", + "source": "MM", + "_templates": [ + { + "name": "Deep Gnome", + "source": "DMG" + } + ] + }, + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "The Pudding King", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 233, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome", + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 49, + "formula": "9d6 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 14, + "int": 12, + "wis": 8, + "cha": 17, + "save": { + "con": "+6", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "perception": "+2", + "stealth": "+6", + "survival": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Gnomish", + "Terran", + "Undercommon" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Pudding King's innate spellcasting ability is Intelligence (spell save {@dc 12}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell nondetection} (self only)" + ], + "daily": { + "1e": [ + "{@spell blindness/deafness}", + "{@spell blur}", + "{@spell disguise self}" + ] + }, + "ability": "int" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Pudding King is a 9th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The Pudding King knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell light}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell mage armor}", + "{@spell ray of sickness}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell gaseous form}", + "{@spell stinking cloud}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell confusion}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cloudkill}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Stone Camouflage", + "entries": [ + "The Pudding King has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + }, + { + "name": "Gnome Cunning", + "entries": [ + "The Pudding King has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ] + }, + { + "name": "Insanity", + "entries": [ + "The Pudding King has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The Pudding King magically transforms into an {@filter ooze|bestiary|type=ooze}, or back into his true form. He reverts to his true form if he dies. Any equipment he is wearing or carrying is absorbed by the new form. In ooze form, the Pudding King retains his alignment, hit points, Hit Dice, and Intelligence, Wisdom, and Charisma scores, as well as this action. His statistics and capabilities are otherwise replaced by those of the new form." + ] + }, + { + "name": "Create Green Slime (Recharges after a Long Rest)", + "entries": [ + "The Pudding King creates a patch of green slime (see \"Dungeon Hazards\" in chapter 5 of the Dungeon Master's Guide). The slime appears on a section of wall, ceiling, or floor within 30 feet of the Pudding King." + ] + } + ], + "attachedItems": [ + "war pick|phb" + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Shapechanger" + ], + "languageTags": [ + "AB", + "G", + "T", + "U" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "A", + "I", + "N" + ], + "spellcastingTags": [ + "CS", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "poisoned" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Themberchaud", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 53, + "_copy": { + "name": "Adult Red Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Themberchaud", + "flags": "i" + } + } + }, + "damageTagsLegendary": [], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Topsy", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 8, + "_copy": { + "name": "Wererat", + "source": "MM", + "_templates": [ + { + "name": "Deep Gnome", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wererat", + "with": "Topsy", + "flags": "i" + } + } + }, + "languages": [ + "Gnomish", + "Terran", + "Undercommon" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Troglodyte Champion of Laogzed", + "source": "OotA", + "page": 229, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "troglodyte" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 18, + "int": 8, + "wis": 12, + "cha": 12, + "skill": { + "athletics": "+6", + "intimidation": "+3", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Troglodyte" + ], + "cr": "3", + "trait": [ + { + "name": "Chameleon Skin", + "entries": [ + "The troglodyte has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ] + }, + { + "name": "Stench", + "entries": [ + "Any creature other than a troglodyte that starts its turn within 5 feet of the troglodyte must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all troglodytes for 1 hour." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the troglodyte has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troglodyte makes three attacks: one with its bite and two with either its claws or its greatclub." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Acid Spray {@recharge}", + "entries": [ + "The troglodyte spits acid in a line 15 feet long and 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 10 ({@damage 3d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "greatclub|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Turvy", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 8, + "_copy": { + "name": "Wererat", + "source": "MM", + "_templates": [ + { + "name": "Deep Gnome", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wererat", + "with": "Turvy", + "flags": "i" + } + } + }, + "languages": [ + "Gnomish", + "Terran", + "Undercommon" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Vampiric Ixitxachitl", + "source": "OotA", + "page": 226, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 0, + "swim": 30 + }, + "str": 14, + "dex": 18, + "con": 13, + "int": 12, + "wis": 13, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "cr": "2", + "action": [ + { + "name": "Vampiric Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. The target must succeed on a {@dc 11} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken, and the ixitxachitl regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "reaction": [ + { + "name": "Barbed Tail", + "entries": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Vampiric Ixitxachitl Cleric", + "source": "OotA", + "page": 226, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 0, + "swim": 30 + }, + "str": 14, + "dex": 18, + "con": 13, + "int": 12, + "wis": 13, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ixitxachitl is a 5th-level spellcaster that uses Wisdom as its spellcasting ability (Spell save {@dc 11}, {@hit 3} to hit with spell attacks). The ixitxachitl has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell create or destroy water}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell tongues}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Vampiric Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. The target must succeed on a {@dc 11} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken, and the ixitxachitl regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + } + ], + "reaction": [ + { + "name": "Barbed Tail", + "entries": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Veldyskar", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 151, + "_copy": { + "name": "Basilisk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the basilisk", + "with": "Veldyskar", + "flags": "i" + } + } + }, + "int": 10, + "languages": [ + "Common", + "Dwarvish", + "Giant", + "Undercommon" + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Veldyskar can innately cast the following spell, requiring no material components:" + ], + "daily": { + "1": [ + "{@spell greater restoration}" + ] + } + } + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Veteran of the Gauntlet", + "source": "OotA", + "page": 130, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 10, + "wis": 11, + "cha": 10, + "skill": { + "athletics": "+5", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Viln Tirin", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 202, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Viln", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Viln carries a {@item scimitar of speed} and can make one attack with it as a bonus action on her turn. Viln also carries four {@item dagger|PHB|daggers} coated with {@item purple worm poison}. The poison on a dagger's blade is good for one hit only, whether the poison takes effect or not." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Scimitar", + "items": { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ] + } + } + } + }, + "alignment": [ + "C", + "E" + ], + "cr": "5", + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Vizeran DeVir", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 155, + "_copy": { + "name": "Archmage", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Vizeran", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "traitTags": [ + "Fey Ancestry", + "Magic Resistance", + "Sunlight Sensitivity" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Xazax the Eyemonger", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 142, + "_copy": { + "name": "Beholder", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the beholder", + "with": "Xazax", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Y", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 29, + "_copy": { + "name": "Derro Savant", + "source": "MTF", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the derro savant", + "with": "Y", + "flags": "i" + }, + "languages": [ + { + "mode": "appendIfNotExistsArr", + "items": [ + "Dwarvish", + "Elvish", + "Undercommon" + ] + } + ], + "spellcasting": { + "mode": "appendArr", + "items": [ + { + "name": "Innate Spellcasting", + "headerEntries": [ + "Y can innately cast can cast the {@spell teleport} spell once per day, but the intended destination must be within 30 feet of another {@adventure society member|OotA|1|Society of Brilliance}. This teleport effect can be disrupted (see \"{@adventure Faerzress|OotA|1|Faerzress}\"), which is how society members sometimes end up in far corners of the Underdark, separated from their fellows." + ], + "daily": { + "1e": [ + "{@spell teleport}" + ] + }, + "hidden": [ + "daily" + ] + } + ] + } + } + }, + "alignment": [ + "N" + ], + "int": 18, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Yestabrod", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 233, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 10, + "con": 14, + "int": 13, + "wis": 15, + "cha": 10, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 60 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If Yestabrod fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 3d4 + 1}) bludgeoning damage plus 7 ({@damage 3d4}) poison damage." + ] + }, + { + "name": "Caustic Spores (1/Day)", + "entries": [ + "Yestabrod releases spores in a 30-foot cone. Each creature in that area must succeed on a {@dc 12} Dexterity saving throw or take {@damage 1d6} acid damage at the start of each of Yestabrod's turns. A creature can repeat the saving throw at the end of each of its turn, ending the effect on itself on a success." + ] + }, + { + "name": "Infestation Spores (1/Day)", + "entries": [ + "Yestabrod releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 12} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of indefinite madness (determined by rolling on the Madness of Zuggtmoy table in appendix D) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must be repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ] + } + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Corpse Burst", + "entries": [ + "Gore, offal, and acid erupt from a corpse within 20 feet of Yestabrod. Creatures within 10 feet of the corpse must succeed on a {@dc 12} Dexterity saving throw or take 7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Foul Absorption", + "entries": [ + "Yestabrod absorbs putrescence from a corpse within 5 feet of it, regaining {@dice 1d8 + 2} hit points" + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "A", + "B", + "I" + ], + "miscTags": [ + "AOE", + "DIS", + "MW" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Young Basilisk", + "source": "OotA", + "page": 100, + "_copy": { + "name": "Basilisk", + "source": "MM" + }, + "size": [ + "S" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d6 + 8" + }, + "speed": { + "walk": 15 + }, + "str": 13, + "cr": "1", + "trait": [ + { + "name": "Petrifying Gaze", + "entries": [ + "If a creature starts its turn within 15 feet of the basilisk and the two of them can see each other, the basilisk can force the creature to make a {@dc 12} Constitution saving throw if the basilisk isn't {@condition incapacitated}. On a failed save, the creature magically begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic.", + "A creature that isn't {@status surprised} can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save.", + "If the basilisk sees its reflection within 30 feet of it in bright light, it mistakes itself for a rival and targets itself with its gaze." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage plus 2 ({@damage 1d4}) poison damage." + ] + } + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Young Hook Horror", + "source": "OotA", + "page": 34, + "_copy": { + "name": "Hook Horror", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Hook", + "items": { + "name": "Hook", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + } + } + }, + "size": [ + "S" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d6 + 4" + }, + "speed": { + "walk": 15, + "climb": 15 + }, + "str": 12, + "cr": "1/4", + "hasToken": true + }, + { + "name": "Yuk Yuk", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 31, + "_copy": { + "name": "Goblin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the goblin", + "with": "Yuk Yuk", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "skill": { + "acrobatics": "+6", + "athletics": "+3", + "stealth": "+6" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zhentarim Thug", + "source": "OotA", + "page": 131, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 11, + "skill": { + "intimidation": "+2" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thug makes two melee attacks" + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "mace|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Zilchyn Q'Leptin", + "isNpc": true, + "isNamedCreature": true, + "source": "OotA", + "page": 137, + "_copy": { + "name": "Drow Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Zilchyn", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Clockwork Behir", + "source": "OoW", + "page": 173, + "_copy": { + "name": "Behir", + "source": "MM" + }, + "type": "construct", + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Dagdra Deepforge", + "isNpc": true, + "isNamedCreature": true, + "source": "OoW", + "page": 145, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Dagdra", + "flags": "i" + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Scroll Service (1/Day)", + "entries": [ + "As an action, Dagdra draws a {@item spell scroll} from her {@item documancy satchel|AI}. The scroll contains a spell of up to 3rd level of Dagdra's choice. Only Dagdra can use the scroll, which vanishes after 1 minute." + ] + } + } + } + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "languageTags": [ + "D", + "X" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Devil Dog", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "OoW", + "page": 85, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Devil Dog", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "languageTags": [ + "C", + "I", + "X" + ], + "damageTagsSpell": [ + "F", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true + }, + { + "name": "Enormous Tentacle", + "source": "OoW", + "page": 94, + "_copy": { + "name": "Giant Constrictor Snake", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "snake", + "with": "tentacle" + } + } + }, + "trait": [ + { + "name": "Reach", + "entries": [ + "The tentacle can reach anywhere in the room." + ] + } + ], + "action": [ + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 35 ft., one creature. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the creature is {@condition restrained}, and the tentacle can't constrict another target." + ] + } + ], + "damageTags": [ + "B" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gildha Duhn", + "isNpc": true, + "isNamedCreature": true, + "source": "OoW", + "page": 110, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_templates": [ + { + "name": "Half-Orc", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Gildha", + "flags": "i" + } + } + }, + "languageTags": [ + "C", + "O", + "X" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Grunka", + "isNpc": true, + "isNamedCreature": true, + "source": "OoW", + "page": 115, + "_copy": { + "name": "Hobgoblin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the hobgoblin", + "with": "Grunka", + "flags": "i" + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Acid Spray Gun {@recharge 5}", + "entries": [ + "The hobgoblin sprays acid in a 10-foot cone. Each creature in the area must make a {@dc 10} Dexterity saving throw, taking 7 ({@damage 2d6}) acid damage on a failed save, or half as much damage on a successful one.", + "The spray gun has a tank that can be filled with ten standard vials of acid mixed with water, allowing it to be used five times." + ] + } + } + } + }, + "damageTags": [ + "A", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Jelayne", + "isNpc": true, + "isNamedCreature": true, + "source": "OoW", + "page": 84, + "_copy": { + "name": "Skeleton", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the skeleton", + "with": "Jelayne", + "flags": "i" + } + } + }, + "int": 14, + "cha": 14, + "languages": [ + "Common" + ], + "languageTags": [ + "C" + ], + "hasToken": true + }, + { + "name": "Mechachimera", + "source": "OoW", + "page": 134, + "_copy": { + "name": "Chimera", + "source": "MM" + }, + "type": "construct", + "immune": [ + "poison", + "psychic" + ], + "hasToken": true + }, + { + "name": "Onyx", + "isNpc": true, + "isNamedCreature": true, + "source": "OoW", + "page": 186, + "_copy": { + "name": "Cat", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Relative Size", + "entries": [ + "Any damage Onyx would take is reduced to 0. She has advantage on ability checks and saving throws." + ] + }, + { + "name": "Dealing with Onyx", + "entries": [ + "Onyx cannot be overcome or killed by combat. Any weapon attack against her that hits AC 12 makes contact but deals no lasting damage. However, if the attack would deal 10 or more damage, Onyx has disadvantage on attack rolls until the end of her next turn. If Onyx would take 10 or more damage from spells or other effects, it yields the same result. Spells that impose conditions function normally against Onyx, but those conditions end automatically at the end of the cat's next turn." + ] + } + ] + } + } + }, + "size": [ + "H" + ], + "speed": { + "walk": 400, + "climb": 200 + }, + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 20 ft., one target. {@h}11 ({@damage 2d10}) slashing damage." + ] + } + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Replica Duodrone", + "source": "OoW", + "page": 132, + "_copy": { + "name": "Duodrone", + "source": "MM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Disintegration", + "items": { + "name": "Dismantlable", + "entries": [ + "If the replica duodrone dies, its body falls into a pile of parts (gears, plates, screws, and wires), leaving behind its weapons and anything else it was carrying." + ] + } + } + } + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Modron", + "can understand Common but speaks only preprogrammed responses" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Replica Monodrone", + "source": "OoW", + "page": 132, + "_copy": { + "name": "Monodrone", + "source": "MM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Disintegration", + "items": { + "name": "Dismantlable", + "entries": [ + "If the replica monodrone dies, its body falls into a pile of parts (gears, plates, screws, and wires), leaving behind its weapons and anything else it was carrying." + ] + } + } + } + }, + "speed": { + "walk": 30 + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Modron", + "can understand Common but speaks only preprogrammed responses" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Replica Pentadrone", + "source": "OoW", + "page": 132, + "_copy": { + "name": "Pentadrone", + "source": "MM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Disintegration", + "items": { + "name": "Dismantlable", + "entries": [ + "If the replica pentadrone dies, its body falls into a pile of parts (gears, plates, screws, and wires), leaving behind its weapons and anything else it was carrying." + ] + } + } + } + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Modron", + "can understand Common but speaks only preprogrammed responses" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Replica Quadrone", + "source": "OoW", + "page": 132, + "_copy": { + "name": "Quadrone", + "source": "MM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Disintegration", + "items": { + "name": "Dismantlable", + "entries": [ + "If the replica quadrone dies, its body falls into a pile of parts (gears, plates, screws, and wires), leaving behind its weapons and anything else it was carrying." + ] + } + } + } + }, + "speed": { + "walk": 30 + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Modron", + "can understand Common but speaks only preprogrammed responses" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Replica Tridrone", + "source": "OoW", + "page": 132, + "_copy": { + "name": "Tridrone", + "source": "MM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Disintegration", + "items": { + "name": "Dismantlable", + "entries": [ + "If the replica tridrone dies, its body falls into a pile of parts (gears, plates, screws, and wires), leaving behind its weapons and anything else it was carrying." + ] + } + } + } + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Modron", + "can understand Common but speaks only preprogrammed responses" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Stomping Foot", + "source": "OoW", + "page": 92, + "_copy": { + "name": "Crawling Claw", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "claw", + "with": "foot", + "flags": "i" + } + } + }, + "speed": { + "walk": 30 + }, + "action": [ + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ] + } + ], + "damageTags": [ + "B" + ], + "hasToken": true + }, + { + "name": "Two Dry Cloaks", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "OoW", + "page": 162, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Tabaxi", + "source": "VGM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Two Dry Cloaks", + "flags": "i" + } + } + }, + "damageTags": [ + "P", + "S" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Undead Cockatrice", + "source": "OoW", + "page": 114, + "_copy": { + "name": "Cockatrice", + "source": "MM" + }, + "type": "undead", + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "hasToken": true + }, + { + "name": "Animated Object (Huge)", + "source": "PHB", + "page": 213, + "reprintedAs": [ + "Animated Object|XPHB" + ], + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 10, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "80" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 6, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "trait": [ + { + "name": "Animated", + "entries": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d12 + 4}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Animated Object (Large)", + "source": "PHB", + "page": 213, + "reprintedAs": [ + "Animated Object|XPHB" + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 10, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "50" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "trait": [ + { + "name": "Animated", + "entries": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d10 + 2}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Animated Object (Medium)", + "source": "PHB", + "page": 213, + "reprintedAs": [ + "Animated Object|XPHB" + ], + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "40" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "trait": [ + { + "name": "Animated", + "entries": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6 + 1}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Animated Object (Small)", + "source": "PHB", + "page": 213, + "reprintedAs": [ + "Animated Object|XPHB" + ], + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "25" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 14, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "trait": [ + { + "name": "Animated", + "entries": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Animated Object (Tiny)", + "source": "PHB", + "page": 213, + "reprintedAs": [ + "Animated Object|XPHB" + ], + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "20" + }, + "speed": { + "walk": 30 + }, + "str": 4, + "dex": 18, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "trait": [ + { + "name": "Animated", + "entries": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Aerisi Kalinoth", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 192, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 16, + "con": 12, + "int": 17, + "wis": 10, + "cha": 16, + "skill": { + "arcana": "+6", + "history": "+6", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "lightning" + ], + "languages": [ + "Auran", + "Common", + "Elvish" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Aerisi is a 12th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Aerisi has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell gust|xge}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell feather fall}", + "{@spell mage armor}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell dust devil|xge}", + "{@spell gust of wind}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fly}", + "{@spell gaseous form}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell ice storm}", + "{@spell storm sphere|xge}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell seeming} (cast each day)" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Aerisi has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + }, + { + "name": "Howling Defeat", + "entries": [ + "When Aerisi drops to 0 hit points, her body disappears in a howling whirlwind that disperses quickly and harmlessly. Anything she is wearing or carrying is left behind." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Aerisi fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Windvane", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage, or 10 ({@damage 1d8 + 6}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) lightning damage." + ] + } + ], + "legendaryGroup": { + "name": "Aerisi Kalinoth", + "source": "PotA" + }, + "attachedItems": [ + "windvane|pota" + ], + "traitTags": [ + "Fey Ancestry", + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AU", + "C", + "E" + ], + "damageTags": [ + "L", + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflictSpell": [ + "charmed", + "invisible" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aquatic Ghoul", + "source": "PotA", + "page": 87, + "_copy": { + "name": "Ghoul", + "source": "MM" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "hasToken": true + }, + { + "name": "Bastian Thermandar", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 201, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "genasi", + "prefix": "Fire" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 15, + "int": 11, + "wis": 9, + "cha": 18, + "skill": { + "arcana": "+3", + "deception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Ignan" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Bastian's innate spellcasting ability is Constitution (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He can innately cast the following spells:" + ], + "will": [ + "{@spell produce flame}" + ], + "daily": { + "1": [ + "{@spell burning hands}" + ] + }, + "ability": "con" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Bastian is a 9th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Bastian knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell hold monster}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "IG" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F", + "L", + "O" + ], + "spellcastingTags": [ + "CS", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Black Earth Guard", + "source": "PotA", + "page": 195, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 9, + "skill": { + "intimidation": "+1", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The guard makes two melee attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Unyielding", + "entries": [ + "When the guard is subjected to an effect that would move it, knock it {@condition prone}, or both, it can use its reaction to be neither moved nor knocked {@condition prone}." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Black Earth Priest", + "source": "PotA", + "page": 195, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 12, + "wis": 10, + "cha": 16, + "skill": { + "intimidation": "+5", + "religion": "+3", + "persuasion": "+5" + }, + "passive": 10, + "languages": [ + "Common", + "Terran" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell blade ward}", + "{@spell light}", + "{@spell mending}", + "{@spell mold earth|xge}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell earth tremor|xge}", + "{@spell expeditious retreat}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell shatter}", + "{@spell spider climb}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell slow}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The priest makes two melee attacks." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage." + ] + } + ], + "reaction": [ + { + "name": "Unyielding", + "entries": [ + "When the priest is subjected to an effect that would move it, knock it {@condition prone}, or both, it can use its reaction to be neither moved nor knocked {@condition prone}." + ] + } + ], + "attachedItems": [ + "glaive|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "A", + "B", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Braelen Hatherhand", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 156, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hp": { + "average": 2, + "formula": "1d8" + }, + "action": null, + "miscTags": [], + "hasToken": true + }, + { + "name": "Bronzefume", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 92, + "_copy": { + "name": "Dragon Turtle", + "source": "MM" + }, + "hp": { + "average": 220, + "formula": "22d20 + 110" + }, + "cr": "13", + "hasToken": true + }, + { + "name": "Burrowshark", + "source": "PotA", + "page": 196, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 16, + "int": 10, + "wis": 11, + "cha": 13, + "skill": { + "animal handling": "+2", + "athletics": "+6", + "intimidation": "+3", + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "4", + "trait": [ + { + "name": "Bond of the Black Earth", + "entries": [ + "The burrowshark is magically bound to a bulette trained to serve as its mount. While mounted on its bulette, the burrowshark shares the bulette's senses and can ride the bulette while it burrows. The bonded bulette obeys the burrowshark's commands. If its mount dies, the burrowshark can train a new bulette to serve as its bonded mount, a process requiring a month." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The burrowshark makes three melee attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "reaction": [ + { + "name": "Unyielding", + "entries": [ + "When the burrowshark is subjected to an effect that would move it, knock it {@condition prone}, or both, it can use its reaction to be neither moved nor knocked {@condition prone}." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cavil Zaltobar", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 182, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Cavil", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true + }, + { + "name": "Crushing Wave Priest", + "source": "PotA", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 11, + "cha": 16, + "skill": { + "deception": "+5", + "religion": "+2", + "stealth": "+2" + }, + "passive": 10, + "languages": [ + "Aquan", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell ice knife|xge}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell sleet storm}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "C", + "N", + "O", + "P" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Crushing Wave Reaver", + "source": "PotA", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 13, + "int": 10, + "wis": 11, + "cha": 8, + "skill": { + "athletics": "+4", + "stealth": "+4" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1/2", + "action": [ + { + "name": "Sharktoothed Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands. Against a target is wearing no armor, the reaver deals an extra die of damage with this sword." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Darathra Shendrel", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 37, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Darathra", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true + }, + { + "name": "Dark Tide Knight", + "source": "PotA", + "page": 205, + "otherSources": [ + { + "source": "SLW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 16, + "con": 14, + "int": 10, + "wis": 11, + "cha": 11, + "skill": { + "athletics": "+7", + "stealth": "+7" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Bonded Mount", + "entries": [ + "The knight is magically bound to a beast with an innate swimming speed trained to serve as its mount. While mounted on this beast, the knight gains the beast's senses and ability to breathe underwater. The bonded mount obeys the knight's commands. If its mount dies, the knight can train a new beast to serve as its bonded mount, a process requiring a month." + ] + }, + { + "name": "Sneak Attack", + "entries": [ + "The knight deals an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the knight that isn't {@condition incapacitated} and the knight doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The knight makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Lance", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "When an attacker the knight can see hits it with an attack, the knight can halve the damage against it." + ] + } + ], + "attachedItems": [ + "lance|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deseyna Majarra", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 126, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Deseyna", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "action": null, + "miscTags": [], + "hasToken": true + }, + { + "name": "Drannin Splithelm", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 210, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "dwarf", + "prefix": "Shield" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 25 + }, + "str": 19, + "dex": 10, + "con": 18, + "int": 11, + "wis": 8, + "cha": 12, + "skill": { + "athletics": "+7", + "intimidation": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "cold", + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "7", + "trait": [ + { + "name": "Action Surge (Recharges after a Short or Long Rest)", + "entries": [ + "Drannin takes an additional action on his turn." + ] + }, + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when Drannin hits with it (included in the attack)." + ] + }, + { + "name": "Dwarven Resilience", + "entries": [ + "Drannin has advantage on saving throws against poison." + ] + }, + { + "name": "Indomitable (Recharges after a Short or Long Rest)", + "entries": [ + "Drannin can reroll a saving throw that he fails. He must use the new roll." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "Drannin can use a bonus action to regain 16 ({@dice 1d10 + 11}) hit points." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Drannin wears a control amulet for his {@creature shield guardian} (see the Monster Manual) and a {@item ring of cold resistance}. He also carries a {@item potion of frost giant strength}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Drannin makes three attacks with his greataxe." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Brute" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Elizar Dryflagon", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 202, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 15, + "con": 14, + "int": 11, + "wis": 18, + "cha": 10, + "skill": { + "arcana": "+3", + "deception": "+3" + }, + "passive": 14, + "languages": [ + "Common", + "Druidic" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Elizar is a 7th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Elizar has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell poison spray}", + "{@spell produce flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell faerie fire}", + "{@spell healing word}", + "{@spell jump}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flame blade}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell stinking cloud}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell blight}", + "{@spell wall of fire}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Summon Mephits (Recharges after a Long Rest)", + "entries": [ + "By puffing on his pipe, Elizar can use an action to cast {@spell conjure minor elementals}. If he does so, he summons four smoke mephits." + ] + } + ], + "action": [ + { + "name": "Dagger +1", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "+1 dagger|dmg" + ], + "languageTags": [ + "C", + "DU" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F", + "I", + "N", + "P", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Emberhorn Minotaur", + "source": "PotA", + "page": 120, + "_copy": { + "name": "Minotaur", + "source": "MM", + "_mod": { + "action": { + "mode": "prependArr", + "items": { + "name": "Burning Breath {@recharge 5}", + "entries": [ + "The minotaur exhales a cloud of burning embers in a 15-foot cone. Each creature in that area must succeed on a {@dc 14} Dexterity saving throw, taking 21 ({@damage 6d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + } + } + }, + "immune": [ + "fire" + ], + "actionTags": [ + "Breath Weapon" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true + }, + { + "name": "Eternal Flame Guardian", + "source": "PotA", + "page": 200, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item breastplate|phb}", + "{@item shield|phb}" + ] + }, + { + "ac": 15, + "condition": "while using a crossbow" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 13, + "con": 14, + "int": 8, + "wis": 11, + "cha": 13, + "skill": { + "intimidation": "+3", + "perception": "+2" + }, + "passive": 12, + "resist": [ + "fire" + ], + "languages": [ + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "Flaming Weapon (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the guard can wreath one melee weapon it is wielding in flame. The guard is unharmed by this fire, which lasts until the end of the guard's next turn. While wreathed in flame, the weapon deals an extra 3 ({@damage 1d6}) fire damage on a hit." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The guard makes two melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eternal Flame Priest", + "source": "PotA", + "page": 200, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 14, + "int": 10, + "wis": 11, + "cha": 16, + "skill": { + "deception": "+5", + "intimidation": "+5", + "religion": "+2" + }, + "passive": 10, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Ignan" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell control flames|xge}", + "{@spell create bonfire|xge}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell minor illusion}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell expeditious retreat}", + "{@spell mage armor}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell fireball}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "IG" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fathomer", + "source": "PotA", + "page": 207, + "otherSources": [ + { + "source": "GoS" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 11, + "wis": 11, + "cha": 15, + "skill": { + "arcana": "+2", + "perception": "+4", + "stealth": "+4" + }, + "passive": 14, + "languages": [ + "Aquan", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Human Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The fathomer is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has two 3rd-level spell slots, which it regains after finishing a short or long rest, and knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell armor of Agathys}", + "{@spell expeditious retreat}", + "{@spell hex}", + "{@spell invisibility}", + "{@spell Vampiric touch}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger (2/Day)", + "entries": [ + "The fathomer can use its action to polymorph into a Medium serpent composed of water, or back into its true form. Anything the fathomer is wearing or carrying is subsumed into the serpent form during the change, inaccessible until the fathomer returns to its true form. The fathomer reverts to its true form after 4 hours, unless it can expend another use of this trait. If the fathomer is knocked {@condition unconscious} or dies, it also reverts to its true form.", + "While in serpent form, the fathomer gains a swimming speed of 40 feet, the ability to breathe underwater, immunity to poison damage, as well as resistance to fire damage and bludgeoning, piercing, and slashing damage from nonmagical attacks. It also has immunity to the following conditions: {@condition exhaustion}, {@condition grappled}, {@condition paralyzed}, {@condition poisoned}, {@condition restrained}, {@condition prone}, {@condition unconscious}. The serpent form can enter a hostile creature's space and stop there. In addition, if water can pass through a space, the serpent can do so without squeezing." + ] + }, + { + "name": "Olhydra's Armor (Human Form Only)", + "entries": [ + "The fathomer can cast {@spell mage armor} at will, without expending material components." + ] + } + ], + "action": [ + { + "name": "Constrict (Serpent Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 12}). Until the grapple ends, the target is {@condition restrained}, and the fathomer can't constrict another target." + ] + }, + { + "name": "Dagger (Human Form Only)", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Shapechanger" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "C", + "N", + "O" + ], + "spellcastingTags": [ + "CL", + "F" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Feathergale Knight", + "source": "PotA", + "page": 189, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 12, + "int": 11, + "wis": 10, + "cha": 14, + "skill": { + "animal handling": "+2", + "history": "+2" + }, + "passive": 10, + "languages": [ + "Auran", + "Common" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The knight is a 1st-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It knows the following sorcerer spell:" + ], + "spells": { + "0": { + "spells": [ + "{@spell gust|xge}", + "{@spell light}", + "{@spell message}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell expeditious retreat}", + "{@spell feather fall}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The knight makes two melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "longsword|phb", + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "C" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fennor", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 170, + "_copy": { + "name": "Berserker", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the berserker", + "with": "Fennor", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "ac": [ + { + "ac": 14, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Fennor makes two attacks with her greatsword" + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + } + ], + "attachedItems": [ + "greatsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Flamewrath", + "source": "PotA", + "page": 201, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 16, + "int": 11, + "wis": 10, + "cha": 16, + "skill": { + "arcana": "+3", + "religion": "+3" + }, + "passive": 10, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Ignan" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The flamewrath is a 7th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell control flames|xge}", + "{@spell fire bolt}", + "{@spell friends}", + "{@spell light}", + "{@spell minor illusion}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell color spray}", + "{@spell mage armor}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell scorching ray}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell hypnotic pattern}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell fire shield} (see Wreathed in Flame)" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Wreathed in Flame", + "entries": [ + "For the flamewrath, the warm version of the {@spell fire shield} spell has a duration of \"until dispelled.\" The fire shield burns for 10 minutes after the flamewrath dies, consuming its body." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "IG" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "F" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gar Shatterkeel", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 208, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 15, + "con": 16, + "int": 12, + "wis": 18, + "cha": 13, + "skill": { + "nature": "+9", + "survival": "+8" + }, + "passive": 14, + "resist": [ + "cold" + ], + "languages": [ + "Aquan", + "Common" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Gar is a 9th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mending}", + "{@spell resistance}", + "{@spell shape water|xge}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell create or destroy water}", + "{@spell cure wounds}", + "{@spell fog cloud}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell hold person}", + "{@spell protection from poison}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell sleet storm}", + "{@spell tidal wave|xge}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell control water}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell scrying}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Gar can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Gar fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Water Walk", + "entries": [ + "Gar can stand and move on liquid surfaces as if they were solid ground." + ] + }, + { + "name": "Watery Fall", + "entries": [ + "When Gar drops to 0 hit points, his body collapses into a pool of inky water that rapidly disperses. Anything he was wearing or carrying is left behind." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Gar makes two melee attacks, one with his claw and one with {@item Drown|PotA}." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13}). Until the grapple ends, Gar can't attack other creatures with his claw." + ] + }, + { + "name": "Drown", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 4 ({@damage 1d8}) cold damage." + ] + } + ], + "legendaryGroup": { + "name": "Gar Shatterkeel", + "source": "PotA" + }, + "attachedItems": [ + "drown|pota" + ], + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "B", + "C", + "P" + ], + "damageTagsLegendary": [ + "L", + "N" + ], + "damageTagsSpell": [ + "B", + "C", + "L", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "grappled" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ghald", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 210, + "size": [ + "L" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36" + }, + "speed": { + "walk": 30, + "swim": 50 + }, + "str": 19, + "dex": 17, + "con": 16, + "int": 14, + "wis": 13, + "cha": 17, + "save": { + "dex": "+6", + "con": "+6", + "int": "+5", + "wis": "+4" + }, + "skill": { + "insight": "+4", + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "languages": [ + "Common", + "Sahuagin" + ], + "cr": "7", + "trait": [ + { + "name": "Assassinate", + "entries": [ + "During its first turn, Ghald has advantage on attack rolls against any creature that hasn't taken a turn. Any hit Ghald scores against a {@status surprised} creature is a critical hit." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "Ghald can breathe air and water, but he needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "Ghald can magically command any shark within 120 feet of him, using a limited telepathy." + ] + }, + { + "name": "Sneak Attack", + "entries": [ + "Ghald deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Ghald's that isn't {@condition incapacitated} and Ghald doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ghald makes three attacks, one with his bite and two with his shortswords." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d4 + 4}) piercing damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Garrote", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Medium or Small creature against which Ghald has advantage on the attack roll. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target can't breathe, and Ghald has advantage on attack rolls against it." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grumink the Renegade", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 210, + "_copy": { + "name": "Assassin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Grumink", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "C", + "E" + ], + "senses": [ + "darkvision 60 ft." + ], + "senseTags": [ + "D" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Hellenrae", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 198, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 16 + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 50 + }, + "str": 13, + "dex": 18, + "con": 14, + "int": 10, + "wis": 15, + "cha": 13, + "skill": { + "acrobatics": "+7", + "athletics": "+4", + "insight": "+5", + "perception": "+5" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 15, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "poisoned" + ], + "languages": [ + "Common", + "Terran" + ], + "cr": "5", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If Hellenrae is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails." + ] + }, + { + "name": "Stunning Strike {@recharge 5}", + "entries": [ + "When Hellenrae hits a target with a melee weapon attack, the target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of Hellenrae's next turn." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "While Hellenrae is wearing no armor and wielding no shield, her AC includes her Wisdom modifier." + ] + }, + { + "name": "Unarmored Movement", + "entries": [ + "While Hellenrae is wearing no armor and wielding no shield, her speed increases by 20 feet (included in her speed)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hellenrae makes three melee attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Parry and Counter", + "entries": [ + "Hellenrae adds 3 to her AC against one melee or ranged weapon attack that would hit her. To do so, she must be able to sense the attacker with her blindsight. If the attack misses, Hellenrae can make one melee attack against the attacker if it is within her reach." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Howling Hatred Initiate", + "source": "PotA", + "page": 190, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 10, + "int": 10, + "wis": 9, + "cha": 11, + "skill": { + "deception": "+2", + "religion": "+2", + "stealth": "+4" + }, + "passive": 9, + "languages": [ + "Common" + ], + "cr": "1/8", + "trait": [ + { + "name": "Guiding Wind (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the initiate gains advantage on the next ranged attack roll it makes before the end of its next turn." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The initiate can hold its breath for 30 minutes." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Howling Hatred Priest", + "source": "PotA", + "page": 190, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 10, + "int": 14, + "wis": 10, + "cha": 14, + "skill": { + "acrobatics": "+5", + "intimidation": "+4", + "religion": "+4" + }, + "passive": 10, + "languages": [ + "Auran", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell gust|xge}", + "{@spell light}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell feather fall}", + "{@spell shield}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell dust devil|xge}", + "{@spell gust of wind}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell gaseous form}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Hold Breath", + "entries": [ + "The priest can hold its breath for 30 minutes." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The priest makes two melee attacks or two ranged attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "scimitar|phb" + ], + "traitTags": [ + "Hold Breath" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "L" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hurricane", + "source": "PotA", + "page": 191, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 45 + }, + "str": 12, + "dex": 16, + "con": 13, + "int": 10, + "wis": 12, + "cha": 10, + "skill": { + "acrobatics": "+5" + }, + "passive": 11, + "languages": [ + "Auran", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hurricane is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell gust|xge}", + "{@spell light}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell gust of wind}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the hurricane is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + }, + { + "name": "Unarmored Movement", + "entries": [ + "While the hurricane is wearing no armor and wielding no shield, its walking speed increases by 15 feet (included in its speed)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hurricane makes two melee attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missiles", + "entries": [ + "When the hurricane is hit by a ranged weapon attack, it reduces the damage from the attack by {@dice 1d10 + 9}. If the damage is reduced to 0, the hurricane can catch the missile if it is small enough to hold in one hand and the hurricane has at least one hand free." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Imix", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 214, + "size": [ + "H" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + 17 + ], + "hp": { + "average": 325, + "formula": "26d12 + 156" + }, + "speed": { + "walk": 50, + "fly": 50 + }, + "str": 19, + "dex": 24, + "con": 22, + "int": 15, + "wis": 16, + "cha": 23, + "save": { + "dex": "+13", + "con": "+12", + "cha": "+12" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 13, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Ignan" + ], + "cr": "19", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Imix's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell fireball}", + "{@spell wall of fire}" + ], + "daily": { + "3e": [ + "{@spell fire storm}", + "{@spell haste}", + "{@spell teleport}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Empowered Attacks", + "entries": [ + "Imix's slam attacks are treated as magical for the purpose of bypassing resistance and immunity to nonmagical attacks." + ] + }, + { + "name": "Fire Aura", + "entries": [ + "At the start of each of Imix's turns, each creature within 10 feet of him takes 17 ({@damage 5d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature also takes 17 ({@damage 5d6}) fire damage if it touches Imix or hits him with a melee attack while within 10 feet of him, and a creature takes that damage the first time on a turn that Imix moves into its space. Nonmagical weapons that hit Imix are destroyed by fire immediately after dealing damage to him" + ] + }, + { + "name": "Fire Form", + "entries": [ + "Imix can enter a hostile creature's space and stop there. He can move through a space as narrow as 1 inch without squeezing if fire could pass through that space." + ] + }, + { + "name": "Illumination", + "entries": [ + "Imix sheds bright light in a 60-foot radius and dim light for an additional 60 feet." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Imix fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Imix has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Imix makes two slam attacks or two flame blast attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage plus 18 ({@damage 5d6}) fire damage." + ] + }, + { + "name": "Flame Blast", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 250 ft., one target. {@h}35 ({@damage 10d6}) fire damage." + ] + }, + { + "name": "Summon Elementals (1/Day)", + "entries": [ + "Imix summons up to three {@creature fire elemental||fire elementals} and loses 30 hit points for each elemental he summons. Summoned elementals have maximum hit points, appear within 100 feet of Imix, and disappear if Imix is reduced to 0 hit points." + ] + } + ], + "legendary": [ + { + "name": "Heat Wave", + "entries": [ + "Imix creates a blast of heat within 300 feet of himself. Each creature in the area in physical contact with metal objects (for example, carrying metal weapons or wearing metal armor) takes 9 ({@damage 2d8}) fire damage. Each creature in the area that isn't resistant or immune to fire damage must make a {@dc 21} Constitution saving throw or gain one level of {@condition exhaustion}." + ] + }, + { + "name": "Teleport (Costs 2 Actions)", + "entries": [ + "Imix magically teleports up to 120 feet to an unoccupied space he can see. Anything Imix is wearing or carrying isn't teleported with him." + ] + }, + { + "name": "Combustion (Costs 3 Actions)", + "entries": [ + "Imix causes one creature he can see within 30 feet of him to burst into flames. The target must make a {@dc 21} Constitution saving throw. On a failed save, the target takes 70 ({@damage 20d6}) fire damage and catches fire. A target on fire takes 10 ({@damage 3d6}) fire damage when it starts its turn, and remains on fire until it or another creature takes an action to douse the flames. On a successful save, the target takes half as much damage and doesn't catch fire." + ] + } + ], + "legendaryGroup": { + "name": "Imix", + "source": "PotA" + }, + "traitTags": [ + "Illumination", + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "IG" + ], + "damageTags": [ + "B", + "F" + ], + "damageTagsLegendary": [ + "B", + "F" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "exhaustion" + ], + "conditionInflictLegendary": [ + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lyzandra \"Lyzzie\" Calderos", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 110, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Lyzandra", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Lyzandra is a 9th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Lyzandra has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell immolation|xge}" + ] + } + }, + "ability": "int" + } + ], + "damageTagsSpell": [ + "F", + "O" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Maegla Tarnlar", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 25, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Marlos Urnrayle", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 199, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 11, + "con": 18, + "int": 12, + "wis": 13, + "cha": 17, + "skill": { + "arcana": "+4", + "deception": "+6", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 14, + "resist": [ + "acid" + ], + "languages": [ + "Common", + "Terran" + ], + "cr": "8", + "trait": [ + { + "name": "Earthen Defeat", + "entries": [ + "When Marlos drops to 0 hit points, his body transforms into mud and collapses into a pool. Anything he is wearing or carrying is left behind." + ] + }, + { + "name": "Earth Passage", + "entries": [ + "Marlos can move in {@quickref difficult terrain||3} composed of anything made from earth or stone as if it were normal terrain. He can move through solid earth and rock as if it were {@quickref difficult terrain||3}. If he ends his turn there, he is shunted into the nearest space he last occupied." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Marlos fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Petrifying Gaze", + "entries": [ + "When a creature that can see Marlos's eyes starts its turn within 30 feet of him, Marlos can force it to make a {@dc 14} Constitution saving throw if Marlos isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, a creature that fails the save begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the {@spell greater restoration} spell or other magic.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see Marlos until the start of its next turn, when it can decide to avert its eyes again. If the creature looks at Marlos in the meantime, it must immediately make the save.", + "If Marlos sees himself reflected on a polished surface within 30 feet of him and in an area of bright light, Marlos is, due to his curse, affected by his own gaze." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Marlos makes three melee attacks, one with his snake hair and two with {@item Ironfang|PotA}." + ] + }, + { + "name": "Snake Hair", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Ironfang", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) thunder damage." + ] + } + ], + "legendaryGroup": { + "name": "Marlos Urnrayle", + "source": "PotA" + }, + "attachedItems": [ + "ironfang|pota" + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "I", + "P", + "T" + ], + "damageTagsLegendary": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Miraj Vizann", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 198, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "genasi", + "prefix": "Earth" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 10, + "con": 17, + "int": 13, + "wis": 11, + "cha": 18, + "skill": { + "arcana": "+4", + "deception": "+7" + }, + "passive": 10, + "languages": [ + "Common", + "Primordial" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Miraj's innate spellcasting ability is Constitution (spell save {@dc 14}). He can innately cast the following spell, requiring no material components:" + ], + "daily": { + "1": [ + "{@spell pass without trace}" + ] + }, + "ability": "con" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Miraj is an 11th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell blade ward}", + "{@spell friends}", + "{@spell light}", + "{@spell message}", + "{@spell mold earth|xge}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell mage armor}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell Maximilian's earthen grasp|xge}", + "{@spell shatter}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell erupting earth|xge}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell polymorph}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell wall of stone}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell move earth}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Earth Walk", + "entries": [ + "Moving through {@quickref difficult terrain||3} made of earth or stone costs Miraj no extra movement." + ] + } + ], + "action": [ + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage when used with two hands." + ] + } + ], + "languageTags": [ + "C", + "P" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CS", + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Molten Magma Roper", + "source": "PotA", + "page": 143, + "_copy": { + "name": "Roper", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Tendril", + "items": { + "name": "Tendril", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 50 ft., one creature. {@h}4 ({@damage 1d8}) fire damage and the target is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target is {@condition restrained} and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target. A creature takes 4 ({@damage 1d8}) fire damage each time it ends its turn grappled by the roper." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Bite", + "items": { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d8 + 4}) fire damage." + ] + } + } + ] + } + }, + "immune": [ + "fire" + ], + "vulnerable": [ + "cold" + ], + "damageTags": [ + "F" + ], + "hasToken": true + }, + { + "name": "Nurvureem, The Dark Lady", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 180, + "_copy": { + "name": "Adult Black Dragon", + "source": "MM", + "_templates": [ + { + "name": "Legendary Shadow Dragon", + "source": "MM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Nurvureem", + "flags": "i" + } + } + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Sunlight Sensitivity" + ], + "damageTags": [ + "B", + "N", + "P", + "S" + ], + "damageTagsLegendary": [], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ogr\u00e9moch", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 216, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 526, + "formula": "27d20 + 243" + }, + "speed": { + "walk": 50, + "burrow": 50 + }, + "str": 26, + "dex": 11, + "con": 28, + "int": 11, + "wis": 15, + "cha": 22, + "save": { + "str": "+14", + "con": "+15", + "wis": "+8" + }, + "senses": [ + "blindsight 120 ft.", + "tremorsense 120 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Terran" + ], + "cr": "20", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ogr\u00e9moch's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell meld into stone}", + "{@spell move earth}", + "{@spell wall of stone}" + ], + "ability": "cha" + } + ], + "trait": [ + { + "name": "Empowered Attacks", + "entries": [ + "Ogr\u00e9moch's slam attacks are treated as magical and adamantine for the purpose of bypassing resistance and immunity to nonmagical attacks." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Ogr\u00e9moch fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Ogr\u00e9moch has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "Ogr\u00e9moch deals double damage to objects and structures with his melee and ranged weapon attacks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ogr\u00e9moch makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + }, + { + "name": "Boulder", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 500 ft., one target. {@h}46 ({@damage 7d10 + 8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Summon Elementals (1/Day)", + "entries": [ + "Ogr\u00e9moch summons up to three {@creature earth elemental||earth elementals} and loses 30 hit points for each elemental he summons. Summoned elementals have maximum hit points, appear within 100 feet of Ogr\u00e9moch, and disappear if Ogr\u00e9moch is reduced to 0 hit points." + ] + } + ], + "legendary": [ + { + "name": "Illuminating Crystals", + "entries": [ + "Ogr\u00e9moch's crystalline protrusions flare. Each creature within 30 feet of Ogr\u00e9moch becomes outlined in orange light, shedding dim light in a 10-foot radius. Any attack roll against an affected creature has advantage if the attacker can see it, and the affected creature can't benefit from being {@condition invisible}." + ] + }, + { + "name": "Stomp (Costs 2 Actions)", + "entries": [ + "Ogr\u00e9moch stomps the ground, creating an earth tremor that extends in a 30-foot radius. Other creatures standing on the ground in that radius must succeed on a {@dc 23} Dexterity saving throw or fall {@condition prone}." + ] + }, + { + "name": "Create Gargoyle (Costs 3 Actions)", + "entries": [ + "Ogr\u00e9moch's hit points are reduced by 50 as he breaks off a chunk of his body and places it on the ground in an unoccupied space within 15 feet of him. The chunk of rock instantly transforms into a {@creature gargoyle} and acts on the same initiative count as Ogr\u00e9moch. Ogr\u00e9moch can't use this action if he has 50 hit points or fewer. The gargoyle obeys Ogr\u00e9moch's commands and fights until destroyed." + ] + } + ], + "legendaryGroup": { + "name": "Ogr\u00e9moch", + "source": "PotA" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictLegendary": [ + "prone" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Olhydra", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 218, + "size": [ + "H" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 324, + "formula": "24d12 + 168" + }, + "speed": { + "walk": 50, + "swim": 100 + }, + "str": 21, + "dex": 22, + "con": 24, + "int": 17, + "wis": 18, + "cha": 23, + "save": { + "str": "+11", + "con": "+13", + "wis": "+10" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 14, + "resist": [ + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "cold", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Aquan" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Olhydra's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell wall of ice}" + ], + "daily": { + "1": [ + "{@spell storm of vengeance}" + ], + "3": [ + "{@spell ice storm}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Empowered Attacks", + "entries": [ + "Olhydra's slam attacks are treated as magical for the purpose of bypassing resistance and immunity to nonmagical attacks." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Olhydra fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Olhydra has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Water Form", + "entries": [ + "Olhydra can enter a hostile creature's space and stop there. She can move through a space as narrow as 1 inch wide without squeezing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Olhydra makes two slam attacks or two water jet attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Olhydra can grapple up to four targets. When Olhydra moves, all creatures she is grappling move with her." + ] + }, + { + "name": "Water Jet", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 120 ft., one target. {@h}21 ({@damage 6d6}) bludgeoning damage, and the target is knocked {@condition prone} if it fails a {@dc 19} Strength saving throw." + ] + }, + { + "name": "Summon Elementals (1/Day)", + "entries": [ + "Olhydra summons up to three {@creature water elemental||water elementals} and loses 30 hit points for each elemental she summons. Summoned elementals have maximum hit points, appear within 100 feet of Olhydra, and disappear if Olhydra is reduced to 0 hit points." + ] + } + ], + "legendary": [ + { + "name": "Crush", + "entries": [ + "One creature that Olhydra is grappling is crushed for 21 ({@damage 3d10 + 5}) bludgeoning damage." + ] + }, + { + "name": "Fling (Costs 2 Actions)", + "entries": [ + "Olhydra releases one creature she is grappling by flinging the creature up to 60 feet away from her, in a direction of her choice. If the flung creature comes into contact with a solid surface, such as a wall or floor, the creature takes {@damage 1d6} bludgeoning damage for every 10 feet it was flung." + ] + }, + { + "name": "Water to Acid (Costs 3 Actions)", + "entries": [ + "Olhydra transforms her watery body into acid. This effect lasts until Olhydra's next turn. Any creature that comes into contact with Olhydra or hits her with a melee attack while standing within 5 feet of her takes 11 ({@damage 2d10}) acid damage. Any creature {@condition grappled} by Olhydra takes 22 ({@damage 4d10}) acid damage at the start of its turn." + ] + } + ], + "legendaryGroup": { + "name": "Olhydra", + "source": "PotA" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ" + ], + "damageTags": [ + "A", + "B" + ], + "damageTagsLegendary": [ + "C" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "L", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "grappled", + "prone" + ], + "conditionInflictLegendary": [ + "frightened", + "prone" + ], + "conditionInflictSpell": [ + "deafened" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedLegendary": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "One-Eyed Shiver", + "source": "PotA", + "page": 207, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 13, + "wis": 13, + "cha": 17, + "skill": { + "arcana": "+3", + "perception": "+3", + "intimidation": "+5" + }, + "passive": 13, + "immune": [ + "cold" + ], + "languages": [ + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The one-eyed shiver is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell fog cloud}", + "{@spell mage armor}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell fear}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Chilling Mist", + "entries": [ + "While it is alive, the one-eyed shiver projects an aura of cold mist within 10 feet of itself. If the one-eyed shiver deals damage to a creature in this area, the creature also takes 5 ({@damage 1d10}) cold damage." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Eye of Frost", + "entries": [ + "The one-eyed shiver casts {@spell ray of frost} from its missing eye. If it hits, the target is also {@condition restrained}. A target {@condition restrained} in this way can end the condition by using an action, succeeding on a {@dc 13} Strength check." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "C", + "P" + ], + "damageTagsSpell": [ + "N", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oreioth", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 212, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 13, + "con": 14, + "int": 16, + "wis": 9, + "cha": 11, + "save": { + "wis": "+1" + }, + "skill": { + "arcana": "+5", + "investigation": "+5", + "medicine": "+1" + }, + "passive": 9, + "languages": [ + "Abyssal", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Oreioth is a 6th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell vampiric touch}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Grim Harvest", + "entries": [ + "Once per turn when Oreioth kills one or more creatures with a spell of 1st level or higher, he regains hit points equal to twice the spell's level." + ] + }, + { + "name": "Swift Animation (Recharges after a Long Rest)", + "entries": [ + "When a living Medium or Small humanoid within 30 feet of Oreioth dies, he can use an action on his next turn to cast {@spell animate dead} on that humanoid's corpse, instead of using the spell's normal casting time." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "I", + "L", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Padraich", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 170, + "_copy": { + "name": "Berserker", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the berserker", + "with": "Padraich", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "action": [ + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Razerblast", + "source": "PotA", + "page": 201, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 75" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 9, + "wis": 10, + "cha": 13, + "skill": { + "intimidation": "+4", + "perception": "+3" + }, + "passive": 13, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Ignan" + ], + "cr": "5", + "trait": [ + { + "name": "Searing Armor", + "entries": [ + "The razerblast's armor is hot. Any creature grappling the razerblast or {@condition grappled} by it takes 5 ({@damage 1d10}) fire damage at the end of that creature's turn." + ] + }, + { + "name": "Shrapnel Explosion", + "entries": [ + "When the razerblast drops to 0 hit points, a flaming orb in its chest explodes, destroying the razerblast's body and scattering its armor as shrapnel. Creatures within 10 feet of the razerblast when it explodes must succeed on a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) piercing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The razerblast makes three melee attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "IG" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Renwick", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 66, + "_copy": { + "name": "Lich", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the lich", + "with": "Renwick", + "flags": "i" + } + } + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Renwick is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). Renwick has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell time stop}" + ] + } + }, + "ability": "int" + } + ], + "damageTagsLegendary": [], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Rhundorth", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 140, + "_copy": { + "name": "Guard", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the guard", + "with": "Rhundorth", + "flags": "i" + } + } + }, + "ac": [ + 11 + ], + "str": 18, + "action": [ + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 4}) bludgeoning damage, or 10 ({@damage 1d10 + 4}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "warhammer|phb" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Sacred Stone Monk", + "source": "PotA", + "page": 196, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 15, + "con": 12, + "int": 10, + "wis": 14, + "cha": 9, + "skill": { + "acrobatics": "+4", + "athletics": "+3", + "perception": "+4" + }, + "senses": [ + "tremorsense 10 ft." + ], + "passive": 14, + "languages": [ + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the monk is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + }, + { + "name": "Unarmored Movement", + "entries": [ + "While the monk is wearing no armor and wielding no shield, its walking speed increases by 10 feet (included in its speed)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The monk makes two melee attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The monk adds 2 to its AC against one melee or ranged weapon attack that would hit it. To do so, the monk must see the attacker." + ] + } + ], + "senseTags": [ + "T" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shoalar Quanderil", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 208, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "genasi", + "prefix": "Water" + } + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 11, + "dex": 12, + "con": 16, + "int": 14, + "wis": 10, + "cha": 17, + "skill": { + "arcana": "+4", + "deception": "+5", + "insight": "+2", + "persuasion": "+5" + }, + "passive": 10, + "resist": [ + "acid" + ], + "languages": [ + "Aquan", + "Common" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Shoalar's innate spellcasting ability is Constitution (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He can innately cast the following spells:" + ], + "will": [ + "{@spell shape water|xge}" + ], + "daily": { + "1": [ + "{@spell create or destroy water}" + ] + }, + "ability": "con" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Shoalar is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell chill touch}", + "{@spell friends}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell mage armor}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell tidal wave|xge}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Shoalar can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "AQ", + "C" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "N", + "O" + ], + "spellcastingTags": [ + "CS", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Skyweaver", + "source": "PotA", + "page": 191, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 12, + "int": 11, + "wis": 10, + "cha": 16, + "skill": { + "deception": "+5", + "persuasion": "+5" + }, + "passive": 10, + "languages": [ + "Auran", + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Skyweaver is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell message}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell feather fall}", + "{@spell mage armor}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fly}", + "{@spell lightning bolt}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "L" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Stone Warrior", + "source": "PotA", + "page": 97, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "action": { + "mode": "removeArr", + "names": "Multiattack" + } + } + }, + "hp": { + "average": 102, + "formula": "17d10 + 85" + }, + "cr": "4", + "actionTags": [], + "hasToken": true + }, + { + "name": "Stonemelder", + "source": "PotA", + "page": 197, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 16, + "int": 12, + "wis": 11, + "cha": 17, + "skill": { + "intimidation": "+5", + "perception": "+2" + }, + "senses": [ + "tremorsense 30 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Terran" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Stonemelder is a 7th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell blade ward}", + "{@spell light}", + "{@spell mending}", + "{@spell mold earth|xge}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell false life}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell Maximilian's earthen grasp|xge}", + "{@spell shatter}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell erupting earth|xge}", + "{@spell meld into stone}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell stoneskin}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the Stonemelder dies, it turns to stone and explodes in a burst of rock shards, becoming a smoking pile of rubble. Each creature within 10 feet of the exploding Stonemelder must make a {@dc 14} Dexterity saving throw, taking 11 ({@damage 2d10}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Black Earth Rod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage. The Stonemelder can also expend a spell slot to deal extra damage, dealing {@damage 2d8} bludgeoning damage for a 1st level slot, plus an additional {@dice 1d8} for each level of the slot above 1st." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "T" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "B", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Thurl Merosska", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 192, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 21" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 11, + "wis": 10, + "cha": 15, + "skill": { + "animal handling": "+2", + "athletics": "+5", + "deception": "+4", + "persuasion": "+4" + }, + "passive": 10, + "languages": [ + "Auran", + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Thurl is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). Thurl knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell gust|xge}", + "{@spell light}", + "{@spell message}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell feather fall}", + "{@spell jump}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell levitate}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell haste}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Thurl makes two melee attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Lance", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Thurl adds 2 to his AC against one melee attack that would hit him. To do so, Thurl must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "lance|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "C" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Tornscale", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 90, + "_copy": { + "name": "Lizardfolk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the lizardfolk", + "with": "Tornscale", + "flags": "i" + } + } + }, + "hp": { + "average": 36, + "formula": "4d8 + 4" + }, + "hasToken": true + }, + { + "name": "Vanifer", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 203, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tiefling" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 17, + "int": 12, + "wis": 13, + "cha": 19, + "skill": { + "arcana": "+5", + "deception": "+8", + "performance": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Ignan", + "Infernal" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Vanifer is a 10th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). Vanifer knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell message}", + "{@spell produce flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell chromatic orb}", + "{@spell hellish rebuke}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell misty step}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell hypnotic pattern}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dominate person}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Funeral Pyre", + "entries": [ + "When Vanifer drops to 0 hit points, her body is consumed in a flash of fire and smoke. Anything she was wearing or carrying is left behind among ashes." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Vanifer fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Vanifer makes two attacks." + ] + }, + { + "name": "Tinderstrike", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ] + } + ], + "legendaryGroup": { + "name": "Vanifer", + "source": "PotA" + }, + "attachedItems": [ + "tinderstrike|pota" + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I", + "IG" + ], + "damageTags": [ + "F", + "P" + ], + "damageTagsLegendary": [ + "F" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "N", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MW", + "RW" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wiggan Nettlebee", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 212, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "halfling" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 12, + "con": 12, + "int": 14, + "wis": 15, + "cha": 13, + "skill": { + "deception": "+3", + "insight": "+4" + }, + "passive": 12, + "languages": [ + "Common", + "Halfling" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Wiggan is a 4th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell shillelagh}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell cure wounds}", + "{@spell healing word}", + "{@spell inflict wounds}", + "{@spell speak with animals}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell spike growth}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Brave Devotion", + "entries": [ + "Wiggan has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Wiggan makes two attacks with his wooden cane." + ] + }, + { + "name": "Wooden Cane", + "entries": [ + "{@atk mw} {@hit 0} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "H" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "N", + "O", + "P" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Windharrow", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 192, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 12, + "int": 14, + "wis": 10, + "cha": 17, + "skill": { + "acrobatics": "+5", + "deception": "+7", + "persuasion": "+5", + "performance": "+7", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Auran", + "Common", + "Elvish" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Windharrow is an 8th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Windharrow knows the following bard spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell dissonant whispers}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell shatter}", + "{@spell silence}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell nondetection}", + "{@spell sending}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell confusion}", + "{@spell dimension door}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Windharrow has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Windharrow makes two melee attacks." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C", + "E" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "O", + "T", + "Y" + ], + "spellcastingTags": [ + "CB" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "deafened", + "invisible" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Yan-C-Bin", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 221, + "size": [ + "H" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 283, + "formula": "21d12 + 147" + }, + "speed": { + "walk": 50, + "fly": 150 + }, + "str": 18, + "dex": 24, + "con": 24, + "int": 16, + "wis": 21, + "cha": 23, + "save": { + "dex": "+13", + "wis": "+11", + "cha": "+12" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison", + "thunder" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Auran" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Yan-C-Bin's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell gust of wind}", + "{@spell invisibility}", + "{@spell lightning bolt}" + ], + "daily": { + "2e": [ + "{@spell chain lightning}", + "{@spell cloudkill}", + "{@spell haste}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Air Form", + "entries": [ + "Yan-C-Bin can enter a hostile creature's space and stop there. He can move through a space as narrow as 1 inch wide without squeezing if air could pass through that space." + ] + }, + { + "name": "Empowered Attacks", + "entries": [ + "Yan-C-Bin's slam attacks are treated as magical for the purpose of bypassing resistance and immunity to nonmagical attacks." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Yan-C-Bin fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Yan-C-Bin has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Yan-C-Bin makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) force damage plus 10 ({@damage 3d6}) lightning damage." + ] + }, + { + "name": "Thundercrack (Recharges after a Short or Long Rest)", + "entries": [ + "Yan-C-Bin unleashes a terrible thundercrack in a 100-foot-radius sphere centered on himself. All other creatures in the area must succeed on a {@dc 24} Constitution saving throw or take 31 ({@damage 9d6}) thunder damage and be {@condition deafened} for 1 minute. On a successful save, a creature takes half as much damage and is {@condition deafened} until the start of Yan-C-Bin's next turn." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Yan-C-Bin polymorphs into a Medium humanoid. While in polymorphed form, a swirling breeze surrounds him, his eyes are pale and cloudy, and he loses the Air Form trait. He can remain in polymorphed form for up to 1 hour. Reverting to his true form requires an action." + ] + }, + { + "name": "Summon Elementals (1/Day)", + "entries": [ + "Yan-C-Bin summons up to three {@creature air elemental||air elementals} and loses 30 hit points for each elemental he summons. Summoned elementals have maximum hit points, appear within 100 feet of Yan-C-Bin, and disappear if Yan-C-Bin is reduced to 0 hit points." + ] + } + ], + "legendary": [ + { + "name": "Peal of Thunder", + "entries": [ + "Yan-C-Bin unleashes a peal of thunder that can be heard out to a range of 300 feet. Each creature within 30 feet of Yan-C-Bin takes 5 ({@damage 1d10}) thunder damage." + ] + }, + { + "name": "Teleport (Costs 2 Actions)", + "entries": [ + "Yan-C-Bin magically teleports up to 120 feet to an unoccupied space he can see. Anything Yan-C-Bin is wearing or carrying is teleported with him." + ] + }, + { + "name": "Suffocate (Costs 3 Actions)", + "entries": [ + "Yan-C-Bin steals the air of one breathing creature he can see within 60 feet of him. The target must make a {@dc 21} Constitution saving throw. On a failed save, the target drops to 0 hit points and is dying. On a successful save, the target can't breathe or speak until the start of its next turn." + ] + } + ], + "legendaryGroup": { + "name": "Yan-C-Bin", + "source": "PotA" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AU" + ], + "damageTags": [ + "L", + "O", + "T" + ], + "damageTagsLegendary": [ + "B", + "L" + ], + "damageTagsSpell": [ + "I", + "L" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "deafened" + ], + "conditionInflictLegendary": [ + "blinded" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Bulette", + "source": "PotA", + "page": 139, + "_copy": { + "name": "Rhinoceros", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "rhinoceros", + "with": "bulette" + } + } + }, + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ] + } + ], + "damageTags": [ + "B", + "P" + ], + "hasToken": true + }, + { + "name": "Young Purple Worm", + "source": "PotA", + "page": 113, + "_copy": { + "name": "Purple Worm", + "source": "MM" + }, + "hp": { + "average": 184, + "formula": "15d20 + 90" + }, + "cr": "13", + "hasToken": true + }, + { + "name": "Zegdar", + "isNpc": true, + "isNamedCreature": true, + "source": "PotA", + "page": 120, + "_copy": { + "name": "Emberhorn Minotaur", + "source": "PotA", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the minotaur", + "with": "Zegdar", + "flags": "i" + } + } + }, + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 117, + "formula": "9d10 + 27" + }, + "int": 11, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Animated Tile Chimera", + "source": "RoT", + "page": 42, + "otherSources": [ + { + "source": "ToD", + "page": 128 + } + ], + "_copy": { + "name": "Chimera", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Rejuvenation", + "entries": [ + "If destroyed, the tile creature regains all its hit points and becomes active again in 24 hours unless at least half its tiles are collected and kept separate from the rest of the creature's tiles." + ] + } + }, + "reaction": { + "mode": "appendArr", + "items": { + "name": "Narrow Dodge", + "entries": [ + "When targeted by a melee attack, the tile creature can take a reaction to turn its narrowest aspect toward the attacker. The attacker has disadvantage on the attack roll." + ] + } + } + } + }, + "resist": [ + "piercing" + ], + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "traitTags": [ + "Rejuvenation" + ], + "hasToken": true + }, + { + "name": "Aquatic Troll", + "source": "RoT", + "page": 36, + "otherSources": [ + { + "source": "ToD", + "page": 112 + }, + { + "source": "PotA", + "page": 88 + } + ], + "_copy": { + "name": "Troll", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Water Breathing", + "entries": [ + "The troll can breathe underwater." + ] + } + } + } + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "resist": [ + "cold" + ], + "traitTags": [ + "Keen Senses", + "Regeneration", + "Water Breathing" + ], + "hasToken": true + }, + { + "name": "Carnivorous Flower", + "source": "RoT", + "page": 67, + "otherSources": [ + { + "source": "ToD", + "page": 153 + } + ], + "_copy": { + "name": "Otyugh", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "otyugh", + "with": "plant" + } + } + }, + "type": "plant", + "speed": { + "walk": 0 + }, + "hasToken": true + }, + { + "name": "Diderius", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 40, + "otherSources": [ + { + "source": "ToD", + "page": 131 + } + ], + "_copy": { + "name": "Mummy Lord", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mummy lord", + "with": "Diderius", + "flags": "i" + } + } + }, + "int": 18, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Diderius is a 10th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell minor illusion}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell cloud of daggers}", + "{@spell hold person}", + "{@spell see invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell fire shield}", + "{@spell greater invisibility}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell wall of stone}" + ] + } + }, + "ability": "int" + } + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Dragonfang", + "source": "RoT", + "page": 89, + "otherSources": [ + { + "source": "ToD", + "page": 182 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 14, + "int": 12, + "wis": 12, + "cha": 14, + "save": { + "wis": "+4" + }, + "skill": { + "deception": "+5", + "stealth": "+6" + }, + "passive": 11, + "resist": [ + { + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "preNote": "one of the following:" + } + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "cr": "5", + "trait": [ + { + "name": "Dragon Fanatic", + "entries": [ + "The dragonfang has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonfang can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonfang ignores the effects of being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Fanatic Advantage", + "entries": [ + "Once per turn, if the dragonfang makes a weapon attack with advantage on the attack roll and hits, the target takes an extra 10 ({@damage 3d6}) damage." + ] + }, + { + "name": "Limited Flight", + "entries": [ + "The dragonfang can use a bonus action to gain a flying speed of 30 feet until the end of its turn." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The dragonfang has advantage on an attack roll against a creature if at least one of the dragonfang's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Dragonfang attacks twice with its shortsword." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 7 ({@damage 2d6}) damage of the type to which the dragonfang has resistance." + ] + }, + { + "name": "Orb of Dragon's Breath (2/Day)", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 50 ft., one target. {@h}22 ({@damage 5d8}) damage of the type to which the dragonfang has damage resistance." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "I" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Dragonsoul", + "source": "RoT", + "page": 89, + "otherSources": [ + { + "source": "ToD", + "page": 183 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 13, + "wis": 12, + "cha": 16, + "save": { + "wis": "+4" + }, + "skill": { + "deception": "+6", + "stealth": "+7" + }, + "passive": 11, + "resist": [ + { + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "preNote": "one of the following:" + } + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "cr": "7", + "trait": [ + { + "name": "Dragon Fanatic", + "entries": [ + "The dragonsoul has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonsoul can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonsoul ignores the effects of being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Fanatic Advantage", + "entries": [ + "Once per turn, if the dragonsoul makes a weapon attack with advantage on the attack roll and hits, the target takes an extra 10 ({@damage 3d6}) damage." + ] + }, + { + "name": "Limited Flight", + "entries": [ + "The dragonsoul can use a bonus action to gain a flying speed of 30 feet until the end of its turn." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The dragonsoul has advantage on an attack roll against a creature if at least one of the dragonsoul's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Dragonsoul attacks twice with its shortsword." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) damage of the type to which the dragonsoul has resistance." + ] + }, + { + "name": "Orb of Dragon's Breath (3/Day)", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 90 ft., one target. {@h}27 ({@damage 6d8}) damage of the type to which the dragonsoul has damage resistance." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "I" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Galvan", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 9, + "otherSources": [ + { + "source": "ToD", + "page": 12 + } + ], + "_copy": { + "name": "Dragonsoul", + "source": "RoT", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragonsoul", + "with": "Galvan", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": [ + { + "name": "5etools Note", + "entries": [ + "While Galvan is not presented in an encounter in {@adventure The Rise of Tiamat|RoT}, the {@creature dragonsoul|RoT} stat block has been provided here for ease of use, with optional alterations for the {@item Blue Dragon Mask|RoTOS}." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Galvan has the {@item Blue Dragon Mask|RoTOS}." + ] + }, + { + "name": "Draconic Majesty", + "entries": [ + "While wearing no armor and wearing the Blue Dragon Mask, Galvan adds his Charisma bonus to her AC (included)." + ] + }, + { + "name": "Lingering Shock", + "entries": [ + "If Galvan deals lightning damage to a creature while wearing the Blue Dragon Mask, that creature can't take reactions until its next turn." + ] + }, + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If Galvan fails a saving throw while wearing the Blue Dragon Mask, he can choose to succeed instead." + ] + } + ] + } + } + }, + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + }, + { + "ac": 17, + "condition": "with the Blue Dragon Mask", + "braces": true + } + ], + "senses": [ + "darkvision 60 ft." + ], + "immune": [ + "lightning" + ], + "traitTags": [ + "Legendary Resistances", + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "hasToken": true + }, + { + "name": "Half-Blue Dragon Gladiator", + "source": "RoT", + "page": 55, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "ToD", + "page": 141 + } + ], + "_copy": { + "name": "Gladiator", + "source": "MM", + "_templates": [ + { + "name": "Large or Smaller Half-Blue Dragon", + "source": "MM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "gladiator", + "with": "half-dragon" + } + } + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "DR", + "X" + ], + "damageTags": [ + "B", + "L", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Half-Green Dragon Assassin", + "source": "RoT", + "page": 56, + "otherSources": [ + { + "source": "ToD", + "page": 142 + } + ], + "_copy": { + "name": "Assassin", + "source": "MM", + "_templates": [ + { + "name": "Large or Smaller Half-Green Dragon", + "source": "MM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "assassin", + "with": "half-dragon" + } + } + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR", + "TC", + "X" + ], + "miscTags": [ + "AOE", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Half-Red Dragon Gladiator", + "source": "RoT", + "page": 56, + "otherSources": [ + { + "source": "ToD", + "page": 142 + } + ], + "_copy": { + "name": "Gladiator", + "source": "MM", + "_templates": [ + { + "name": "Large or Smaller Half-Red Dragon", + "source": "MM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "gladiator", + "with": "half-dragon" + } + } + }, + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "DR", + "X" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Ice Toad", + "source": "RoT", + "page": 90, + "otherSources": [ + { + "source": "ToD", + "page": 185 + } + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 13, + "dex": 10, + "con": 14, + "int": 8, + "wis": 10, + "cha": 6, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "cold" + ], + "languages": [ + "Ice Toad" + ], + "cr": "1", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The toad can breathe air or water." + ] + }, + { + "name": "Cold Aura", + "entries": [ + "Any creature that starts its turn within 5 feet of the toad takes 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The toad's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) cold damage. If the target is a Medium or smaller creature it is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the toad can't bite another target." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "C" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ice Troll", + "source": "RoT", + "page": 30, + "otherSources": [ + { + "source": "ToD", + "page": 121 + } + ], + "_copy": { + "name": "Troll", + "source": "MM" + }, + "resist": [ + "cold" + ], + "hasToken": true + }, + { + "name": "Iskander", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 62, + "otherSources": [ + { + "source": "ToD", + "page": 148 + } + ], + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "5etools Note", + "entries": [ + "Iskander is presented in {@adventure The Rise of Tiamat|RoT} as a neutral evil male human wizard. The {@creature mage} stat block has been provided here for ease of use." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true + }, + { + "name": "Maccath the Crimson", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 33, + "otherSources": [ + { + "source": "ToD", + "page": 111 + } + ], + "_copy": { + "name": "Mage", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "5etools Note", + "entries": [ + "Maccath the Crimson is presented in {@adventure The Rise of Tiamat|RoT} as a female tiefling sorcerer and member of the Arcane Brotherhood. The {@creature mage} stat block, modified with tiefling racial traits, has been provided here for ease of use." + ] + } + } + } + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "I", + "X" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "hasToken": true + }, + { + "name": "Marfulb", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 35, + "otherSources": [ + { + "source": "ToD", + "page": 121 + } + ], + "_copy": { + "name": "Ice Toad", + "source": "RoT" + }, + "int": 13, + "hasToken": true + }, + { + "name": "Mend-nets", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 32, + "otherSources": [ + { + "source": "ToD", + "page": 116 + } + ], + "_copy": { + "name": "Tribal Warrior", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true + }, + { + "name": "Naergoth Bladelord", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 90, + "otherSources": [ + { + "source": "ToD", + "page": 186 + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 12, + "con": 16, + "int": 12, + "wis": 14, + "cha": 16, + "save": { + "dex": "+5", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "11", + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Naergoth has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Naergoth makes three attacks, either with his longsword or longbow. He can use Life Drain in place of one longsword attack." + ] + }, + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}20 ({@damage 5d6 + 3}) necrotic damage. The target must succeed on a {@dc 15} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) if used with two hands, plus 10 ({@damage 3d6}) necrotic damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage plus 10 ({@damage 3d6}) necrotic damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "HPR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Neronvain", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 91, + "otherSources": [ + { + "source": "ToD", + "page": 187 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 17 + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 17, + "con": 15, + "int": 16, + "wis": 13, + "cha": 18, + "save": { + "con": "+5", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "cr": "9", + "trait": [ + { + "name": "Draconic Majesty", + "entries": [ + "Neronvain adds his Charisma bonus to his AC (included)." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Magic can't put Neronvain to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Neronvain makes two attacks, either with his shortsword or Eldritch Arrow." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 13 ({@damage 3d8}) poison damage." + ] + }, + { + "name": "Eldritch Arrow", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}11 ({@damage 2d10}) force damage plus 9 ({@damage 2d8}) poison damage." + ] + }, + { + "name": "Poisonous Cloud (2/Day)", + "entries": [ + "Poison gas fills a 20-foot-radius sphere centered on a point Neronvain can see within 50 feet of him. The gas spreads around corners and remains until the start of Neronvain's next turn. Each creature that starts its turn in the gas must succeed on a {@dc 16} Constitution saving throw or be {@condition poisoned} 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." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "I" + ], + "damageTags": [ + "I", + "O", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Paper Whirlwind", + "source": "RoT", + "page": 72, + "otherSources": [ + { + "source": "ToD", + "page": 158 + } + ], + "_copy": { + "name": "Swarm of Ravens", + "source": "MM" + }, + "type": { + "type": "construct", + "swarmSize": "T" + }, + "vulnerable": [ + "fire" + ], + "hasToken": true + }, + { + "name": "Red Wizard", + "source": "RoT", + "page": 76, + "otherSources": [ + { + "source": "ToD", + "page": 171 + } + ], + "_copy": { + "name": "Mage", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Severin", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 92, + "otherSources": [ + { + "source": "ToD", + "page": 189 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 16 + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 13, + "con": 16, + "int": 17, + "wis": 12, + "cha": 20, + "save": { + "dex": "+5", + "wis": "+5" + }, + "skill": { + "arcana": "+7", + "religion": "+7" + }, + "senses": [ + "While wearing the Mask of the Dragon Queen: darkvision 60 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "acid", + "cold", + "lightning", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "preNote": "While wearing the mask of the Dragon Queen:" + } + ], + "immune": [ + { + "immune": [ + "fire" + ], + "preNote": "While wearing the mask of the Dragon Queen:" + } + ], + "conditionImmune": [ + { + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "preNote": "While wearing the mask of the Dragon Queen:" + } + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "cr": "11", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Severin has the {@item Mask of the Dragon Queen|rot}." + ] + }, + { + "name": "Draconic Majesty", + "entries": [ + "Severin adds his Charisma bonus to his AC (included)." + ] + }, + { + "name": "Ignite Enemy", + "entries": [ + "If Severin deals fire damage to a creature while wearing the Mask of the Dragon Queen, the target catches fire. At the start of each of its turns, the burning target takes 5 ({@damage 1d10}) fire damage. A creature within reach of the fire can use an action to extinguish it." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "While wearing the Mask of the Dragon Queen, if Severin fails a saving throw, he can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Burning Touch", + "entries": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d8}) fire damage." + ] + }, + { + "name": "Flaming Orb", + "entries": [ + "{@atk rs} {@hit 9} to hit, range 90 ft., one target. {@h}40 ({@damage 9d8}) fire damage." + ] + }, + { + "name": "Scorching Burst", + "entries": [ + "Severin chooses a point he can see within 60 feet of him. Each creature within 5 feet of that point must make a {@dc 17} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendaryHeader": [ + "If Severin is wearing the Mask of the Dragon Queen, he can take 3 legendary actions, choosing from the options listed. Only one legendary action option can be used at a time and only at the end of another creature's turn. Severin regains spent legendary actions at the start of his turn." + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Severin makes one attack." + ] + }, + { + "name": "Fiery Teleport (Costs 2 Actions)", + "entries": [ + "Severin, along with any objects he is wearing or carrying, teleports up to 60 feet to an unoccupied space he can see. Each creature within 5 feet of Severin before he teleports takes 5 ({@damage 1d10}) fire damage." + ] + }, + { + "name": "Hellish Chains (Costs 3 Actions)", + "entries": [ + "Severin targets one creature he can see within 30 feet of him. The target is wrapped in magical chains of fire and {@condition restrained}. The {@condition restrained} target takes 21 ({@damage 6d6}) fire damage at the start of each of its turns. At the end of its turns, the target can make a {@dc 17} Strength saving throw, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "I" + ], + "damageTags": [ + "F" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sled Dog", + "source": "RoT", + "page": 27, + "otherSources": [ + { + "source": "ToD", + "page": 113 + } + ], + "_copy": { + "name": "Wolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "wolf", + "with": "dog" + } + } + }, + "hasToken": true + }, + { + "name": "Snake Horror", + "source": "RoT", + "page": 46, + "otherSources": [ + { + "source": "ToD", + "page": 132 + } + ], + "_copy": { + "name": "Helmed Horror", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "helmed horror", + "with": "snake horror" + }, + "action": { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands, and the target must make a {@dc 12} Constitution saving throw, taking 9 ({@damage 2d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + } + } + }, + "tokenCredit": "FromSoftware", + "damageTags": [ + "I", + "S" + ], + "hasToken": true + }, + { + "name": "Tiamat", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 92, + "otherSources": [ + { + "source": "BGDIA" + }, + { + "source": "ToD", + "page": 190 + } + ], + "size": [ + "G" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 25, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 615, + "formula": "30d20 + 300" + }, + "speed": { + "walk": 60, + "fly": 120 + }, + "str": 30, + "dex": 10, + "con": 30, + "int": 26, + "wis": 26, + "cha": 28, + "save": { + "str": "+19", + "dex": "+9", + "wis": "+17" + }, + "skill": { + "arcana": "+17", + "perception": "+26", + "religion": "+17" + }, + "senses": [ + "darkvision 240 ft.", + "truesight 120 ft." + ], + "passive": 36, + "immune": [ + "acid", + "cold", + "fire", + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "poisoned", + "stunned" + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "cr": "30", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tiamat can innately cast the following spell, her spellcasting ability is Charisma (spell save {@dc 26}):" + ], + "daily": { + "3": [ + "{@spell divine word}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Discorporation", + "entries": [ + "When Tiamat drops to 0 hit points or dies, her body is destroyed but her essence travels back to her domain in the Nine Hells, and she is unable to take physical form for a time." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If Tiamat fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Limited Magic Immunity", + "entries": [ + "Unless she wishes to be affected, Tiamat is immune to spells of 6th level or lower. She has advantage on saving throws against all other spells and magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Tiamat's weapon attacks are magical." + ] + }, + { + "name": "Multiple Heads", + "entries": [ + "Tiamat can take one reaction per turn, rather than only one per round. She also has advantage on saving throws against being knocked {@condition unconscious}. If she fails a saving throw against an effect that would stun a creature, one of her unspent legendary actions is spent." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Tiamat regains 30 hit points at the start of her turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tiamat can use her Frightful Presence. She then makes three attacks: two with her claws and one with her tail." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}24 ({@damage 4d6 + 10}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 25 ft., one target. {@h}28 ({@damage 4d8 + 10}) piercing damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Tiamat's choice that is within 240 feet of Tiamat and aware of her must succeed on a {@dc 26} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Tiamat's Frightful Presence for the next 24 hours." + ] + } + ], + "legendaryHeader": [ + "Tiamat can take 5 legendary actions, choosing from the options below. Only one legendary action can be used at a time and only at the end of another creature's turn. Tiamat regains spent legendary actions at the start of its turn.", + "Tiamat's legendary action options are associated with her five dragon heads (a bite and a breath weapon for each). Once Tiamat chooses a legendary action option for one of her heads, she can't choose another one associated with that head until the start of her next turn." + ], + "legendaryActions": 5, + "legendary": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}32 ({@damage 4d10 + 10}) slashing damage plus 14 ({@damage 4d6}) acid damage (black dragon head), lightning damage (blue dragon head), poison damage (green dragon head), fire damage (red dragon head), or cold damage (white dragon head)." + ] + }, + { + "name": "Black Dragon Head: Acid Breath (Costs 2 Actions)", + "entries": [ + "Tiamat breathes acid in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 27} Dexterity saving throw, taking 67 ({@damage 15d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Blue Dragon Head: Lightning Breath (Costs 2 Actions)", + "entries": [ + "Tiamat breathes lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 27} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Green Dragon Head: Poison Breath (Costs 2 Actions)", + "entries": [ + "Tiamat breathes poisonous gas in a 90-foot cone. Each creature in that area must make a {@dc 27} Constitution saving throw, taking 77 ({@damage 22d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Red Dragon Head: Fire Breath (Costs 2 Actions)", + "entries": [ + "Tiamat breathes fire in a 90-foot cone. Each creature in that area must make a {@dc 27} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "White Dragon Head: Cold Breath (Costs 2 Actions)", + "entries": [ + "Tiamat breathes an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 27} Dexterity saving throw, taking 72 ({@damage 16d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Weapons", + "Regeneration" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "I" + ], + "damageTags": [ + "A", + "C", + "F", + "I", + "L", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Varram", + "isNpc": true, + "isNamedCreature": true, + "source": "RoT", + "page": 9, + "otherSources": [ + { + "source": "ToD", + "page": 8 + } + ], + "_copy": { + "name": "Dragonsoul", + "source": "RoT", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragonsoul", + "with": "Varram", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "5etools Note", + "entries": [ + "Varram is presented in {@adventure The Rise of Tiamat|RoT} as a male dwarf. The {@creature dragonsoul|RoT} stat block, modified with dwarf racial traits, has been provided here for ease of use." + ] + } + } + } + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "DR", + "I" + ], + "hasToken": true + }, + { + "name": "Archaic", + "source": "SCC", + "page": 184, + "size": [ + "G" + ], + "type": "celestial", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 245, + "formula": "14d20 + 98" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 10, + "con": 24, + "int": 27, + "wis": 24, + "cha": 20, + "save": { + "dex": "+6", + "int": "+14", + "wis": "+13", + "cha": "+11" + }, + "skill": { + "arcana": "+20", + "deception": "+11", + "history": "+20", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "force" + ], + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "all" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archaic casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell divination}", + "{@spell sending}" + ], + "daily": { + "1e": [ + "{@spell banishment}", + "{@spell forcecage}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Enigmatic Mind", + "entries": [ + "The archaic's mind can't be read, creatures can communicate telepathically with the archaic only if it allows, and magic can't determine whether the archaic is lying." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the archaic fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The archaic doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archaic makes two Force Strike attacks. It can also use Gravity Shift, if available." + ] + }, + { + "name": "Force Strike", + "entries": [ + "{@atk ms,rs} {@hit 14} to hit, reach 15 ft. or range 120 ft., one target. {@h}19 ({@damage 2d10 + 8}) force damage, and the target is pulled up to 10 feet toward the archaic or pushed 10 feet away from it, as the archaic chooses." + ] + }, + { + "name": "Gravity Shift {@recharge 5}", + "entries": [ + "The archaic reverses gravity for one creature it can see within 100 feet of itself. The creature must succeed on a {@dc 22} Wisdom saving throw or fall 100 feet upward. If the falling creature encounters a solid object (such as a ceiling) in this fall, it strikes the object just as it would during a downward fall. If the creature reaches the top of the area without striking anything, it hovers there until the start of the archaic's next turn, at which time gravity returns to normal and the creature falls." + ] + }, + { + "name": "Teleport", + "entries": [ + "The archaic teleports to an unoccupied space that it can see within 120 feet of itself." + ] + } + ], + "reaction": [ + { + "name": "Spell Mimicry (1/Day)", + "entries": [ + "Immediately after a creature the archaic can see casts a spell of 5th level or lower, that creature must succeed on a {@dc 22} Charisma saving throw, or the archaic immediately casts the same spell at the same level ({@hit 14} to hit with spell attacks, spell save {@dc 22}), requiring no material components and choosing the spell's targets." + ] + } + ], + "legendary": [ + { + "name": "Strike", + "entries": [ + "The archaic makes one Force Strike attack." + ] + }, + { + "name": "Teleport", + "entries": [ + "The archaic uses Teleport." + ] + }, + { + "name": "Unravel Magic (Costs 2 Actions)", + "entries": [ + "The archaic targets one creature it can see within 120 feet of itself. The target must succeed on a {@dc 22} Constitution saving throw or take 35 ({@damage 10d6}) force damage, and each spell of 5th level or lower on the target ends." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "RCH" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Art Elemental Mascot", + "source": "SCC", + "page": 185, + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 11 + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 13, + "con": 12, + "int": 8, + "wis": 11, + "cha": 15, + "skill": { + "performance": "+4" + }, + "passive": 10, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the elemental dies, it explodes in a burst of colored light. Each creature within 5 feet of the elemental must succeed on a {@dc 11} Constitution saving throw or be {@condition blinded} for 1 minute. A {@condition blinded} creature can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "action": [ + { + "name": "Joyful Flare", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) fire damage." + ] + }, + { + "name": "Melancholic Bolt", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 30 ft., one target. {@h}6 ({@damage 2d4 + 1}) cold damage." + ] + }, + { + "name": "Captivating Artistry (1/Day)", + "entries": [ + "The elemental targets one creature it can see within 30 feet of itself. The target must succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} for 1 minute. The {@condition charmed} target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "familiar": true, + "traitTags": [ + "Death Burst" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "C", + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "blinded", + "charmed" + ], + "savingThrowForced": [ + "charisma", + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Beledros Witherbloom", + "isNamedCreature": true, + "source": "SCC", + "page": 186, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "druid" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 28, + "dex": 14, + "con": 27, + "int": 18, + "wis": 28, + "cha": 17, + "save": { + "dex": "+9", + "con": "+15", + "wis": "+16", + "cha": "+10" + }, + "skill": { + "arcana": "+18", + "medicine": "+16", + "nature": "+18", + "perception": "+16" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 26, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Druidic", + "Sylvan" + ], + "cr": "24", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Beledros casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell greater restoration}", + "{@spell mass cure wounds}", + "{@spell plant growth}", + "{@spell revivify}", + "{@spell speak with dead}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Beledros fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Beledros doesn't require air, food, or drink." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Beledros makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}14 ({@damage 1d10 + 9}) piercing damage plus 6 ({@damage 1d12}) necrotic damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}12 ({@damage 1d6 + 9}) slashing damage. If the target is a Huge or smaller creature, it is knocked {@condition prone}." + ] + }, + { + "name": "Decaying Breath {@recharge 5}", + "entries": [ + "Beledros exhales decaying energy in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw, taking 39 ({@damage 6d12}) necrotic damage and 39 ({@damage 6d12}) poison damage on a failed save, or half as much damage on a successful one. A creature that takes damage from the breath can't regain hit points until the start of Beledros's next turn." + ] + }, + { + "name": "Miasmal Flow", + "entries": [ + "Beledros becomes a swirling cloud of green mist and can move up to half her flying speed without provoking opportunity attacks, then resumes her true form. During this movement, she can move through creatures and objects as if they were {@quickref difficult terrain||3}. If she moves through a creature, it must succeed on a {@dc 23} Constitution saving throw or become {@condition poisoned} until the end of its next turn. If Beledros ends this move inside an object, she takes 5 ({@damage 1d10}) force damage and is shunted to the nearest unoccupied space." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "Beledros makes one Claw attack." + ] + }, + { + "name": "Miasmal Flow (Costs 2 Actions)", + "entries": [ + "Beledros uses Miasmal Flow." + ] + }, + { + "name": "Teeming with Life (Costs 3 Actions)", + "entries": [ + "Beledros magically summons {@dice 1d4} {@creature pest mascot|SCC|pest mascots} in unoccupied spaces she can see within 60 feet of herself. The pests obey her commands and take their turns immediately after hers. Any creature, other than a pest, takes 9 ({@damage 2d8}) poison damage if it starts its turn within 5 feet of one or more of these pests. When one of these pests drops to 0 hit points, Beledros regains 9 hit points. These pests disappear after 10 minutes, when Beledros dies, or when she uses this action again." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "DU", + "S" + ], + "damageTags": [ + "I", + "N", + "O", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brackish Trudge", + "source": "SCC", + "page": 187, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 20, + "dex": 10, + "con": 17, + "int": 4, + "wis": 14, + "cha": 4, + "skill": { + "perception": "+4" + }, + "senses": [ + "blindsight 10 ft." + ], + "passive": 14, + "resist": [ + "fire" + ], + "cr": "3", + "trait": [ + { + "name": "Fungal Fortitude", + "entries": [ + "If damage reduces the trudge to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the trudge drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Tusk", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 3 ({@damage 1d6}) poison damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cogwork Archivist", + "source": "SCC", + "page": 188, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 10, + "con": 15, + "int": 17, + "wis": 11, + "cha": 6, + "skill": { + "arcana": "+5", + "history": "+5", + "nature": "+5", + "perception": "+2", + "religion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "all" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archivist casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell prestidigitation}" + ], + "daily": { + "2": [ + "{@spell silence}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The archivist has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archivist makes two Grasping Limb attacks." + ] + }, + { + "name": "Grasping Limb", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). The archivist can have no more than two targets {@condition grappled} at a time." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "conditionInflictSpell": [ + "deafened" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Daemogoth", + "source": "SCC", + "page": 189, + "size": [ + "H" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 19, + "dex": 15, + "con": 19, + "int": 21, + "wis": 14, + "cha": 18, + "save": { + "int": "+9", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "arcana": "+13", + "deception": "+12", + "history": "+9", + "perception": "+6" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Pact of Pain", + "entries": [ + "Using a 10-minute ritual, the daemogoth can forge a magical bond with a willing creature it touches throughout the ritual. The creature becomes bound by the pact until it dies, the daemogoth dies, or the pact is broken by any effect that can remove a curse.", + "The daemogoth chooses one spell from the {@filter necromancy or enchantment school that is 3rd level or lower|spells|level=0;1;2;3|school=N;E}. The bound creature can cast that spell using this pact, requiring no material components and using Intelligence as the spellcasting ability. When it casts the spell, the creature takes 7 ({@damage 2d6}) psychic damage, which can't break the creature's {@status concentration} on a spell. Once the bound creature casts the spell in this way, it can't do so again until it finishes a long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The daemogoth makes three Agonizing Burst attacks. It can use Terrify, if available, in place of one of the attacks." + ] + }, + { + "name": "Agonizing Burst", + "entries": [ + "{@atk ms,rs} {@hit 9} to hit, reach 10 ft. or range 120 ft., one target. {@h}11 ({@damage 2d10}) force damage. If the target is a creature, the daemogoth regains 5 hit points." + ] + }, + { + "name": "Terrify {@recharge 4}", + "entries": [ + "The daemogoth targets one creature it can see within 120 feet of itself. The target must make a {@dc 17} Wisdom saving throw. On a failed save, the target takes 33 ({@damage 6d10}) psychic damage and is {@condition frightened} of the daemogoth until the end of the daemogoth's next turn, and the daemogoth regains 5 hit points. On a successful save, the target takes half as much damage and isn't {@condition frightened}, and the daemogoth doesn't heal." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "O", + "Y" + ], + "miscTags": [ + "CUR", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Daemogoth Titan", + "source": "SCC", + "page": 190, + "size": [ + "G" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 203, + "formula": "11d20 + 88" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 10, + "con": 26, + "int": 24, + "wis": 18, + "cha": 20, + "save": { + "int": "+12", + "wis": "+9", + "cha": "+10" + }, + "skill": { + "arcana": "+17", + "deception": "+15", + "history": "+12", + "perception": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "cr": "16", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the titan fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Pact of Suffering", + "entries": [ + "Using a 10-minute long ritual, the titan can forge a magical bond with a willing creature it touches throughout the ritual. The creature becomes bound by the pact until it dies, the titan dies, or the pact is broken by a {@spell wish} spell.", + "The titan chooses one spell from the {@filter necromancy or enchantment school that is 8th level or lower|spells|level=0;1;2;3;4;5;6;7;8|school=N;E}. The bound creature can cast that spell using this pact, requiring no material components and using Intelligence as the spellcasting ability. When it casts the spell, the creature takes 21 ({@damage 6d6}) psychic damage, which can't break the creature's {@status concentration} on a spell. Once the bound creature casts the spell in this way, it can't do so again until it finishes a long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The titan makes two Agonizing Burst attacks." + ] + }, + { + "name": "Agonizing Burst", + "entries": [ + "{@atk ms,rs} {@hit 12} to hit, reach 15 ft. or range 120 ft., one target. {@h}17 ({@damage 3d6 + 7}) force damage. If the target is a creature, the titan regains 5 hit points." + ] + }, + { + "name": "Teleport", + "entries": [ + "The titan teleports to an unoccupied space it can see within 120 feet of itself." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The titan makes one Agonizing Burst attack." + ] + }, + { + "name": "Stalking Nightmare (Costs 2 Actions)", + "entries": [ + "The titan uses Teleport, after which it can target one creature within 20 feet of itself that it can see. The target must make a {@dc 20} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) necrotic damage, and the titan regains 10 hit points. On a successful save, the target takes half as much damage, and the titan doesn't heal." + ] + }, + { + "name": "Terrorize (Costs 3 Actions)", + "entries": [ + "The titan targets one creature it can see within 120 feet of itself. The target must make a {@dc 20} Wisdom saving throw. On a failed save, the target takes 38 ({@damage 7d10}) psychic damage and is {@condition frightened} of the titan until the end of the target's next turn, and the titan regains 15 hit points. On a successful save, the target takes half as much damage and isn't {@condition frightened}, and the titan doesn't heal." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "N", + "O", + "Y" + ], + "miscTags": [ + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "First-Year Student", + "source": "SCC", + "page": 191, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 8, + "dex": 12, + "con": 13, + "int": 12, + "wis": 10, + "cha": 11, + "passive": 10, + "languages": [ + "Common plus any two languages" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The student casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 11}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1": [ + "{@spell detect magic}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Excited to Be Here", + "entries": [ + "The student has advantage on initiative rolls." + ] + } + ], + "action": [ + { + "name": "Magic Flare", + "entries": [ + "{@atk ms,rs} {@hit 3} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d12 + 1}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Beginner's Luck (2/Day)", + "entries": [ + "When the student fails a saving throw, it can reroll the {@dice d20}. It must use the new roll." + ] + } + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fractal Mascot", + "source": "SCC", + "page": 192, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 13, + "int": 7, + "wis": 10, + "cha": 5, + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Relative Density", + "entries": [ + "The fractal can move through creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Quantum Strike", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) force damage, or 6 ({@damage 2d4 + 1}) force damage if the fractal is Medium or bigger." + ] + } + ], + "bonus": [ + { + "name": "Augment", + "entries": [ + "The fractal's size increases by one category. While the fractal is Medium or bigger, it makes Strength checks and Strength saving throws with advantage. The fractal can become no larger than Huge via this bonus action." + ] + }, + { + "name": "Diminish", + "entries": [ + "The fractal's size decreases by one category. While the fractal is Tiny, it makes attack rolls, Dexterity checks, and Dexterity saving throws with advantage. The fractal can become no smaller than 1 foot in height via this bonus action." + ] + } + ], + "familiar": true, + "languageTags": [ + "CS" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Galazeth Prismari", + "isNamedCreature": true, + "source": "SCC", + "page": 193, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 402, + "formula": "23d20 + 161" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 26, + "dex": 14, + "con": 25, + "int": 18, + "wis": 20, + "cha": 26, + "save": { + "dex": "+9", + "con": "+14", + "wis": "+12", + "cha": "+15" + }, + "skill": { + "acrobatics": "+16", + "arcana": "+18", + "perception": "+12", + "performance": "+22" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 22, + "resist": [ + "lightning" + ], + "immune": [ + "cold", + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Galazeth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "daily": { + "1e": [ + "{@spell control water}", + "{@spell gust of wind}", + "{@spell wall of stone}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Galazeth fails a saving throw, he can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Galazeth makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}13 ({@damage 1d10 + 8}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d6 + 8}) slashing damage. If the target is a Large or smaller creature, it is knocked {@condition prone}." + ] + }, + { + "name": "Dancing Elements Breath {@recharge 5}", + "entries": [ + "Galazeth exhales a blast of flames and ice in a 90-foot cone. Each creature in that area must make a {@dc 22} Dexterity saving throw, gaining no benefit from cover (other than {@quickref Cover||3||total cover}) and taking 38 ({@damage 7d10}) fire damage and 38 ({@damage 7d10}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "Galazeth makes one Claw attack." + ] + }, + { + "name": "Lightning Flash (Costs 2 Actions)", + "entries": [ + "Galazeth moves up to half his flying speed without provoking opportunity attacks. When he passes within 15 feet of a creature during this move, that creature must succeed on a {@dc 22} Dexterity saving throw or take 11 ({@damage 2d10}) lightning damage. A creature can take this damage no more than once during the move." + ] + }, + { + "name": "Flowing Creation (Costs 3 Actions)", + "entries": [ + "Galazeth magically summons {@dice 1d4} {@creature art elemental mascot|SCC|elemental mascots} in unoccupied spaces he can see within 60 feet of himself. The art elementals obey his commands and take their turns immediately after his. Any creature, other than an art elemental, takes 5 ({@damage 1d10}) cold, fire, or lightning damage (Galazeth's choice) if it ends its turn within 5 feet of one or more of these elementals. When one of these elementals drops to 0 hit points, Galazeth can fly up to 20 feet without provoking opportunity attacks. These elementals disappear after 10 minutes, when Galazeth dies, or when he uses this action again." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "C", + "F", + "L", + "P", + "S" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Groff", + "source": "SCC", + "page": 194, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 20, + "dex": 10, + "con": 17, + "int": 4, + "wis": 13, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "4", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the groff is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the groff move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the groff isn't an ordinary moss-covered bog patch." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The groff can hold its breath for up to 1 hour." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The groff makes one Bite attack and one Swamp Claw attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + }, + { + "name": "Swamp Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or become engulfed by the groff. While engulfed, the target can't breathe, is {@condition restrained}, and takes 10 ({@damage 3d6}) poison damage at the start of each of its turns. When the groff moves, the engulfed target moves with it. The groff can have only one target engulfed at a time.", + "An engulfed target can repeat the saving throw at the end of its turns. On a success, the target escapes and enters the nearest unoccupied space." + ] + } + ], + "traitTags": [ + "False Appearance", + "Hold Breath" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Inkling Mascot", + "source": "SCC", + "page": 195, + "size": [ + "T" + ], + "type": "ooze", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 18, + "formula": "4d4 + 8" + }, + "speed": { + "walk": 10, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 16, + "con": 14, + "int": 6, + "wis": 7, + "cha": 11, + "skill": { + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 8, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "prone" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The inkling can move through a space as narrow as 1 inch wide without squeezing." + ] + } + ], + "action": [ + { + "name": "Blot", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) psychic damage." + ] + }, + { + "name": "Ink Spray (1/Day)", + "entries": [ + "The inkling sprays viscous ink at one creature within 15 feet of itself. The target must succeed on a {@dc 12} Constitution saving throw or be {@condition blinded} until the end of the inkling's next turn." + ] + } + ], + "bonus": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the inkling takes the Hide action." + ] + } + ], + "familiar": true, + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lorehold Apprentice", + "source": "SCC", + "page": 197, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 13, + "int": 15, + "wis": 12, + "cha": 11, + "save": { + "con": "+3", + "int": "+4" + }, + "skill": { + "history": "+6", + "insight": "+3", + "investigation": "+6" + }, + "passive": 11, + "languages": [ + "Common plus any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell guidance}", + "{@spell light}" + ], + "daily": { + "1e": [ + "{@spell comprehend languages}", + "{@spell locate object}", + "{@spell mage armor}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Scroll Bash", + "entries": [ + "{@atk ms} {@hit 4} to hit, reach 30 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) thunder damage." + ] + }, + { + "name": "Reduce to Memory {@recharge}", + "entries": [ + "Thundering golden energy erupts around a creature the apprentice can see within 90 feet of it. The creature must make a {@dc 12} Constitution saving throw, taking 33 ({@damage 6d10}) thunder damage on a failed save, or half as much damage on a successful one. A Construct has disadvantage on the saving throw." + ] + } + ], + "reaction": [ + { + "name": "Learn from the Past (2/Day)", + "entries": [ + "When another creature within 60 feet of the apprentice misses a target with an attack roll, the apprentice magically enables the attacker to reroll the attack roll. It must use the new roll." + ] + } + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lorehold Pledgemage", + "source": "SCC", + "page": 197, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 13 + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 13, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "con": "+3", + "int": "+5" + }, + "skill": { + "history": "+7", + "insight": "+3", + "investigation": "+7" + }, + "passive": 11, + "languages": [ + "Common plus any two languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pledgemage casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell guidance}", + "{@spell light}" + ], + "daily": { + "2e": [ + "{@spell comprehend languages}", + "{@spell locate object}" + ], + "1e": [ + "{@spell mage armor}", + "{@spell speak with dead}", + "{@spell stone shape}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pledgemage makes two Scroll Bash attacks." + ] + }, + { + "name": "Scroll Bash", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 30 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) thunder damage." + ] + }, + { + "name": "Reduce to Memory {@recharge 5}", + "entries": [ + "Thundering golden energy erupts around a creature the pledgemage can see within 90 feet of it. The creature must make a {@dc 13} Constitution saving throw, taking 44 ({@damage 8d10}) thunder damage on a failed save, or half as much damage on a successful one. A Construct has disadvantage on the saving throw." + ] + } + ], + "bonus": [ + { + "name": "Chronal Break (1/Day)", + "entries": [ + "The pledgemage chooses a point within 30 feet of itself, shunting the minds of nearby creatures out of this moment in time. Each creature in a 10-foot-radius sphere centered on that point must succeed on a {@dc 13} Wisdom saving throw or be {@condition incapacitated} until the end of the pledgemage's next turn." + ] + } + ], + "reaction": [ + { + "name": "Learn from the Past (2/Day)", + "entries": [ + "When another creature within 60 feet of the pledgemage misses a target with an attack roll, the pledgemage magically enables the attacker to reroll the attack roll. It must use the new roll." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Lorehold Professor of Chaos", + "source": "SCC", + "page": 198, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 110, + "formula": "17d8 + 34" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 19, + "wis": 15, + "cha": 13, + "save": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "skill": { + "arcana": "+7", + "history": "+7", + "perception": "+5" + }, + "passive": 15, + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell comprehend languages}", + "{@spell dancing lights}", + "{@spell guidance}" + ], + "daily": { + "2e": [ + "{@spell locate object}", + "{@spell mage armor}", + "{@spell passwall}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Voice from the Past (1/Day)", + "entries": [ + "The professor can cast the {@spell contact other plane} spell to contact a long-dead spirit, using Intelligence as the spellcasting ability." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Spectral Scroll attacks. It can also use Weight of {@skill History}, if available." + ] + }, + { + "name": "Spectral Scroll", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 30 ft., one target. {@h}15 ({@damage 2d10 + 4}) force damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Weight of History {@recharge 5}", + "entries": [ + "The professor magically compresses time around up to six creatures of its choice that it can see within 30 feet of itself. Each target must succeed on a {@dc 15} Wisdom saving throw or be {@condition restrained} for 1 minute, but the {@condition restrained} target's speed is halved instead of being reduced to 0. At the start of each of its turns, the {@condition restrained} target takes 4 ({@damage 1d8}) force damage. A {@condition restrained} target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "RCH" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Lorehold Professor of Order", + "source": "SCC", + "page": 198, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 19, + "wis": 15, + "cha": 13, + "save": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "skill": { + "arcana": "+7", + "history": "+7", + "perception": "+5" + }, + "passive": 15, + "resist": [ + "force" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell comprehend languages}", + "{@spell guidance}", + "{@spell light}" + ], + "daily": { + "2e": [ + "{@spell dimension door}", + "{@spell locate object}", + "{@spell mage armor}", + "{@spell stone shape}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Voice from the Past (1/Day)", + "entries": [ + "The professor can cast the {@spell contact other plane} spell to contact a long-dead spirit, using Intelligence as the spellcasting ability." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Repelling Burst attacks. It can also use Force Barrier, if available." + ] + }, + { + "name": "Repelling Burst", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 30 ft., one target. {@h}13 ({@damage 2d8 + 4}) force damage. If the target is a Large or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be pushed up to 10 feet directly away from the professor and become {@condition restrained} until the start of professor's next turn." + ] + }, + { + "name": "Force Barrier {@recharge 5}", + "entries": [ + "The professor magically creates a wall of translucent, golden force within 90 feet of itself. The wall lasts for 1 minute or until the professor uses this action again. The barrier can be a vertical or horizontal plane up to 30 feet on a side or a 10-foot-radius hemispherical dome with a floor. The wall provides {@quickref Cover||3||total cover}. It has AC 17, 30 hit points, and immunity to poison and psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Arcane Stasis (2/Day)", + "entries": [ + "When a creature the professor can see within 60 feet of it casts a spell, the professor can magically lock the casting in the moment before completion. The spellcaster must succeed on a {@dc 15} saving throw using the spell's spellcasting ability, or the spell fails and is wasted." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mage Hunter", + "source": "SCC", + "page": 199, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 40, + "climb": { + "number": 40, + "condition": "(hunter form only)" + }, + "fly": { + "number": 10, + "condition": "(hover sentry form only)" + }, + "canHover": true + }, + "str": 19, + "dex": 15, + "con": 16, + "int": 11, + "wis": 17, + "cha": 10, + "save": { + "int": "+3", + "wis": "+6", + "cha": "+3" + }, + "skill": { + "perception": "+9", + "stealth": "+5" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 19, + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "prone" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Sense", + "entries": [ + "The hunter knows the location of every spellcaster, active spell, and magic item within 120 feet of itself." + ] + }, + { + "name": "Spider Climb (Hunter Form Only)", + "entries": [ + "The hunter can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack (Hunter Form Only)", + "entries": [ + "The hunter makes two Claw attacks." + ] + }, + { + "name": "Claw (Hunter Form Only)", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the hunter can't make a Tail attack against another target." + ] + }, + { + "name": "Mage Tracker (Sentry Form Only)", + "entries": [ + "The hunter emits a pulse of energy that helps it better locate its magical quarry. Each creature within 120 feet of the hunter that has the ability to cast spells must succeed on a {@dc 14} Wisdom saving throw or be mystically marked by the hunter for 1 hour.", + "While marked, a creature can't become hidden from the hunter and gains no benefit from the {@condition invisible} condition against the hunter. Additionally, while a marked creature is on the same plane of existence as the hunter, the hunter always knows the distance and direction to the creature." + ] + } + ], + "bonus": [ + { + "name": "Shift Form", + "entries": [ + "The hunter folds into its drone-like sentry form or unfolds into its hunter form. Its game statistics are the same in each form." + ] + } + ], + "reaction": [ + { + "name": "Consume and Destroy", + "entries": [ + "When the hunter takes damage from a spell, it takes only half the triggering damage (rounded down). If the creature that cast the spell is within 60 feet of the hunter, that creature must succeed on a {@dc 14} Dexterity saving throw or take the other half of the damage." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Murgaxor", + "isNamedCreature": true, + "source": "SCC", + "page": 180, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bullywug", + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "blood aegis" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 18, + "int": 20, + "wis": 12, + "cha": 12, + "save": { + "con": "+8", + "int": "+9", + "wis": "+5", + "cha": "+5" + }, + "skill": { + "deception": "+9", + "medicine": "+5", + "survival": "+5" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "exhaustion" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "9", + "trait": [ + { + "name": "Blood Aegis", + "entries": [ + "The AC of Murgaxor includes his Constitution modifier while he isn't wearing armor or wielding a shield." + ] + }, + { + "name": "Oriq Mask", + "entries": [ + "Murgaxor wears an Oriq mask. While wearing the mask, Murgaxor can't be targeted by any divination magic or perceived through magical scrying sensors, and he adds double his proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ] + }, + { + "name": "Sanguine Sense", + "entries": [ + "While Murgaxor isn't {@condition blinded}, he can see any creature that isn't an Undead or a Construct within 60 feet of himself, even through {@quickref Cover||3||total cover}, heavily obscured areas, invisibility, or any other phenomena that would prevent sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Murgaxor makes two Blood Lash attacks." + ] + }, + { + "name": "Blood Lash", + "entries": [ + "{@atk ms} {@hit 9} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) necrotic damage. If the target is a creature, it can't regain hit points until the start of Murgaxor's next turn." + ] + }, + { + "name": "Blood Boil {@recharge 4}", + "entries": [ + "Murgaxor chooses a point within 150 feet of himself, and a 20-foot radius sphere centered on that point fills with a burst of searing, blood-red mist. Each creature of Murgaxor's choice that he can see in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) necrotic damage and is {@condition incapacitated} until the end of its next turn. On a success, a creature takes half as much damage and isn't {@condition incapacitated}. A creature dies if reduced to 0 hit points by this necrotic damage." + ] + } + ], + "legendaryGroup": { + "name": "Murgaxor", + "source": "SCC" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "N" + ], + "damageTagsLegendary": [ + "B", + "N" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oracle of Strixhaven", + "source": "SCC", + "page": 200, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "wizard" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30, + "fly": { + "number": 15, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 12, + "dex": 15, + "con": 16, + "int": 21, + "wis": 20, + "cha": 18, + "save": { + "con": "+8", + "int": "+10", + "wis": "+10", + "cha": "+9" + }, + "skill": { + "arcana": "+15", + "insight": "+15", + "investigation": "+15", + "nature": "+10", + "perception": "+10" + }, + "passive": 20, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "all" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Oracle casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "2e": [ + "{@spell dispel magic}", + "{@spell mage armor}", + "{@spell remove curse}", + "{@spell sending}" + ], + "1e": [ + "{@spell power word stun}", + "{@spell scrying} (as an action)", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the Oracle fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Oracle makes two Magic Flare attacks. She can also use Paradoxy, if available." + ] + }, + { + "name": "Magic Flare", + "entries": [ + "{@atk ms,rs} {@hit 10} to hit, reach 5 ft. or range 60 ft., one target. {@h}24 ({@damage 3d12 + 5}) force damage." + ] + }, + { + "name": "Paradoxy {@recharge 4}", + "entries": [ + "Momentary warps in reality appear at three different points the Oracle can see within 120 feet of her. Each creature in a 20-foot-radius sphere centered on each point must make a {@dc 18} Strength saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) force damage and is pulled up to 15 feet in a straight line toward the center of the sphere. On a successful save, the creature takes half as much damage and isn't pulled. A creature caught in the area of multiple warps is affected by only one, which the Oracle chooses." + ] + }, + { + "name": "Teleport", + "entries": [ + "The Oracle teleports, along with any equipment she is wearing or carrying, to an unoccupied space she can see within 60 feet of herself." + ] + } + ], + "legendary": [ + { + "name": "Vector Shift", + "entries": [ + "The Oracle teleports one creature she can see within 60 feet of herself, along with any equipment it is wearing or carrying, to an unoccupied space within 30 feet of herself. An unwilling target must succeed on a {@dc 18} Charisma saving throw to avoid the effect." + ] + }, + { + "name": "Spellcasting (Costs 2 Actions)", + "entries": [ + "The Oracle uses Spellcasting." + ] + }, + { + "name": "Vortex Jaunt (Costs 2 Actions)", + "entries": [ + "The Oracle uses Teleport, and immediately after she disappears, each creature within 30 feet of the space she left must succeed on a {@dc 18} Constitution saving throw or take 16 ({@damage 3d10}) force damage." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflictSpell": [ + "stunned" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oriq Blood Mage", + "source": "SCC", + "page": 201, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "blood aegis" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 18, + "int": 20, + "wis": 12, + "cha": 12, + "save": { + "con": "+8", + "int": "+9", + "wis": "+5", + "cha": "+5" + }, + "skill": { + "deception": "+9", + "medicine": "+5", + "survival": "+5" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "exhaustion" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "9", + "trait": [ + { + "name": "Blood Aegis", + "entries": [ + "The AC of the blood mage includes its Constitution modifier while it isn't wearing armor or wielding a shield." + ] + }, + { + "name": "Oriq Mask", + "entries": [ + "The blood mage wears an Oriq mask. While wearing the mask, the blood mage can't be targeted by any divination magic or perceived through magical scrying sensors, and it adds double its proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ] + }, + { + "name": "Sanguine Sense", + "entries": [ + "While the blood mage isn't {@condition blinded}, it can see any creature that isn't an Undead or a Construct within 60 feet of itself, even through {@quickref Cover||3||total cover}, heavily obscured areas, invisibility, or any other phenomena that would prevent sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blood mage makes two Blood Lash attacks." + ] + }, + { + "name": "Blood Lash", + "entries": [ + "{@atk ms} {@hit 9} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) necrotic damage. If the target is a creature, it can't regain hit points until the start of the blood mage's next turn." + ] + }, + { + "name": "Blood Boil {@recharge 4}", + "entries": [ + "The blood mage chooses a point within 150 feet of itself, and a 20-foot radius sphere centered on that point fills with a burst of searing, blood-red mist. Each creature of the blood mage's choice that it can see in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) necrotic damage and is {@condition incapacitated} until the end of its next turn. On a success, a creature takes half as much damage and isn't {@condition incapacitated}. A creature dies if reduced to 0 hit points by this necrotic damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Oriq Recruiter", + "source": "SCC", + "page": 202, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "misdirecting defense" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 17, + "wis": 15, + "cha": 18, + "save": { + "int": "+5", + "wis": "+4", + "cha": "+6" + }, + "skill": { + "arcana": "+5", + "deception": "+8", + "insight": "+4", + "persuasion": "+6" + }, + "passive": 12, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common plus any two languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The recruiter casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell disguise self}", + "{@spell silent image}" + ], + "daily": { + "1": [ + "{@spell suggestion}" + ], + "2": [ + "{@spell charm person}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Misdirecting Defense", + "entries": [ + "The AC of the recruiter includes its Charisma modifier while it isn't wearing armor or wielding a shield." + ] + }, + { + "name": "Oriq Mask", + "entries": [ + "The recruiter wears an Oriq mask. While wearing the mask, the recruiter can't be targeted by any divination magic or perceived through magical scrying sensors, and it adds double its proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The recruiter makes two Psychic Knife attacks. It can use Spellcasting in place of one of the attacks." + ] + }, + { + "name": "Psychic Knife", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 30 ft., one creature. {@h}21 ({@damage 5d6 + 4}) psychic damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pest Mascot", + "source": "SCC", + "page": 203, + "size": [ + "T" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d4 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 17, + "int": 5, + "wis": 13, + "cha": 4, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "1/4", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The pest regains 5 hit points at the start of its turn if it has at least 1 hit point. If it takes fire damage, this trait doesn't function at the start of the pest's next turn." + ] + }, + { + "name": "Spiny Hide", + "entries": [ + "At the start of each of its turns, the pest deals 2 ({@damage 1d4}) piercing damage to any creature grappling it or that it is grappling." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "familiar": true, + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Prismari Apprentice", + "source": "SCC", + "page": 205, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 35 + }, + "str": 10, + "dex": 14, + "con": 13, + "int": 12, + "wis": 13, + "cha": 15, + "save": { + "dex": "+4", + "cha": "+4" + }, + "skill": { + "acrobatics": "+4", + "athletics": "+4", + "performance": "+6" + }, + "passive": 11, + "languages": [ + "Common plus any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell gust of wind}", + "{@spell mage armor}", + "{@spell silent image}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Elemental Strike", + "entries": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 3d6}) fire or cold damage (the apprentice's choice)." + ] + } + ], + "bonus": [ + { + "name": "Surge of Artistry {@recharge 4}", + "entries": [ + "The apprentice moves up to its speed, surrounding itself with elemental magic as it moves. Until the end of its turn, the apprentice can move through the space of other creatures. The first time the apprentice enters a creature's space on a turn, that creature must succeed on a {@dc 12} Dexterity saving throw or be knocked {@condition prone}. If the apprentice ends its turn in another creature's space, the apprentice takes 5 ({@damage 1d10}) force damage and is pushed into the nearest unoccupied space." + ] + } + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "C", + "F", + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Prismari Pledgemage", + "source": "SCC", + "page": 205, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 35 + }, + "str": 10, + "dex": 15, + "con": 13, + "int": 12, + "wis": 14, + "cha": 17, + "save": { + "dex": "+4", + "cha": "+5" + }, + "skill": { + "acrobatics": "+4", + "athletics": "+4", + "performance": "+7" + }, + "passive": 12, + "languages": [ + "Common plus any two languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pledgemage casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell minor illusion}" + ], + "daily": { + "2e": [ + "{@spell gust of wind}", + "{@spell silent image}" + ], + "1e": [ + "{@spell mage armor}", + "{@spell water walk}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Evasion", + "entries": [ + "If the pledgemage is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the pledgemage instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided it isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pledgemage makes two Elemental Strike attacks." + ] + }, + { + "name": "Elemental Strike", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}12 ({@damage 3d6 + 2}) fire or cold damage (the pledgemage's choice)." + ] + }, + { + "name": "Showstopper (1/Day)", + "entries": [ + "The pledgemage shines with elemental magic, targeting one creature it can see within 60 feet of itself. The target must make a {@dc 13} Wisdom saving throw. On a failed save, the target takes 28 ({@damage 8d6}) fire or cold damage (the pledgemage's choice) and is {@condition stunned} until the start of the pledgemage's next turn. On a successful save, the target takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "bonus": [ + { + "name": "Surge of Artistry {@recharge 4}", + "entries": [ + "The pledgemage moves up to its speed, surrounding itself with elemental magic as it moves. Until the end of its turn, the pledgemage can move through the space of other creatures. The first time the pledgemage enters a creature's space on a turn, that creature must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}. If the pledgemage ends its turn in another creature's space, the pledgemage takes 5 ({@damage 1d10}) force damage and is pushed into the nearest unoccupied space." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "C", + "F", + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Prismari Professor of Expression", + "source": "SCC", + "page": 206, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 13 + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 16, + "con": 15, + "int": 15, + "wis": 13, + "cha": 19, + "save": { + "dex": "+6", + "int": "+5", + "wis": "+4", + "cha": "+7" + }, + "skill": { + "acrobatics": "+6", + "arcana": "+5", + "athletics": "+5", + "perception": "+4", + "performance": "+10" + }, + "passive": 14, + "resist": [ + "fire", + "lightning" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell minor illusion}" + ], + "daily": { + "2e": [ + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell mage armor}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes three Cinder Strike attacks." + ] + }, + { + "name": "Cinder Strike", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d8 + 4}) fire damage." + ] + }, + { + "name": "Lightning Flourish {@recharge}", + "entries": [ + "The professor unleashes arcs of magical lightning at up to two creatures it can see within 60 feet of itself. Each target must make a {@dc 15} Dexterity saving throw, taking 35 ({@damage 10d6}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Flaming Leap", + "entries": [ + "The professor is wreathed in flames and jumps up to 30 feet in any direction. When the professor lands, the flames erupt in a 10-foot radius around the professor and then vanish. Each creature of the professor's choice in that area must succeed on a {@dc 15} Dexterity saving throw or take 7 ({@damage 2d6}) fire damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "F", + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Prismari Professor of Perfection", + "source": "SCC", + "page": 206, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 13 + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 15, + "int": 15, + "wis": 13, + "cha": 19, + "save": { + "dex": "+6", + "int": "+5", + "wis": "+4", + "cha": "+7" + }, + "skill": { + "acrobatics": "+6", + "arcana": "+5", + "athletics": "+5", + "perception": "+4", + "performance": "+10" + }, + "passive": 14, + "resist": [ + "cold" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell minor illusion}" + ], + "daily": { + "1": [ + "{@spell wall of ice}" + ], + "2e": [ + "{@spell control water}", + "{@spell create or destroy water}", + "{@spell mage armor}", + "{@spell stone shape}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Water Walking", + "entries": [ + "The professor can walk across water and other liquids as if they were solid ground." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes three Tidal Strike attacks." + ] + }, + { + "name": "Tidal Strike", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 2d8 + 4}) cold damage." + ] + } + ], + "bonus": [ + { + "name": "Rushing Wave", + "entries": [ + "The professor is momentarily surrounded by a swirling wave of water and moves up to 30 feet. When the professor moves within 5 feet of any other creature during this bonus action, that creature must succeed on a {@dc 15} Strength saving throw, or the creature is knocked {@condition prone} and it can't take reactions until the start of its next turn. A creature can suffer this effect only once during a turn." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "C" + ], + "damageTagsSpell": [ + "B", + "C" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Quandrix Apprentice", + "source": "SCC", + "page": 208, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 13, + "int": 15, + "wis": 14, + "cha": 11, + "save": { + "int": "+4", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "investigation": "+6", + "nature": "+4" + }, + "passive": 12, + "languages": [ + "Common plus any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell guidance}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell enlarge/reduce}", + "{@spell mage armor}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The apprentice makes two Exponential Lash attacks." + ] + }, + { + "name": "Exponential Lash", + "entries": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 60 ft., one target. {@h}5 ({@damage 1d6 + 2}) force damage, and the apprentice can cause one creature it can see within 30 feet of the target to take 9 ({@damage 2d6 + 2}) force damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quandrix Pledgemage", + "source": "SCC", + "page": 208, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 13, + "int": 17, + "wis": 14, + "cha": 11, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "arcana": "+7", + "investigation": "+7", + "nature": "+5" + }, + "passive": 12, + "languages": [ + "Common plus any two languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pledgemage casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell guidance}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell dimension door}", + "{@spell enlarge/reduce}", + "{@spell mage armor}", + "{@spell plant growth}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pledgemage makes two Exponential Lash attacks." + ] + }, + { + "name": "Exponential Lash", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage, and the pledgemage can cause one creature it can see within 30 feet of the target to take 10 ({@damage 2d6 + 3}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Vortex Calculus {@recharge 4}", + "entries": [ + "The pledgemage teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 60 feet of itself. Immediately after it teleports, each creature within 20 feet of the space it left must make a {@dc 13} Constitution saving throw. On a failed save, a creature takes 7 ({@damage 2d6}) force damage and is moved 10 feet in a random horizontal direction. On a successful save, a creature takes half as much damage and isn't moved." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Quandrix Professor of Substance", + "source": "SCC", + "page": 209, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 104, + "formula": "16d8 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 19, + "wis": 14, + "cha": 13, + "save": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "skill": { + "arcana": "+10", + "investigation": "+10", + "nature": "+7", + "perception": "+5" + }, + "passive": 15, + "resist": [ + "force" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell mending} (as an action)" + ], + "daily": { + "1e": [ + "{@spell creation} (as an action)", + "{@spell dimension door}", + "{@spell mage armor}", + "{@spell plant growth}", + "{@spell polymorph}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Spatial Blade attacks." + ] + }, + { + "name": "Spatial Blade", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit (the target can't benefit from cover less than {@quickref Cover||3||total cover}), reach 5 ft. or range 120 ft., one target. {@h}13 ({@damage 2d8 + 4}) force damage, or 22 ({@damage 4d8 + 4}) force damage if the professor is Large or larger, and the professor can push the target horizontally up to 10 feet away." + ] + } + ], + "bonus": [ + { + "name": "Dilation {@recharge 5}", + "entries": [ + "The professor magically alters its physical form until it uses this bonus action again, until it is {@condition incapacitated} or dies, or until it dismisses the effect (no action required). Choose one of the following options:" + ] + }, + { + "name": "Expand", + "entries": [ + "The professor becomes Large if there is sufficient room for it to grow. It has advantage on attack rolls and on ability checks and saving throws that rely on Strength." + ] + }, + { + "name": "Contract", + "entries": [ + "The professor becomes Small. Its walking speed increases to 60 feet, attack rolls against it have disadvantage, and it has advantage on ability checks and saving throws that rely on Dexterity." + ] + } + ], + "reaction": [ + { + "name": "Avoidant Translation (2/Day)", + "entries": [ + "When the professor is hit by an attack roll, it can increase its AC by 3 against that attack, potentially causing it to miss. The professor can then teleport, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Quandrix Professor of Theory", + "source": "SCC", + "page": 209, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 19, + "wis": 15, + "cha": 13, + "save": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "skill": { + "arcana": "+10", + "insight": "+5", + "investigation": "+10", + "perception": "+5" + }, + "passive": 15, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell mage armor}", + "{@spell major image}", + "{@spell mirage arcane} (as an action)", + "{@spell Rary's telepathic bond}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Heuristic Lance attacks. It can also use Overriding Theorem, if available." + ] + }, + { + "name": "Heuristic Lance", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 60 ft., one creature. {@h}13 ({@damage 2d8 + 4}) psychic damage, and the target is {@condition poisoned} until the end of its next turn." + ] + }, + { + "name": "Overriding Theorem {@recharge 4}", + "entries": [ + "The professor magically influences the mind of up to two creatures it can see within 60 feet of itself. Each target must succeed on a {@dc 15} Intelligence saving throw or become {@condition charmed} by the professor until the start of the professor's next turn. The {@condition charmed} creature must immediately use its reaction, if available, to move up its speed toward another creature of the professor's choice and make one melee attack against that other creature." + ] + } + ], + "reaction": [ + { + "name": "Divide by Zero (2/Day)", + "entries": [ + "When the professor sees another creature within 60 feet of itself casting a spell, the professor can try to nullify the spell's formation. The creature must succeed on a {@dc 15} saving throw using the spell's spellcasting ability, or the spell fails and is wasted." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Relic Sloth", + "source": "SCC", + "page": 210, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 20, + "dex": 9, + "con": 17, + "int": 2, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "2", + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage, and the target is {@condition grappled} (escape {@dc 15}). The relic sloth can grapple no more than two targets at a time." + ] + } + ], + "reaction": [ + { + "name": "Slow but Sturdy", + "entries": [ + "When the relic sloth is subjected to an effect that would move it out of its current space or knock it {@condition prone}, it is neither moved nor knocked {@condition prone}." + ] + } + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ruin Grinder", + "source": "SCC", + "page": 211, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d10 + 22" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 22, + "dex": 13, + "con": 15, + "int": 3, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Fire Absorption", + "entries": [ + "Whenever the ruin grinder is subjected to fire damage, it regains a number of hit points equal to half the fire damage dealt." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The ruin grinder deals double damage to objects and structures." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The ruin grinder can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ruin grinder makes two Excavator attacks." + ] + }, + { + "name": "Excavator", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) force damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Siege Monster", + "Tunneler" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scufflecup Teacup", + "source": "SCC", + "page": 159, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 5, + "formula": "2d4" + }, + "speed": { + "walk": 20 + }, + "str": 4, + "dex": 14, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "exhaustion", + "poisoned" + ], + "cr": "0", + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d3 + 2}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Shadrix Silverquill", + "isNamedCreature": true, + "source": "SCC", + "page": 212, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "bard" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 363, + "formula": "22d20 + 132" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 25, + "dex": 14, + "con": 23, + "int": 18, + "wis": 18, + "cha": 26, + "save": { + "dex": "+9", + "con": "+13", + "wis": "+11", + "cha": "+15" + }, + "skill": { + "arcana": "+18", + "deception": "+15", + "perception": "+11", + "persuasion": "+15" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 21, + "immune": [ + "psychic", + "radiant" + ], + "languages": [ + "all" + ], + "cr": "22", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Shadrix casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell daylight}", + "{@spell hypnotic pattern}", + "{@spell sending}", + "{@spell suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Shadrix fails a saving throw, he can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Shadrix makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}12 ({@damage 1d10 + 7}) piercing damage plus 4 ({@damage 1d8}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d6 + 7}) slashing damage. If the target is a creature, it is wracked with despair and has disadvantage on attack rolls until the end of its next turn." + ] + }, + { + "name": "Illuminating Shadow Breath {@recharge 5}", + "entries": [ + "Shadrix exhales an entwined burst of blinding radiance and unnerving shadow in a 90-foot cone. Each creature in that area must make a {@dc 21} Constitution saving throw. On a failed save, a creature takes 31 ({@damage 7d8}) radiant damage and 31 ({@damage 7d8}) psychic damage and is {@condition blinded} until the start of Shadrix's next turn. On a successful save, a creature takes half as much damage and isn't {@condition blinded}." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "Shadrix makes one Claw attack." + ] + }, + { + "name": "Shadow Slip (Costs 2 Actions)", + "entries": [ + "Shadrix becomes an inky cloud of shadow and can move up to half his flying speed without provoking opportunity attacks, then resumes his true form. During this movement, he can move through creatures and objects as if they were {@quickref difficult terrain||3}. If he moves through a creature, it must succeed on a {@dc 21} Constitution saving throw or become {@condition blinded} until the end of its next turn. If Shadrix ends this move inside an object, he takes 5 ({@damage 1d10}) force damage and is shunted to the nearest unoccupied space." + ] + }, + { + "name": "Flash of Inspiration (Costs 3 Actions)", + "entries": [ + "Shadrix magically summons {@dice 1d4} {@creature inkling mascot|SCC|inkling mascots} in unoccupied spaces he can see within 60 feet of himself. The inklings obey his commands and take their turns immediately after his. While any of these inklings live, Shadrix has advantage on attack rolls and saving throws. These inklings disappear after 10 minutes, when Shadrix dies, or when he uses this action again." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O", + "P", + "R", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Silverquill Apprentice", + "source": "SCC", + "page": 214, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 13, + "int": 12, + "wis": 11, + "cha": 15, + "save": { + "dex": "+4", + "cha": "+4" + }, + "skill": { + "deception": "+4", + "performance": "+6", + "persuasion": "+6" + }, + "passive": 10, + "languages": [ + "Common plus any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "daily": { + "1e": [ + "{@spell command}", + "{@spell mage armor}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Ink Blade", + "entries": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 9 ({@damage 2d8}) psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Rousing Verse", + "entries": [ + "When a creature the apprentice can see within 30 feet of it fails a saving throw, the apprentice magically weaves together stirring prose, allowing the creature to reroll the saving throw and use the higher result." + ] + } + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Silverquill Pledgemage", + "source": "SCC", + "page": 214, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 13 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 13, + "int": 12, + "wis": 11, + "cha": 17, + "save": { + "dex": "+5", + "wis": "+2", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "performance": "+7", + "persuasion": "+7" + }, + "passive": 10, + "languages": [ + "Common plus any two languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pledgemage casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "daily": { + "1e": [ + "{@spell command}", + "{@spell confusion}", + "{@spell mage armor}", + "{@spell tongues}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Ink Blade", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}5 ({@damage 1d8 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Demotivate (2/Day)", + "entries": [ + "The pledgemage hurls magical insults at one creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} of the pledgemage for 1 minute. While {@condition frightened} in this way, the target can't take reactions, its speed is halved, and any hit the pledgemage scores against the creature is a critical hit. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "reaction": [ + { + "name": "Rousing Verse", + "entries": [ + "When a creature the pledgemage can see within 30 feet of it fails a saving throw, the pledgemage magically weaves together stirring prose, allowing the creature to reroll the saving throw and use the higher result." + ] + } + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Silverquill Professor of Radiance", + "source": "SCC", + "page": 215, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 16, + "wis": 13, + "cha": 19, + "save": { + "dex": "+5", + "int": "+6", + "wis": "+4", + "cha": "+7" + }, + "skill": { + "arcana": "+6", + "deception": "+7", + "performance": "+10", + "persuasion": "+10" + }, + "passive": 11, + "resist": [ + "radiant" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "daily": { + "2e": [ + "{@spell bless}", + "{@spell command}", + "{@spell cure wounds}", + "{@spell daylight}", + "{@spell mage armor}" + ], + "1e": [ + "{@spell hypnotic pattern}", + "{@spell tongues}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Radiant Strike attacks. The professor can replace one of the attacks with a use of Spellcasting." + ] + }, + { + "name": "Radiant Strike", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) radiant damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw be {@condition blinded} until the end of its next turn." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "R" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Silverquill Professor of Shadow", + "source": "SCC", + "page": 215, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 14, + "int": 16, + "wis": 13, + "cha": 19, + "save": { + "dex": "+5", + "int": "+6", + "wis": "+4", + "cha": "+7" + }, + "skill": { + "arcana": "+6", + "deception": "+10", + "persuasion": "+7", + "stealth": "+5" + }, + "senses": [ + "darkvision 300 ft." + ], + "passive": 11, + "resist": [ + "necrotic" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "daily": { + "2e": [ + "{@spell bane}", + "{@spell command}", + "{@spell darkness}", + "{@spell mage armor}" + ], + "1e": [ + "{@spell tongues}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the professor's darkvision." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Ink Lance attacks. The professor can replace one of the attacks with a use of Spellcasting." + ] + }, + { + "name": "Ink Lance", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) necrotic damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw be {@condition blinded} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Devil's Sight" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Spirit Statue Mascot", + "source": "SCC", + "page": 216, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 9, + "con": 15, + "int": 12, + "wis": 13, + "cha": 8, + "skill": { + "arcana": "+5", + "history": "+5", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "any languages it knew in life" + ], + "cr": "1/4", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the spirit statue is reduced to 0 hit points, the statue crumbles, and the spirit returns to the afterlife in a burst of ghostly white flame. Each creature within 5 feet of it must succeed on a {@dc 12} Constitution saving throw or take 3 ({@damage 1d6}) radiant damage." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Counsel of the Past (2/Day)", + "entries": [ + "The spirit statue touches one creature. Once within the next 10 minutes, that creature can roll a {@dice d4} and add the number rolled to one ability check of its choice, immediately after rolling the {@dice d20}." + ] + } + ], + "familiar": true, + "traitTags": [ + "Death Burst" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "R" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Strixhaven Campus Guide", + "source": "SCC", + "page": 217, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 13, + "int": 10, + "wis": 12, + "cha": 12, + "save": { + "dex": "+4" + }, + "skill": { + "insight": "+3", + "persuasion": "+3" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Common plus any three languages" + ], + "cr": "1", + "trait": [ + { + "name": "Campus Knowledge", + "entries": [ + "While at Strixhaven, the guide can't become lost by magical or nonmagical means. The guide also has advantage on ability checks made to locate creatures or objects at Strixhaven." + ] + }, + { + "name": "Univocal Speech", + "entries": [ + "When the guide speaks, any creature that knows at least one language and can hear the guide understands what it says." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The guide doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The guide makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ] + }, + { + "name": "Smile and Wave", + "entries": [ + "Each creature of the guide's choice that is within 30 feet of the guide must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition charmed} by the guide for 1 hour.", + "A {@condition charmed} target must move on its turn toward the guide, trying to get within 5 feet of the guide. The target doesn't move into obviously dangerous ground, such as a fire or a pit. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success.", + "A target that successfully saves is immune to any guide's Smile and Wave ability for the next 24 hours." + ] + } + ], + "bonus": [ + { + "name": "Need Directions", + "entries": [ + "The guide takes the Help action." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tanazir Quandrix", + "isNamedCreature": true, + "source": "SCC", + "page": 218, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 28, + "dex": 14, + "con": 27, + "int": 28, + "wis": 18, + "cha": 17, + "save": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+10" + }, + "skill": { + "arcana": "+23", + "investigation": "+23", + "nature": "+16", + "perception": "+18" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 28, + "immune": [ + "force", + "psychic" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "24", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tanazir casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 24}):" + ], + "daily": { + "1e": [ + "{@spell divination}", + "{@spell enlarge/reduce}", + "{@spell mirage arcane} (as an action)", + "{@spell polymorph}", + "{@spell scrying} (as an action)", + "{@spell seeming}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Tanazir fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tanazir makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}14 ({@damage 1d10 + 9}) piercing damage plus 7 ({@damage 2d6}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage. If the target is a creature, it is addled by recursive thoughts, reducing its speed to 0 until the start of Tanazir's next turn." + ] + }, + { + "name": "Diminution Breath {@recharge 5}", + "entries": [ + "Tanazir exhales a weakening equation in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 45 ({@damage 13d6}) force damage and 45 ({@damage 13d6}) psychic damage and is weakened until the start of Tanazir's next turn. While weakened, it has disadvantage on the following rolls that rely on Strength: attack rolls, ability checks, and saving throws. On a successful save, a creature takes half as much damage and isn't weakened." + ] + }, + { + "name": "Teleport", + "entries": [ + "Tanazir teleports to an unoccupied space she can see within 100 feet of herself." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "Tanazir makes one Claw attack." + ] + }, + { + "name": "Fold Space (Costs 2 Actions)", + "entries": [ + "Tanazir uses Teleport, and each other creature within 20 feet of the space she left must succeed on a {@dc 24} Strength saving throw or be pulled up to 30 feet closer to the center of that space and take 16 ({@damage 3d10}) force damage." + ] + }, + { + "name": "Fractal Refraction (Costs 3 Actions)", + "entries": [ + "Tanazir magically summons {@dice 1d4} {@creature fractal mascot|SCC|fractal mascots} in unoccupied spaces she can see within 120 feet of herself. The fractals obey her commands and take their turns immediately after hers. While any of these fractals remain, attack rolls made against Tanazir have disadvantage. A summoned fractal disappears after 1 minute, when it or Tanazir dies, or when she uses this action again." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Teleport" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Velomachus Lorehold", + "isNamedCreature": true, + "source": "SCC", + "page": 219, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 487, + "formula": "25d20 + 225" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 30, + "dex": 14, + "con": 29, + "int": 30, + "wis": 20, + "cha": 18, + "save": { + "dex": "+10", + "con": "+17", + "wis": "+13", + "cha": "+12" + }, + "skill": { + "arcana": "+18", + "history": "+18", + "investigation": "+18", + "perception": "+13" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 23, + "immune": [ + "thunder" + ], + "languages": [ + "all" + ], + "cr": "25", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Velomachus casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell contact other plane} (as an action, contacting a long-dead spirit)", + "{@spell divination}", + "{@spell move earth}", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Velomachus fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Velomachus makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}15 ({@damage 1d10 + 10}) piercing damage plus 6 ({@damage 1d12}) thunder damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}13 ({@damage 1d6 + 10}) slashing damage. If the target is a Huge or smaller creature, it is knocked {@condition prone}." + ] + }, + { + "name": "Battle Tide Breath {@recharge 5}", + "entries": [ + "Velomachus exhales thunderous sound in a 90-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failure, a creature takes 45 ({@damage 7d12}) force damage and 45 ({@damage 7d12}) thunder damage and is pushed up to 20 feet in a horizontal direction of Velomachus' choice. On a success, the creature takes half as much damage and isn't pushed. Objects that aren't being worn or carried take the damage and are pushed as if they were creatures that failed the saving throw." + ] + } + ], + "legendary": [ + { + "name": "Claw", + "entries": [ + "Velomachus makes one Claw attack." + ] + }, + { + "name": "Chaotic Flow (Costs 2 Actions)", + "entries": [ + "Velomachus moves up to half her flying speed. If a creature hits or misses her with an opportunity attack during this move, the attacker takes 19 ({@damage 3d12}) thunder damage." + ] + }, + { + "name": "Repeating History (Costs 3 Actions)", + "entries": [ + "Velomachus magically summons {@dice 1d4} {@creature spirit statue mascot|SCC|statue mascots} in unoccupied spaces she can see within 60 feet of herself. The spirit statues obey her commands and take their turns immediately after hers. Any creature, other than a spirit statue or Velomachus, is {@condition restrained} if it starts its turn within 5 feet of one or more of these spirit statues. This {@condition restrained} condition lasts until the end of the creature's turn. These spirit statues disappear after 10 minutes, when Velomachus dies, or when she uses this action again." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O", + "P", + "S", + "T" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Witherbloom Apprentice", + "source": "SCC", + "page": 221, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "druid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 13, + "int": 12, + "wis": 15, + "cha": 11, + "save": { + "con": "+3", + "wis": "+4" + }, + "skill": { + "medicine": "+4", + "nature": "+5", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Common plus any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "daily": { + "1e": [ + "{@spell pass without trace}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The apprentice regains 5 hit points at the start of its turn if it has at least 1 hit point." + ] + }, + { + "name": "Verdant Talisman", + "entries": [ + "At the end of a 10-minute ritual, the apprentice can touch one willing creature (including itself) and bestow upon it a small talisman imbued with magic. Upon receiving the talisman, the creature gains 10 temporary hit points, and it can add {@dice 1d6} to its initiative rolls while it wears the talisman. These benefits last for 1 hour or until the apprentice conducts another ritual to bestow another talisman. When the benefits expire, the talisman crumbles to dust." + ] + } + ], + "action": [ + { + "name": "Briar Vine", + "entries": [ + "{@atk ms} {@hit 4} to hit, reach 15 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 9 ({@damage 2d8}) poison damage. If the target is a Large or smaller creature, the apprentice can pull it up to 10 feet closer to itself." + ] + } + ], + "reaction": [ + { + "name": "Wither Burst", + "entries": [ + "When the apprentice sees a creature within 30 feet of itself drop to 0 hit points, the apprentice channels the expended life essence and targets another creature it can see within 30 feet of itself. The target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target takes 3 ({@damage 1d6}) poison damage at the start of each of its turns. The target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Witherbloom Pledgemage", + "source": "SCC", + "page": 222, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "druid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 12, + "from": [ + "15 with vociferous form" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 13, + "int": 14, + "wis": 17, + "cha": 11, + "save": { + "con": "+3", + "wis": "+5" + }, + "skill": { + "medicine": "+5", + "nature": "+6", + "perception": "+7" + }, + "passive": 17, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common plus any two languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "daily": { + "1e": [ + "{@spell death ward}", + "{@spell pass without trace}", + "{@spell speak with plants}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Regeneration", + "entries": [ + "As long as the pledgemage has at least 1 hit point remaining, the pledgemage regains 5 hit points at the start of its turn." + ] + }, + { + "name": "Verdant Talisman", + "entries": [ + "At the end of a 10-minute ritual, the pledgemage can touch one willing creature (including itself) and bestow upon it a small talisman imbued with magic. Upon receiving the talisman, the creature gains 10 temporary hit points, and it can add {@dice 1d6} to its initiative rolls while it wears the talisman. These benefits last for 1 hour or until the pledgemage conducts another ritual to bestow another talisman. When the benefits expire, the talisman crumbles to dust." + ] + } + ], + "action": [ + { + "name": "Briar Vine", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 15 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 18 ({@damage 4d8}) poison damage. If the target is a Large or smaller creature, the apprentice can pull it up to 10 feet closer to itself." + ] + } + ], + "bonus": [ + { + "name": "Vociferous Form (1/Day)", + "entries": [ + "The pledgemage transforms into an avatar of plants and shadow. While in this form, the pledgemage adds its Wisdom modifier to its AC if it isn't wearing armor or wielding a shield, and it has advantage on attack rolls against any creature missing hit points. This form lasts for 1 minute or until the pledgemage is reduced to 0 hit points." + ] + } + ], + "reaction": [ + { + "name": "Wither Burst", + "entries": [ + "When the pledgemage sees a creature within 30 feet of itself drop to 0 hit points, the pledgemage channels the expended life essence and targets another creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Constitution saving throw or become {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target takes 3 ({@damage 1d6}) poison damage at the start of each of its turns. The target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Witherbloom Professor of Decay", + "source": "SCC", + "page": 223, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "druid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 16, + "int": 16, + "wis": 19, + "cha": 13, + "save": { + "con": "+6", + "int": "+6", + "wis": "+7", + "cha": "+4" + }, + "skill": { + "arcana": "+6", + "medicine": "+7", + "nature": "+6", + "survival": "+7" + }, + "passive": 14, + "resist": [ + "necrotic" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "daily": { + "1e": [ + "{@spell antilife shell}", + "{@spell bane}", + "{@spell feign death}", + "{@spell speak with dead}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Essence Transfer (1/Day)", + "entries": [ + "The professor can cast the {@spell animate dead} spell, using Wisdom as the spellcasting ability." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Mortality Spear attacks. It can replace one of the attacks with a use of Spellcasting." + ] + }, + { + "name": "Mortality Spear", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) necrotic damage, and the target can't regain hit points until the start of the professor's next turn." + ] + }, + { + "name": "Essence Pulse {@recharge 5}", + "entries": [ + "The professor creates a life-draining vortex in a 30-foot-radius sphere centered on itself. Each creature of the professor's choice that it can see within that area must make a {@dc 15} Constitution saving throw, taking 23 ({@damage 5d8}) necrotic damage on a failed save, or half as much damage on a successful one. The professor then regains 10 hit points. An affected creature's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the creature finishes a long rest. The creature dies if its hit point maximum is reduced to 0." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "HPR" + ], + "conditionInflictSpell": [ + "blinded", + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Witherbloom Professor of Growth", + "source": "SCC", + "page": 223, + "size": [ + "S", + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "druid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 13, + "con": 16, + "int": 16, + "wis": 19, + "cha": 13, + "save": { + "con": "+6", + "int": "+6", + "wis": "+7", + "cha": "+4" + }, + "skill": { + "arcana": "+6", + "medicine": "+7", + "nature": "+6", + "survival": "+7" + }, + "passive": 14, + "resist": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The professor casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "daily": { + "1e": [ + "{@spell greater restoration}", + "{@spell lesser restoration}", + "{@spell mass cure wounds}", + "{@spell pass without trace}", + "{@spell plant growth}", + "{@spell revivify}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The professor makes two Verdant Lash attacks." + ] + }, + { + "name": "Verdant Lash", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 30 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 7 ({@damage 2d6}) poison damage, and the target must succeed on a {@dc 15} Strength saving throw or be pulled up to 10 feet closer to the professor." + ] + }, + { + "name": "Summon Nature's Avatar (Recharges after a Short or Long Rest)", + "entries": [ + "The professor magically summons a Groff. The groff appears in an unoccupied space within 60 feet of the professor, acts as the professor's ally, and takes its turns immediately after the professor's. The professor can communicate telepathically with this groff while it remains. The groff remains for 10 minutes, until it or the professor dies, or until the professor dismisses it as an action." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Y'demi", + "isNamedCreature": true, + "source": "SCC", + "page": 172, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "warlock" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "blood aegis" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 18, + "int": 20, + "wis": 12, + "cha": 12, + "save": { + "con": "+8", + "int": "+9", + "wis": "+5", + "cha": "+5" + }, + "skill": { + "deception": "+9", + "medicine": "+5", + "survival": "+5" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "exhaustion" + ], + "languages": [ + "Common plus any four languages" + ], + "cr": "9", + "trait": [ + { + "name": "Blood Aegis", + "entries": [ + "The AC of Y'demi includes her Constitution modifier while she isn't wearing armor or wielding a shield." + ] + }, + { + "name": "Oriq Mask", + "entries": [ + "Y'demi wears an Oriq mask. While wearing the mask, Y'demi can't be targeted by any divination magic or perceived through magical scrying sensors, and she adds double her proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ] + }, + { + "name": "Sanguine Sense", + "entries": [ + "While Y'demi isn't {@condition blinded}, she can see any creature that isn't an Undead or a Construct within 60 feet of itself, even through {@quickref Cover||3||total cover}, heavily obscured areas, invisibility, or any other phenomena that would prevent sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Y'demi makes two Blood Lash attacks." + ] + }, + { + "name": "Blood Lash", + "entries": [ + "{@atk ms} {@hit 9} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) necrotic damage. If the target is a creature, it can't regain hit points until the start of the Y'demi's next turn." + ] + }, + { + "name": "Blood Boil {@recharge 4}", + "entries": [ + "Y'demi chooses a point within 150 feet of itself, and a 20-foot radius sphere centered on that point fills with a burst of searing, blood-red mist. Each creature of Y'demi's choice that she can see in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) necrotic damage and is {@condition incapacitated} until the end of its next turn. On a success, a creature takes half as much damage and isn't {@condition incapacitated}. A creature dies if reduced to 0 hit points by this necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Sanguine Tentacles (1/Day)", + "entries": [ + "The blood in the copper basin disappears as tentacles of congealed blood fill a 10-foot cube centered at a point on the ground that Y'demi can see within 15 feet of her. The effect lasts for 1 minute, during which time that area is {@quickref difficult terrain||3}. Any creature entering that area for the first time on a turn or starting its turn there must succeed on a {@dc 13} Dexterity saving throw or be {@condition restrained} by the tentacles. A creature that starts its turn {@condition restrained} by the tentacles takes 10 ({@damage 3d6}) bludgeoning damage. A creature {@condition restrained} by the tentacles can use its action to make either a {@dc 13} Strength ({@skill Athletics}) check or a {@dc 13} Dexterity ({@skill Acrobatics}) check, ending the {@condition restrained} condition on itself on a success." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "conditionInflict": [ + "incapacitated", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Expert", + "source": "SDW", + "level": 9, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "expert", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 18, + "con": 12, + "int": 14, + "wis": 10, + "cha": 14, + "save": { + "dex": "+8" + }, + "skill": { + "acrobatics": "+12", + "performance": "+6", + "persuasion": "+6", + "sleight of hand": "+8", + "stealth": "+12" + }, + "passive": 10, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Helpful", + "entries": [ + "The expert can take the Help action as a bonus action, and the creature who receives the help gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ] + }, + { + "name": "Evasion", + "entries": [ + "When the expert is not {@condition incapacitated} and subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it failed." + ] + }, + { + "name": "Tools", + "entries": [ + "The expert has thieves' tools and a musical instrument." + ] + } + ], + "action": [ + { + "name": "Extra Attack", + "entries": [ + "The expert can attack twice, instead of once, whenever it takes the attack action on its turn." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "shortbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Giant Shark Skeleton", + "source": "SDW", + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55" + }, + "speed": { + "walk": 20, + "swim": 50 + }, + "str": 23, + "dex": 11, + "con": 21, + "int": 1, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "cr": "5", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The giant shark skeleton has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Lhammaruntosz", + "isNpc": true, + "isNamedCreature": true, + "source": "SDW", + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 212, + "formula": "17d12 + 102" + }, + "speed": { + "walk": 40, + "fly": 80, + "swim": 40 + }, + "str": 25, + "dex": 10, + "con": 23, + "int": 16, + "wis": 15, + "cha": 19, + "save": { + "dex": "+5", + "con": "+11", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "insight": "+7", + "perception": "+12", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 22, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Lhammaruntosz's spellcasting ability is Charisma (spell save {@dc 17}). She can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell create food and water}", + "{@spell detect thoughts}", + "{@spell fog cloud}", + "{@spell speak with animals}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Lhammaruntosz is an 8th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 17}; {@hit 9} to hit with spell attacks). She has the following sorcerer spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell expeditious retreat}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell invisibility}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell protection from energy}" + ] + }, + "4": { + "slots": 2, + "spells": [ + "{@spell dimension door}", + "{@spell stoneskin}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Lhammaruntosz can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Lhammaruntosz fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Lhammaruntosz regains 5 hit points at the start of her turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Lhammaruntosz can use her Frightful Presence. She then makes three attacks: one with her bite and two with her claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Lhammaruntosz's choice that is within 120 feet of her and aware of her must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Lhammaruntosz's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "Lhammaruntosz uses one of the following breath weapons." + ] + }, + { + "name": "Lightning Breath", + "entries": [ + "Lhammaruntosz exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 19} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Repulsion Breath", + "entries": [ + "Lhammaruntosz exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 19} Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Lhammaruntosz magically polymorphs into a humanoid or beast that has a challenge rating no higher than her own, or back into her true form. She reverts to her true form if she dies. Any equipment she is wearing or carrying is absorbed or borne by the new form (Lhammaruntosz's choice).", + "In a new form, Lhammaruntosz retains her alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Her statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "Lhammaruntosz makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "Lhammaruntosz makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "Lhammaruntosz beats its wings. Each creature within 10 feet of Lhammaruntosz must succeed on a {@dc 20} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. Lhammaruntosz can then fly up to half her flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Bronze Dragon", + "source": "MM" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Regeneration" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "S", + "T" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "CS", + "I" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "deafened", + "prone" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Spellcaster (Healer)", + "source": "SDW", + "level": 9, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "spellcaster", + "tags": [ + "healer" + ], + "sidekickHidden": true + }, + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 15, + "wis": 18, + "cha": 13, + "save": { + "wis": "+8" + }, + "skill": { + "arcana": "+6", + "investigation": "+6", + "religion": "+6" + }, + "passive": 14, + "languages": [ + "Common", + "plus one of your choice" + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell protection from energy}", + "{@spell revivify}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell death ward}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell greater restoration}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Potent Cantrip", + "entries": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "incapacitated" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Spellcaster (Mage)", + "source": "SDW", + "level": 9, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "spellcaster", + "tags": [ + "mage" + ], + "sidekickHidden": true + }, + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 18, + "wis": 14, + "cha": 14, + "save": { + "wis": "+6" + }, + "skill": { + "arcana": "+8", + "investigation": "+8", + "religion": "+8" + }, + "passive": 12, + "languages": [ + "Common", + "plus one of your choice" + ], + "spellcasting": [ + { + "name": "Spellcasting (Mage)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell polymorph}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Potent Cantrip", + "entries": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "C", + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible", + "unconscious" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Warrior", + "source": "SDW", + "level": 9, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "warrior", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB|plate}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 10, + "wis": 12, + "cha": 10, + "save": { + "con": "+6" + }, + "skill": { + "athletics": "+8", + "perception": "+5", + "survival": "+5" + }, + "passive": 15, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Battle Readiness", + "entries": [ + "The warrior has advantage on initiative rolls." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "The warrior's attack rolls score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ] + }, + { + "name": "Indomitable (1/Day)", + "entries": [ + "The warriorcan reroll a saving throw that it fails, but it must use the new result." + ] + }, + { + "name": "Martial Role", + "entries": [ + "The warrior has one of the following traits of your choice:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "Attacker", + "type": "item", + "entries": [ + "The warrior gains a +2 bonus to attack rolls." + ] + }, + { + "name": "Defender", + "type": "item", + "entries": [ + "The warrior gains the Protection reaction below." + ] + } + ] + } + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "The warrior can use a bonus action on its turn to regain hit points equal to {@dice 1d10} + its level." + ] + } + ], + "action": [ + { + "name": "Extra Attack", + "entries": [ + "The warrior can attack twice, instead of once, whenever it takes the attack action on its turn." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Protection (Defender Only)", + "entries": [ + "When a creature the warrior can see attacks a target other than the warrior that is within 5 feet of the warrior, the warrior can use their reaction to impose disadvantage on the attack roll. The warrior must be wielding a shield." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Aarakocra Simulacrum", + "source": "SKT", + "page": 188, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "aarakocra" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 6, + "formula": "3d4" + }, + "speed": { + "walk": 20, + "fly": 50 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 11, + "wis": 12, + "cha": 11, + "skill": { + "perception": "+5" + }, + "passive": 15, + "languages": [ + "Auran", + "Aarakocra" + ], + "cr": "1/8", + "trait": [ + { + "name": "Dive Attack", + "entries": [ + "If the aarakocra is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 3 ({@damage 1d6}) damage to the target." + ] + }, + { + "name": "Simulacra", + "entries": [ + "When a simulacrum drops to 0 hit points or is subjected to a successful {@spell dispel magic} spell ({@dc 17}), it reverts to ice and snow and is destroyed." + ] + } + ], + "action": [ + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Summon Air Elemental", + "entries": [ + "Five aarakocra within 30 feet of each other can magically summon an air elemental. Each of the five must use its action and movement on three consecutive turns to perform an aerial dance and must maintain {@status concentration} while doing so (as if {@status concentration||concentrating} on a spell). When all five have finished their third turn of the dance, the elemental appears in an unoccupied space within 60 feet of them. It is friendly toward them and obeys their spoken commands. It remains for 1 hour, until it or all its summoners die, or until any of its summoners dismisses it as a bonus action. A summoner can't perform the dance again until it finishes a short rest. When the elemental returns to the Elemental Plane of Air, any aarakocra within 5 feet of it can return with it." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "languageTags": [ + "AU", + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Alastrah", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 197, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": "giant", + "alignment": [ + "N" + ], + "str": 14, + "languages": [ + "Giant" + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "languageTags": [ + "GI" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Augrek Brighthelm", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 247, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "dwarf", + "prefix": "Shield" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 15, + "int": 10, + "wis": 11, + "cha": 11, + "skill": { + "athletics": "+4", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Augrek has advantage on saving throws against poison." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "Sheriff's deputy Augrek guards the southwest gate of Bryn Shander and welcomes visitors to town. She has a good heart.", + "Ideal: \"You'll get farther in life with a kind word than an axe.\"", + "Bond: \"Bryn Shander is my home. It's my job to protect her.\"", + "Flaw: \"I'm head over heels in love with Sheriff Southwell. One day I hope to marry him.\"" + ] + } + ], + "action": [ + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, or 7 ({@damage 1d10 + 2}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Augrek carries ten crossbow bolts." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "warhammer|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Axe of Mirabar Soldier", + "source": "SKT", + "page": 98, + "_copy": { + "name": "Veteran", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "veteran", + "with": "soldier" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The soldier makes two battleaxe attacks. If it has a handaxe drawn, it can also make a handaxe attack." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Shortsword", + "items": { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + } + ] + } + }, + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "con": 16, + "languages": [ + "Common", + "Dwarvish" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D" + ], + "miscTags": [ + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Beldora", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 249, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 16, + "wis": 12, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+3", + "investigation": "+5", + "perception": "+5", + "persuasion": "+5" + }, + "passive": 13, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Halfling" + ], + "trait": [ + { + "name": "Roleplaying Information", + "entries": [ + "Beldora is a member of the harpers who survives using her wits and wiles. She looks like a homeless waif, but she's a survivor who shies away from material wealth.", + "Ideal: \"We should all strive to help one another\"", + "Bond: \"I'll risk my life to protect the powerless.\"", + "Flaw: \"I like lying to people. Makes life more interesting, no?\"" + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. Beldora carries ten crossbow bolts." + ] + } + ], + "reaction": [ + { + "name": "Duck and Cover", + "entries": [ + "Beldora adds 2 to her AC against one ranged attack that would hit her. To do so, Beldora must see the attacker and can't be {@condition grappled} or {@condition restrained}." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "C", + "D", + "DR", + "H" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Braxow", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 207, + "_copy": { + "name": "Stone Giant", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Chief Guh", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 140, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 9, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 160, + "formula": "10d12 + 40" + }, + "speed": { + "walk": 0 + }, + "str": 21, + "dex": 1, + "con": 19, + "int": 5, + "wis": 9, + "cha": 6, + "skill": { + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common", + "Giant", + "Goblin" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two greatclub attacks or two unarmed attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ] + }, + { + "name": "Unarmed Attack", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 3d4 + 5}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "greatclub|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "GO" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chief Kartha-Kaya", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 173, + "_copy": { + "name": "Yakfolk Warrior", + "source": "SKT", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the yakfolk", + "with": "Chief Kartha", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Chief Kartha makes two attacks, either with his flame tongue greatsword or his longbow." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Flame Tongue Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage plus 7 ({@damage 2d6}) fire damage." + ] + } + } + ] + } + }, + "hp": { + "average": 70, + "formula": "8d10 + 16" + }, + "cr": "4", + "damageTags": [ + "F", + "P", + "S" + ], + "hasToken": true + }, + { + "name": "Cinderhild", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 182, + "_copy": { + "name": "Ogre", + "source": "MM" + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 9 + ], + "int": 12, + "wis": 12, + "senses": null, + "passive": 11, + "immune": [ + "fire" + ], + "action": [ + { + "name": "Golden Pin", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Claugiyliamatar", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 96, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + } + ], + "_copy": { + "name": "Ancient Green Dragon", + "source": "MM" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Claugiyliamatar casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell druidcraft}", + "{@spell speak with animals}" + ], + "daily": { + "2e": [ + "{@spell animal messenger}", + "{@spell cure wounds}", + "{@spell dispel magic}", + "{@spell entangle}", + "{@spell invisibility}" + ], + "1e": [ + "{@spell blight}", + "{@spell legend lore} (cast as 1 action)", + "{@spell locate creature}", + "{@spell pass without trace}", + "{@spell protection from energy}", + "{@spell true seeing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "damageTagsLegendary": [], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true + }, + { + "name": "Clockwork Mule", + "source": "SKT", + "page": 162, + "_copy": { + "name": "Mule", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Maintainable", + "entries": [ + "Repairing 1 hit point of damage to the clockwork mule takes 1 hour and requires replacement parts, which can be bought in a large city for 20 gp. If the mule drops to 0 hit points, it is destroyed and unrepairable." + ] + } + } + } + }, + "type": "construct", + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "hasToken": true + }, + { + "name": "Cog", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 209, + "_copy": { + "name": "Hill Giant", + "source": "MM" + }, + "ac": [ + { + "ac": 15, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hasToken": true + }, + { + "name": "Count Thullen", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 198, + "_copy": { + "name": "Cloud Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Thullen", + "flags": "i" + }, + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Spellcasting", + "headerEntries": [ + "Thullen is a 9th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell mending}", + "{@spell produce flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}", + "{@spell gust of wind}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell conjure animals}", + "{@spell speak with plants}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell freedom of movement}", + "{@spell grasping vine}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell conjure elemental}" + ] + } + }, + "ability": "wis" + } + } + } + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + }, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "int": 14, + "languages": [ + "Common", + "Draconic", + "Druidic", + "Giant" + ], + "cr": "10", + "languageTags": [ + "C", + "DR", + "DU", + "GI" + ], + "damageTagsSpell": [ + "F", + "L", + "T" + ], + "spellcastingTags": [ + "CD", + "I" + ], + "hasToken": true + }, + { + "name": "Countess Sansuri", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 192, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 40 + }, + "str": 27, + "dex": 10, + "con": 22, + "int": 16, + "wis": 16, + "cha": 16, + "save": { + "con": "+10", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "insight": "+7", + "perception": "+7" + }, + "passive": 17, + "languages": [ + "Auran", + "Common", + "Giant" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sansuri's innate spellcasting ability is Charisma. She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "daily": { + "3e": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell control weather}", + "{@spell gaseous form}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sansuri casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}; {@hit 7} to hit with spell attacks):" + ], + "will": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "daily": { + "2e": [ + "{@spell arcane lock}", + "{@spell gust of wind}", + "{@spell invisibility}", + "{@spell magic missile}", + "{@spell unseen servant}" + ], + "1e": [ + "{@spell globe of invulnerability}", + "{@spell haste}", + "{@spell hypnotic pattern}", + "{@spell ice storm}", + "{@spell lightning bolt}", + "{@spell Mordenkainen's sword}", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "Sansuri has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Fling", + "entries": [ + "Sansuri tries to throw a Small or Medium creature within 10 feet of her. The target must succeed on a {@dc 20} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of Sansuri's choice and land {@condition prone}, taking {@damage 1d8} bludgeoning damage for every 10 feet it was thrown." + ] + }, + { + "name": "Wind Aura", + "entries": [ + "A magical aura of wind surrounds Sansuri. The aura is a 10-foot-radius sphere that lasts as long as Sansuri maintains {@status concentration} on it (as if {@status concentration||concentrating} on a spell). While the aura is in effect, Sansuri gains a +2 bonus to its AC against ranged weapon attacks, and all open flames within the aura are extinguished unless they are magical." + ] + }, + { + "name": "Multiattack", + "entries": [ + "Sansuri makes two spear attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "L", + "O" + ], + "spellcastingTags": [ + "I", + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Crag Cat", + "source": "SKT", + "page": 240, + "otherSources": [ + { + "source": "IDRotF" + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 34, + "formula": "4d10 + 12" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 16, + "dex": 17, + "con": 16, + "int": 4, + "wis": 14, + "cha": 8, + "skill": { + "stealth": "+7", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "cr": "1", + "trait": [ + { + "name": "Nondetection", + "entries": [ + "The cat cannot be targeted or detected by any divination magic or perceived through magical scrying sensors." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the cat moves at least 20 feet straight toward a creature then hits it with a claw attack on the same turn, that target must succeed on a DC13 Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the cat can make one bite attack against it as a bonus action." + ] + }, + { + "name": "Spell Turning", + "entries": [ + "The cat has advantage on saving throws against any spell that targets only the cat (not an area). If the cat's saving throw succeeds and the spell is of 7th level or lower, the spell has no effect on the cat and instead targets the caster." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + } + ], + "traitTags": [ + "Pounce" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cressaro", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 193, + "_copy": { + "name": "Cloud Giant", + "source": "MM" + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item bracers of defense}" + ] + } + ], + "hasToken": true + }, + { + "name": "Cryovain", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 165, + "_copy": { + "name": "Adult White Dragon", + "source": "MM" + }, + "damageTagsLegendary": [], + "conditionInflictLegendary": [], + "hasToken": true + }, + { + "name": "Darathra Shendrel", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 253, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Chondathan" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 14, + "int": 11, + "wis": 11, + "cha": 15, + "skill": { + "history": "+2", + "intimidation": "+4", + "investigation": "+2", + "perception": "+2", + "persuasion": "+4" + }, + "passive": 12, + "languages": [ + "Common" + ], + "trait": [ + { + "name": "Brave", + "entries": [ + "Darathra has advantage on saving throws against being {@condition frightened}" + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "As the Lord Protector of Triboar and a secret agent of the Harpers, Darathra has sworn an oath to defend the town. She takes her duty very seriously. In addition to her gear, Darathra has an unarmored warhorse named Buster.", + "Ideal: \"Good people should be given every chance to prosper, free of tyranny.\"", + "Bond: \"I'll lay down my life to protect Triboar and its citizens.\"", + "Flaw: \"I refuse to back down. Push me, and I'll push back.\"" + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Darthra makes two melee attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage" + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Darathra carries twenty crossbow bolts." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "heavy crossbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Darz Helgar", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 253, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 15, + "con": 12, + "int": 10, + "wis": 11, + "cha": 11, + "skill": { + "intimidation": "+2", + "sleight of hand": "+4", + "stealth": "+4" + }, + "passive": 10, + "languages": [ + "Common" + ], + "trait": [ + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Darz deals an extra 7 ({@damage 2d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Darz that isn't {@condition incapacitated} and Darz doesn't have disadvantage on the attack roll." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "In his youth, Darz was a member of the Xanathar Thieves' Guild in Waterdeep. After serving ten years in prison for his crimes, he cut all ties to the city and moved north to be a campground caretaker.", + "Ideal: \"You can run from your past, but you can't hide from it.\"", + "Bond: \"I've made a new life in Triboar. I'm not gonna run away this time. \"", + "Flaw: \"I have no regrets. I do whatever it takes to survive.\"" + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Darz carries twenty sling stones." + ] + } + ], + "attachedItems": [ + "shortsword|phb", + "sling|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deadstone Cleft Stone Giant", + "source": "SKT", + "page": 146, + "_copy": { + "name": "Stone Giant", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Olach Morrah", + "entries": [ + "The giant meditates for 1 hour, during which time it can do nothing else. At the end of the hour, provided the giant's meditation has been uninterrupted, it becomes {@condition petrified} for 8 hours. At the end of this time, the giant is no longer petrified and gains tremorsense out to a range of 30 feet, as well as a measure of innate spellcasting ability for the next 24 hours." + ] + } + } + } + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 30 ft." + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell meld into stone}", + "{@spell stone shape}" + ], + "1e": [ + "{@spell stoneskin}", + "{@spell time stop}" + ] + }, + "ability": "wis" + } + ], + "senseTags": [ + "D", + "T" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Duchess Brimskarda", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 185, + "_copy": { + "name": "Fire Giant", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Brimskarda carries a {@item potion of invisibility}, which she quaffs on her first turn in combat." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Rock", + "items": { + "name": "Iron Cauldron", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + } + } + } + }, + "ac": [ + { + "ac": 16, + "from": [ + "dragon-scale dress" + ] + } + ], + "int": 14, + "languages": [ + "Common", + "Giant", + "Goblin" + ], + "languageTags": [ + "C", + "GI", + "GO" + ], + "hasToken": true + }, + { + "name": "Duke Zalto", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 184, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 221, + "formula": "13d12 + 78" + }, + "speed": { + "walk": 30 + }, + "str": 25, + "dex": 9, + "con": 23, + "int": 10, + "wis": 14, + "cha": 13, + "save": { + "dex": "+3", + "con": "+10", + "cha": "+5" + }, + "skill": { + "athletics": "+11", + "perception": "+6" + }, + "passive": 16, + "resist": [ + "lightning" + ], + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Elvish", + "Giant" + ], + "cr": "9", + "trait": [ + { + "name": "Siege Monster", + "entries": [ + "Zalto deals double damage to objects and structures." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Zalto wears a {@item ring of lightning resistance}." + ] + }, + { + "name": "Tackle", + "entries": [ + "When Zalto enters any enemy's space for the first time on a turn, the enemy must succeed on a {@dc 19} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zalto makes two maul attacks." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "traitTags": [ + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Duvessa Shane", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 248, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + 10 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 11, + "con": 10, + "int": 16, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "persuasion": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Dwarvish", + "Giant", + "Orc" + ], + "trait": [ + { + "name": "Roleplaying Information", + "entries": [ + "The daughter of a Waterdhavian trader and a tavern server, Duvessa has her mother's talent for negotiation and her father's charm. As the first woman to serve as Town Speaker of Bryn Shander, and a young one at that, she has much to prove.", + "Ideal: \"The people of Icewind Dale are survivors. They can weather any storm.\"", + "Bond: \"My mother taught me what it means to be a good leader. I won't disappoint her.\"", + "Flaw: \"I don't give an inch in any argument of conflict.\"" + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Duvessa carries only one dagger." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Duvessa adds 2 to her AC against one melee attack that would hit her. To do so, Duvessa must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C", + "D", + "GI", + "O" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eigeron's Ghost", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 129, + "_copy": { + "name": "Ghost", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Rejuvenation", + "entries": [ + "If it is destroyed, the ghost re-forms after 24 hours. To truly destroy the ghost, characters must lay Eigeron's spirit to rest by killing Blagothkus." + ] + } + }, + "action": [ + { + "mode": "removeArr", + "names": "Horrifying Visage" + }, + { + "mode": "replaceArr", + "replace": "Possession {@recharge}", + "items": { + "name": "Possession {@recharge}", + "entries": [ + "One humanoid or giant that the ghost can see within 5 feet of it must succeed on a {@dc 13} Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is {@condition incapacitated} and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends. If a creature possessed by the ghost is forcibly removed from the Eye of Annam, the ghost is expelled from its host and re-forms in the middle of this room." + ] + } + } + ] + } + }, + "size": [ + "H" + ], + "alignment": [ + "N", + "G" + ], + "hp": { + "average": 65, + "formula": "10d12" + }, + "languages": [ + "Common", + "Giant" + ], + "traitTags": [ + "Incorporeal Movement", + "Rejuvenation" + ], + "languageTags": [ + "C", + "GI" + ], + "hasToken": true + }, + { + "name": "Elister", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 154, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ] + }, + "alignment": [ + "C", + "N" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Elister is a 5th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Elister has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell guiding bolt}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell create food and water}" + ] + } + }, + "ability": "wis" + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "G", + "X" + ], + "damageTagsSpell": [ + "O", + "R" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Felbarren Dwarf", + "source": "SKT", + "page": 79, + "_copy": { + "name": "Guard", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "hasToken": true + }, + { + "name": "Felgolos", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 192, + "_copy": { + "name": "Adult Bronze Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Felgolos", + "flags": "i" + } + } + }, + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Ghelryn Foehammer", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 255, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "dwarf", + "prefix": "Shield" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item breastplate|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 7, + "con": 17, + "int": 10, + "wis": 11, + "cha": 11, + "skill": { + "athletics": "+6", + "intimidation": "+2", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Ghelryn has advantage on saving throws against poison." + ] + }, + { + "name": "Giant Slayer", + "entries": [ + "Any weapon attack that Ghelryn makes against a giant deals an extra 7 ({@damage 2d6}) damage on a hit." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "The blacksmith Ghelryn has a good heart, but he hates orcs and giants\u2014hates them with a fiery passion. He considers it the solemn duty of all dwarves to cave in their skulls!", + "Ideal: \"It is incumbent upon every dwarf to forge a legacy.\"", + "Bond: \"I stand for Clan Foehammer and all dwarvenkind.\"", + "Flaw: \"I never run from a fight, especially if it involves killing orcs or giants.\"" + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ghelryn makes two battleaxe attacks." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Raven", + "source": "SKT", + "page": 66, + "_copy": { + "name": "Giant Vulture", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "vulture", + "with": "raven" + } + } + }, + "hasToken": true + }, + { + "name": "Great Chief Halric Bonesnapper", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 89, + "_copy": { + "name": "Berserker", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the berserker", + "with": "Halric", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "hp": { + "average": 99, + "formula": "9d8 + 27" + }, + "languages": [ + "Bothii", + "Common" + ], + "action": [ + { + "name": "Greataxe +1", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage." + ] + } + ], + "attachedItems": [ + "+1 greataxe|dmg" + ], + "languageTags": [ + "C", + "OTH" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Harshnag", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 120, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 21, + "from": [ + "{@item +3 plate armor}" + ] + } + ], + "hp": { + "average": 204, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 9, + "con": 21, + "int": 9, + "wis": 10, + "cha": 12, + "save": { + "con": "+9", + "wis": "+4", + "cha": "+5" + }, + "skill": { + "athletics": "+10", + "perception": "+4" + }, + "passive": 13, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "9", + "trait": [ + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If Harshnag fails a saving throw, he can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Weighted Net", + "entries": [ + "{@atk rw} {@hit 5} to hit, ranged 20/60 ft., one Small, Medium, or Large creature. {@h}The target is {@condition restrained} until it escapes the net. Any creature can use its action to make a {@dc 17} Strength check to free itself or another creature in the net, ending the effect on a success. Dealing 15 slashing damage to the net (AC 12) destroys the net and frees the target." + ] + }, + { + "name": "Multiattack", + "entries": [ + "The giant makes two greataxe attacks." + ] + }, + { + "name": "Gurt's Greataxe", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) slashing damage, or 39 ({@damage 5d12 + 7}) slashing damage if the target is human." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "gurt's greataxe|skt" + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "conditionInflict": [ + "restrained" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hellenhild", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 207, + "_copy": { + "name": "Frost Giant", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Huge Stone Golem", + "source": "SKT", + "page": 153, + "_copy": { + "name": "Stone Golem", + "source": "MM" + }, + "size": [ + "H" + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "hasToken": true + }, + { + "name": "Hulking Crab", + "source": "SKT", + "page": 240, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24" + }, + "speed": { + "walk": 20, + "swim": 30 + }, + "str": 19, + "dex": 8, + "con": 16, + "int": 3, + "wis": 11, + "cha": 3, + "skill": { + "stealth": "+2" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 10, + "cr": "5", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The crab can breathe air and water." + ] + }, + { + "name": "Shell Camouflage", + "entries": [ + "While the crab remains motionless with its eyestalks and pincers tucked close to its body, it resembles a natural formation or a pile of detritus. A creature within 30 feet of it can discern its true nature with a successful {@dc 15} Intelligence ({@skill Nature}) check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The crab makes two attacks with its claws." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d10 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). The crab has two claws, each of which can grapple only one target" + ] + } + ], + "traitTags": [ + "Amphibious", + "Camouflage" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hydia Moonmusk", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 148, + "_copy": { + "name": "Gladiator", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gladiator", + "with": "Hydia", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "languages": [ + "Bothii", + "Common" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Ice Spider", + "source": "SKT", + "page": 127, + "_copy": { + "name": "Giant Spider", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Web {@recharge 5}", + "items": { + "name": "Icy Web {@recharge 5}", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one creature. {@h}The target is {@condition restrained} by webbing, and takes 1 cold damage at the start of each of its turns. As an action, the {@condition restrained} target can make a {@dc 12} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to poison, and psychic damage)." + ] + } + } + } + }, + "resist": [ + "cold" + ], + "damageTags": [ + "C", + "I", + "P" + ], + "hasToken": true + }, + { + "name": "Ice Spider Queen", + "source": "SKT", + "page": 128, + "_copy": { + "name": "Giant Spider", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Cold Aura", + "entries": [ + "Any creature that starts its turn within 5 feet of the spider takes 5 ({@damage 2d4}) cold damage." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Web {@recharge 5}", + "items": { + "name": "Icy Web {@recharge 5}", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one creature. {@h}The target is {@condition restrained} by webbing, and takes 2 ({@damage 1d4}) cold damage at the start of each of its turns. As an action, the {@condition restrained} target can make a {@dc 12} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to poison, and psychic damage)." + ] + } + } + } + }, + "hp": { + "average": 44, + "formula": "4d10 + 4" + }, + "resist": [ + "cold" + ], + "cr": "2", + "damageTags": [ + "C", + "I", + "P" + ], + "hasToken": true + }, + { + "name": "Imperator Uthor", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 209, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Uthor", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Uthor makes two trident attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Trident of Fish Command", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d6 + 9}) piercing damage, or ({@damage 3d8 + 9}) piercing damage if used with two hands." + ] + } + } + ] + } + }, + "hp": { + "average": 272, + "formula": "20d12 + 100" + }, + "damageTags": [ + "B", + "L", + "P" + ], + "miscTags": [ + "MW", + "RCH", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Isendraug", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 164, + "_copy": { + "name": "Adult White Dragon", + "source": "MM" + }, + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Iymrith", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 241, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 481, + "formula": "26d20 + 208" + }, + "speed": { + "walk": 40, + "burrow": 40, + "fly": 80 + }, + "str": 29, + "dex": 10, + "con": 27, + "int": 18, + "wis": 17, + "cha": 21, + "save": { + "dex": "+7", + "con": "+15", + "wis": "+10", + "cha": "+12" + }, + "skill": { + "perception": "+17", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 27, + "immune": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic", + "Giant", + "Terran" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Iymrith casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 20}):" + ], + "daily": { + "1e": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell ice storm}", + "{@spell stone shape}", + "{@spell teleport}" + ] + }, + "footerEntries": [ + "When she casts her {@spell stone shape} spell, Iymrith can shape the targeted stone into a living {@creature gargoyle} instead of altering the stone as described in the spell's description. This transformation is permanent and can't be reversed or dispelled." + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Iymrith fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Iymrith can use her Frightful Presence. She then makes three attacks: one with her bite and two with her claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 11 ({@damage 2d10}) lightning damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}18 ({@damage 2d8 + 9}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Iymrith's choice that is within 120 feet of Iymrith and aware of it must succeed on a {@dc 20} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Iymrith's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Lightning Breath {@recharge 5}", + "entries": [ + "Iymrith exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 23} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Iymrith magically polymorphs into a female {@creature storm giant} or back into her true form. She reverts to her true form if she dies. Any equipment she is wearing or carrying is absorbed or borne by the new form (Iymrith's choice).", + "In storm giant form, Iymrith retains her alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Her statistics are otherwise replaced by those of the new form." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "Iymrith makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "Iymrith makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "Iymrith beats her wings. Each creature within 15 feet of Iymrith must succeed on a {@dc 24} Dexterity saving throw or take 16 ({@damage 2d6 + 9}) bludgeoning damage and be knocked {@condition prone}. Iymrith can then fly up to half her flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Blue Dragon", + "source": "MM" + }, + "dragonCastingColor": "blue", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "GI", + "T" + ], + "damageTags": [ + "B", + "L", + "P", + "S" + ], + "damageTagsLegendary": [ + "B", + "L" + ], + "damageTagsSpell": [ + "B", + "C" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "blinded", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jarl Storvald", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 165, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "barding scraps" + ] + } + ], + "hp": { + "average": 189, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 9, + "con": 21, + "int": 9, + "wis": 16, + "cha": 16, + "save": { + "con": "+8", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "athletics": "+9", + "perception": "+6" + }, + "passive": 13, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Giant", + "Giant Owl" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Storvald casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell jump}", + "{@spell locate animals or plants}", + "{@spell locate object}", + "{@spell water breathing}", + "{@spell water walk}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Weighted Net", + "entries": [ + "{@atk rw} {@hit 5} to hit, ranged 20/60 ft., one Small, Medium, or Large creature. {@h}The target is {@condition restrained} until it escapes the net. Any creature can use its action to make a {@dc 17} Strength check to free itself or another creature in the net, ending the effect on a success. Dealing 15 slashing damage to the net (AC 12) destroys the net and frees the target." + ] + }, + { + "name": "Multiattack", + "entries": [ + "The giant makes two greataxe attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "OTH" + ], + "damageTags": [ + "B", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "conditionInflict": [ + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jasper Dimmerchasm", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 184, + "_copy": { + "name": "Veteran", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Jasper", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Jasper makes two battleaxe attacks. If he has a handaxe drawn, he can also make a handaxe attack." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Shortsword", + "items": { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + } + ] + } + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "miscTags": [ + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Kaaltar", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 197, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": "giant", + "alignment": [ + "N" + ], + "str": 14, + "languages": [ + "Giant" + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "languageTags": [ + "GI" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Kella Darkhope", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 25, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Kella", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true + }, + { + "name": "Khaspere Drylund", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 216, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Khaspere", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish" + ], + "languageTags": [ + "C", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "King Hekaton", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 222, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hp": { + "average": 330, + "formula": "20d12 + 100" + }, + "speed": { + "walk": 50, + "swim": 50 + }, + "str": 29, + "dex": 14, + "con": 20, + "int": 16, + "wis": 18, + "cha": 18, + "save": { + "str": "+14", + "con": "+10", + "wis": "+9", + "cha": "+9" + }, + "skill": { + "arcana": "+8", + "athletics": "+14", + "history": "+8", + "perception": "+9" + }, + "passive": 19, + "resist": [ + "cold" + ], + "immune": [ + "lightning", + "thunder" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell feather fall}", + "{@spell levitate}", + "{@spell light}" + ], + "daily": { + "3e": [ + "{@spell control weather}", + "{@spell water breathing}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Hekaton can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hekaton makes two broken chain attacks." + ] + }, + { + "name": "Broken Chain", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 9}) bludgeoning damage." + ] + }, + { + "name": "Ballista", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 120/480 ft., one target. {@h}18 ({@damage 3d10 + 2}) piercing damage." + ] + }, + { + "name": "Lightning Strike {@recharge 5}", + "entries": [ + "Hekaton hurls a magical lightning bolt at a point he can see within 500 feet of it. Each creature within 10 feet of that point must make a {@dc 17} Dexterity saving throw, taking 54 ({@damage 12d8}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Thunderous Stomp {@recharge}", + "entries": [ + "Hekaton stomps the ground, triggering a thunderclap. All other creatures within 15 feet of him must succeed on a {@dc 17} Constitution saving throw or take 33 ({@damage 6d10}) thunder damage and be {@condition deafened} until the start of Hekaton's next turn. On a successful save, a creature takes half as much damage and isn't {@condition deafened}. The thunderclap can be heard out to a range of 1,200 feet." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "L", + "P", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "deafened" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Klauth", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 95, + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 30, + "dex": 10, + "con": 29, + "int": 18, + "wis": 15, + "cha": 23, + "save": { + "dex": "+8", + "con": "+17", + "wis": "+10", + "cha": "+14" + }, + "skill": { + "perception": "+16", + "stealth": "+8" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 26, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "25", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Klauth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell ice storm}" + ], + "1e": [ + "{@spell banishment}", + "{@spell cloudkill}", + "{@spell disintegrate}", + "{@spell etherealness}", + "{@spell find the path} (cast as 1 action)", + "{@spell greater invisibility}", + "{@spell haste}", + "{@spell locate object}", + "{@spell mass suggestion}", + "{@spell mirage arcane} (cast as 1 action)", + "{@spell prismatic spray}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Klauth fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Dual Wand Wielder", + "entries": [ + "If Klauth is carrying two wands, he can use an action to expend 1 charge from each wand, triggering the effects of both wands simultaneously." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Klauth carries a {@item wand of fireballs} and a {@item wand of lightning bolts}, and he wears a {@item ring of cold resistance}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Klauth can use his Frightful Presence. He then makes three attacks: one with his bite and two with his claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ] + }, + { + "name": "Frightful Presence", + "entries": [ + "Each creature of Klauth's choice that is within 120 feet of Klauth and aware of him must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Klauth's Frightful Presence for the next 24 hours." + ] + }, + { + "name": "Fire Breath {@recharge 5}", + "entries": [ + "Klauth exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "Klauth makes a Wisdom ({@skill Perception}) check." + ] + }, + { + "name": "Tail Attack", + "entries": [ + "Klauth makes a tail attack." + ] + }, + { + "name": "Wing Attack (Costs 2 Actions)", + "entries": [ + "Klauth beats his wings. Each creature within 15 feet of Klauth must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. Klauth can then fly up to half his flying speed." + ] + } + ], + "legendaryGroup": { + "name": "Red Dragon", + "source": "MM" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Frightful Presence", + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "P", + "S" + ], + "damageTagsLegendary": [ + "F" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "conditionInflictLegendary": [ + "incapacitated", + "poisoned", + "prone" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "incapacitated", + "invisible", + "petrified", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Knight of the Mithral Shield", + "source": "SKT", + "page": 79, + "_copy": { + "name": "Knight", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ], + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Possessed", + "entries": [ + "While the knight is possessed by yakfolk, its alignment is lawful evil and it can speak Yikaria (the yakfolk tongue)." + ] + } + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, or 8 ({@damage 1d10 + 3}) bludgeoning damage if used with two hands." + ] + } + } + ] + } + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "hasToken": true + }, + { + "name": "Lifferlas", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 250, + "size": [ + "H" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d12 + 14" + }, + "speed": { + "walk": 20 + }, + "str": 19, + "dex": 6, + "con": 15, + "int": 10, + "wis": 10, + "cha": 7, + "passive": 10, + "resist": [ + "bludgeoning", + "piercing" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "Common" + ], + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While Lifferlas remains motionless, it is indistinguishable from a normal tree." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "A druid of the Emerald Enclave awakened the tree Lifferlas with a spell. Goldenfields is his home, its people his friends. Children like to carve their name and initials into his body and hang from his boughs, and he's happy with that.", + "Ideal: \"I exist to protect the people and plants of Goldenfields.\"", + "Bond: \"Children are wonderful. I would do anything to make them feel happy and safe.\"", + "Flaw: \"I can't remember people's names and often get them mixed up.\"" + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Lifferlas makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maegera the Dawn Titan", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 241, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "ac": [ + 16 + ], + "hp": { + "average": 341, + "formula": "22d20 + 110" + }, + "speed": { + "walk": 50 + }, + "str": 21, + "dex": 22, + "con": 20, + "int": 10, + "wis": 10, + "cha": 19, + "save": { + "con": "+12", + "wis": "+7", + "cha": "+11" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Ignan" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Maegera casts {@spell fireball} (spell save {@dc 19}), requiring no material components and using Charisma as the spellcasting ability." + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Empowered Attacks", + "entries": [ + "Maegera's slam attacks are treated as magical for the purpose of overcoming resistance and immunity to damage from nonmagical attacks." + ] + }, + { + "name": "Fire Aura", + "entries": [ + "At the start of each of Maegera's turns, each creature within 30 feet of it takes 35 ({@damage 10d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature also takes 35 ({@damage 10d6}) fire damage from touching Maegera or from hitting it with a melee attack while within 10 feet of it, and a creature takes that damage the first time on a turn that Maegera moves into its space. Nonmagical weapons that hit Maegera are destroyed by fire immediately after dealing damage to it." + ] + }, + { + "name": "Fire Form", + "entries": [ + "Maegera can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing if fire could pass through that space." + ] + }, + { + "name": "Illumination", + "entries": [ + "Maegera sheds bright light in a 120-foot radius and dim light in an additional 120 ft.." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Maegera has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Maegera makes three slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}15 ({@damage 3d6 + 5}) bludgeoning damage plus 35 ({@damage 10d6}) fire damage" + ] + } + ], + "legendary": [ + { + "name": "Quench Magic", + "entries": [ + "Maegera targets one creature that it can see within 60 feet of it. Any resistance or immunity to fire damage that the target gains from a spell or magic item is suppressed. The effect lasts until the end of Maegera's next turn." + ] + }, + { + "name": "Smoke Cloud (Costs 2 Actions)", + "entries": [ + "Maegera exhales a billowing cloud of hot smoke and embers that fills a 60 feet cube. Each creature in the area takes 11 ({@damage 2d10}) fire damage. The cloud lasts until the end of Maegera's next turn. Creatures completely in the cloud are {@condition blinded} and can't be seen." + ] + }, + { + "name": "Create Fire Elemental (Costs 3 Actions)", + "entries": [ + "Maegera's hit points are reduced by 50 as part of it separates and becomes a {@creature fire elemental} with 102 hit points. The fire element appears in an unoccupied space within 15 feet of Maegera and acts on Maegera's initiative count. Maegera can't use this action if it has 50 hit points or fewer. The fire element obeys Maegera's commands and fights until destroyed." + ] + } + ], + "traitTags": [ + "Illumination", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "IG" + ], + "damageTags": [ + "B", + "F" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Markham Southwell", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 248, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Turami" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 13, + "con": 14, + "int": 11, + "wis": 16, + "cha": 14, + "skill": { + "perception": "+5", + "survival": "+5" + }, + "passive": 16, + "languages": [ + "Common" + ], + "trait": [ + { + "name": "Roleplaying Information", + "entries": [ + "Sheriff Markham of Bryn Shander is a brawny, likable man of few words. Nothing is more important to him than protecting Icewind Dale. He judges others by their actions, not their words.", + "Ideal: \"All people deserve to be treated with dignity.\"", + "Bond: \"Duvessa is a natural leader, but she needs help. That's my job.\"", + "Flaw: \"I bury my emotions and have no interest in small talk.\"" + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Markham makes two melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage. Markham carries twenty crossbow bolts." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Miros Xelbrin", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 251, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Damaran" + } + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 10 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 11, + "wis": 12, + "cha": 14, + "skill": { + "intimidation": "+4", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "Common" + ], + "trait": [ + { + "name": "Roleplaying Information", + "entries": [ + "Innkeeper Miros is a retired carnival attraction, dubbed \"the Yeti\" because of his barrel-shaped body and the thick, white hair covering his arms, chest, back, and head. When Goldenfields suffers, so does his business, so he takes strides to protect the compound.", + "Ideal: \"As does the Emerald Enclave, I believe that civilization and the wilderness need to learn to coexist.\"", + "Bond: \"Make fun of me all you like, but don't speak ill of my inn or my employees.\"", + "Flaw: \"When something upsets me, I have a tendency to fly into a rage.\"" + ] + } + ], + "action": [ + { + "name": "Bear Hug", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage, and the target {@condition grappled} (escape {@dc 13}) and takes 5 ({@damage 1d4 + 3}) bludgeoning damage at the start of each of Miros's turns until the grapple ends. Miros cannot make attacks while grappling a creature." + ] + }, + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 1}) bludgeoning damage" + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Miros carries ten crossbow bolts." + ] + } + ], + "attachedItems": [ + "club|phb", + "heavy crossbow|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mirran", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 207, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Mirran", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "skill": { + "arcana": "+8", + "athletics": "+14", + "deception": "+9", + "history": "+8", + "perception": "+9", + "performance": "+9" + }, + "damageTags": [ + "B", + "L", + "S" + ], + "hasToken": true + }, + { + "name": "Morak Ur'gray", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 31, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "hasToken": true + }, + { + "name": "Narbeck Horn", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 114, + "_copy": { + "name": "Knight", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Narbeck", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d12 + 3}) slashing damage." + ] + } + } + } + }, + "alignment": [ + "N" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "hasToken": true + }, + { + "name": "Narth Tezrin", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 254, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Tethyrian" + } + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 10, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "insight": "+4", + "investigation": "+3", + "perception": "+6", + "persuasion": "+5" + }, + "passive": 16, + "languages": [ + "Common", + "Dwarvish" + ], + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of his turns, Narth can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "Narth sells gear to adventurers, and he also has an adventurous spirit. The Lionshield Coster pays him well, but he longs to make a name for himself. At the same time, he runs a business with his partner Alaestra and knows she wouldn't forgive him if he ran off and never returned.", + "Ideal: \"The bigger the risk, the greater the reward.\"", + "Bond: \"I adore my colleague Alestra, and I'd like to do something to impress her.\"", + "Flaw: \"I'll risk life and limb to become a legend.-\"" + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. Narth carries twenty crossbow bolts." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Naxene Drathkala", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 252, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Turami" + } + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 11, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "skill": { + "arcana": "+5", + "history": "+5" + }, + "passive": 11, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Naxene casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks):" + ], + "will": [ + "{@spell fire bolt} ({@damage 1d10} fire damage)", + "{@spell light}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell suggestion}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Roleplaying Information", + "entries": [ + "Goldenfields' crops are vital Waterdeep's survival, which is why the Watchful Order of Magists and Protectors sent Naxene to make sure the temple-farm is adequately defended. At first she regarded the task as a punishment, but now she appreciates the peace and quiet.", + "Ideal: \"There's no problem that can't be solved with magic.\"", + "Bond: \"I have great respect for Lady Laeral Silverhand of Waterdeep. She and the Lords' Alliance are going to bring some much-needed order to this lawless land.\"", + "Flaw: \"I'm too smart to be wrong about anything.\"" + ] + } + ], + "action": [ + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nimir", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 256, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Nimir", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Roleplaying Information", + "entries": [ + "Nimir is an insightful, even-keeled storm giant who believes that a lasting alliance between giants and small folk can make the world a safer, more enlightened place. He believes King Hekaton was wise to choose Princess Serissa as his heir apparent, and it would never occur to him to question their orders.", + "Ideal: \"It's the duty of the big to protect the small.\"", + "Bond: \"I'd give my life to defend my king and his royal line.\"", + "Flaw: \"I never question orders.\"" + ] + } + } + } + }, + "alignment": [ + "L", + "G" + ], + "skill": { + "athletics": "+14", + "insight": "+9", + "perception": "+9" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material spell components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell levitate}", + "{@spell light}" + ], + "daily": { + "1e": [ + "{@spell control weather} (cast as 1 action)", + "{@spell water breathing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "damageTags": [ + "B", + "L", + "S" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Noori", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 127, + "_copy": { + "name": "Berserker", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the berserker", + "with": "Noori", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "skill": { + "stealth": "+3", + "survival": "+2" + }, + "languages": [ + "Bothii", + "Common" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Nym", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 207, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Nym", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "skill": { + "arcana": "+8", + "athletics": "+14", + "deception": "+9", + "history": "+8", + "perception": "+9", + "performance": "+9" + }, + "damageTags": [ + "B", + "L", + "S" + ], + "hasToken": true + }, + { + "name": "Ogre Goblin Hucker", + "source": "SKT", + "page": 50, + "_copy": { + "name": "Ogre", + "source": "MM", + "_mod": { + "action": { + "mode": "appendArr", + "items": { + "name": "Goblin Projectile", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft. (can't hit targets within 30 feet of the hucker), one target. Hit: 5 ({@damage 2d4}) bludgeoning damage, or 10 ({@damage 4d4}) piercing damage if the projectile is wearing a spiked helmet. {@hom}The goblin projectile takes {@damage 1d6} bludgeoning damage per 10 feet it travels through the air (maximum {@damage 20d6})." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Oren Yogilvy", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 252, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "halfling", + "prefix": "Strongheart" + } + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 11 + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 25 + }, + "str": 8, + "dex": 13, + "con": 12, + "int": 11, + "wis": 10, + "cha": 16, + "skill": { + "perception": "+2", + "performance": "+7", + "persuasion": "+5" + }, + "passive": 12, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Halfling" + ], + "trait": [ + { + "name": "Halfling Nimbleness", + "entries": [ + "Oren can move through the space of any creature that is of a size larger than his." + ] + }, + { + "name": "Lucky", + "entries": [ + "When Oren rolls a 1 on an attack roll, ability check, or saving throw, he can reroll the die and must use the new roll." + ] + }, + { + "name": "Stout Resilience", + "entries": [ + "Oren has advantage on saving throws against poison" + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "Oren came to Nurthfurrow's End looking for easy work and found it. He sings for his supper, drinks like a fish, and wanders the fields at night dreaming up new lyrics to entertain the inn's other guests. Oren likes to stir up trouble from time to time, but he doesn't have a mean bone in his body.", + "Ideal: \"Music is food for the soul.\"", + "Bond: \"You had me at \"Can I buy you a drink.\"", + "Flaw: \"I have a knack for putting myself in harm's way. Good thing I'm lucky!\"" + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage. Duvessa carries only one dagger." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "H" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orlekto", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 256, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Orlekto", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Roleplaying Information", + "entries": [ + "Orlekto is in love with Princess Mirran and wants to see her become Queen of the Wyrmskull Throne. (If Mirran is dead, Orlekto aims to avenge her.) If the opportunity to eliminate Hekaton or Serissa presents itself, Orlekto seizes it. Until then, he conceals his treacherous nature.", + "Ideal: \"Storm giants should rule the world. Weak leaders have let dragons and others steal what the gods gave to us!\"", + "Bond: \"I serve Princess Mirran and her alone.\"", + "Flaw: \"For Mirran's love or my revenge, I'd betray my king and my honor.\"" + ] + } + } + } + }, + "alignment": [ + "C", + "E" + ], + "skill": { + "athletics": "+14", + "deception": "+14", + "perception": "+9" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material spell components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell levitate}", + "{@spell light}" + ], + "daily": { + "1e": [ + "{@spell control weather} (cast as 1 action)", + "{@spell water breathing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "damageTags": [ + "B", + "L", + "S" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Orok", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 115, + "_copy": { + "name": "Kobold", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the kobold", + "with": "Orok", + "flags": "i" + }, + "trait": { + "mode": "removeArr", + "names": "Sunlight Sensitivity" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "senses": null, + "languages": [ + "Bothii", + "Common" + ], + "traitTags": [ + "Pack Tactics" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Othovir", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 255, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 10, + "con": 13, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "persuasion": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Elvish" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Othovir casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks):" + ], + "will": [ + "{@spell fire bolt} ({@damage 1d10} fire damage)", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell mage armor}", + "{@spell thunderwave}", + "{@spell witch bolt}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Roleplaying Information", + "entries": [ + "Othovir is a gifted harness-maker who doesn't talk about his family or where he came from. He cares about his business, his clients, and his good name.", + "Ideal: \"Find what you do well, and do it to the best of your ability.\"", + "Bond: \"I won't allow my name to be tarnished.\"", + "Flaw: \"I get angry when others pry into my private life.\"" + ] + } + ], + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Othovir adds 2 to its AC against one melee attack that would hit him. To do so, Othovir must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F", + "L", + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pig", + "source": "SKT", + "page": 143, + "_copy": { + "name": "Boar", + "source": "MM" + }, + "hp": { + "average": 5, + "formula": "1d8 + 1" + }, + "speed": { + "walk": 30 + }, + "cr": "0", + "trait": null, + "action": null, + "traitTags": [], + "miscTags": [], + "hasToken": true + }, + { + "name": "Pow Ming", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 216, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Pow", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Pow carries a {@item bag of holding} and wears a {@item robe of serpents|skt} with six snakes." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Pow is a 9th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Pow has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Princess Serissa", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 209, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Serissa", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Serissa makes two maul attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}30 ({@damage 6d6 + 9}) bludgeoning damage." + ] + } + } + ] + } + }, + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 200, + "formula": "20d12 + 100" + }, + "damageTags": [ + "B", + "L" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Purple Wormling", + "source": "SKT", + "page": 242, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15" + }, + "speed": { + "walk": 20 + }, + "str": 16, + "dex": 7, + "con": 16, + "int": 1, + "wis": 6, + "cha": 2, + "senses": [ + "blindsight 30 ft.", + "tremorsense 30 ft." + ], + "passive": 8, + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wormling makes two attacks: one with its bite and one with its stinger." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 5}) piercing damage. If the target is a Small or smaller creature, it must succeed on a {@dc 13} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the wormling, and it takes 3 ({@damage 1d6}) acid damage at the start of each of the wormling's turns.", + "If the wormling takes 10 damage or more on a single turn from a creature inside it, the wormling must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the wormling. If the wormling dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 5 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tail Stinger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must make a {@dc 13} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Rool", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 221, + "_copy": { + "name": "Assassin", + "source": "MM", + "_templates": [ + { + "name": "Half-Orc", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Rool", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "O", + "TC", + "X" + ], + "hasToken": true + }, + { + "name": "Sea Elf", + "source": "SKT", + "page": 70, + "_copy": { + "name": "Merfolk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "merfolk", + "with": "sea elf", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Fey Ancestry", + "entries": [ + "The sea elf has advantage on saving throws against being {@condition charmed}, and magic can't put the sea elf to sleep." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "G" + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traitTags": [ + "Amphibious", + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "hasToken": true + }, + { + "name": "Shaldoor", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 256, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Shaldoor", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Roleplaying Information", + "entries": [ + "A skilled rider of rocs and whales, Shaldoor believes that Annam the All-Father shattered the ordning to push giants into war against the dragons. She is thrilled to be on the front lines in this great conflict!", + "Ideal: \"Giants are made for war\u2014storm giants most of all!\"", + "Bond: \"Ostoria is gone, yet I long for the return of a mighty giant empire.\"", + "Flaw: \"I like to rain destruction down upon my enemies, and I never show them mercy.\"" + ] + } + } + } + }, + "alignment": [ + "C", + "G" + ], + "skill": { + "animal handling": "+9", + "athletics": "+14", + "perception": "+9" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material spell components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell levitate}", + "{@spell light}" + ], + "daily": { + "1e": [ + "{@spell control weather} (cast as 1 action)", + "{@spell water breathing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "damageTags": [ + "B", + "L", + "S" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Shalvus Martholio", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 250, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Turami" + } + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 10, + "int": 12, + "wis": 14, + "cha": 14, + "skill": { + "deception": "+4", + "insight": "+4", + "investigation": "+3", + "perception": "+4", + "sleight of hand": "+4", + "stealth": "+4" + }, + "passive": 12, + "languages": [ + "Common", + "Elvish" + ], + "trait": [ + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Shalvus deals an extra 7 ({@damage 2d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Shalvus that isn't {@condition incapacitated} and Shalvus doesn't have disadvantage on the attack roll." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "Nalaskur Thaelond of Bargewright Inn has entrusted the shepherd Shalvus with an important assignment: to figure out the best way by which Goldenfields can be brought under the Black Network's control. Shalvus believes that success will ensure his swift rise through the Zhentarim ranks.", + "Ideal: \"I'll do what it takes to prove myself to the Zhentarim.\"", + "Bond: \"I love animals, and I'm very protective of them.\"", + "Flaw: \"I can't resist taking risks to feed my ambitions.\"" + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with both hands." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. Shalvus carries ten crossbow bolts." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "quarterstaff|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sharda", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 103, + "_copy": { + "name": "Cult Fanatic", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the fanatic", + "with": "Sharda", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Dagger", + "items": { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + } + ] + } + }, + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "languages": [ + "Common", + "Terran" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Sheep", + "source": "SKT", + "page": 142, + "_copy": { + "name": "Goat", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "goat", + "with": "sheep", + "flags": "i" + }, + "trait": { + "mode": "removeArr", + "names": "Charge" + } + } + }, + "size": [ + "S" + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 30 + }, + "action": null, + "traitTags": [], + "miscTags": [], + "hasToken": true + }, + { + "name": "Shield Dwarf Guard", + "source": "SKT", + "page": 78, + "_copy": { + "name": "Guard", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "action": [ + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) bludgeoning damage, or 6 ({@damage 1d10 + 1}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "warhammer|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Shield Dwarf Noble", + "source": "SKT", + "page": 78, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "action": [ + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) bludgeoning damage, or 6 ({@damage 1d10 + 1}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "warhammer|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Sir Baric Nylef", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 249, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 14, + "int": 11, + "wis": 15, + "cha": 15, + "skill": { + "insight": "+4", + "investigation": "+2", + "medicine": "+4", + "survival": "+4" + }, + "passive": 12, + "languages": [ + "Common" + ], + "trait": [ + { + "name": "Brave", + "entries": [ + "Baric has advantage on saving throws against being {@condition frightened}." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "As a knight of the Order of the Gauntlet, Sir Baric has sworn oaths to catch evildoers and bring them to justice. His current quarry is a dwarf brigand, Worvil \"the Weevil\" Forkbeard, who is rumored to be hiding in Icewind Dale. In addition to his gear, Sir Baric has an unarmored warhorse, Henry.", + "Ideal: \"Evil must not be allowed to thrive in this world.\"", + "Bond: \"Tyr is my lord; the order, my family. Through my actions, I shall honor both.\"", + "Flaw: \"I'm not afraid to die. When Tyr finally calls me, I'll go to him happily.\"" + ] + } + ], + "action": [ + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Baric carries twenty crossbow bolts." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "maul|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sirac of Suzail", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 247, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Chondathan" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 17, + "con": 11, + "int": 12, + "wis": 13, + "cha": 16, + "skill": { + "athletics": "+4", + "insight": "+3", + "survival": "+3" + }, + "passive": 11, + "languages": [ + "Common", + "Orc" + ], + "trait": [ + { + "name": "Roleplaying Information", + "entries": [ + "An acolyte of Torm, Sirac grew up on the streets of Suzail, the capital of Cormyr. He came to Icewind Dale to become a knucklehead trout fisher but instead found religion. The misbegotten son of Artus Cimber, a renowned human adventurer, Sirac hasn't seen his father since he was a baby.", + "Ideal: \"Without duty or loyalty, a man is nothing.\"", + "Bond: \"Icewind Dale is where i belong for the rest of my life.\"", + "Flaw: \"I am honest to a fault.\"" + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. Sirac carries six darts." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Sirac adds 2 to his AC against on melee attack that would hit him. To do so, Sirac must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "dart|phb", + "shortsword|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Slarkrethel", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 224, + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "titan" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 472, + "formula": "27d20 + 189" + }, + "speed": { + "walk": 20, + "swim": 60 + }, + "str": 30, + "dex": 11, + "con": 25, + "int": 22, + "wis": 18, + "cha": 20, + "save": { + "str": "+18", + "dex": "+8", + "con": "+15", + "int": "+14", + "wis": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 14, + "immune": [ + "lightning", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "frightened", + "paralyzed" + ], + "languages": [ + "understands Abyssal", + "Celestial", + "Infernal", + "and Primordial but can't speak", + "telepathy 120 ft." + ], + "cr": "25", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Slarkrethel casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell sending}" + ], + "daily": { + "2e": [ + "{@spell control weather} (cast as 1 action)", + "{@spell fly}", + "{@spell ice storm}" + ], + "1e": [ + "{@spell arcane eye}", + "{@spell chain lightning}", + "{@spell feeblemind}", + "{@spell foresight}", + "{@spell locate creature}", + "{@spell mass suggestion}", + "{@spell nondetection}", + "{@spell power word kill}", + "{@spell scrying} (cast as 1 action)", + "{@spell sequester}", + "{@spell telekinesis}", + "{@spell teleport}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Slarkrethel fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Amphibious", + "entries": [ + "Slarkrethel can breathe air and water." + ] + }, + { + "name": "Freedom of Movement", + "entries": [ + "Slarkrethel ignores {@quickref difficult terrain||3}, and magical effects can't reduce its speed or cause it to be {@condition restrained}. It can spend 5 feet of movement to escape from nonmagical restraints or being {@condition grappled}." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "Slarkrethel deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Slarkrethel makes three tentacle attacks, each of which it can replace with one use of Fling." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d8 + 10}) piercing damage. If the target is a Large or smaller creature {@condition grappled} by Slarkrethel, that creature is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside Slarkrethel, and it takes 42 ({@damage 12d6}) acid damage at the start of each of Slarkrethel's turns. If Slarkrethel takes 50 damage or more on a single turn from a creature inside it, Slarkrethel must succeed on a {@dc 25} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of Slarkrethel. If Slarkrethel dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 15 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 30 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}. Slarkrethel has ten tentacles, each of which can grapple one target." + ] + }, + { + "name": "Fling", + "entries": [ + "One Large or smaller object held or creature {@condition grappled} by Slarkrethel is thrown up to 60 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 18} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ] + }, + { + "name": "Lightning Storm", + "entries": [ + "Slarkrethel magically creates three bolts of lightning, each of which can strike a target Slarkrethel can see within 120 feet of it. A target must make a {@dc 23} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Tentacle Attack or Fling", + "entries": [ + "Slarkrethel makes one tentacle attack or uses its Fling." + ] + }, + { + "name": "Lightning Storm (Costs 2 Actions)", + "entries": [ + "Slarkrethel uses Lightning Storm." + ] + }, + { + "name": "Ink Cloud (Costs 3 Actions)", + "entries": [ + "While underwater, Slarkrethel expels an ink cloud in a 60-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than Slarkrethel. Each creature other than Slarkrethel that ends its turn there must succeed on a {@dc 23} Constitution saving throw, taking 16 ({@damage 3d10}) poison damage on a failed save, or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of Slarkrethel's next turn." + ] + } + ], + "legendaryGroup": { + "name": "Kraken", + "source": "MM" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Swallow", + "Tentacles" + ], + "languageTags": [ + "AB", + "CE", + "CS", + "I", + "P", + "TP" + ], + "damageTags": [ + "A", + "B", + "I", + "L", + "P" + ], + "damageTagsLegendary": [ + "L" + ], + "damageTagsSpell": [ + "B", + "C", + "L", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "prone", + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "invisible", + "petrified", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Giant Statue", + "source": "SKT", + "page": 127, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "giant", + "with": "golem" + } + } + }, + "size": [ + "H" + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "languages": null, + "cr": "0", + "action": null, + "actionTags": [], + "languageTags": [], + "miscTags": [], + "hasToken": true + }, + { + "name": "Tartha", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 207, + "_copy": { + "name": "Fire Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Tartha", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Tau", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 103, + "_copy": { + "name": "Cult Fanatic", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the fanatic", + "with": "Tau", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Dagger", + "items": { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + } + ] + } + }, + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Shou" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "languages": [ + "Common", + "Terran" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Thane Kayalithica", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 153, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 170, + "formula": "11d12 + 55" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 15, + "con": 20, + "int": 10, + "wis": 12, + "cha": 14, + "save": { + "dex": "+5", + "con": "+8", + "wis": "+4" + }, + "skill": { + "athletics": "+12", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Giant" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "3e": [ + "{@spell meld into stone}", + "{@spell stone shape}" + ], + "1e": [ + "{@spell stoneskin}", + "{@spell time stop}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Stone Camouflage", + "entries": [ + "The giant has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + }, + { + "name": "Olach Morrah", + "entries": [ + "The giant meditates for 1 hour, during which time it can do nothing else. At the end of the hour, provided the giant's meditation has been uninterrupted, it becomes {@condition petrified} for 8 hours. At the end of this time, the giant is no longer {@condition petrified} and gains tremorsense out to a range of 30 feet, as well as a measure of innate spellcasting ability for the next 24 hours." + ] + } + ], + "action": [ + { + "name": "Fling", + "entries": [ + "The giant tries to throw a Small or Medium creature within 10 feet of it. The target must succeed on a {@dc 17} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of the giant's choice. and land {@condition prone}, taking {@damage 1d6} bludgeoning damage for every 10 feet it was thrown." + ] + }, + { + "name": "Rolling Rock", + "entries": [ + "The giant sends a rock tumbling along the ground in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 17} Dexterity saving throw, taking 22 ({@damage 3d10 + 6}) bludgeoning damage and falling {@condition prone} on a failed save" + ] + }, + { + "name": "Multiattack", + "entries": [ + "The giant makes two adamantine greatclub attacks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Rock Catching", + "entries": [ + "If a rock or similar object is hurled at the giant, the giant can, with a successful {@dc 10} Dexterity saving throw, catch the missile and take no bludgeoning damage from it." + ] + } + ], + "attachedItems": [ + "greatclub|phb" + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Weevil", + "shortName": true, + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 114, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "captain", + "with": "Weevil" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The Weevil makes three melee attacks with his handaxes. Or the Weevil makes two ranged attacks with his handaxes." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Scimitar", + "items": { + "name": "Handaxe +1", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 4}) slashing damage." + ] + } + }, + { + "mode": "removeArr", + "names": "Dagger" + } + ] + } + }, + "alignment": [ + "N", + "E" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "D", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Tholtz Daggerdark", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 221, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Tholtz" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true + }, + { + "name": "Thunderbeast Skeleton", + "source": "SKT", + "page": 99, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d12 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 11, + "con": 15, + "int": 2, + "wis": 12, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "poisoned", + "exhaustion" + ], + "cr": "3", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., {@h}18 ({@damage 4d6 + 4}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@hit 7} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) bludgeoning damage. Succeed on a DC14 Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true + }, + { + "name": "Tressym", + "source": "SKT", + "page": 242, + "otherSources": [ + { + "source": "IMR" + } + ], + "size": [ + "T" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 5, + "formula": "2d4" + }, + "speed": { + "walk": 40, + "climb": 30, + "fly": 40 + }, + "str": 3, + "dex": 15, + "con": 10, + "int": 11, + "wis": 12, + "cha": 12, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "0", + "trait": [ + { + "name": "Detect Invisibility", + "entries": [ + "Within 60 feet of the tressym, magical invisibility fails to conceal anything from the tressym's sight." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The tressym has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Poison Sense", + "entries": [ + "The tressym can detect whether a substance is poisonous by taste, touch, or smell." + ] + }, + { + "name": "Familiar", + "entries": [ + "With the DM's permission, a person who casts the {@spell find familiar} spell can choose to conjure a tressym instead of a normal cat." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + } + ], + "familiar": true, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tug", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 209, + "_copy": { + "name": "Hill Giant", + "source": "MM" + }, + "ac": [ + { + "ac": 15, + "from": [ + "{@item scale mail|phb}" + ] + } + ], + "hasToken": true + }, + { + "name": "Turlang", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 107, + "_copy": { + "name": "Treant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the treant", + "with": "Turlang" + } + } + }, + "hp": { + "average": 200, + "formula": "12d12 + 60" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Turlang casts one of the following spells, requiring no material spell components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell resistance}", + "{@spell speak with plants}" + ], + "daily": { + "2e": [ + "{@spell animal messenger}", + "{@spell detect magic}", + "{@spell entangle}", + "{@spell goodberry}", + "{@spell gust of wind}", + "{@spell pass without trace}", + "{@spell speak with animals}" + ], + "1e": [ + "{@spell commune with nature} (cast as 1 action)", + "{@spell conjure woodland beings}", + "{@spell hallucinatory terrain} (cast as 1 action)" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Urgala Meltimer", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 254, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Turami" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 12, + "wis": 14, + "cha": 13, + "skill": { + "athletics": "+5", + "intimidation": "+3" + }, + "passive": 12, + "languages": [ + "Common", + "Giant" + ], + "trait": [ + { + "name": "Giant Slayer", + "entries": [ + "Any weapon attack that Urgala makes against a giant deals an extra 7 ({@damage 2d6}) damage on a hit." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "A retired adventurer, Urgala owns a respectable inn, the North shield House, and she doesn't want to see it or her neighbors' homes destroyed. She has no tolerance for monsters or bullies.", + "Ideal: \"We live in a violent world, and sometimes violence is necessary for survival.\"", + "Bond: \"My home is my life. Threaten it, and I'll hurt you.\"", + "Flaw: \"I know how treacherous and greedy adventurers can be. I don't trust them\u2014any of them.\"" + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Urgala makes two attacks with her morningstar or her shortbow." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 1}) piercing damage. Urgala carries a quiver of twenty arrows." + ] + } + ], + "attachedItems": [ + "morningstar|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Uthgardt Barbarian Leader", + "source": "SKT", + "page": 86, + "_copy": { + "name": "Berserker", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "berserker", + "with": "barbarian" + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Oathbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, plus an extra 10 ({@damage 3d6}) piercing damage against a sworn enemy See the {@item oathbow} entry for the other properties." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "dex": 15, + "languages": [ + "Bothii", + "Common", + "Elvish" + ], + "languageTags": [ + "C", + "E", + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true + }, + { + "name": "Uthgardt Shaman", + "source": "SKT", + "page": 243, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 13, + "int": 10, + "wis": 15, + "cha": 12, + "skill": { + "medicine": "+4", + "nature": "+4", + "perception": "+4", + "survival": "+6" + }, + "passive": 14, + "languages": [ + "Bothii", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting (Requires a Sacred Bundle)", + "type": "spellcasting", + "headerEntries": [ + "The shaman casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}; {@hit 4} to hit with spell attacks):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell message}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell augury} (cast as 1 action)", + "{@spell bestow curse}", + "{@spell cordon of arrows}", + "{@spell detect magic}", + "{@spell speak with dead}", + "{@spell spirit guardians}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if wielded with two hands." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortbow|phb", + "spear|phb" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N", + "P", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Uthgardt Shaman (Black Lion)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell chill touch}", + "{@spell feign death}", + "{@spell revivify}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Black Raven)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell animal messenger} (raven only)", + "{@spell polymorph} (self only; into a raven only)" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Blue Bear)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell enhance ability} (bear's endurance only)", + "{@spell heroism}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Elk)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell find steed} (cast as 1 action; elk only)", + "{@spell haste}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Gray Wolf)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell beast sense} (wolf or dire wolf only)", + "{@spell moonbeam}", + "{@spell speak with animals} (wolf or dire wolf only)" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Great Worm)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell crusader's mantle}", + "{@spell hypnotic pattern}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Griffon)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell beast sense} (birds only)", + "{@spell fly}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Red Tiger)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell enhance ability} (cat's grace only)", + "{@spell jump}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Sky Pony)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell gust of wind}", + "{@spell witch bolt}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Thunderbeast)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell enhance ability} (bull's strength only)", + "{@spell pass without trace}" + ] + } + } + } + }, + { + "name": "Uthgardt Shaman (Tree Ghost)", + "source": "SKT", + "_mod": { + "_": { + "mode": "addSpells", + "daily": { + "1e": [ + "{@spell barkskin}", + "{@spell speak with plants}" + ] + } + } + } + } + ] + }, + { + "name": "Vaal", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 207, + "_copy": { + "name": "Cloud Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Vaal", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Vaasha", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 256, + "_copy": { + "name": "Storm Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Vaasha", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Roleplaying Information", + "entries": [ + "Vaasha is a skilled hunter and tracker who doesn't charge into danger without first assessing the risks. She's not afraid to speak her mind, even to her king. To her, a worthy leader values the truth, no matter how painful it is.", + "Ideal: \"I want this conflict over with so that I can return to the quiet stillness of the ocean depths.\"", + "Bond: \"I'll protect this beautiful world from the ravages of evil with my dying breath.\"", + "Flaw: \"I don't care if my words hurt others' feelings.\"" + ] + } + } + } + }, + "alignment": [ + "N", + "G" + ], + "skill": { + "athletics": "+14", + "perception": "+9", + "survival": "+9" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material spell components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell levitate}", + "{@spell light}" + ], + "daily": { + "1e": [ + "{@spell control weather} (cast as 1 action)", + "{@spell water breathing}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "damageTags": [ + "B", + "L", + "S" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Wiri Fleagol", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 176, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ] + }, + "alignment": [ + "C", + "G" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "G", + "X" + ], + "hasToken": true + }, + { + "name": "Wood Elf", + "source": "SKT", + "page": 28, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "Wood Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "scout", + "with": "wood elf" + } + } + }, + "alignment": [ + "C", + "G" + ], + "languages": [ + "Common", + "Elvish" + ], + "traitTags": [ + "Fey Ancestry", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "hasToken": true + }, + { + "name": "Xolkin Alassandar", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 27, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Xolkin", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true + }, + { + "name": "Yak", + "source": "SKT", + "page": 172, + "_copy": { + "name": "Elk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "elk", + "with": "yak" + } + } + }, + "hasToken": true + }, + { + "name": "Yakfolk Priest", + "source": "SKT", + "page": 245, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 15, + "int": 14, + "wis": 18, + "cha": 14, + "skill": { + "deception": "+4", + "medicine": "+6", + "survival": "+6" + }, + "passive": 14, + "languages": [ + "Common", + "Yikaria" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The yakfolk is a 7th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The priest has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell cure wounds}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell protection from energy}", + "{@spell sending}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell banishment}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Possession (Recharges after a Short or Long Rest)", + "entries": [ + "The yakfolk attempts to magically possess a humanoid or giant. The yakfolk must touch the target throughout a short rest, or the attempt fails. At the end of the rest, the target must succeed on a {@dc 12} Constitution saving throw or be possessed by the yakfolk, which disappears with everything it is carrying and wearing. Until the possession ends, the target is {@condition incapacitated}, loses control of its body, and is unaware of its surroundings. The yakfolk now controls the body and can't be targeted by any attack, spell, or other effect, and it retains its alignment; its Intelligence, Wisdom, and Charisma scores; and its proficiencies. It otherwise uses the target's statistics, except the target's knowledge, class features, feats, and proficiencies.", + "The possession lasts until either the body drops to 0 hit points, the yakfolk ends the possession as an action, or the yakfolk is forced out of the body by an effect such as the {@spell dispel evil and good} spell. When the possession ends, the yakfolk reappears in an unoccupied space within 5 feet of the body and is {@condition stunned} until the end of its next turn. If the host body dies while it is possessed by the yakfolk, the yakfolk dies as well, and its body doesn't reappear." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yakfolk makes two melee attacks." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, or 12 ({@damage 2d8 + 3}) bludgeoning damage if used with two hands." + ] + }, + { + "name": "Summon Earth Elemental (1/Day)", + "entries": [ + "The yakfolk summons an {@creature earth elemental}. The elemental appears in an unoccupied space within 60 feet of its summoner and acts as an ally of the summoner. It remains for 10 minutes, until it dies, or until its summoner dismisses it as an action." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "incapacitated", + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Yakfolk Warrior", + "source": "SKT", + "page": 244, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 15, + "int": 14, + "wis": 15, + "cha": 14, + "skill": { + "deception": "+4", + "survival": "+4" + }, + "passive": 12, + "languages": [ + "Common", + "Yikaria" + ], + "cr": "3", + "trait": [ + { + "name": "Possession (Recharges after a Short or Long Rest)", + "entries": [ + "The yakfolk attempts to magically possess a humanoid or giant. The yakfolk must touch the target throughout a short rest, or the attempt fails. At the end of the rest, the target must succeed on a {@dc 12} Constitution saving throw or be possessed by the yakfolk, which disappears with everything it is carrying and wearing. Until the possession ends, the target is {@condition incapacitated}, loses control of its body, and is unaware of its surroundings. The yakfolk now controls the body and can't be targeted by any attack, spell, or other effect, and it retains its alignment; its Intelligence, Wisdom, and Charisma scores; and its proficiencies. It otherwise uses the target's statistics, except the target's knowledge, class features, feats, and proficiencies.", + "The possession lasts until either the body drops to 0 hit points, the yakfolk ends the possession as an action, or the yakfolk is forced out of the body by an effect such as the {@spell dispel evil and good} spell. When the possession ends, the yakfolk reappears in an unoccupied space within 5 feet of the body and is {@condition stunned} until the end of its next turn. If the host body dies while it is possessed by the yakfolk, the yakfolk dies as well, and its body doesn't reappear." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The yakfolk makes two attacks, either with its greatsword or its longbow." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 150/600 ft., one target. {@h}9 ({@damage 2d8}) piercing damage." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "longbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Cloud Giant", + "source": "SKT", + "page": 112, + "_copy": { + "name": "Hill Giant", + "source": "MM" + }, + "int": 10, + "wis": 12, + "cha": 12, + "skill": { + "insight": "+4", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Common", + "Giant" + ], + "languageTags": [ + "C", + "GI" + ], + "hasToken": true + }, + { + "name": "Zaltember", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 180, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 14, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "1", + "action": [ + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "battleaxe|phb", + "javelin|phb" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Zephyros", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 33, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 40 + }, + "str": 27, + "dex": 10, + "con": 22, + "int": 18, + "wis": 16, + "cha": 16, + "save": { + "con": "+11", + "wis": "+8", + "cha": "+8" + }, + "skill": { + "insight": "+8", + "perception": "+8" + }, + "passive": 17, + "languages": [ + "Common", + "Giant" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zephyros's innate spellcasting ability is Charisma. He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "daily": { + "3e": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell control weather}", + "{@spell gaseous form}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zephyros casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}, {@hit 11} to hit with spell attacks):" + ], + "will": [ + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "daily": { + "2e": [ + "{@spell gust of wind}", + "{@spell levitate}", + "{@spell magic missile}" + ], + "1e": [ + "{@spell cone of cold}", + "{@spell contact other plane} (cast as 1 action)", + "{@spell greater invisibility}", + "{@spell mass suggestion}", + "{@spell nondetection}", + "{@spell Otiluke's resilient sphere}", + "{@spell protection from energy}", + "{@spell tongues}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "Zephyros has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Fling", + "entries": [ + "Zephyros tries to throw a Small or Medium creature within 10 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of Zephyros's choice and land {@condition prone}, taking {@damage 1d8} bludgeoning damage for every 10 feet it was thrown." + ] + }, + { + "name": "Wind Aura", + "entries": [ + "A magical aura of wind surrounds Zephyros. The aura is a 10-foot-radius sphere that lasts as long as he maintains {@status concentration} on it (as if {@status concentration||concentrating} on a spell). While the aura is in effect, Zephyros gains a +2 bonus to his AC against ranged weapon attacks, and all open flames within the aura are extinguished unless they are magical." + ] + }, + { + "name": "Multiattack", + "entries": [ + "Zephyros makes two staff attacks." + ] + }, + { + "name": "Staff of the Magi", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, or 23 ({@damage 3d8 + 10}) bludgeoning damage if used with two hands. This damage is considered magical.." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "C", + "O", + "Y" + ], + "spellcastingTags": [ + "I", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zi Liang", + "isNpc": true, + "isNamedCreature": true, + "source": "SKT", + "page": 251, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Shou" + } + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 11, + "int": 14, + "wis": 16, + "cha": 11, + "skill": { + "acrobatics": "+4", + "athletics": "+3", + "perception": "+5", + "stealth": "+4" + }, + "passive": 15, + "languages": [ + "Common", + "Elvish", + "Goblin" + ], + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While Zi is wearing no armor and wielding no shield, her AC includes her Wisdom modifier." + ] + }, + { + "name": "Roleplaying Information", + "entries": [ + "Zi Liang is a devout worshiper of Chauntea, the Earth Mother. She has considerably less faith in Goldenfields' defenders, so she patrols the temple-farm during her off-duty hours.", + "Ideal: \"If we faithfully tend to our gardens and our fields, Chauntea will smile upon us.\"", + "Bond: \"Goldenfields is the breadbasket of the North. People depend on its safety and prosperity, and I'll do what must be done to protect it.\"", + "Flaw: \"I don't trust authority. I do what my heart says is right.\"" + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zi makes two melee attacks." + ] + }, + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with both hands." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage. Zi carries twenty sling stones." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb", + "sling|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "GO" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Expert", + "source": "SLW", + "level": 7, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "expert", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 12, + "int": 14, + "wis": 10, + "cha": 14, + "save": { + "dex": "+6" + }, + "skill": { + "acrobatics": "+9", + "performance": "+5", + "persuasion": "+5", + "sleight of hand": "+6", + "stealth": "+9" + }, + "passive": 10, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Helpful", + "entries": [ + "The expert can take the Help action as a bonus action, and the creature who receives the help gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ] + }, + { + "name": "Tools", + "entries": [ + "The expert has {@item thieves' tools|phb} and a musical instrument." + ] + } + ], + "action": [ + { + "name": "Extra Attack", + "entries": [ + "The expert can attack twice, instead of once, whenever it takes the {@action Attack} action on its turn." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "shortbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Skull Flier", + "source": "SLW", + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 24, + "formula": "3d8" + }, + "speed": { + "walk": 10, + "fly": 50 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 1, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1/2", + "action": [ + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Spellcaster (Healer)", + "source": "SLW", + "level": 7, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "spellcaster", + "tags": [ + "healer" + ], + "sidekickHidden": true + }, + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 15, + "wis": 16, + "cha": 13, + "save": { + "wis": "+6" + }, + "skill": { + "arcana": "+5", + "investigation": "+5", + "religion": "+5" + }, + "passive": 13, + "languages": [ + "Common", + "plus one of your choice" + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell protection from energy}", + "{@spell revivify}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell death ward}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Potent Cantrip", + "entries": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Spellcaster (Mage)", + "source": "SLW", + "level": 7, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "spellcaster", + "tags": [ + "mage" + ], + "sidekickHidden": true + }, + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 16, + "wis": 14, + "cha": 13, + "save": { + "wis": "+5" + }, + "skill": { + "arcana": "+6", + "investigation": "+6", + "religion": "+6" + }, + "passive": 12, + "languages": [ + "Common", + "plus one of your choice" + ], + "spellcasting": [ + { + "name": "Spellcasting (Mage)", + "type": "spellcasting", + "headerEntries": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell wall of fire}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Potent Cantrip", + "entries": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Statue of Talos", + "source": "SLW", + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 19, + "dex": 11, + "con": 20, + "int": 6, + "wis": 11, + "cha": 9, + "save": { + "wis": "+4" + }, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "petrified", + "poisoned" + ], + "languages": [ + "Terran" + ], + "cr": "10", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the statue remains motionless, it is indistinguishable from an inanimate statue." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The statue makes five attacks: one with its headbutt and four with its lightning bolt blades." + ] + }, + { + "name": "Headbutt", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Lightning Bolt Blades", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Tooth-N-Claw", + "isNpc": true, + "isNamedCreature": true, + "source": "SLW", + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 50 + }, + "str": 17, + "dex": 12, + "con": 14, + "int": 6, + "wis": 13, + "cha": 6, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "immune": [ + "cold" + ], + "languages": [ + "understands Infernal but can't speak it" + ], + "cr": "3", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "Tooth-N-Claw has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "Tooth-N-Claw has advantage on an attack roll against a creature if at least one of its allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) cold damage." + ] + }, + { + "name": "Freezing Breath {@recharge 5}", + "entries": [ + "Tooth-N-Claw exhales an icy blast in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "CS", + "I" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Warrior", + "source": "SLW", + "level": 7, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "sidekickType": "warrior", + "sidekickHidden": true + }, + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 10, + "wis": 12, + "cha": 10, + "save": { + "con": "+5" + }, + "skill": { + "athletics": "+6", + "perception": "+4", + "survival": "+4" + }, + "passive": 14, + "languages": [ + "Common", + "plus one of your choice" + ], + "trait": [ + { + "name": "Battle Readiness", + "entries": [ + "The warrior has advantage on initiative rolls." + ] + }, + { + "name": "Improved Critical", + "entries": [ + "The warrior's attack rolls score a critical hit on a roll of 19 or 20 on the d20." + ] + }, + { + "name": "Martial Role", + "entries": [ + "The warrior has one of the following traits of your choice:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Attacker", + "entry": "The warrior gains a +2 bonus to attack rolls." + }, + { + "type": "item", + "name": "Defender", + "entry": "The warrior gains the Protection reaction below." + } + ] + } + ] + } + ], + "action": [ + { + "name": "Extra Attack", + "entries": [ + "The warrior can attack twice, instead of once, whenever it takes the {@action Attack} action on its turn." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Protection (Defender Only)", + "entries": [ + "The warrior imposes disadvantage on the attack roll of a creature within 5 feet of it whose target isn't the warrior. The warrior must be able to see the attacker." + ] + } + ], + "altArt": [ + { + "name": "Warrior (Defender)", + "source": "SLW" + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + }, + { + "name": "Aberrant Spirit", + "source": "TCE", + "page": 109, + "reprintedAs": [ + "Aberrant Spirit|XPHB" + ], + "summonedBySpell": "Summon Aberration|TCE", + "summonedBySpellLevel": 4, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "11 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "40 + 10 for each spell level above 4th" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(beholderkin only; hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 16, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "psychic" + ], + "languages": [ + "Deep Speech", + "understands the languages you speak" + ], + "trait": [ + { + "name": "Regeneration (Slaad Only)", + "entries": [ + "The aberration regains 5 hit points at the start of its turn if it has at least 1 hit point." + ] + }, + { + "name": "Whispering Aura (Star Spawn Only)", + "entries": [ + "At the start of each of the aberration's turns, each creature within 5 feet of the aberration must succeed on a Wisdom saving throw against your spell save DC or take {@damage 2d6} psychic damage, provided that the aberration isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aberration makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Eye Ray (Beholderkin Only)", + "entries": [ + "{@atk rs} {@hitYourSpellAttack} to hit, range 150 ft., one creature. {@h}{@damage 1d8 + 3 + summonSpellLevel} psychic damage." + ] + }, + { + "name": "Claws (Slaad Only)", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d10 + 3 + summonSpellLevel} slashing damage. If the target is a creature, it can't regain hit points until the start of the aberration's next turn." + ] + }, + { + "name": "Psychic Slam (Star Spawn Only)", + "entries": [ + "{@atk ms} {@hitYourSpellAttack} to hit, reach 5 ft., one creature. {@h}{@damage 1d8 + 3 + summonSpellLevel} psychic damage." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "_versions": [ + { + "name": "Aberrant Spirit (Beholderkin)", + "source": "TCE", + "_mod": { + "action": [ + { + "mode": "removeArr", + "names": [ + "Claws (Slaad Only)", + "Psychic Slam (Star Spawn Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Eye Ray (Beholderkin Only)", + "with": "Eye Ray" + } + } + ] + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "trait": null, + "traitTags": null, + "damageTags": [ + "Y" + ], + "miscTags": null + }, + { + "name": "Aberrant Spirit (Slaad)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Whispering Aura (Star Spawn Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Regeneration (Slaad Only)", + "with": "Regeneration" + } + } + ], + "action": [ + { + "mode": "removeArr", + "names": [ + "Eye Ray (Beholderkin Only)", + "Psychic Slam (Star Spawn Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Claws (Slaad Only)", + "with": "Claws" + } + } + ] + }, + "speed": { + "walk": 30 + }, + "traitTags": [ + "Regeneration" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ] + }, + { + "name": "Aberrant Spirit (Star Spawn)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Regeneration (Slaad Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Whispering Aura (Star Spawn Only)", + "with": "Whispering Aura" + } + } + ], + "action": [ + { + "mode": "removeArr", + "names": [ + "Eye Ray (Beholderkin Only)", + "Claws (Slaad Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Psychic Slam (Star Spawn Only)", + "with": "Psychic Slam" + } + } + ] + }, + "speed": { + "walk": 30 + }, + "traitTags": [ + "Regeneration" + ], + "damageTags": [ + "Y" + ], + "miscTags": null + } + ] + }, + { + "name": "Adult Red Dracolich", + "source": "TCE", + "page": 137, + "_copy": { + "name": "Adult Red Dragon", + "source": "MM", + "_templates": [ + { + "name": "Dracolich", + "source": "MM" + } + ] + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Beast of the Land", + "source": "TCE", + "page": 61, + "reprintedAs": [ + "Beast of the Land|XPHB" + ], + "summonedByClass": "Ranger|PHB", + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "13 + PB (natural armor)" + } + ], + "hp": { + "special": "5 + five times your ranger level (the beast has a number of Hit Dice [d8s] equal to your ranger level)" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 14, + "dex": 14, + "con": 15, + "int": 8, + "wis": 14, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the beast moves at least 20 feet straight toward a target and then hits it with a maul attack on the same turn, the target takes an extra {@damage 1d6} slashing damage. If the target is a creature, it must succeed on a Strength saving throw against your spell save DC or be knocked {@condition prone}." + ] + }, + { + "name": "Primal Bond", + "entries": [ + "You can add your proficiency bonus to any ability check or saving throw that the beast makes." + ] + } + ], + "action": [ + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d8 + 2 + PB} slashing damage." + ] + } + ], + "traitTags": [ + "Charge" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true + }, + { + "name": "Beast of the Sea", + "source": "TCE", + "page": 61, + "reprintedAs": [ + "Beast of the Sea|XPHB" + ], + "summonedByClass": "Ranger|PHB", + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "13 + PB (natural armor)" + } + ], + "hp": { + "special": "5 + five times your ranger level (the beast has a number of Hit Dice [d8s] equal to your ranger level)" + }, + "speed": { + "walk": 5, + "swim": 60 + }, + "str": 14, + "dex": 14, + "con": 15, + "int": 8, + "wis": 14, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The beast can breathe both air and water." + ] + }, + { + "name": "Primal Bond", + "entries": [ + "You can add your proficiency bonus to any ability check or saving throw that the beast makes." + ] + } + ], + "action": [ + { + "name": "Binding Strike", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d6 + 2 + PB} piercing damage or {@damage 1d6 + 2 + PB} bludgeoning damage (your choice), and the target is {@condition grappled} (escape DC equal to your spellcasting save DC). Until this grapple ends, the beast can't use this attack on another target." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Beast of the Sky", + "source": "TCE", + "page": 61, + "reprintedAs": [ + "Beast of the Sky|XPHB" + ], + "summonedByClass": "Ranger|PHB", + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "13 + PB (natural armor)" + } + ], + "hp": { + "special": "4 + four times your ranger level (the beast has a number of Hit Dice [d6s] equal to your ranger level)" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 6, + "dex": 16, + "con": 13, + "int": 8, + "wis": 14, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The beast doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Primal Bond", + "entries": [ + "You can add your proficiency bonus to any ability check or saving throw that the beast makes." + ] + } + ], + "action": [ + { + "name": "Shred", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d4 + 3 + PB} slashing damage" + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Bestial Spirit", + "source": "TCE", + "page": 109, + "reprintedAs": [ + "Bestial Spirit|XPHB" + ], + "summonedBySpell": "Summon Beast|TCE", + "summonedBySpellLevel": 2, + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "11 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "20 (Air only) or 30 (Land and Water only) + 5 for each spell level above 2nd" + }, + "speed": { + "walk": 30, + "climb": { + "number": 30, + "condition": "(land only)" + }, + "fly": { + "number": 60, + "condition": "(air only)" + }, + "swim": { + "number": 30, + "condition": "(water only)" + } + }, + "str": 18, + "dex": 11, + "con": 16, + "int": 4, + "wis": 14, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you speak" + ], + "trait": [ + { + "name": "Water Breathing (Water Only)", + "entries": [ + "The beast can breathe only underwater." + ] + }, + { + "name": "Flyby (Air Only)", + "entries": [ + "The beast doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Pack Tactics (Land and Water Only)", + "entries": [ + "The beast has advantage on an attack roll against a creature if at least one of the beast's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The beast makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d8 + 4 + summonSpellLevel} piercing damage." + ] + } + ], + "traitTags": [ + "Flyby", + "Pack Tactics", + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "_versions": [ + { + "name": "Bestial Spirit (Air)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Water Breathing (Water Only)", + "Pack Tactics (Land and Water Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Flyby (Air Only)", + "with": "Flyby" + } + } + ] + }, + "hp": { + "special": "20 + 5 for each spell level above 2nd" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "traitTags": [ + "Flyby" + ] + }, + { + "name": "Bestial Spirit (Land)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Water Breathing (Water Only)", + "Flyby (Air Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Pack Tactics (Land and Water Only)", + "with": "Pack Tactics" + } + } + ] + }, + "hp": { + "special": "30 + 5 for each spell level above 2nd" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "traitTags": [ + "Pack Tactics" + ] + }, + { + "name": "Bestial Spirit (Water)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Flyby (Air Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Pack Tactics (Land and Water Only)", + "with": "Pack Tactics" + } + } + ] + }, + "hp": { + "special": "30 + 5 for each spell level above 2nd" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "traitTags": [ + "Pack Tactics", + "Water Breathing" + ] + } + ] + }, + { + "name": "Celestial Spirit", + "source": "TCE", + "page": 110, + "reprintedAs": [ + "Celestial Spirit|XPHB" + ], + "summonedBySpell": "Summon Celestial|TCE", + "summonedBySpellLevel": 5, + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "11 + the level of the spell (natural armor) + 2 (Defender only)" + } + ], + "hp": { + "special": "40 + 10 for each spell level above 5th" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 10, + "wis": 14, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Celestial", + "understands the languages you speak" + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The celestial makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Radiant Bow (Avenger Only)", + "entries": [ + "{@atk rw} {@hitYourSpellAttack} to hit, range 150/600 ft., one target. {@h}{@damage 2d6 + 2 + summonSpellLevel} radiant damage." + ] + }, + { + "name": "Radiant Mace (Defender Only)", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d10 + 3 + summonSpellLevel} radiant damage, and the celestial can choose itself or another creature it can see within 10 feet of the target. The chosen creature gains {@dice 1d10} temporary hit points." + ] + }, + { + "name": "Healing Touch (1/Day)", + "entries": [ + "The celestial touches another creature. The target magically regains hit points equal to {@dice 2d8 + summonSpellLevel}." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CE" + ], + "damageTags": [ + "R" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "hasToken": true, + "_versions": [ + { + "name": "Celestial Spirit (Avenger)", + "source": "TCE", + "_mod": { + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Radiant Bow (Avenger Only)", + "with": "Radiant Bow" + } + }, + { + "mode": "removeArr", + "names": "Radiant Mace (Defender Only)" + } + ] + }, + "ac": [ + { + "special": "11 + the level of the spell (natural armor)" + } + ], + "miscTags": [ + "RW" + ] + }, + { + "name": "Celestial Spirit (Defender)", + "source": "TCE", + "_mod": { + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Radiant Mace (Defender Only)", + "with": "Radiant Mace" + } + }, + { + "mode": "removeArr", + "names": "Radiant Bow (Avenger Only)" + } + ] + }, + "ac": [ + { + "special": "13 + the level of the spell (natural armor)" + } + ], + "miscTags": [ + "MLW", + "MW" + ] + } + ] + }, + { + "name": "Construct Spirit", + "source": "TCE", + "page": 111, + "reprintedAs": [ + "Construct Spirit|XPHB" + ], + "summonedBySpell": "Summon Construct|TCE", + "summonedBySpellLevel": 4, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "13 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "40 + 15 for each spell level above 4th" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 18, + "int": 14, + "wis": 11, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "incapacitated", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages you speak" + ], + "trait": [ + { + "name": "Heated Body (Metal Only)", + "entries": [ + "A creature that touches the construct or hits it with a melee attack while within 5 feet of it takes {@damage 1d10} fire damage." + ] + }, + { + "name": "Stony Lethargy (Stone Only)", + "entries": [ + "When a creature the construct can see starts its turn within 10 feet of the construct, the construct can force it to make a Wisdom saving throw against your spell save DC. On a failed save, the target can't use reactions and its speed is halved until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The construct makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d8 + 4 + summonSpellLevel} bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Berserk Lashing (Clay Only)", + "entries": [ + "When the construct takes damage, it makes a slam attack against a random creature within 5 feet of it. If no creature is within reach, the construct moves up to half its speed toward an enemy it can see, without provoking opportunity attacks." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "_versions": [ + { + "name": "Construct Spirit (Clay)", + "source": "TCE", + "_mod": { + "reaction": [ + { + "mode": "renameArr", + "renames": { + "rename": "Berserk Lashing (Clay Only)", + "with": "Berserk Lashing" + } + } + ] + }, + "trait": null, + "damageTags": [ + "B" + ] + }, + { + "name": "Construct Spirit (Metal)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Heated Body (Metal Only)", + "with": "Heated Body" + } + }, + { + "mode": "removeArr", + "names": "Stony Lethargy (Stone Only)" + } + ] + }, + "reaction": null + }, + { + "name": "Construct Spirit (Stone)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Stony Lethargy (Stone Only)", + "with": "Stony Lethargy" + } + }, + { + "mode": "removeArr", + "names": "Heated Body (Metal Only)" + } + ] + }, + "reaction": null, + "damageTags": [ + "B" + ] + } + ] + }, + { + "name": "Dancing Item", + "source": "TCE", + "page": 29, + "summonedByClass": "Bard|PHB", + "size": [ + "L" + ], + "sizeNote": "or smaller", + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "10 + five times your bard level" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 14, + "con": 16, + "int": 4, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned", + "frightened" + ], + "languages": [ + "understands the languages you speak" + ], + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The item is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Irrepressible Dance", + "entries": [ + "When any creature starts its turn within 10 feet of the item, the item can increase or decrease (your choice) the walking speed of that creature by 10 feet until the end of the turn, provided the item isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Force-Empowered Slam", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target you can see. {@h}{@damage 1d10 + PB} force damage." + ] + } + ], + "traitTags": [ + "Immutable Form" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Elemental Spirit", + "source": "TCE", + "page": 111, + "reprintedAs": [ + "Elemental Spirit|XPHB" + ], + "summonedBySpell": "Summon Elemental|TCE", + "summonedBySpellLevel": 4, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "11 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "50 + 10 for each spell level above 4th" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(air only; hover)" + }, + "burrow": { + "number": 40, + "condition": "(earth only)" + }, + "swim": { + "number": 40, + "condition": "(water only)" + }, + "canHover": true + }, + "str": 18, + "dex": 15, + "con": 17, + "int": 4, + "wis": 10, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "lightning", + "thunder" + ], + "cond": true, + "note": "(Air only)" + }, + { + "resist": [ + "piercing", + "slashing" + ], + "cond": true, + "note": "(Earth only)" + }, + { + "resist": [ + "acid" + ], + "cond": true, + "note": "(Water only)" + } + ], + "immune": [ + "poison", + { + "immune": [ + "fire" + ], + "cond": true, + "note": "(Fire only)" + } + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "unconscious" + ], + "languages": [ + "Primordial", + "understands the languages you speak" + ], + "trait": [ + { + "name": "Amorphous Form (Air, Fire, and Water Only)", + "entries": [ + "The elemental can move through a space as narrow as 1 inch wide without squeezing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elemental makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d10 + 4 + summonSpellLevel} bludgeoning damage (Air, Earth, and Water only) or fire damage (Fire only)." + ] + } + ], + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "P" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "_versions": [ + { + "name": "Elemental Spirit (Air)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Amorphous Form (Air, Fire, and Water Only)", + "with": "Amorphous Form" + } + } + ], + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d10 + 4 + summonSpellLevel} bludgeoning damage." + ] + } + } + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "resist": [ + "lightning", + "thunder" + ], + "immune": [ + "poison" + ], + "damageTags": [ + "B" + ] + }, + { + "name": "Elemental Spirit (Earth)", + "source": "TCE", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d10 + 4 + summonSpellLevel} bludgeoning damage." + ] + } + } + }, + "speed": { + "walk": 40, + "burrow": 40 + }, + "resist": [ + "piercing", + "slashing" + ], + "immune": [ + "poison" + ], + "trait": null, + "damageTags": [ + "B" + ] + }, + { + "name": "Elemental Spirit (Fire)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Amorphous Form (Air, Fire, and Water Only)", + "with": "Amorphous Form" + } + } + ], + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d10 + 4 + summonSpellLevel} fire damage." + ] + } + } + }, + "speed": { + "walk": 40 + }, + "immune": [ + "poison", + "fire" + ], + "damageTags": [ + "F" + ] + }, + { + "name": "Elemental Spirit (Water)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Amorphous Form (Air, Fire, and Water Only)", + "with": "Amorphous Form" + } + } + ], + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d10 + 4 + summonSpellLevel} bludgeoning damage." + ] + } + } + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "resist": [ + "acid" + ], + "immune": [ + "poison" + ], + "damageTags": [ + "B" + ] + } + ] + }, + { + "name": "Fey Spirit", + "source": "TCE", + "page": 112, + "reprintedAs": [ + "Fey Spirit|XPHB" + ], + "summonedBySpell": "Summon Fey|TCE", + "summonedBySpellLevel": 3, + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "12 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "30 + 10 for each spell level above 3rd" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 16, + "con": 14, + "int": 14, + "wis": 11, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Sylvan", + "understands the languages you speak" + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fey makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d6 + 3 + summonSpellLevel} piercing damage {@damage + 1d6} force damage." + ] + } + ], + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The fey magically teleports up to 30 feet to an unoccupied space it can see. Then one of the following effects occurs, based on the fey's chosen mood:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fuming", + "entry": "The fey has advantage on the next attack roll it makes before the end of this turn." + }, + { + "type": "item", + "name": "Mirthful", + "entry": "The fey can force one creature it can see within 10 feet of it to make a Wisdom saving throw against your spell save DC. Unless the save succeeds, the target is {@condition charmed} by you and the fey for 1 minute or until the target takes any damage." + }, + { + "type": "item", + "name": "Tricksy", + "entry": "The fey can fill a 5-foot cube within 5 feet of it with magical darkness, which lasts until the end of its next turn." + } + ] + } + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "S" + ], + "damageTags": [ + "O", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "hasToken": true, + "_versions": [ + { + "name": "Fey Spirit (Fuming)", + "source": "TCE", + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The fey magically teleports up to 30 feet to an unoccupied space it can see. The fey has advantage on the next attack roll it makes before the end of this turn." + ] + } + ] + }, + { + "name": "Fey Spirit (Mirthful)", + "source": "TCE", + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The fey magically teleports up to 30 feet to an unoccupied space it can see. The fey can force one creature it can see within 10 feet of it to make a Wisdom saving throw against your spell save DC. Unless the save succeeds, the target is {@condition charmed} by you and the fey for 1 minute or until the target takes any damage." + ] + } + ] + }, + { + "name": "Fey Spirit (Tricksy)", + "source": "TCE", + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The fey magically teleports up to 30 feet to an unoccupied space it can see. The fey can fill a 5-foot cube within 5 feet of it with magical darkness, which lasts until the end of its next turn." + ] + } + ] + } + ] + }, + { + "name": "Fiendish Spirit", + "source": "TCE", + "page": 112, + "reprintedAs": [ + "Fiendish Spirit|XPHB" + ], + "summonedBySpell": "Summon Fiend|TCE", + "summonedBySpellLevel": 6, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "12 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "50 (Demon only) or 40 (Devil only) or 60 (Yugoloth only) + 15 for each spell level above 6th" + }, + "speed": { + "walk": 40, + "climb": { + "number": 40, + "condition": "(demon only)" + }, + "fly": { + "number": 60, + "condition": "(devil only)" + } + }, + "str": 13, + "dex": 16, + "con": 15, + "int": 10, + "wis": 10, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "fire" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The fiend has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Death Throes (Demon Only)", + "entries": [ + "When the fiend drops to 0 hit points or the spell ends, the fiend explodes, and each creature within 10 feet of it must make a Dexterity saving throw against your spell save DC. A creature takes {@damage 2d10 + summonSpellLevel} fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Devil's Sight (Devil Only)", + "entries": [ + "Magical darkness doesn't impede the fiend's darkvision." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fiend makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Bite (Demon Only)", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d12 + 3 + summonSpellLevel} necrotic damage." + ] + }, + { + "name": "Claws (Yugoloth Only)", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d8 + 3 + summonSpellLevel} slashing damage. Immediately after the attack hits or misses, the fiend can magically teleport up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Hurl Flame (Devil Only)", + "entries": [ + "{@atk rs} {@hitYourSpellAttack} to hit, range 150 ft., one target. {@h}{@damage 2d6 + 3 + summonSpellLevel} fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire." + ] + } + ], + "traitTags": [ + "Death Burst", + "Devil's Sight", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "F", + "N", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "_versions": [ + { + "name": "Fiendish Spirit (Demon)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Death Throes (Demon Only)", + "with": "Death Throes" + } + }, + { + "mode": "removeArr", + "names": "Devil's Sight (Devil Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Bite (Demon Only)", + "with": "Bite" + } + }, + { + "mode": "removeArr", + "names": [ + "Claws (Yugoloth Only)", + "Hurl Flame (Devil Only)" + ] + } + ] + }, + "hp": { + "special": "50 + 15 for each spell level above 6th" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "traitTags": [ + "Death Burst", + "Magic Resistance" + ], + "damageTags": [ + "F" + ] + }, + { + "name": "Fiendish Spirit (Devil)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Devil's Sight (Devil Only)", + "with": "Devil's Sight" + } + }, + { + "mode": "removeArr", + "names": "Death Throes (Demon Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Hurl Flame (Devil Only)", + "with": "Hurl Flame" + } + }, + { + "mode": "removeArr", + "names": [ + "Bite (Demon Only)", + "Claws (Yugoloth Only)" + ] + } + ] + }, + "hp": { + "special": "40 + 15 for each spell level above 6th" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "damageTags": [ + "N" + ] + }, + { + "name": "Fiendish Spirit (Yugoloth)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Death Throes (Demon Only)", + "Devil's Sight (Devil Only)" + ] + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Claws (Yugoloth Only)", + "with": "Claws" + } + }, + { + "mode": "removeArr", + "names": [ + "Bite (Demon Only)", + "Hurl Flame (Devil Only)" + ] + } + ] + }, + "hp": { + "special": "60 + 15 for each spell level above 6th" + }, + "speed": { + "walk": 40 + }, + "traitTags": [ + "Magic Resistance" + ], + "damageTags": [ + "F" + ] + } + ] + }, + { + "name": "Homunculus Servant", + "source": "TCE", + "page": 22, + "otherSources": [ + { + "source": "ERLW", + "page": 62 + } + ], + "summonedByClass": "Artificer|TCE", + "size": [ + "T" + ], + "type": "construct", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "1 + your Intelligence modifier + your artificer level (the homunculus has a number of Hit Dice [d4s] equal to your artificer level)" + }, + "speed": { + "walk": 20, + "fly": 30 + }, + "str": 4, + "dex": 15, + "con": 12, + "int": 10, + "wis": 10, + "cha": 7, + "save": { + "dex": "+2 plus PB" + }, + "skill": { + "perception": "+0 plus PB \u00d7 2", + "stealth": "+2 plus PB" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": "10 + (PB \u00d7 2)", + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If the homunculus is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails. It can't use this trait if it's {@condition incapacitated}." + ] + } + ], + "actionNote": "Requires Your Bonus Action", + "action": [ + { + "name": "Force Strike", + "entries": [ + "{@atk rw} {@hitYourSpellAttack} to hit, range 30 ft., one target you can see. {@h}{@damage 1d4 + PB} force damage." + ] + } + ], + "reaction": [ + { + "name": "Channel Magic", + "entries": [ + "The homunculus delivers a spell you cast that has a range of touch. The homunculus must be within 120 feet of you." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "RW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Juvenile Mimic", + "source": "TCE", + "page": 167, + "size": [ + "T" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 7, + "formula": "2d4 + 2" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 1, + "dex": 12, + "con": 13, + "int": 10, + "wis": 13, + "cha": 10, + "skill": { + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "acid" + ], + "conditionImmune": [ + "prone" + ], + "languages": [ + "Common", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "0", + "trait": [ + { + "name": "False Appearance (Object Form Only)", + "entries": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The mimic can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}1 piercing damage plus 2 ({@damage 1d4}) acid damage." + ] + }, + { + "name": "Shape-Shift", + "entries": [ + "The mimic polymorphs into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "traitTags": [ + "False Appearance", + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "TP", + "U" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Mighty Servant of Leuk-o", + "source": "TCE", + "page": 131, + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 310, + "formula": "27d12 + 135" + }, + "speed": { + "walk": 60 + }, + "str": 30, + "dex": 14, + "con": 20, + "int": 1, + "wis": 14, + "cha": 10, + "save": { + "wis": "+9", + "cha": "+7" + }, + "skill": { + "perception": "+9" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 19, + "resist": [ + "piercing", + "slashing" + ], + "immune": [ + "acid", + "bludgeoning", + "cold", + "fire", + "lightning", + "necrotic", + "poison", + "psychic", + "radiant" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "incapacitated", + "paralyzed", + "petrified", + "poisoned", + "restrained", + "stunned", + "unconscious" + ], + "languages": [ + "understands the languages of creatures attuned to it but can't speak" + ], + "trait": [ + { + "name": "Immutable Existence", + "entries": [ + "The servant is immune to any spell or effect that would alter its form or send it to another plane of existence." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The servant has advantage on saving throws against spells and other magical effects, and spell attacks made against it have disadvantage." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The servant regains 10 hit points at the start of its turn. If it is reduced to 0 hit points, this trait doesn't function until an attuned creature spends 24 hours repairing the artifact or until the artifact is subjected to lightning damage." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The servant's long jump is up to 50 feet and its high jump is up to 25 feet, with or without a running start." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The servant doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Destructive Fist", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage. Or Ranged Weapon Attack: {@hit 17} to hit, range 120 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage. If the target is an object, it takes triple damage." + ] + }, + { + "name": "Crushing Leap", + "entries": [ + "If the servant jumps at least 25 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures is pushed to an unoccupied space within 5 feet of the servant and must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 26 ({@damage 4d12}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Regeneration", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Reflection", + "source": "TCE", + "page": 158, + "_copy": { + "name": "Shadow", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "shadow", + "with": "reflection" + } + } + }, + "type": "fey", + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "bludgeoning" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Shadow Spirit", + "source": "TCE", + "page": 114, + "summonedBySpell": "Summon Shadowspawn|TCE", + "summonedBySpellLevel": 3, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "11 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "35 + 15 for each spell level above 3rd" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 16, + "con": 15, + "int": 4, + "wis": 10, + "cha": 16, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "understands the languages you speak" + ], + "trait": [ + { + "name": "Terror Frenzy (Fury Only)", + "entries": [ + "The spirit has advantage on attack rolls against {@condition frightened} creatures." + ] + }, + { + "name": "Weight of Sorrow (Despair Only)", + "entries": [ + "Any creature, other than you, that starts its turn within 5 feet of the spirit has its speed reduced by 20 feet until the start of that creature's next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Chilling Rend", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d12 + 3 + summonSpellLevel} cold damage." + ] + }, + { + "name": "Dreadful Scream (1/Day)", + "entries": [ + "The spirit screams. Each creature within 30 feet of it must succeed on a Wisdom saving throw against your spell save DC or be {@condition frightened} for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Shadow Stealth (Fear Only)", + "entries": [ + "While in dim light or darkness, the spirit takes the Hide action." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "C" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Shadow Spirit (Despair)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Weight of Sorrow (Despair Only)", + "with": "Weight of Sorrow" + } + }, + { + "mode": "removeArr", + "names": "Terror Frenzy (Fury Only)" + } + ] + }, + "bonus": null + }, + { + "name": "Shadow Spirit (Fear)", + "source": "TCE", + "_mod": { + "bonus": [ + { + "mode": "renameArr", + "renames": { + "rename": "Shadow Stealth (Fear Only)", + "with": "Shadow Stealth" + } + } + ] + }, + "trait": null + }, + { + "name": "Shadow Spirit (Fury)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Terror Frenzy (Fury Only)", + "with": "Terror Frenzy" + } + }, + { + "mode": "removeArr", + "names": "Weight of Sorrow (Despair Only)" + } + ] + }, + "bonus": null + } + ] + }, + { + "name": "Steel Defender", + "source": "TCE", + "page": 19, + "otherSources": [ + { + "source": "ERLW", + "page": 61 + } + ], + "summonedByClass": "Artificer|TCE", + "size": [ + "M" + ], + "type": "construct", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "2 + your Intelligence modifier + five times your artificer level (the defender has a number of Hit Dice [d8s] equal to your artificer level)" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 12, + "con": 14, + "int": 4, + "wis": 10, + "cha": 6, + "save": { + "dex": "+1 plus PB", + "con": "+2 plus PB" + }, + "skill": { + "athletics": "+2 plus PB", + "perception": "+0 plus PB \u00d7 2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": "10 + (PB \u00d7 2)", + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Vigilant", + "entries": [ + "The defender can't be {@status surprised}." + ] + } + ], + "actionNote": "Requires Your Bonus Action", + "action": [ + { + "name": "Force-Empowered Rend", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target you can see. {@h}{@damage 1d8 + PB} force damage." + ] + }, + { + "name": "Repair (3/Day)", + "entries": [ + "The magical mechanisms inside the defender restore {@dice 2d8 + PB} hit points to itself or to one construct or object within 5 feet of it." + ] + } + ], + "reaction": [ + { + "name": "Deflect Attack", + "entries": [ + "The defender imposes disadvantage on the attack roll of one creature it can see that is within 5 feet of it, provided the attack roll is against a creature other than the defender." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Undead Spirit", + "source": "TCE", + "page": 114, + "reprintedAs": [ + "Undead Spirit|XPHB" + ], + "summonedBySpell": "Summon Undead|TCE", + "summonedBySpellLevel": 3, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "11 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "30 (Ghostly and Putrid only) or 20 (Skeletal only) + 10 for each spell level above 3rd" + }, + "speed": { + "walk": 30, + "fly": { + "number": 40, + "condition": "(ghostly only; hover)" + }, + "canHover": true + }, + "str": 12, + "dex": 16, + "con": 15, + "int": 4, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages you speak" + ], + "trait": [ + { + "name": "Incorporeal Passage (Ghostly Only)", + "entries": [ + "The spirit can move through other creatures and objects as if they were {@quickref difficult terrain||3}. If it ends its turn inside an object, it is shunted to the nearest unoccupied space and takes {@damage 1d10} force damage for every 5 feet traveled." + ] + }, + { + "name": "Festering Aura (Putrid Only)", + "entries": [ + "Any creature, other than you, that starts its turn within 5 feet of the spirit must succeed on a Constitution saving throw against your spell save DC or be {@condition poisoned} until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of attacks equal to half this spell's level (rounded down)." + ] + }, + { + "name": "Deathly Touch (Ghostly Only)", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one creature. {@h}{@damage 1d8 + 3 + summonSpellLevel} necrotic damage, and the creature must succeed on a Wisdom saving throw against your spell save DC or be {@condition frightened} of the undead until the end of the target's next turn." + ] + }, + { + "name": "Grave Bolt (Skeletal Only)", + "entries": [ + "{@atk rs} {@hitYourSpellAttack} to hit, range 150 ft., one target. {@h}{@damage 2d4 + 3 + summonSpellLevel} necrotic damage." + ] + }, + { + "name": "Rotting Claw (Putrid Only)", + "entries": [ + "{@atk mw} {@hitYourSpellAttack} to hit, reach 5 ft., one target. {@h}{@damage 1d6 + 3 + summonSpellLevel} slashing damage. If the target is {@condition poisoned}, it must succeed on a Constitution saving throw against your spell save DC or be {@condition paralyzed} until the end of its next turn." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "O", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed", + "poisoned" + ], + "hasToken": true, + "_versions": [ + { + "name": "Undead Spirit (Ghostly)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Incorporeal Passage (Ghostly Only)", + "with": "Incorporeal Passage" + } + }, + { + "mode": "removeArr", + "names": "Festering Aura (Putrid Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Deathly Touch (Ghostly Only)", + "with": "Deathly Touch" + } + }, + { + "mode": "removeArr", + "names": [ + "Grave Bolt (Skeletal Only)", + "Rotting Claw (Putrid Only)" + ] + } + ] + }, + "hp": { + "special": "30 + 10 for each spell level above 3rd" + }, + "speed": { + "walk": 30, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "damageTags": [ + "N" + ], + "conditionInflict": [ + "frightened" + ] + }, + { + "name": "Undead Spirit (Putrid)", + "source": "TCE", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Festering Aura (Putrid Only)", + "with": "Festering Aura" + } + }, + { + "mode": "removeArr", + "names": "Incorporeal Passage (Ghostly Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Rotting Claw (Putrid Only)", + "with": "Rotting Claw" + } + }, + { + "mode": "removeArr", + "names": [ + "Deathly Touch (Ghostly Only)", + "Grave Bolt (Skeletal Only)" + ] + } + ] + }, + "hp": { + "special": "30 + 10 for each spell level above 3rd" + }, + "speed": { + "walk": 30 + }, + "traitTags": null, + "damageTags": [ + "O", + "S" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ] + }, + { + "name": "Undead Spirit (Skeletal)", + "source": "TCE", + "_mod": { + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Grave Bolt (Skeletal Only)", + "with": "Grave Bolt" + } + }, + { + "mode": "removeArr", + "names": [ + "Deathly Touch (Ghostly Only)", + "Rotting Claw (Putrid Only)" + ] + } + ] + }, + "hp": { + "special": "20 + 10 for each spell level above 3rd" + }, + "speed": { + "walk": 30 + }, + "trait": null, + "traitTags": null, + "damageTags": [ + "N" + ], + "conditionInflict": null + } + ] + }, + { + "name": "Wildfire Spirit", + "source": "TCE", + "page": 40, + "summonedByClass": "Druid|PHB", + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "5 + five times your druid level" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 14, + "con": 14, + "int": 13, + "wis": 15, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "prone", + "restrained" + ], + "languages": [ + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "action": [ + { + "name": "Flame Seed", + "entries": [ + "{@atk rw} {@hitYourSpellAttack} to hit, range 60 ft., one target you can see. {@h}{@damage 1d6 + PB} fire damage." + ] + }, + { + "name": "Fiery Teleportation", + "entries": [ + "The spirit and each willing creature of your choice within 5 feet of it teleport up to 15 feet to unoccupied spaces you can see. Then each creature within 5 feet of the space that the spirit left must succeed on a Dexterity saving throw against your spell save DC or take {@damage 1d6 + PB} fire damage." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "F" + ], + "miscTags": [ + "AOE", + "RW" + ], + "hasToken": true + }, + { + "name": "Amphisbaena", + "source": "TftYP", + "page": 84, + "_copy": { + "name": "Giant Constrictor Snake", + "source": "MM", + "_mod": { + "action": { + "mode": "prependArr", + "items": { + "name": "Multiattack", + "entries": [ + "The amphisbaena makes two attacks, only one of which can be a constrict attack." + ] + } + } + } + }, + "cr": "3", + "actionTags": [ + "Multiattack" + ], + "hasToken": true + }, + { + "name": "Animated Table", + "source": "TftYP", + "page": 230, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 8, + "con": 13, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "2", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The table is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the table must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the table remains motionless, it is indistinguishable from a normal table." + ] + }, + { + "name": "Charge", + "entries": [ + "If the table moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 9 ({@damage 2d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 6}, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility", + "Charge", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ashdra", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 158, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "alignment": [ + "C", + "E" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "E", + "X" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Bandagh", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 159, + "_copy": { + "name": "Orc", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Belak the Outcast", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 9, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 13, + "int": 12, + "wis": 15, + "cha": 11, + "skill": { + "medicine": "+4", + "nature": "+3", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Druidic plus any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The druid is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell shillelagh}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell faerie fire}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell flaming sphere}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh or if wielded with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "DU", + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "I", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true + }, + { + "name": "Bugbear Gardener", + "source": "TftYP", + "page": 29, + "_copy": { + "name": "Bugbear", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Morningstar", + "items": { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d10 + 2}) slashing damage." + ] + } + } + } + }, + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Bugbear Lieutenant", + "source": "TftYP", + "page": 173, + "_copy": { + "name": "Bugbear", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Morningstar", + "items": { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d8 + 2}) slashing damage, or 13 ({@damage 2d10 + 2}) slashing damage if used with both hands." + ] + } + } + } + }, + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "Calcryx", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 23, + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "burrow": 15, + "fly": 60, + "swim": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 5, + "wis": 10, + "cha": 11, + "save": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+2" + }, + "skill": { + "perception": "+4", + "stealth": "+2" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Draconic" + ], + "cr": "2", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) cold damage." + ] + }, + { + "name": "Cold Breath {@recharge 5}", + "entries": [ + "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 22 ({@damage 5d8}) cold damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "DR" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Centaur Mummy", + "source": "TftYP", + "page": 231, + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 12, + "con": 16, + "int": 5, + "wis": 14, + "cha": 12, + "save": { + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "6", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the centaur mummy moves at least 20 feet straight toward a target and then hits it with a pike attack on the same turn, the target takes an extra 10 ({@damage 3d6}) piercing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The centaur mummy makes two melee attacks, one with its pike and one with its hooves, or it attacks with its pike and uses Dreadful Glare." + ] + }, + { + "name": "Pike", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 14} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or similar magic." + ] + }, + { + "name": "Dreadful Glare", + "entries": [ + "The centaur mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, the target must succeed on a {@dc 12} Wisdom saving throw against this magic or become {@condition frightened} until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours." + ] + } + ], + "attachedItems": [ + "pike|phb" + ], + "traitTags": [ + "Charge" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chief Nosnra", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 170, + "_copy": { + "name": "Frost Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Chief Nosnra", + "flags": "i" + } + } + }, + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "immune": null, + "conditionInflict": [], + "hasToken": true + }, + { + "name": "Cloud Giant Noble", + "source": "TftYP", + "page": 206, + "_copy": { + "name": "Cloud Giant", + "source": "MM" + }, + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hasToken": true + }, + { + "name": "Curran Corvalin", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 158, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Stout Halfling", + "source": "PHB" + } + ] + }, + "languageTags": [ + "C", + "H", + "X" + ], + "hasToken": true + }, + { + "name": "Dragonpriest", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 16, + "_copy": { + "name": "Troll", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "troll", + "with": "dragonpriest", + "flags": "i" + }, + "trait": { + "mode": "replaceArr", + "replace": "Regeneration", + "items": { + "name": "Regeneration", + "entries": [ + "The dragonpriest regains 5 hit points at the start of its turn. If the dragonpriest takes acid or fire damage, this trait doesn't function at the start of the dragonpriest's next turn. The dragonpriest dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + }, + "action": { + "mode": "removeArr", + "names": "Multiattack" + } + } + }, + "hp": { + "average": 30, + "formula": "8d10 + 40" + }, + "languages": [ + "Elvish", + "Draconic" + ], + "cr": { + "cr": "5", + "xp": 450 + }, + "actionTags": [], + "hasToken": true + }, + { + "name": "Dread Warrior", + "source": "TftYP", + "page": 233, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 16, + "int": 10, + "wis": 12, + "cha": 10, + "save": { + "wis": "+3" + }, + "skill": { + "athletics": "+4", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the dread warrior to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the dread warrior drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dread warrior makes two melee attacks." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if wielded with two hands." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "battleaxe|phb", + "javelin|phb" + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Drevin", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 126, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Stout Halfling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Drevin", + "flags": "i" + } + } + }, + "languageTags": [ + "H", + "X" + ], + "hasToken": true + }, + { + "name": "Drow Commander", + "source": "TftYP", + "page": 209, + "_copy": { + "name": "Drow Elite Warrior", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The drow carries three magical bolts, as follows:", + { + "type": "list", + "items": [ + "A {@i bolt of holding}, which casts {@spell hold person} on a target hit with the bolt, as well as up to two other targets within 30 feet of that target", + "A {@i bolt of blinding}, which casts {@spell blindness/deafness} to blind on a target hit with the bolt, as well as up to two other targets within 30 feet of that target", + "A {@i bolt of vapors}, which casts {@spell stinking cloud} centered on the point it hits" + ] + }, + "Each of these effects has a spell save DC of 15 and a duration of 1 minute." + ] + } + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Shortsword", + "items": { + "name": "Shortsword +2", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Hand Crossbow", + "items": { + "name": "Hand Crossbow +1", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake." + ] + } + } + ] + } + }, + "hp": { + "average": 110, + "formula": "11d8 + 22" + }, + "hasToken": true + }, + { + "name": "Duergar Spy", + "source": "TftYP", + "page": 234, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 16, + "con": 12, + "int": 12, + "wis": 10, + "cha": 13, + "skill": { + "deception": "+5", + "insight": "+2", + "investigation": "+5", + "perception": "+4", + "persuasion": "+3", + "sleight of hand": "+5", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of its turns, the spy can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Duergar Resilience", + "entries": [ + "The spy has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sneak Attack", + "entries": [ + "Once per turn, the spy can deal an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the spy that isn't {@condition incapacitated} and the spy doesn't have disadvantage on the attack roll." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the spy has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spy makes two shortsword attacks." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the spy magically increases in size, along with anything it is wearing or carrying. While enlarged, the spy is Large, doubles her damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the spy lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 10 ({@damage 2d6 + 3}) piercing damage while enlarged." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The spy magically turns {@condition invisible} until it attacks, deals damage, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the spy wears or carries is {@condition invisible} with it." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Durnn", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 25, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item splint armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 18, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 12, + "con": 12, + "int": 10, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1", + "trait": [ + { + "name": "Martial Advantage", + "entries": [ + "Once per turn, the hobgoblin can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "longsword|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Eira", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 159, + "_copy": { + "name": "Druid", + "source": "MM", + "_templates": [ + { + "name": "Wood Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the druid", + "with": "Eira", + "flags": "i" + } + } + }, + "traitTags": [ + "Fey Ancestry" + ], + "hasToken": true + }, + { + "name": "Elder Black Pudding", + "source": "TftYP", + "page": 143, + "_copy": { + "name": "Black Pudding", + "source": "MM" + }, + "size": [ + "H" + ], + "hp": { + "average": 130, + "formula": "10d12 + 30" + }, + "hasToken": true + }, + { + "name": "Elder Giant Lizard", + "source": "TftYP", + "page": 176, + "_copy": { + "name": "Giant Crocodile", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "crocodile", + "with": "lizard", + "flags": "i" + } + } + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "senses": [ + "darkvision 60 ft." + ], + "senseTags": [ + "D" + ], + "hasToken": true + }, + { + "name": "Erky Timbers", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 22, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 10 + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "medicine": "+4", + "religion": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Gnomish", + "Goblin" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The acolyte is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The acolyte has following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell sanctuary}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + }, + { + "name": "Channel Divinity: Turn Undead (1/Short Rest)", + "entries": [ + "Erky presents his holy Symbol and speaks a prayer censuring the Undead. Each Undead that can see or hear Erky within 30 feet of him must make a {@dc 12} Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.", + "A turned creature must spend its turns trying to move as far away from Erky as it can, and it can't willingly move to a space within 30 feet of him. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "G", + "GO" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Estia", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 189, + "_copy": { + "name": "Cloud Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Estia", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Morningstar", + "items": { + "name": "Morningstar +2", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d8 + 10}) piercing damage." + ] + } + } + ] + } + }, + "immune": [ + "cold" + ], + "spellcasting": null, + "trait": null, + "traitTags": [], + "spellcastingTags": [], + "hasToken": true + }, + { + "name": "Fire Giant Royal Headsman", + "source": "TftYP", + "page": 201, + "_copy": { + "name": "Fire Giant", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The giant makes two greataxe attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greataxe +2", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) slashing damage." + ] + } + } + ] + } + }, + "attachedItems": [ + "+2 greataxe" + ], + "hasToken": true + }, + { + "name": "Fire Giant Servant", + "source": "TftYP", + "page": 171, + "_copy": { + "name": "Hill Giant", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The giant makes two longsword attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatclub", + "items": { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) slashing damage, or 21 ({@damage 3d10 + 5}) slashing damage if used with both hands." + ] + } + } + ] + } + }, + "immune": [ + "fire" + ], + "damageTags": [ + "B", + "S" + ], + "hasToken": true + }, + { + "name": "Flying Shield", + "source": "TftYP", + "page": 224, + "_copy": { + "name": "Flying Sword", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "sword", + "with": "shield", + "flags": "i" + } + } + }, + "action": null, + "miscTags": [], + "hasToken": true + }, + { + "name": "Four-Armed Gargoyle", + "source": "TftYP", + "page": 129, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 63, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 15, + "dex": 11, + "con": 16, + "int": 6, + "wis": 11, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "petrified", + "poisoned" + ], + "languages": [ + "Terran" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gargoyle makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Frost Giant Servant", + "source": "TftYP", + "page": 187, + "_copy": { + "name": "Hill Giant", + "source": "MM" + }, + "immune": [ + "cold" + ], + "hasToken": true + }, + { + "name": "Gargantuan Rug of Smothering", + "source": "TftYP", + "page": 56, + "_copy": { + "name": "Rug of Smothering", + "source": "MM" + }, + "size": [ + "G" + ], + "hp": { + "average": 63, + "formula": "6d20" + }, + "hasToken": true + }, + { + "name": "Giant Crayfish", + "source": "TftYP", + "page": 235, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d10 + 7" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 15, + "dex": 13, + "con": 13, + "int": 1, + "wis": 9, + "cha": 3, + "skill": { + "stealth": "+3" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 9, + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The giant crayfish can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant crayfish makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}). The crayfish has two claws, each of which can grapple only one target." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Giant Ice Toad", + "source": "TftYP", + "page": 235, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 8, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "cold" + ], + "languages": [ + "Ice Toad" + ], + "cr": "3", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The toad can breathe air and water." + ] + }, + { + "name": "Cold Aura", + "entries": [ + "Any creature that starts its turn within 10 feet of the toad takes 5 ({@damage 1d10}) cold damage." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The toad's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, and the toad can't bite another target." + ] + }, + { + "name": "Swallow", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature the toad is grappling. {@h}10 ({@damage 2d6 + 3}) piercing damage, the target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the toad, and it takes 10 ({@damage 3d6}) acid damage and 11 ({@damage 2d10}) cold damage at the start of each of the toad's turns. The toad can have only one target swallowed at a time.", + "If the toad dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Swallow" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "A", + "C", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Lightning Eel", + "source": "TftYP", + "page": 236, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 42, + "formula": "5d10 + 15" + }, + "speed": { + "walk": 5, + "swim": 30 + }, + "str": 11, + "dex": 17, + "con": 16, + "int": 2, + "wis": 12, + "cha": 3, + "senses": [ + "blindsight 60 ft." + ], + "passive": 11, + "resist": [ + "lightning" + ], + "cr": "3", + "trait": [ + { + "name": "Water Breathing", + "entries": [ + "The eel can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eel makes two bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 4 ({@damage 1d8}) lightning damage." + ] + }, + { + "name": "Lightning Jolt {@recharge 5}", + "entries": [ + "One creature the eel touches within 5 feet of it outside water, or each creature within 15 feet of it in a body of water, must make a {@dc 12} Constitution saving throw. On failed save, a target takes 13 ({@damage 3d8}) lightning damage. If the target takes any of this damage, the target is {@condition stunned} until the end of the eel's next turn. On a successful save, a target takes half as much damage and isn't {@condition stunned}." + ] + } + ], + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Giant Skeleton", + "source": "TftYP", + "page": 236, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "SDW" + }, + { + "source": "IMR" + } + ], + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 115, + "formula": "10d12 + 50" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 10, + "con": 20, + "int": 4, + "wis": 6, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Giant but can't speak" + ], + "cr": "7", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If the skeleton is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The skeleton has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Turn Immunity", + "entries": [ + "The skeleton is immune to effects that turn undead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skeleton makes three scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Turn Immunity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "GI" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Giant Subterranean Lizard", + "source": "TftYP", + "page": 236, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21" + }, + "speed": { + "walk": 30, + "swim": 50 + }, + "str": 21, + "dex": 9, + "con": 17, + "int": 2, + "wis": 10, + "cha": 7, + "skill": { + "stealth": "+3" + }, + "passive": 10, + "cr": "4", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lizard makes two attacks: one with its bite and one with its tail. One attack can be replaced by Swallow." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage and the target is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the lizard can't bite another target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Swallow", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Medium or smaller creature the lizard is grappling. {@h}16 ({@damage 2d10 + 5}) piercing damage. The target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the lizard, and it takes 10 ({@damage 3d6}) acid damage at the start of each of the lizard's turns. The lizard can have only one target swallowed at a time.", + "If the lizard dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ] + } + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Goblin Commoner", + "source": "TftYP", + "page": 24, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Goblin", + "source": "DMG" + } + ] + }, + "hp": { + "average": 3, + "formula": "1d6" + }, + "str": 8, + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO", + "X" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Gorvan Ironheart", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 151, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Gorvan", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Great Ulfe", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 42, + "_copy": { + "name": "Ogre", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ogre", + "with": "Ulfe", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Greatclub", + "items": { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ] + } + } + } + }, + "damageTags": [ + "P", + "S" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Greater Zombie", + "source": "TftYP", + "page": 237, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "SDW" + }, + { + "source": "IMR" + } + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 4, + "wis": 6, + "cha": 6, + "save": { + "wis": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + "cold", + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Turn Resistance", + "entries": [ + "The zombie has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zombie makes two melee attacks." + ] + }, + { + "name": "Empowered Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage and 7 ({@damage 2d6}) necrotic damage." + ] + } + ], + "traitTags": [ + "Turn Resistance", + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Grenl", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 25, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 10, + "formula": "3d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 10, + "wis": 13, + "cha": 8, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Grenl is a 1st-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell poison spray}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell bane}", + "{@spell inflict wounds}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Nimble Escape", + "entries": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 4}, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4}, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb", + "shortbow|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "I", + "N" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Grutha", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 170, + "_copy": { + "name": "Hill Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Grutha", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Guthash", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 21, + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 16, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 11, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 10} Constitution saving throw or contract a disease. Until the disease is cured, the target can't regain hit points except by magical means, and the target's hit point maximum decreases by 3 ({@dice 1d6}) every 24 hours. If the target's hit point maximum drops to 0 as a result of this disease, the target dies." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "DIS", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hedrun Arnsfirth", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 160, + "_copy": { + "name": "Deathlock Wight", + "source": "MTF", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wight", + "with": "Hedrun", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Hill Giant Sergeant", + "source": "TftYP", + "page": 170, + "_copy": { + "name": "Hill Giant", + "source": "MM" + }, + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 115, + "formula": "10d12 + 40" + }, + "hasToken": true + }, + { + "name": "Hill Giant Servant", + "source": "TftYP", + "page": 170, + "_copy": { + "name": "Ogre", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "ogre", + "with": "giant" + } + } + }, + "hasToken": true + }, + { + "name": "Hill Giant Subchief", + "source": "TftYP", + "page": 170, + "_copy": { + "name": "Stone Giant", + "source": "MM" + }, + "trait": null, + "hasToken": true + }, + { + "name": "Huge Giant Crab", + "source": "TftYP", + "page": 103, + "otherSources": [ + { + "source": "SLW" + } + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 20, + "dex": 15, + "con": 20, + "int": 1, + "wis": 9, + "cha": 3, + "skill": { + "stealth": "+5" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 9, + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed" + ], + "cr": "8", + "trait": [ + { + "name": "Banded Claw", + "entries": [ + "On one of its claws, the crab wears a rune-covered copper band that makes it immune to being {@condition charmed}, {@condition frightened}, and {@condition paralyzed}. The copper band is worthless as a treasure, as the magic is keyed to this crab." + ] + }, + { + "name": "Amphibious", + "entries": [ + "The crab can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}27 ({@damage 4d10 + 5}) bludgeoning damage, and the target is {@condition grappled}, escape {@dc 14}. The crab has two claws, each of which can grapple only one target." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Huge Ochre Jelly", + "source": "TftYP", + "page": 225, + "_copy": { + "name": "Ochre Jelly", + "source": "MM" + }, + "size": [ + "H" + ], + "hp": { + "average": 51, + "formula": "6d12 + 12" + }, + "hasToken": true + }, + { + "name": "Huge Polar Bear", + "source": "TftYP", + "page": 187, + "_copy": { + "name": "Polar Bear", + "source": "MM" + }, + "size": [ + "H" + ], + "hp": { + "average": 65, + "formula": "5d12 + 15" + }, + "hasToken": true + }, + { + "name": "Irisoth", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 157, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Half-Elf", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E", + "X" + ], + "hasToken": true + }, + { + "name": "Jarl Grugnur", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 189, + "_copy": { + "name": "Cloud Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Grugnur", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Grugnur makes two longsword attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Morningstar", + "items": { + "name": "Longsword +2", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d8 + 10}) slashing damage, or 26 ({@damage 3d10 + 10}) slashing damage if used with both hands." + ] + } + } + ] + } + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item arrow-catching shield}" + ] + }, + { + "ac": 20, + "condition": "against ranged attacks", + "braces": true + } + ], + "immune": [ + "cold" + ], + "spellcasting": null, + "trait": null, + "traitTags": [], + "damageTags": [ + "B", + "S" + ], + "spellcastingTags": [], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Jot", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 15, + "_copy": { + "name": "Quasit", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the quasit", + "with": "Jot", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Kaarghaz", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 45, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "troglodyte" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 6, + "wis": 10, + "cha": 15, + "skill": { + "stealth": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Draconic", + "Troglodyte" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kaarghaz is a 4th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 6, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell scorching ray}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Chameleon Skin", + "entries": [ + "The troglodyte has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ] + }, + { + "name": "Stench", + "entries": [ + "Any creature other than a troglodyte that starts its turn within 5 feet of the troglodyte must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all troglodytes for 1 hour." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the troglodyte has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The troglodyte makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "C", + "F", + "I" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kalka-Kylla", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 238, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 17, + "dex": 12, + "con": 16, + "int": 15, + "wis": 16, + "cha": 12, + "skill": { + "deception": "+3", + "insight": "+5", + "stealth": "+3" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 13, + "languages": [ + "Olman" + ], + "cr": "3", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Kalka-Kylla can breathe air and water." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While Kalka-Kylla remains motionless and hidden in its shell, it is indistinguishable from a polished boulder." + ] + }, + { + "name": "Shell", + "entries": [ + "Kalka-Kylla can use a bonus action to retract into or emerge from its shell. While retracted, Kalka-Kylla gains a +4 bonus to AC, and it has a speed of 0 and can't benefit from bonuses to speed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Kalka-Kylla makes two claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and if the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}. Kalka-Kylla has two claws, each of which can grapple only one target." + ] + } + ], + "traitTags": [ + "Amphibious", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true + }, + { + "name": "Kelpie", + "source": "TftYP", + "page": 238, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 10, + "swim": 30 + }, + "str": 14, + "dex": 14, + "con": 16, + "int": 7, + "wis": 12, + "cha": 10, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "resist": [ + "fire", + "bludgeoning", + "piercing" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kelpie can breathe air and water." + ] + }, + { + "name": "Seaweed Shape", + "entries": [ + "The kelpie can use its action to reshape its body into the form of a humanoid or beast that is Small, Medium, or Large. Its statistics are otherwise unchanged. The disguise is convincing, unless the kelpie is in bright light or the viewer is within 30 feet of it, in which case the seams between the seaweed strands are visible. The kelpie returns to its true form if takes a bonus action to do so or if it dies." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the kelpie remains motionless in its true form, it is indistinguishable from normal seaweed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kelpie makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 12})." + ] + }, + { + "name": "Drowning Hypnosis", + "entries": [ + "The kelpie chooses one humanoid it can see within 150 feet of it. If the target can see the kelpie, the target must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition charmed} while the kelpie maintains {@status concentration}, up to 10 minutes (as if {@status concentration||concentrating} on a spell). The {@condition charmed} target is {@condition incapacitated}, and instead of holding its breath underwater, it tries to breathe normally and immediately runs out of breath, unless it can breathe water. If the {@condition charmed} target is more than 5 feet away from the kelpie, the target must move on its turn toward the kelpie by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks.", + "Before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the kelpie or drowning, the target can repeat the saving throw. A {@condition charmed} target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", + "A target that successfully saves is immune to this kelpie's hypnosis for the next 24 hours." + ] + } + ], + "traitTags": [ + "Amphibious", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed", + "grappled", + "incapacitated" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true + }, + { + "name": "Kelson Darktreader", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 132, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Half-Elf", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E", + "X" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kieren", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 157, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true + }, + { + "name": "King Snurre", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 193, + "_copy": { + "name": "Fire Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Snurre", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) slashing damage plus 7 ({@damage 2d6}) fire damage." + ] + } + } + } + }, + "hp": { + "average": 187, + "formula": "15d12 + 90" + }, + "resist": [ + "cold" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "11", + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "F", + "S" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kobold Commoner", + "source": "TftYP", + "page": 18, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Kobold", + "source": "DMG" + } + ] + }, + "hp": { + "average": 3, + "formula": "1d6" + }, + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "X" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Kobold Elite", + "source": "TftYP", + "page": 18, + "_copy": { + "name": "Kobold", + "source": "MM" + }, + "hp": { + "average": 7, + "formula": "2d6 - 2" + }, + "hasToken": true + }, + { + "name": "Lacedon", + "source": "TftYP", + "page": 147, + "otherSources": [ + { + "source": "EGW" + } + ], + "_copy": { + "name": "Ghoul", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "ghoul", + "with": "lacedon", + "flags": "i" + } + } + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "hasToken": true + }, + { + "name": "Lahnis", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 131, + "_copy": { + "name": "Evoker", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the evoker", + "with": "Lahnis", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lesser Mummy Lord", + "source": "TftYP", + "page": 224, + "_copy": { + "name": "Mummy Lord", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The mummy wears a {@item ring of fire resistance}." + ] + } + } + } + }, + "resist": [ + "fire" + ], + "vulnerable": null, + "cr": { + "cr": "15", + "xp": 6500 + }, + "spellcasting": null, + "legendary": null, + "damageTagsSpell": [], + "spellcastingTags": [], + "hasToken": true + }, + { + "name": "Lumalia", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 153, + "_copy": { + "name": "Deva", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the deva", + "with": "Lumalia", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Malformed Kraken", + "source": "TftYP", + "page": 239, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 20, + "swim": 40 + }, + "str": 25, + "dex": 11, + "con": 20, + "int": 11, + "wis": 15, + "cha": 15, + "save": { + "str": "+11", + "con": "+9", + "int": "+4", + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning" + ], + "conditionImmune": [ + "frightened", + "paralyzed" + ], + "languages": [ + "understands Common but can't speak", + "telepathy 60 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The kraken can breathe air and water." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The kraken deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kraken makes three tentacle attacks. One of them can be replaced with a bite attack, and any of them can be replaced with Fling." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 20 ft., one target. {@h}14 ({@damage 2d6 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}. The kraken has ten tentacles, each of which can grapple one target." + ] + }, + { + "name": "Fling", + "entries": [ + "One Medium or smaller object held or creature {@condition grappled} by the kraken's tentacles is thrown up to 60 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 16} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ] + }, + { + "name": "Lightning Storm", + "entries": [ + "The kraken creates three bolts of lightning, each of which can strike a target the kraken can see within 150 feet of it. A target must make a {@dc 16} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Amphibious", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "C", + "CS", + "TP" + ], + "damageTags": [ + "B", + "L", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mennek Ariz", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 157, + "_copy": { + "name": "Enchanter", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the enchanter", + "with": "Mennek", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nahual", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 91, + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 11, + "wis": 12, + "cha": 14, + "skill": { + "deception": "+6", + "insight": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Ambusher", + "entries": [ + "In the first round of a combat, the doppelganger has advantage on attack rolls against any creature it has {@status surprised}." + ] + }, + { + "name": "Surprise Attack", + "entries": [ + "If the doppelganger surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 ({@damage 3d6}) damage from the attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The doppelganger makes two melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Read Thoughts", + "entries": [ + "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's {@status concentration} isn't broken (as if {@status concentration||concentrating} on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom ({@skill Insight}) and Charisma ({@skill Deception}, {@skill Intimidation}, and {@skill Persuasion}) checks against the target." + ] + } + ], + "traitTags": [ + "Ambusher", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Nedylene", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 209, + "_copy": { + "name": "Drow Priestess of Lolth", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Nedylene", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Nedylene carries a {@item staff of swarming insects}." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Scourge", + "items": { + "name": "Scourge +2", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 17 ({@damage 5d6}) poison damage." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Nereid", + "source": "TftYP", + "page": 240, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "G", + "NY", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30, + "swim": 60 + }, + "str": 10, + "dex": 17, + "con": 12, + "int": 13, + "wis": 14, + "cha": 16, + "skill": { + "acrobatics": "+5", + "nature": "+3", + "stealth": "+5", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Aquan", + "Common", + "Elvish", + "Sylvan" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The nereid can breathe air and water." + ] + }, + { + "name": "Aquatic Invisibility", + "entries": [ + "If immersed in water, the nereid can make itself {@condition invisible} as a bonus action. It remains {@condition invisible} until it leaves the water, ends the invisibility as a bonus action, or dies." + ] + }, + { + "name": "Mantle Dependent", + "entries": [ + "The nereid wears a mantle of silky cloth the color of sea foam, which holds the creature's spirit. The mantle has an AC and hit points equal to that of the nereid, but the garment can't be directly harmed while the nereid wears it. If the mantle is destroyed, the nereid becomes {@condition poisoned} and dies within 1 hour. A nereid is willing to do anything in its power to recover the mantle if it is stolen, including serving the thief." + ] + }, + { + "name": "Shape Water", + "entries": [ + "The nereid can cast {@spell control water} at will, requiring no components. Its spellcasting ability for it is Charisma. This use of the spell has a range of 30 feet and can affect a cube of water no larger than 30 feet on a side." + ] + }, + { + "name": "Speak With Animals", + "entries": [ + "The nereid can comprehend and verbally communicate with beasts." + ] + } + ], + "action": [ + { + "name": "Blinding Acid", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 30 ft., one target. {@h}16 ({@damage 2d12 + 3}) acid damage, and the target is {@condition blinded} until the start of the nereid's next turn." + ] + }, + { + "name": "Drowning Kiss {@recharge 5}", + "entries": [ + "The nereid touches one creature it can see within 5 feet of it. The target must succeed on a {@dc 13} Constitution saving throw or take 22 ({@damage 3d12 + 3}) acid damage. On a failure, it also runs out of breath and can't speak for 1 minute. At the end of each of its turns, it can repeat the save, ending the effect on itself on a success." + ] + }, + { + "name": "Water Lash", + "entries": [ + "The nereid causes a 5-foot cube of water within 60 feet of it to take a shape of its choice and strike one target it can see within 5 feet of that water. The target must make a {@dc 13} Strength saving throw. On a failed save, it takes 17 ({@damage 4d6 + 3}) bludgeoning damage, and if it is a Large or smaller creature, it is pushed up to 15 feet in a straight line or is knocked {@condition prone} (nereid's choice). On a successful save, the target takes half as much damage and isn't pushed or knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AQ", + "C", + "E", + "S" + ], + "damageTags": [ + "A", + "B" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "blinded", + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Nimira", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 54, + "_copy": { + "name": "Duergar", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the duergar", + "with": "Nimira", + "flags": "i" + }, + "action": { + "mode": "prependArr", + "items": [ + { + "name": "Multiattack", + "entries": [ + "Multiattack. Nimira makes two greatsword attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage, or 16 ({@damage 4d6 + 2}) slashing damage while enlarged." + ] + } + ] + } + } + }, + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "cr": "3", + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Obmi", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 196, + "_copy": { + "name": "Assassin", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Obmi", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Obmi makes three shortsword attacks." + ] + } + } + } + }, + "str": 16, + "cha": 16, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ogre Skeleton", + "source": "TftYP", + "page": 54, + "_copy": { + "name": "Ogre", + "source": "MM", + "_templates": [ + { + "name": "Skeleton", + "source": "DMG" + } + ] + }, + "languageTags": [ + "C", + "CS", + "GI", + "LF" + ], + "hasToken": true + }, + { + "name": "Ooze Master", + "source": "TftYP", + "page": 241, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 9, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 16, + "dex": 1, + "con": 20, + "int": 17, + "wis": 10, + "cha": 16, + "save": { + "int": "+7", + "wis": "+4" + }, + "skill": { + "arcana": "+7", + "insight": "+4" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 10, + "resist": [ + "lightning", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "cold", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "prone" + ], + "languages": [ + "Common", + "Primordial", + "Thayan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Ooze Master is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell poison spray}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell Melf's acid arrow}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fear}", + "{@spell slow}", + "{@spell stinking cloud}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell Evard's black tentacles}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cloudkill}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Corrosive Form", + "entries": [ + "A creature that touches the Ooze Master or hits it with a melee attack while within 5 feet of it takes 9 ({@damage 2d8}) acid damage. Any nonmagical weapon that hits the Ooze Master corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition that hits the Ooze Master is destroyed after dealing damage.", + "The Ooze Master can eat through 2-inch-thick, nonmagical wood or metal in 1 round." + ] + }, + { + "name": "Instinctive Attack", + "entries": [ + "When the Ooze Master casts a spell with a casting time of 1 action, it can make one pseudopod attack as a bonus action." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The Ooze Master can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 3d6 + 3}) bludgeoning damage plus 10 ({@damage 3d6}) acid damage." + ] + } + ], + "reaction": [ + { + "name": "Instinctive Charm", + "entries": [ + "If a creature the Ooze Master can see makes an attack roll against it while within 30 feet of it, the Ooze Master can use a reaction to divert the attack if another creature is within the attack's range. The attacker must make a {@dc 15} Wisdom saving throw. On a failed save, the attacker targets the creature that is closest to it, not including itself or the Ooze Master. If multiple creatures are closest, the attacker chooses which one to target. On a successful save, the attacker is immune to this Instinctive Charm for 24 hours. Creatures that can't be {@condition charmed} are immune to this effect." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C", + "OTH", + "P" + ], + "damageTags": [ + "A", + "B" + ], + "damageTagsSpell": [ + "A", + "B", + "I", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Orc Commoner", + "source": "TftYP", + "page": 167, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Orc", + "source": "DMG" + } + ] + }, + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "O", + "X" + ], + "hasToken": true + }, + { + "name": "Oussa", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 157, + "_copy": { + "name": "Yuan-ti Malison (Type 3)", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the yuan-ti", + "with": "Oussa", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Phaia", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 132, + "_copy": { + "name": "Necromancer", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the necromancer", + "with": "Phaia", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Reduced-Threat Aboleth", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Aboleth", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Reduced-Threat Basilisk", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Basilisk", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Behir", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Behir", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ], + "_mod": { + "action": { + "mode": "removeArr", + "names": [ + "Constrict", + "Swallow" + ] + } + } + }, + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "damageTags": [ + "L", + "P" + ], + "hasToken": true + }, + { + "name": "Reduced-Threat Beholder", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Beholder", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Black Pudding", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Black Pudding", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Carrion Crawler", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Carrion Crawler", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Clay Golem", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Clay Golem", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Darkmantle", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Darkmantle", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Displacer Beast", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Displacer Beast", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Dragon Turtle", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Dragon Turtle", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ], + "_mod": { + "action": [ + { + "mode": "removeArr", + "names": [ + "Tail" + ] + }, + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The dragon turtle makes three attacks: one with its bite and two with its claws." + ] + } + } + ] + } + }, + "damageTags": [ + "F", + "P", + "S" + ], + "hasToken": true + }, + { + "name": "Reduced-Threat Ettercap", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Ettercap", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "damageTags": [ + "I", + "P", + "S" + ], + "hasToken": true + }, + { + "name": "Reduced-Threat Flesh Golem", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Flesh Golem", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Glabrezu", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Glabrezu", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Gray Ooze", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Gray Ooze", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "damageTags": [ + "A", + "B" + ], + "hasToken": true + }, + { + "name": "Reduced-Threat Helmed Horror", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Helmed Horror", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Hezrou", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Hezrou", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Hook Horror", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Hook Horror", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Ochre Jelly", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Ochre Jelly", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Otyugh", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Otyugh", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ], + "_mod": { + "action": [ + { + "mode": "removeArr", + "names": [ + "Tentacle Slam" + ] + }, + { + "mode": "replaceArr", + "replace": "Tentacle", + "items": { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 4 ({@damage 1d8}) piercing damage." + ] + } + } + ] + } + }, + "conditionInflict": [ + "poisoned" + ], + "hasToken": true + }, + { + "name": "Reduced-Threat Owlbear", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Owlbear", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Peryton", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Peryton", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Remorhaz", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Remorhaz", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Stone Golem", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Vrock", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Vrock", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Wight", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Wight", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Reduced-Threat Wyvern", + "source": "TftYP", + "page": 113, + "_copy": { + "name": "Wyvern", + "source": "MM", + "_templates": [ + { + "name": "Reduced Threat", + "source": "TftYP" + } + ] + }, + "hasToken": true + }, + { + "name": "Scrag", + "source": "TftYP", + "page": 147, + "_copy": { + "name": "Troll", + "source": "MM" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "hasToken": true + }, + { + "name": "Sea Lion", + "source": "TftYP", + "page": 242, + "otherSources": [ + { + "source": "LR" + }, + { + "source": "GoS", + "page": 252 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 17, + "dex": 15, + "con": 15, + "int": 3, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "passive": 14, + "cr": "5", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The sea lion can breathe air and water." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The sea lion has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The sea lion has advantage on an attack roll against a creature if at least one of the sea lion's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Swimming Leap", + "entries": [ + "With a 10-foot swimming start, the sea lion can long jump out of or across the water up to 25 feet." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sea lion makes three attacks: one bite attack and two claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ] + } + ], + "altArt": [ + { + "name": "Sea Lion", + "source": "GoS" + } + ], + "traitTags": [ + "Amphibious", + "Keen Senses", + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sentient Gray Ooze", + "source": "TftYP", + "page": 158, + "_copy": { + "name": "Gray Ooze", + "source": "MM", + "_mod": { + "conditionImmune": { + "mode": "removeArr", + "items": "charmed" + } + } + }, + "int": 5, + "languages": [ + "Common" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "A", + "B" + ], + "hasToken": true + }, + { + "name": "Sentient Ochre Jelly", + "source": "TftYP", + "page": 158, + "_copy": { + "name": "Ochre Jelly", + "source": "MM", + "_mod": { + "conditionImmune": { + "mode": "removeArr", + "items": "charmed" + } + } + }, + "int": 5, + "languages": [ + "Common" + ], + "languageTags": [ + "C" + ], + "hasToken": true + }, + { + "name": "Shalendra Floshin", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 119, + "_copy": { + "name": "Knight", + "source": "MM", + "_templates": [ + { + "name": "High Elf", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry" + ], + "hasToken": true + }, + { + "name": "Sharwyn Hucrele", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 242, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "Barkskin trait" + ] + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 13, + "con": 14, + "int": 16, + "wis": 14, + "cha": 9, + "skill": { + "arcana": "+5", + "insight": "+4", + "persuasion": "+1" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Goblin" + ], + "cr": "1/2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sharwyn is a 1st-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell color spray}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell sleep}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Barkskin", + "entries": [ + "Sharwyn's AC can't be lower than 16." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Sharwyn has a {@item spellbook|phb} that contains the spells listed in her Spellcasting trait, plus {@spell detect magic} and {@spell silent image}." + ] + }, + { + "name": "Tree Thrall", + "entries": [ + "If the Gulthias Tree dies, Sharwyn dies 24 hours later." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4}, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "DR", + "GO" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Sir Braford", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 243, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 9, + "con": 14, + "int": 10, + "wis": 13, + "cha": 14, + "skill": { + "athletics": "+5", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "Barkskin", + "entries": [ + "Sir Braford's AC can't be lower than 16." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Sir Braford wields {@item Shatterspike|tftyp}, a magic longsword that grants a +1 bonus to attack and damage rolls made with it (included in his attack). See the Shatterspike handout for the item's other properties." + ] + }, + { + "name": "Tree Thrall", + "entries": [ + "If the Gulthias Tree dies, Sir Braford dies 24 hours later." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Protection", + "entries": [ + "When a creature Sir Braford can see attacks a target other than him that is within 5 feet of him, he can use a reaction to use his shield to impose disadvantage on the attack roll." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Siren", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 243, + "otherSources": [ + { + "source": "MOT" + } + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "G" + ], + "ac": [ + 14 + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 10, + "dex": 18, + "con": 12, + "int": 13, + "wis": 14, + "cha": 16, + "skill": { + "medicine": "+4", + "nature": "+3", + "stealth": "+6", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Siren's innate spellcasting ability is Charisma (spell save {@dc 13}). She can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell fog cloud}", + "{@spell greater invisibility}", + "{@spell polymorph} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Siren can breathe air and water." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Siren has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Stupefying Touch", + "entries": [ + "Siren touches one creature she can see within 5 feet of her. The creature must succeed on a {@dc 13} Intelligence saving throw or take 13 ({@damage 3d6 + 3}) psychic damage and be {@condition stunned} until the start of Siren's next turn." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Amphibious", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "invisible" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Snarla", + "group": [ + "Lycanthropes" + ], + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 102, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "condition": "in humanoid form" + }, + { + "ac": 12, + "from": [ + "natural armor" + ], + "condition": "in wolf and hybrid forms" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft. in wolf form)" + } + }, + "str": 15, + "dex": 13, + "con": 14, + "int": 16, + "wis": 11, + "cha": 10, + "skill": { + "perception": "+3" + }, + "passive": 14, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common (can't speak in wolf form)" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Snarla is a 6th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, +6 to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell haste}", + "{@spell stinking cloud}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "The werewolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + } + ], + "action": [ + { + "name": "Multiattack (Humanoid or Hybrid Form Only)", + "entries": [ + "The werewolf makes two attacks: one with its bite and one with its claws or spear." + ] + }, + { + "name": "Bite (Wolf or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 12} Constitution saving throw or be cursed with werewolf lycanthropy." + ] + }, + { + "name": "Claws (Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ] + }, + { + "name": "Spear (Humanoid Form Only)", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Keen Senses", + "Shapechanger" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "F", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Snow Leopard", + "source": "TftYP", + "page": 183, + "_copy": { + "name": "Tiger", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "tiger", + "with": "leopard", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Snurrevin", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 53, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 14, + "int": 14, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Snurrevin is a 3rd-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell color spray}", + "{@spell shield}", + "{@spell silent image}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell hold person}", + "{@spell shatter}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Duergar Resilience", + "entries": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "War Pick", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ] + } + ], + "attachedItems": [ + "javelin|phb", + "war pick|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F", + "L", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded", + "paralyzed" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Stone Dragon Statue", + "source": "TftYP", + "page": 85, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "statue", + "flags": "i" + } + } + }, + "action": [ + { + "name": "Steam Breath", + "entries": [ + "The statue exhales steam in a line that is 30 feet long and 10 feet wide. Each creature in that area must make a {@dc 15} Constitution saving throw, taking 7 ({@damage 2d4 + 2}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "actionTags": [ + "Breath Weapon" + ], + "damageTags": [ + "F" + ], + "miscTags": [], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Tarul Var", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 244, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 16, + "int": 19, + "wis": 14, + "cha": 16, + "save": { + "con": "+8", + "int": "+9", + "wis": "+7" + }, + "skill": { + "arcana": "+9", + "history": "+9", + "insight": "+7", + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "lightning", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "Primordial", + "Thayan" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Var is a 12th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He has the following wizard spells prepared:", + "*Conjuration spell of 1st level or higher" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell unseen servant}*" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell flaming sphere}*", + "{@spell mirror image}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dimension door}*", + "{@spell Evard's black tentacles}*" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}*", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Focused Conjuration", + "entries": [ + "While Var is {@status concentration||concentrating} on a conjuration spell, his {@status concentration} can't be broken as a result of taking damage." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Var fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If Var is destroyed but his phylactery remains intact, Var gains a new body in {@dice 1d10} days, regaining all his hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "Var has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Paralyzing Touch", + "entries": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Benign Transposition", + "entries": [ + "Var teleports up to 30 feet to an unoccupied space he can see. Alternatively, he can choose a space within range that is occupied by a Small or Medium creature. If that creature is willing, both creatures teleport, swapping places. Var can use this feature again only after he finishes a long rest or casts a conjuration spell of 1st level or higher." + ] + } + ], + "legendary": [ + { + "name": "Cantrip", + "entries": [ + "Var casts a cantrip." + ] + }, + { + "name": "Paralyzing Touch (Costs 2 Actions)", + "entries": [ + "Var uses Paralyzing Touch." + ] + }, + { + "name": "Frightening Gaze (Costs 2 Actions)", + "entries": [ + "Var fixes his gaze on one creature he can see within 10 feet of him. The target must succeed on a {@dc 17} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to Var's gaze for the next 24 hours." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Rejuvenation", + "Turn Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C", + "I", + "OTH", + "P" + ], + "damageTags": [ + "C" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "I", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tecuziztecatl", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 245, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36" + }, + "speed": { + "walk": 30, + "climb": 30, + "swim": 30 + }, + "str": 17, + "dex": 10, + "con": 16, + "int": 15, + "wis": 16, + "cha": 13, + "skill": { + "deception": "+3", + "stealth": "+2" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 13, + "resist": [ + { + "resist": [ + "bludgeoning" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid" + ], + "languages": [ + "Olman", + "Primordial" + ], + "cr": "4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Tecuziztecatl can breathe air and water." + ] + }, + { + "name": "Glowing", + "entries": [ + "Tecuziztecatl sheds dim light within 20 feet of itself." + ] + }, + { + "name": "Flexible", + "entries": [ + "Tecuziztecatl can enter a space large enough for a Medium creature without squeezing." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Tecuziztecatl can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tecuziztecatl makes two pseudopod attacks." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage." + ] + }, + { + "name": "Spit Acid {@recharge 4}", + "entries": [ + "Tecuziztecatl exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 13} Dexterity saving throw, taking 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Amphibious", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "A", + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Thayan Apprentice", + "source": "TftYP", + "page": 245, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 15, + "wis": 13, + "cha": 11, + "skill": { + "arcana": "+4" + }, + "passive": 11, + "languages": [ + "Common", + "Thayan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice is a 4th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell scorching ray}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Doomvault Devotion", + "entries": [ + "Within the Doomvault, the apprentice has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F", + "L" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Thayan Warrior", + "source": "TftYP", + "page": 246, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 10, + "wis": 11, + "cha": 11, + "skill": { + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common", + "Thayan" + ], + "cr": "2", + "trait": [ + { + "name": "Doomvault Devotion", + "entries": [ + "Within the Doomvault, the warrior has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The warrior has advantage on an attack roll against a creature if at least one of the warrior's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warrior makes two melee attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "javelin|phb", + "longsword|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true + }, + { + "name": "The Keeper", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 173, + "_copy": { + "name": "Stone Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "giant", + "with": "Keeper", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The Keeper makes two battleaxe attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatclub", + "items": { + "name": "Battleaxe +1", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}20 ({@damage 3d8 + 7}) slashing damage, or 23 ({@damage 3d10 + 7}) slashing damage if used with both hands." + ] + } + } + ] + } + }, + "ac": [ + { + "ac": 17, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "trait": null, + "damageTags": [ + "B", + "S" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Therzt", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 158, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ] + }, + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "E", + "X" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Thorn Slinger", + "source": "TftYP", + "page": 246, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 32, + "formula": "5d10 + 5" + }, + "speed": { + "walk": 10 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened", + "frightened" + ], + "cr": "1/2", + "trait": [ + { + "name": "Adhesive Blossoms", + "entries": [ + "The thorn slinger adheres to anything that touches it. A Medium or smaller creature adhered to the thorn slinger is also {@condition grappled} by it (escape {@dc 11}). Ability checks made to escape this grapple have disadvantage.", + "At the end of each of the thorn slinger's turns, anything {@condition grappled} by it takes 3 ({@damage 1d6}) acid damage." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the thorn slinger remains motionless, it is indistinguishable from an inanimate bush." + ] + } + ], + "action": [ + { + "name": "Thorns", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30 ft., one target. {@h}8 ({@damage 2d6 + 1}) piercing damage." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Tloques-Popolocas", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 68, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 16, + "int": 11, + "wis": 10, + "cha": 12, + "save": { + "dex": "+6", + "wis": "+3" + }, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tloques can cast {@spell hold person} ({@dc 14}) at will, requiring no components, but his target must be able to see him." + ], + "will": [ + "{@spell hold person}" + ], + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "The vampire has the following flaws:", + { + "type": "list", + "items": [ + "Forbiddance. The vampire can't enter a residence without an invitation from one of the occupants.", + "Harmed by Running Water. The vampire takes 20 acid damage when it ends its turn in running water.", + "Stake to the Heart. The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is {@condition incapacitated} in its resting place.", + "Sunlight Hypersensitivity. The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ] + }, + { + "name": "Shapechanger", + "entries": [ + "If the vampire isn't in sunlight or running water, it can use its action to Polymorph into a Tiny bat, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its Statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vampire makes two attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}8 ({@damage 2d4 + 3}) slashing damage. Instead of dealing damage, the vampire can grapple the target, escape {@dc 13}." + ] + }, + { + "name": "Children of the Night (1/Day)", + "entries": [ + "The vampire magically calls {@dice 2d4} swarms of bats, provided that the sun isn't up. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ] + }, + { + "name": "Tloques' Berserker Axe +2", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + } + ], + "traitTags": [ + "Regeneration", + "Shapechanger", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Torlin Silvershield", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 159, + "_copy": { + "name": "Wight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wight", + "with": "Torlin", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Werejaguar", + "source": "TftYP", + "page": 79, + "_copy": { + "name": "Weretiger", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "tiger", + "with": "jaguar", + "flags": "i" + }, + { + "mode": "replaceTxt", + "props": [ + "name" + ], + "replace": "Tiger", + "with": "Jaguar" + } + ] + } + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft. in jaguar form)" + } + }, + "languages": [ + "Common (can't speak in jaguar form)" + ], + "hasToken": true + }, + { + "name": "White Maw", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 248, + "size": [ + "G" + ], + "type": "ooze", + "alignment": [ + "C", + "N" + ], + "ac": [ + 5 + ], + "hp": { + "average": 217, + "formula": "14d20 + 70" + }, + "speed": { + "walk": 10 + }, + "str": 18, + "dex": 1, + "con": 20, + "int": 12, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "resist": [ + "acid", + "cold", + "fire" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "poisoned", + "prone" + ], + "languages": [ + "telepathy 50 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Amorphous Form", + "entries": [ + "White Maw can occupy another creature's space and vice versa." + ] + }, + { + "name": "Corrode Metal", + "entries": [ + "Any nonmagical weapon made of metal that hits White Maw corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. if its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition made of metal that hits White Maw is destroyed after dealing damage.", + "White Maw can eat through 2-inch-thick, nonmagical metal in 1 round." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While White Maw remains motionless, it is indistinguishable from white stone." + ] + }, + { + "name": "Killer Response", + "entries": [ + "Any creature that starts its turn in White Maw's space is targeted by a pseudopod attack if White Maw isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage plus 9 ({@damage 2d8}) acid damage. If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ] + } + ], + "traitTags": [ + "Amorphous", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "A", + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true + }, + { + "name": "Xilonen", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 83, + "_copy": { + "name": "Roper", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the roper", + "with": "Xilonen", + "flags": "i" + } + } + }, + "int": 2, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Yeti Leader", + "source": "TftYP", + "page": 183, + "_copy": { + "name": "Yeti", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The yeti can use its Chilling Gaze and makes two greatsword attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Claw", + "items": { + "name": "Frost Brand Greatsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 3 ({@damage 1d6}) cold damage." + ] + } + } + ] + } + }, + "hasToken": true + }, + { + "name": "Young Fire Giant", + "source": "TftYP", + "page": 192, + "_copy": { + "name": "Ogre", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "ogre", + "with": "giant", + "flags": "i" + } + } + }, + "immune": [ + "fire" + ], + "hasToken": true + }, + { + "name": "Young Frost Giant", + "source": "TftYP", + "page": 187, + "_copy": { + "name": "Ogre", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "ogre", + "with": "giant", + "flags": "i" + } + } + }, + "immune": [ + "cold" + ], + "hasToken": true + }, + { + "name": "Young Hill Giant", + "source": "TftYP", + "page": 167, + "_copy": { + "name": "Orc", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "orc", + "with": "giant", + "flags": "i" + } + } + }, + "type": "giant", + "hasToken": true + }, + { + "name": "Young Ogre Servant", + "source": "TftYP", + "page": 171, + "_copy": { + "name": "Orc", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "orc", + "with": "ogre", + "flags": "i" + } + } + }, + "type": "giant", + "hasToken": true + }, + { + "name": "Young Troglodyte", + "source": "TftYP", + "page": 176, + "_copy": { + "name": "Kobold", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "kobold", + "with": "troglodyte", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "troglodyte" + ] + }, + "hasToken": true + }, + { + "name": "Young Winter Wolf", + "source": "TftYP", + "page": 181, + "_copy": { + "name": "Dire Wolf", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Yusdrayl", + "isNpc": true, + "isNamedCreature": true, + "source": "TftYP", + "page": 248, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 16, + "formula": "3d6 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 15, + "con": 14, + "int": 10, + "wis": 10, + "cha": 16, + "skill": { + "arcana": "+2", + "insight": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Yusdrayl is a 2nd-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell chromatic orb}", + "{@spell mage armor}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Yusdrayl has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "Yusdrayl has advantage on an attack roll against a creature if at least one of her allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Acererak", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 209, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 285, + "formula": "30d8 + 150" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 16, + "con": 20, + "int": 27, + "wis": 21, + "cha": 20, + "save": { + "con": "+12", + "int": "+15", + "wis": "+12" + }, + "skill": { + "arcana": "+22", + "history": "+22", + "insight": "+12", + "perception": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "cold", + "lightning" + ], + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Giant", + "Infernal", + "Primordial", + "Undercommon" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Acererak is a 20th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 23}, {@hit 15} to hit with spell attacks). Acererak has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "spells": [ + "{@spell ray of sickness}", + "{@spell shield}" + ] + }, + "2": { + "spells": [ + "{@spell arcane lock}", + "{@spell knock}" + ] + }, + "3": { + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell ice storm}", + "{@spell phantasmal killer}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell hold monster}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 3, + "spells": [ + "{@spell chain lightning}", + "{@spell circle of death}", + "{@spell disintegrate}" + ] + }, + "7": { + "slots": 3, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}", + "{@spell teleport}" + ] + }, + "8": { + "slots": 2, + "spells": [ + "{@spell maze}", + "{@spell mind blank}" + ] + }, + "9": { + "slots": 2, + "spells": [ + "{@spell power word kill}", + "{@spell time stop}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Acererak carries the {@item Staff of the Forgotten One|ToA}. He wears a {@item Talisman of the Sphere} and has a {@item Sphere of Annihilation} under his control." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Acererak fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "Acererak's body turns to dust when he drops to 0 hit points, and his equipment is left behind. Acererak gains a new body after {@dice 1d10} days, regaining all his hit points and becoming active again. The new body appears within 5 feet of Acererak's phylactery, the location of which is hidden." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "Acererak has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Paralyzing Touch", + "entries": [ + "{@atk ms} {@hit 15} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage, and the target must succeed on a {@dc 20} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Staff (+3 Quarterstaff)", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage when used with two hands." + ] + }, + { + "name": "Invoke Curse", + "entries": [ + "While holding the Staff of the Forgotten One, Acererak expends 1 charge from it and targets one creature he can see within 60 feet of him. The target must succeed on a {@dc 23} Constitution saving throw or be cursed. Until the curse is ended, the target can't regain hit points and has vulnerability to necrotic damage. {@spell Greater restoration}, {@spell remove curse}, or similar magic ends the curse on the target." + ] + } + ], + "legendary": [ + { + "name": "At-Will Spell", + "entries": [ + "Acererak casts one of his at-will spells." + ] + }, + { + "name": "Melee Attack", + "entries": [ + "Acererak uses Paralyzing Touch or makes one melee attack with his staff." + ] + }, + { + "name": "Frightening Gaze (Costs 2 Actions)", + "entries": [ + "Acererak fixes his gaze on one creature he can see within 10 feet of him. The target must succeed on a {@dc 20} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target its immune to Acererak's gaze for the next 24 hours." + ] + }, + { + "name": "Talisman of the Sphere (Costs 2 Actions)", + "entries": [ + "Acererak uses his {@item Talisman of the Sphere} to move the {@item Sphere of Annihilation} under his control up to 90 feet." + ] + }, + { + "name": "Disrupt Life (Costs 3 Actions)", + "entries": [ + "Each creature within 20 feet of Acererak must make a {@dc 20} Constitution saving throw against this magic, taking 42 ({@damage 12d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Rejuvenation", + "Turn Resistance" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "AB", + "C", + "D", + "DR", + "E", + "GI", + "I", + "P", + "U" + ], + "damageTags": [ + "B", + "C", + "N" + ], + "damageTagsSpell": [ + "B", + "C", + "I", + "L", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "conditionInflictSpell": [ + "frightened", + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Albino Dwarf Spirit Warrior", + "source": "ToA", + "page": 210, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 13, + "dex": 13, + "con": 17, + "int": 12, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+4", + "stealth": "+3", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dwarf's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell hunter's mark}", + "{@spell jump}", + "{@spell pass without trace}", + "{@spell speak with animals}", + "{@spell speak with plants}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "The dwarf has advantage on saving throws against poison." + ] + } + ], + "action": [ + { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + } + ], + "attachedItems": [ + "handaxe|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Albino Dwarf Warrior", + "source": "ToA", + "page": 210, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 25 + }, + "str": 13, + "dex": 13, + "con": 17, + "int": 12, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+4", + "stealth": "+3", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1/4", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "The dwarf has advantage on saving throws against poison." + ] + } + ], + "action": [ + { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + } + ], + "attachedItems": [ + "handaxe|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aldani (Lobsterfolk)", + "source": "ToA", + "page": 210, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 20, + "swim": 30 + }, + "str": 13, + "dex": 8, + "con": 12, + "int": 10, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The aldani can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aldani makes two attacks with its claws." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, and the target is {@condition grappled} (escape {@dc 11}). The aldani has two claws, each of which can grapple only one target." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Almiraj", + "source": "ToA", + "page": 211, + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 50 + }, + "str": 2, + "dex": 16, + "con": 10, + "int": 2, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 14, + "cr": "0", + "trait": [ + { + "name": "Keen Senses", + "entries": [ + "The almiraj has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + }, + { + "name": "Familiar", + "entries": [ + "With the DM's permission, the {@spell find familiar} spell can summon an almiraj." + ] + } + ], + "action": [ + { + "name": "Horn", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "familiar": true, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ankylosaurus Zombie", + "source": "ToA", + "page": 240, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d12 + 16" + }, + "speed": { + "walk": 20 + }, + "str": 19, + "dex": 9, + "con": 15, + "int": 2, + "wis": 6, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "3", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target {@h}18 ({@damage 4d6 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Artus Cimber", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 212, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 13, + "int": 17, + "wis": 16, + "cha": 18, + "save": { + "dex": "+5", + "cha": "+7" + }, + "skill": { + "deception": "+7", + "history": "+9", + "insight": "+6", + "survival": "+9" + }, + "passive": 13, + "immune": [ + { + "immune": [ + "cold" + ], + "preNote": "While wearing the Ring of Winter:" + } + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Goblin" + ], + "cr": "7", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Artus wears the {@item Ring of Winter|toa}. He and the ring can't be targeted by divination magic or perceived through magical scrying sensors. While attuned to and wearing the ring, Artus ceases to age and is immune to cold damage and the effects of extreme cold.", + "Artus wields {@item Bookmark|toa} a +3 dagger with additional magical properties. As a bonus action, Artus can activate any one of the following properties while attuned to the dagger, provided he has the weapon drawn:", + { + "type": "list", + "items": [ + "Cause a blue gem set into the dagger's pommel to shed bright light in a 20-foot radius and dim light for an additional 20 feet, or make the gem go dark.", + "Turn the dagger into a compass that, while resting on your palm, points north.", + "Cast {@spell dimension door} from the dagger. Once this property is used, it can't be used again until the next dawn.", + "Cast {@spell compulsion} (save {@dc 15}) from the dagger. The range of the spell increases to 90 feet but it targets only spiders that are beasts. Once this property is used, it can't be used again until the next dawn." + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Artus makes three attacks with Bookmark or his longbow." + ] + }, + { + "name": "Bookmark (+3 Dagger)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Ring of Winter", + "entries": [ + "The Ring of Winter has 12 charges and regains all its expended charges daily at dawn. While attuned to and wearing the ring, Artus can expend the necessary number of charges to activate one of the following properties:", + { + "type": "list", + "items": [ + "Artus can expend 1 charge and use the ring to lower the temperature in a 120-foot-radius sphere centered on a point he can see within 300 feet of him. The temperature in that area drops 20 degrees per minute, to a minimum of \u221230 degrees Fahrenheit. Frost and ice begin to form on surfaces once the temperature drops below 32 degrees. This effect is permanent unless Artus uses the ring to end the effect as an action, at which point the temperature in the area returns to normal at a rate of 10 degrees per minute.", + "Artus can cast one of the following spells from the ring (spell save {@dc 17}) by expending the necessary number of charges: {@spell Bigby's hand} (2 charges) the hand is made of ice, is immune to cold damage, and deals bludgeoning damage instead of force damage as a clenched fist, {@spell cone of cold} (2 charges), {@spell flesh to stone||flesh to ice} (3 charges); as flesh to stone except that the target turns to solid ice with the density and durability of stone, {@spell ice storm} (2 charges), {@spell Otiluke's freezing sphere} (3 charges), {@spell sleet storm} (1 charge), {@spell spike growth} (1 charge) the spikes are made of ice, or {@spell wall of ice} (2 charges).", + "Artus can expend the necessary number of charges and use the ring to create either an inanimate ice object (2 charges) or an animated ice creature (4 charges). The ice object can't have any moving parts, must be able to fit inside a 10-foot cube, and has the density and durability of metal or stone (Artus's choice). The ice creature must be modeled after a beast with a challenge rating of 2 or less. The ice creature has the same statistics as the beast it models, with the following changes: the creature is a construct with vulnerability to fire damage, immunity to cold and poison damage, and immunity to the following conditions: {@condition charmed}, {@condition exhaustion}, {@condition frightened}, {@condition paralyzed}, {@condition petrified}, and {@condition poisoned}. The ice creature obeys only its creator's commands. The object or creature appears in an unoccupied space within 60 feet of Artus. It melts into a pool of normal water after 24 hours or when it drops to 0 hit points. In extreme heat, it loses 5 ({@dice 1d10}) hit points per minute as it melts. Use the guidelines in chapter 8 of the Dungeon Master's Guide to determine the hit points of an inanimate object if they become necessary." + ] + } + ] + } + ], + "attachedItems": [ + "bookmark|toa", + "longbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR", + "GO" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Asharra", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 69, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "aarakocra" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 20, + "fly": 50 + }, + "str": 10, + "dex": 14, + "con": 10, + "int": 14, + "wis": 17, + "cha": 11, + "skill": { + "history": "+4", + "insight": "+5", + "perception": "+7" + }, + "passive": 17, + "languages": [ + "Auran", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Asharra is a 5th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Asharra has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell mending}", + "{@spell produce flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell faerie fire}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell hold person}", + "{@spell lesser restoration}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell call lightning}", + "{@spell wind wall}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dive Attack", + "entries": [ + "If the aarakocra is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 3 ({@damage 1d6}) damage to the target." + ] + }, + { + "type": "inset", + "name": "Dance of the Seven Winds", + "entries": [ + "Asharra knows a ritual called the Dance of the Seven Winds, which temporarily grants magical flight to as many as ten nonflying creatures. The ritual, which takes 10 minutes to complete, can only be performed by an aarakocra elder and requires a black orchid as a material component.", + "Asharra must grind the orchid to powder, inhale it, and dance in circles around the ritual's beneficiaries uninterrupted while seven other aarakocra chant prayers to the Wind Dukes of Aaqa. When the dance concludes, Asharra's wings disappear and she loses the ability to fly. The ritual's beneficiaries each gain a magical flying speed of 30 feet (allowing them to fly 4 miles per hour). This benefit lasts for 3 days, after which Asharra's wings reappear and she regains the ability to fly." + ] + } + ], + "action": [ + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Summon Air Elemental", + "entries": [ + "Five aarakocra within 30 feet of each other can magically summon an {@creature air elemental}. Each of the five must use its action and movement on three consecutive turns to perform an aerial dance and must maintain {@status concentration} while doing so (as if {@status concentration||concentrating} on a spell). When all five have finished their third turn of the dance, the elemental appears in an unoccupied space within 60 feet of them. It is friendly toward them and obeys their spoken commands. It remains for 1 hour, until it or all its summoners die, or until any of its summoners dismisses it as a bonus action. A summoner can't perform the dance again until it finishes a short rest. When the elemental returns to the Elemental Plane of Air, any aarakocra within 5 feet of it can return with it." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Assassin Vine", + "source": "ToA", + "page": 213, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "SDW" + } + ], + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 5, + "climb": 5 + }, + "str": 18, + "dex": 10, + "con": 16, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 30 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "prone" + ], + "cr": "3", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the assassin vine remains motionless, it is indistinguishable from a normal plant." + ] + } + ], + "action": [ + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 20 ft., one creature. {@h}The target takes 11 ({@damage 2d6 + 4}) bludgeoning damage, and it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, and it takes 21 ({@damage 6d6}) poison damage at the start of each of its turns. The vine can constrict only one target at a time." + ] + }, + { + "name": "Entangling Vines", + "entries": [ + "The assassin vine can animate normal vines and roots on the ground in a 15-foot square within 30 feet of it. These plants turn the ground in that area into {@quickref difficult terrain||3}. A creature in that area when the effect begins must succeed on a {@dc 13} Strength saving throw or be {@condition restrained} by entangling vines and roots. A creature {@condition restrained} by the plants can use its action to make a {@dc 13} Strength ({@skill Athletics}) check, freeing itself on a successful check. The effect ends after 1 minute or when the assassin vine dies or uses Entangling Vines again." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B", + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Atropal", + "source": "ToA", + "page": 214, + "size": [ + "H" + ], + "type": { + "type": "undead", + "tags": [ + "titan" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 7 + ], + "hp": { + "average": 225, + "formula": "18d12 + 108" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 19, + "dex": 5, + "con": 22, + "int": 25, + "wis": 19, + "cha": 24, + "save": { + "con": "+11", + "wis": "+9" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "passive": 14, + "immune": [ + "cold", + "necrotic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "understands Celestial but utters only obscene nonsense" + ], + "cr": "13", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The atropal has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Negative Energy Aura", + "entries": [ + "Creatures within 30 feet of the atropal can't regain hit points, and any creature that starts its turn within 30 feet of the atropal takes 10 ({@damage 3d6}) necrotic damage. If the atropal is struck by a {@item vorpal sword}, the wielder can cut the atropal's umbilical cord instead of dealing damage. If its umbilical cord is cut, the atropal loses this feature." + ] + }, + { + "name": "Turn Resistance Aura", + "entries": [ + "The atropal and any other undead creature within 30 feet of it has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Touch", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage." + ] + }, + { + "name": "Ray of Cold", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}21 ({@damage 6d6}) cold damage." + ] + }, + { + "name": "Life Drain", + "entries": [ + "The atropal targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 19} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. The atropal regains a number of hit points equal to half the amount of damage dealt." + ] + }, + { + "name": "Summon Wraith {@recharge}", + "entries": [ + "The atropal summons a {@creature wraith} which materializes within 30 feet of it in an unoccupied space it can see. The wraith obeys its summoner's commands and can't be controlled by any other creature. The Wraith vanishes when it drops to 0 hit points or when its summoner dies." + ] + } + ], + "legendary": [ + { + "name": "Touch", + "entries": [ + "The atropal makes a touch attack." + ] + }, + { + "name": "Ray of Cold (Costs 2 Actions)", + "entries": [ + "The atropal uses its Ray of Cold." + ] + }, + { + "name": "Wail (Costs 3 Actions)", + "entries": [ + "The atropal lets out a withering wail. Any creature within 120 feet of the atropal that can hear the wail must succeed on a {@dc 19} Constitution saving throw or gain 1 level of {@condition exhaustion}." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Turn Resistance" + ], + "senseTags": [ + "SD", + "U" + ], + "languageTags": [ + "CE" + ], + "damageTags": [ + "C", + "N" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "exhaustion" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Azaka Stormfang", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 33, + "_copy": { + "name": "Weretiger", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "weretiger", + "with": "Azaka", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Bag of Nails", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 102, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tabaxi" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30, + "climb": 20 + }, + "str": 11, + "dex": 16, + "con": 14, + "int": 13, + "wis": 11, + "cha": 10, + "save": { + "dex": "+6", + "int": "+4" + }, + "skill": { + "acrobatics": "+6", + "deception": "+3", + "perception": "+3", + "stealth": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "poison" + ], + "languages": [ + "Thieves' cant", + "Common", + "Dwarvish" + ], + "cr": "8", + "trait": [ + { + "name": "Feline Agility", + "entries": [ + "When Bag of Nails moves on its turn in combat, he can double his speed until the end of the turn. Once he uses this trait, Bag of Nails can't use it again until he moves 0 feet on one of his turns." + ] + }, + { + "name": "Assassinate", + "entries": [ + "During his first turn, Bag of Nails has advantage on attack rolls against any creature that hasn't taken a turn. Any hit Bag of Nails scores against a {@status surprised} creature is a critical hit." + ] + }, + { + "name": "Evasion", + "entries": [ + "If Bag of Nails is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Bag of Nails instead takes no damage if he succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Bag of Nails deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of his that isn't {@condition incapacitated} and Bag of Nails doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bag of Nails makes two shortsword attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "TC" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blind Artist", + "isNpc": true, + "source": "ToA", + "page": 164, + "_copy": { + "name": "Zombie", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "zombie", + "with": "artist" + } + } + }, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "conditionImmune": [ + "blinded", + "poisoned" + ], + "cr": "0", + "action": null, + "senseTags": [ + "B" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bosco Daggerhand", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 68, + "_copy": { + "name": "Thug", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the thug", + "with": "Bosco", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Bosco wears a {@item ring of animal influence}." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true + }, + { + "name": "Chwinga", + "source": "ToA", + "page": 216, + "size": [ + "T" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + 15 + ], + "hp": { + "average": 5, + "formula": "2d4" + }, + "speed": { + "walk": 20, + "climb": 20, + "swim": 20 + }, + "str": 1, + "dex": 20, + "con": 10, + "int": 14, + "wis": 16, + "cha": 16, + "skill": { + "acrobatics": "+7", + "perception": "+7", + "stealth": "+7" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 17, + "cr": "0", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The chwinga's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no material or verbal components:" + ], + "will": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell pass without trace}", + "{@spell resistance}" + ], + "ability": "wis" + } + ], + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The chwinga doesn't require air, food, or drink. When it dies, it turns into a handful of flower petals, a cloud of pollen, a stone statuette resembling its former self, a tiny sphere of smooth stone, or a puddle of fresh water (your choice)." + ] + }, + { + "name": "Evasion", + "entries": [ + "When the chwinga is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + } + ], + "action": [ + { + "name": "Magical Gift (1/Day)", + "entries": [ + "The chwinga targets a humanoid it can see within 5 feet of it. The target gains a {@filter supernatural charm|rewards|type=charm} of the DM's choice. See {@book chapter 7|DMG|7|Other Rewards} of the Dungeon Masters Guide for more information on supernatural charms." + ] + }, + { + "name": "Natural Shelter", + "entries": [ + "The chwinga magically takes shelter inside a rock, a living plant, or a natural source of fresh water in its space. The chwinga can't be targeted by any attack, spell, or other effect while inside this shelter, and the shelter doesn't impair the chwinga's blindsight. The chwinga can use its action to emerge from a shelter. If its shelter is destroyed, the chwinga is forced out and appears in the shelter's space, but is otherwise unharmed." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clay Gladiator", + "source": "ToA", + "page": 100, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 10, + "wis": 12, + "cha": 15, + "save": { + "str": "+7", + "dex": "+5", + "con": "+6" + }, + "skill": { + "athletics": "+10", + "intimidation": "+5" + }, + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "cr": "5", + "trait": [ + { + "name": "Climbing", + "entries": [ + "The gladiator can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Steadfast", + "entries": [ + "The gladiator can't be disarmed, and cannot make ranged attacks." + ] + }, + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when the gladiator hits with it (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gladiator makes three melee attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands." + ] + }, + { + "name": "Shield Bash", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The gladiator adds 3 to its AC against one melee attack that would hit it. To do so, the gladiator must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Brute" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dragonbait", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 218, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "saurial" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item breastplate|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 13, + "con": 17, + "int": 14, + "wis": 16, + "cha": 18, + "save": { + "wis": "+6", + "cha": "+7" + }, + "skill": { + "athletics": "+5", + "medicine": "+6" + }, + "passive": 13, + "conditionImmune": [ + "disease" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Divine Health", + "entries": [ + "Dragonbait is immune to disease." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "While holding his {@item holy avenger longsword}, Dragonbait creates an aura in a 10-foot radius around him. While this aura is active, Dragonbait and all creatures friendly to him in the aura have advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Dragonbait makes two melee weapon attacks." + ] + }, + { + "name": "Holy Avenger (+3 Longsword)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage when used with two hands. If the target is a fiend or an undead it takes an extra 11 ({@damage 2d10}) radiant damage." + ] + }, + { + "name": "Sense Alignment", + "entries": [ + "Dragonbait chooses one creature he can see within 60 feet of him and determines its alignment, as long as the creature isn't hidden from divination magic by a spell or other magical effect." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "R", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drufi", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 64, + "_copy": { + "name": "Frost Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Drufi", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true + }, + { + "name": "Eblis", + "source": "ToA", + "page": 219, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 11, + "dex": 16, + "con": 12, + "int": 12, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Auran", + "Common" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eblis's innate spellcasting ability is Intelligence (spell save {@dc 11}). It can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell blur}", + "{@spell hypnotic pattern}", + "{@spell minor illusion}" + ] + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eblis attacks twice with its beak." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ekene-Afa", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 25, + "_copy": { + "name": "Gladiator", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gladiator", + "with": "Ekene-Afa", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Eku", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 34, + "_copy": { + "name": "Couatl", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the couatl", + "with": "Eku", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Elok Jaharwon", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 67, + "_copy": { + "name": "Wereboar", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wereboar", + "with": "Elok", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Faroul", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 34, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Faroul", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Fenthaza", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 113, + "_copy": { + "name": "Yuan-ti Nightmare Speaker", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the yuan-ti", + "with": "Fenthaza", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Flask of Wine", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 35, + "_copy": { + "name": "Tabaxi Hunter", + "source": "ToA", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tabaxi", + "with": "Flask of Wine", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Flying Monkey", + "source": "ToA", + "page": 220, + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 30, + "climb": 20, + "fly": 30 + }, + "str": 8, + "dex": 14, + "con": 11, + "int": 5, + "wis": 12, + "cha": 6, + "passive": 11, + "cr": "0", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The flying monkey has advantage on an attack roll against a creature if at least one of the monkey's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Familiar", + "entries": [ + "With the DM's permission, the {@spell find familiar} spell can summon a flying monkey." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target {@h}1 ({@damage 1d4 - 1}) piercing damage." + ] + } + ], + "familiar": true, + "traitTags": [ + "Pack Tactics" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Four-Armed Gargoyle", + "source": "ToA", + "page": 221, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 19, + "dex": 11, + "con": 20, + "int": 6, + "wis": 11, + "cha": 9, + "save": { + "wis": "+4" + }, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with adamantine weapons", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "petrified", + "poisoned" + ], + "languages": [ + "Terran" + ], + "cr": "10", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gargoyle makes five attacks: one with its bite and four with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "T" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Snapping Turtle", + "source": "ToA", + "page": 222, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + }, + { + "ac": 12, + "condition": "while prone" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 19, + "dex": 10, + "con": 14, + "int": 2, + "wis": 12, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "cr": "3", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The turtle can breathe air and water." + ] + }, + { + "name": "Stable", + "entries": [ + "Whenever an effect knocks the turtle {@condition prone}, it can make a {@dc 10} Constitution saving throw to avoid being knocked {@condition prone}. A {@condition prone} turtle is upside down. To stand up, it must succeed on a {@dc 10} Dexterity check on its turn and then use all its movement for that turn." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Girallon Zombie", + "source": "ToA", + "page": 240, + "size": [ + "L" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 12, + "con": 16, + "int": 3, + "wis": 7, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "3", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the zombie can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zombie makes five attacks: one with its bite and four with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ] + } + ], + "traitTags": [ + "Aggressive", + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gondolo", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 34, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "Stout Halfling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Gondolo", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "languageTags": [ + "C", + "H", + "X" + ], + "hasToken": true + }, + { + "name": "Grabstab", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 89, + "_copy": { + "name": "Goblin Boss", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the goblin", + "with": "Grabstab", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Grandfather Zitembe", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 20, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Zitembe", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Hew Hackinstone", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 33, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 17, + "int": 9, + "wis": 11, + "cha": 9, + "skill": { + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "any one language (usually Common)" + ], + "cr": "2", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Hew has resistance to poison damage and advantage on saving throws against being {@condition poisoned}." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of his turn, Hew can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against him have advantage until the start of his next turn." + ] + } + ], + "action": [ + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "traitTags": [ + "Reckless" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ifan Talro'a", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 25, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Ifan", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Jaculi", + "source": "ToA", + "page": 225, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d10" + }, + "speed": { + "walk": 30, + "climb": 20 + }, + "str": 15, + "dex": 14, + "con": 11, + "int": 2, + "wis": 8, + "cha": 3, + "skill": { + "athletics": "+4", + "perception": "+1", + "stealth": "+4" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 11, + "cr": "1/2", + "trait": [ + { + "name": "Camouflage", + "entries": [ + "The jaculi has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The jaculi has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ] + }, + { + "name": "Spring", + "entries": [ + "The jaculi springs up to 30 feet in a straight line and makes a bite attack against a target within its reach. This attack has advantage if the jaculi springs at least 10 feet. If the attack hits, the bite deals an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jessamine", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 26, + "_copy": { + "name": "Assassin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Ifan", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "hp": { + "average": 58, + "formula": "12d8 + 24" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Jobal", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 26, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Jobal", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kamadan", + "source": "ToA", + "page": 225, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 14, + "int": 3, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+4", + "stealth": "+7" + }, + "passive": 14, + "cr": "4", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The kamadan has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the kamadan moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is knocked {@condition prone}, the kamadan can make two attacks\u2014one with its bite and one with its snakes\u2014against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kamadan makes two attacks: one with its bite or claw and one with its snakes." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Snakes", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 12} Constitution saving throw, taking 21 ({@damage 6d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Sleep Breath (Recharges after a Short or Long Rest)", + "entries": [ + "The kamadan exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 12} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if it takes damage or someone uses an action to wake it." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Pounce" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "King of Feathers", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 106, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "19d12 + 52" + }, + "speed": { + "walk": 50 + }, + "str": 25, + "dex": 10, + "con": 19, + "int": 2, + "wis": 12, + "cha": 9, + "skill": { + "perception": "+4" + }, + "passive": 14, + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The King of Feathers's innate spellcasting ability is Wisdom. It can innately cast the following spell, requiring no material components:" + ], + "will": [ + "{@spell misty step}" + ], + "ability": "wis" + } + ], + "trait": [ + { + "name": "Detect Invisibility", + "entries": [ + "The King of Feathers can see {@condition invisible} creatures and objects as if they were visible." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the King of Feathers fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The King of Feathers makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}33 ({@damage 4d12 + 7}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the tyrannosaurus can't bite another target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Summon Swarm {@recharge 5}", + "entries": [ + "The King of Feathers exhales a {@creature swarm of wasps||swarm of insects (wasps)} that forms in a space within 20 feet of it. The swarm acts as an ally of the King of Feathers and takes its turn immediately after it. The swarm disperses after 1 minute. It can't use the Summon Swarm action while it is grappling a creature with its jaws." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kupalu\u00e9", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 35, + "_copy": { + "name": "Vegepygmy", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vegepygmy", + "with": "Kupalu\u00e9", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Kwayoth\u00e9", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 26, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Kwayoth\u00e9", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Laskilar", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 67, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Laskilar", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Laskilar wears a {@item cape of the mountebank}." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Liara Portyr", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 227, + "otherSources": [ + { + "source": "BGDIA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 15, + "int": 14, + "wis": 14, + "cha": 16, + "save": { + "con": "+4", + "wis": "+4" + }, + "skill": { + "athletics": "+5", + "deception": "+5", + "insight": "+4", + "intimidation": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Dwarvish" + ], + "cr": "4", + "trait": [ + { + "name": "Brave", + "entries": [ + "Liara has advantage on saving throws against being {@condition frightened}." + ] + }, + { + "name": "Flaming Fury", + "entries": [ + "Once per turn, when Liara hits a creature with a melee weapon, she can cause fire to magically erupt from her weapon and deal an extra 10 ({@damage 3d6}) fire damage to the target." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Liara makes three melee attacks." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "battleaxe|phb", + "heavy crossbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mantrap", + "source": "ToA", + "page": 227, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 45, + "formula": "7d10 + 7" + }, + "speed": { + "walk": 5 + }, + "str": 15, + "dex": 14, + "con": 12, + "int": 1, + "wis": 10, + "cha": 2, + "senses": [ + "tremorsense 30 ft." + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "prone" + ], + "cr": "1", + "trait": [ + { + "name": "Attractive Pollen (1/Day)", + "entries": [ + "When the mantrap detects any creatures nearby, it can use its reaction to release pollen out to a radius of 30 feet. Any beast or humanoid within the area must succeed on a {@dc 11} Wisdom saving throw or be forced to use all its movement on its turns to get as close to the the mantrap as possible. An affected target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the mantrap remains motionless, it is indistinguishable from an ordinary tropical plant." + ] + } + ], + "action": [ + { + "name": "Engulf", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is trapped inside the mantrap's leafy jaws. While trapped in this way, the target is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} from an attacks and other effects outside the mantrap, and takes 14 ({@damage 4d6}) acid damage at the start of each of the target's turns. If the mantrap dies, the creature inside it is no longer {@condition restrained} by it. A mantrap can engulf only one creature at a time." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "T" + ], + "damageTags": [ + "A" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mister Threadneedle", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 183, + "_copy": { + "name": "Scarecrow", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scarecrow", + "with": "Mister Threadneedle", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Musharib", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 34, + "_copy": { + "name": "Albino Dwarf Spirit Warrior", + "source": "ToA", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dwarf", + "with": "Musharib", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Mwaxanar\u00e9", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 228, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 10 + ], + "hp": { + "average": 13, + "formula": "3d8" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 10, + "con": 11, + "int": 13, + "wis": 12, + "cha": 16, + "skill": { + "deception": "+5", + "nature": "+3", + "persuasion": "+5", + "religion": "+3" + }, + "passive": 11, + "languages": [ + "Auran", + "Common", + "telepathy 30 ft." + ], + "cr": "1/8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Mwaxanar\u00e9 is a 2nd-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She regains her expended spell slots when she finishes a short or long rest. She knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell eldritch blast}", + "{@spell mage hand}" + ] + }, + "1": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell charm person}", + "{@spell protection from evil and good}", + "{@spell unseen servant}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit. reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "AU", + "C", + "TP" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "CL" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Na", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 228, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 10 + ], + "hp": { + "average": 3, + "formula": "1d6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "0", + "languageTags": [ + "C" + ], + "hasToken": true + }, + { + "name": "Nanny Pu'pu", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 72, + "_copy": { + "name": "Green Hag", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the hag", + "with": "Pu'pu", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nepartak", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 137, + "_copy": { + "name": "Flameskull", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the flameskull", + "with": "Nepartak", + "flags": "i" + } + } + }, + "languages": [ + "Common", + "telepathy 30 ft." + ], + "languageTags": [ + "C", + "TP" + ], + "hasToken": true + }, + { + "name": "Niles Breakbone", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 47, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Niles", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Ortimay Swift and Dark", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 21, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Ortimay", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "G", + "X" + ], + "hasToken": true + }, + { + "name": "Orvex Ocrammas", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 96, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Orvex", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "languages": [ + "Common", + "Grung" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Pterafolk", + "source": "ToA", + "page": 229, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 15, + "dex": 13, + "con": 12, + "int": 9, + "wis": 10, + "cha": 11, + "skill": { + "perception": "+2", + "survival": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Terror Dive", + "entries": [ + "If the pterafolk is flying and dives at least 30 feet straight toward a target, and then hits that target with a melee weapon attack, the target is {@condition frightened} until the end of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pterafolk makes three attacks: one with its bite and two with its claws. Alternatively, it makes two melee attacks with its javelin." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "frightened" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Qawasha", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 35, + "_copy": { + "name": "Druid", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the druid", + "with": "Qawasha", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Ras Nsi", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 230, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item bracers of defense}" + ] + } + ], + "hp": { + "special": "127 ({@dice 17d8 + 51}) reduced to 107; subtract 1 for each day that passes during the adventure" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 16, + "con": 17, + "int": 18, + "wis": 18, + "cha": 21, + "save": { + "con": "+6", + "wis": "+7" + }, + "skill": { + "deception": "+8", + "persuasion": "+8", + "religion": "+7", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ras Nsi's innate spellcasting ability is Charisma (spell save {@dc 16}). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ras Nsi is an 11th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks).", + "Ras Nsi has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell poison spray}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell false life}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell hold person}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell geas}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell create undead}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Ras Nsi wears {@item bracers of defense}, wields a {@item flame tongue longsword}, and carries a {@item sending stones||sending stone} matched to the one carried by the guide Salida (see chapter 1)." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "Ras Nsi can use his action to polymorph into a Medium snake or back into his yuan-ti form. His statistics are the same in each form. Any equipment he is wearing or carrying isn't transformed. He doesn't change form if he dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Ras Nsi has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ras Nsi makes three melee attacks, but can use Constrict only once." + ] + }, + { + "name": "Bite (Snake Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, and Ras Nsi can't constrict another target." + ] + }, + { + "name": "Flame Tongue Longsword (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands, plus 7 ({@damage 2d6}) fire damage." + ] + } + ], + "attachedItems": [ + "flame tongue longsword|dmg" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "B", + "F", + "I", + "P", + "S" + ], + "damageTagsSpell": [ + "F", + "I", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "paralyzed" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "River Mist", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 35, + "_copy": { + "name": "Tabaxi Hunter", + "source": "ToA", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tabaxi", + "with": "River Mist", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Salida", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 35, + "_copy": { + "name": "Yuan-ti Pureblood", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the yuan-ti", + "with": "Salida", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "skill": { + "deception": "+6", + "perception": "+3", + "stealth": "+3", + "survival": "+5" + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sekelok", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 120, + "_copy": { + "name": "Champion", + "source": "VGM", + "_templates": [ + { + "name": "Yuan-ti Pureblood", + "source": "VGM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the champion", + "with": "Sekelok", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTagsSpell": [ + "I" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Shago", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 35, + "_copy": { + "name": "Gladiator", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gladiator", + "with": "Shago", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "skill": { + "athletics": "+10", + "intimidation": "+5", + "survival": "+7" + }, + "hasToken": true + }, + { + "name": "Skeleton Key", + "source": "ToA", + "page": 126, + "_copy": { + "name": "Skeleton", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Spider Climb", + "entries": [ + "The skeleton can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + } + } + }, + "alignment": [ + "U" + ], + "speed": { + "walk": 30, + "climb": 30 + }, + "action": [ + { + "name": "Multiattack", + "entries": [ + "The skeleton makes two dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Spider Climb" + ], + "actionTags": [ + "Multiattack" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Spiked Tomb Guardian", + "source": "ToA", + "page": 154, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 17 + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 9, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Berserk", + "entries": [ + "Whenever the tomb guardian starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the tomb guardian goes berserk. On each of its turns while berserk, the tomb guardian attacks the nearest creature it can see. If no creature is near enough to move to and attack, the tomb guardian attacks an object, with preference for an object smaller than itself. Once the tomb guardian goes berserk, it continues to do so until it is destroyed or regains all its hit points. The golem's creator, if within 60 feet of the berserk tomb guardian, can try to calm it by speaking firmly and persuasively. The tomb guardian must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the tomb guardian ceases being berserk. If it takes damage while still at 40 hit points or fewer, the tomb guardian might go berserk again." + ] + }, + { + "name": "Aversion of Fire", + "entries": [ + "If the tomb guardian takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The tomb guardian is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the tomb guardian is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The tomb guardian has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + }, + { + "name": "Chained", + "entries": [ + "{@note This trait applies when two guardians are chained together.}", + "A magical spiked chain that binds a pair of guardians together prevents them from moving more than 15 feet apart. Additionally, as long as the chain is intact, damage dealt to either guardian is divided evenly between them. The spiked chain can be attacked separately and has AC 18, a damage threshold of 10, 5 hit points, and immunity to poison and psychic damage. If the chain breaks, both tomb guardians instantly go berserk." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tomb guardian makes two spiked gauntlet attacks." + ] + }, + { + "name": "Spiked Gauntlet", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 9 ({@damage 2d6}) piercing damage." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Stone Juggernaut", + "source": "ToA", + "page": 231, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75" + }, + "speed": { + "walk": { + "number": 50, + "condition": "(in one direction chosen at the start of its turn)" + } + }, + "str": 16, + "dex": 12, + "con": 15, + "int": 14, + "wis": 14, + "cha": 16, + "senses": [ + "blindsight 120 ft." + ], + "passive": 10, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with adamantine weapons", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "cr": "12", + "trait": [ + { + "name": "Devastating Roll", + "entries": [ + "The juggernaut can move through the space of a {@condition prone} creature. A creature whose space the juggernaut enters for the first time on a turn must make a {@dc 17} Dexterity saving throw, taking 55 ({@damage 10d10}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The juggernaut is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Regeneration", + "entries": [ + "As long as it has 1 hit point left, the juggernaut magically regains all its hit points daily at dawn. The juggernaut is destroyed and doesn't regenerate if it drops to 0 hit points." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The juggernaut deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}25 ({@damage 3d12 + 6}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Regeneration", + "Siege Monster" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Su-monster", + "source": "ToA", + "page": 232, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 14, + "dex": 15, + "con": 12, + "int": 9, + "wis": 13, + "cha": 9, + "skill": { + "athletics": "+6", + "perception": "+3" + }, + "passive": 13, + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The su-monster makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage, or 12 ({@damage 4d4 + 2}) slashing damage if the su-monster is hanging by its tail and all four of its limbs are free." + ] + }, + { + "name": "Psychic Crush {@recharge 5}", + "entries": [ + "The su-monster targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw or take 17 ({@damage 5d6}) psychic damage and be {@condition stunned} for 1 minute. The {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Syndra Silvane", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 8, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Syndra", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L" + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Halfling" + ], + "languageTags": [ + "C", + "D", + "E", + "H" + ], + "hasToken": true + }, + { + "name": "Tabaxi Hunter", + "source": "ToA", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tabaxi" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30, + "climb": 20 + }, + "str": 10, + "dex": 17, + "con": 11, + "int": 13, + "wis": 14, + "cha": 15, + "skill": { + "athletics": "+2", + "perception": "+4", + "stealth": "+5", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common plus any one language" + ], + "cr": "1", + "trait": [ + { + "name": "Feline Agility", + "entries": [ + "When the tabaxi moves on its turn in combat, it can double its speed until the end of the turn. Once it uses this ability, the tabaxi can't use it again until it moves 0 feet on one of its turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tabaxi makes two attacks with its claws, its shortsword, or its shortbow." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Tabaxi Minstrel", + "source": "ToA", + "page": 233, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tabaxi" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30, + "climb": 20 + }, + "str": 10, + "dex": 15, + "con": 11, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "perception": "+3", + "performance": "+7", + "persuasion": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common plus any two languages" + ], + "cr": "1/4", + "trait": [ + { + "name": "Feline Agility", + "entries": [ + "When the tabaxi moves on its turn in combat, it can double its speed until the end of the turn. Once it uses this ability, the tabaxi can't use it again until it moves 0 feet on one of its turns." + ] + }, + { + "name": "Inspire (1/Day)", + "entries": [ + "While taking a short rest, the tabaxi can spend 1 minute singing, playing an instrument, telling a story, or reciting a poem to soothe and inspire creatures other than itself. Up to five creatures of the tabaxi's choice that can see and hear its performance gain 8 temporary hit points at the end of the tabaxi's short rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tabaxi makes two claws attacks or two dart attacks." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dart|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Terracotta Warrior", + "source": "ToA", + "page": 161, + "_copy": { + "name": "Animated Armor", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "armor", + "with": "terracotta warrior" + }, + "trait": [ + { + "mode": "replaceArr", + "replace": "False Appearance", + "items": { + "name": "False Appearance", + "entries": [ + "While the terracotta warrior remains motionless, it is indistinguishable from a terracotta statue." + ] + } + }, + { + "mode": "prependArr", + "items": { + "name": "Fragile", + "entries": [ + "If a critical hit is scored against the terracotta warrior, it shatters and is destroyed." + ] + } + } + ], + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + } + } + }, + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Tomb Dwarf", + "source": "ToA", + "page": 135, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 16, + "int": 10, + "wis": 13, + "cha": 15, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the tomb dwarf has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tomb dwarf makes two longsword attacks or two crossbow attacks. It can use its Life Drain in place of one longsword attack." + ] + }, + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.A humanoid slain by this attack rises 24 hours later as a zombie under the tomb dwarf's control, unless the humanoid is restored to life or its body is destroyed. The tomb dwarf can have no more than twelve zombies under its control at one time." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "battleaxe|phb", + "light crossbow|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "HPR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tomb Guardian", + "source": "ToA", + "page": 127, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 17 + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 9, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Berserk", + "entries": [ + "Whenever the tomb guardian starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the tomb guardian goes berserk. On each of its turns while berserk, the tomb guardian attacks the nearest creature it can see. If no creature is near enough to move to and attack, the tomb guardian attacks an object, with preference for an object smaller than itself. Once the tomb guardian goes berserk, it continues to do so until it is destroyed or regains all its hit points. The golem's creator, if within 60 feet of the berserk tomb guardian, can try to calm it by speaking firmly and persuasively. The tomb guardian must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the tomb guardian ceases being berserk. If it takes damage while still at 40 hit points or fewer, the tomb guardian might go berserk again." + ] + }, + { + "name": "Aversion of Fire", + "entries": [ + "If the tomb guardian takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The tomb guardian is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the tomb guardian is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The tomb guardian has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The golem's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tomb guardian makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tri-flower Frond", + "source": "ToA", + "page": 234, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 5 + }, + "str": 14, + "dex": 15, + "con": 12, + "int": 9, + "wis": 13, + "cha": 9, + "senses": [ + "blindsight 30 ft." + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "prone" + ], + "cr": "1/2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tri-flower frond uses its orange blossom, then its yellow blossom, and then its red blossom." + ] + }, + { + "name": "Orange Blossom", + "entries": [ + "The tri-flower frond chooses one creature it can see within 5 feet of it. The target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 hour. While {@condition poisoned} in this way, the target is {@condition unconscious}. At the end of each minute, the {@condition poisoned} target can repeat the saving throw, ending the effect on itself on a success." + ] + }, + { + "name": "Yellow Blossom", + "entries": [ + "The tri-flower frond chooses one creature it can see within 5 feet of it. The target must succeed on a {@dc 11} Dexterity saving throw, or it is covered with corrosive sap and takes 5 acid damage at the start of each of its turns. Dousing the target with water reduces the acid damage by 1 point per pint or flask of water used." + ] + }, + { + "name": "Red Blossom", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d4}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the target takes 5 ({@damage 2d4}) poison damage at the start of each of its turns. The red blossom can grapple only one target at a time. Another creature within reach of the tri-flower frond can use its action to end the grapple on the target." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "poisoned", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tyrannosaurus Zombie", + "source": "ToA", + "page": 241, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "13d12 + 52" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 6, + "con": 19, + "int": 1, + "wis": 3, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 6, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "8", + "trait": [ + { + "name": "Disgorge Zombie", + "entries": [ + "As a bonus action, the tyrannosaurus zombie can disgorge a normal {@creature zombie}, which appears in an unoccupied space within 10 feet of it. The disgorged {@creature zombie} acts on its own initiative count. After a zombie is disgorged, roll a {@dice d6}. On a roll of 1, the tyrannosaurus zombie runs out of zombies to disgorge and loses this trait. If the tyrannosaurus zombie still has this trait when it dies, {@dice 1d4} normal zombies erupt from its corpse at the start of its next turn. These zombies act on their own initiative count." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the tyrannosaurus zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tyrannosaurus zombie makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}33 ({@damage 4d12 + 7}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained} and the tyrannosaurus zombie can't bite another target or disgorge zombies." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Valindra Shadowmantle", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 58, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 16, + "int": 20, + "wis": 14, + "cha": 16, + "save": { + "con": "+10", + "int": "+12", + "wis": "+9" + }, + "skill": { + "arcana": "+19", + "history": "+12", + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "lightning", + "necrotic" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Abyssal", + "Draconic", + "Dwarvish", + "Elvish", + "Infernal" + ], + "cr": "21", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Valindra is an 18th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). Valindra has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Mask", + "entries": [ + "As a bonus action, Valindra can mask her shriveled flesh and appear to be a living elf. This magical illusion lasts until she ends it as a bonus action or until she uses her Frightening Gaze legendary action. The effect also ends if Valindra drops to 30 hit points or fewer, or if {@spell dispel magic} is cast on her." + ] + }, + { + "name": "Preparation", + "entries": [ + "When preparing her spells, Valindra can swap out any spell on her list of prepared spells for another wizard spell of the same level." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Valindra fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If destroyed Valindra gains a new body in {@dice 1d10} days, regaining all her hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "Valindra has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Paralyzing Touch", + "entries": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendary": [ + { + "name": "Cantrip", + "entries": [ + "Valindra casts a cantrip." + ] + }, + { + "name": "Paralyzing Touch (Costs 2 Actions)", + "entries": [ + "Valindra uses her Paralyzing Touch." + ] + }, + { + "name": "Frightening Gaze (Costs 2 Actions)", + "entries": [ + "Valindra fixes her gaze on one creature she can see within 10 feet of her. The target must succeed on a {@dc 18} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the Valindra's gaze for the next 24 hours." + ] + }, + { + "name": "Disrupt Life (Costs 3 Actions)", + "entries": [ + "Each non-undead creature within 20 feet of Valindra must make a {@dc 18} Constitution saving throw against this magic, taking 21 ({@damage 6d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Rejuvenation", + "Turn Resistance" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "AB", + "C", + "D", + "DR", + "E", + "I" + ], + "damageTags": [ + "C", + "N" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "N", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Volothamp \"Volo\" Geddarm", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 235, + "otherSources": [ + { + "source": "WDH" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 11 + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 12, + "con": 10, + "int": 15, + "wis": 11, + "cha": 16, + "save": { + "con": "+2", + "wis": "+2" + }, + "skill": { + "animal handling": "+4", + "arcana": "+4", + "deception": "+5", + "history": "+4", + "insight": "+2", + "investigation": "+4", + "perception": "+2", + "performance": "+7", + "persuasion": "+7", + "sleight of hand": "+3", + "survival": "+2" + }, + "passive": 12, + "languages": [ + "Common", + "Dwarvish", + "Elvish" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Volo is a 1st-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mending}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell disguise self}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "D", + "E" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Wakanga O'tamu", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 27, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Wakanga", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Wild Dog", + "source": "ToA", + "page": 96, + "_copy": { + "name": "Jackal", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "jackal", + "with": "dog" + } + } + }, + "hasToken": true + }, + { + "name": "Wine Weird", + "source": "ToA", + "page": 141, + "_copy": { + "name": "Water Weird", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "water weird", + "with": "wine weird" + } + } + }, + "hasToken": true + }, + { + "name": "Withers", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 145, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 16, + "int": 16, + "wis": 13, + "cha": 15, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "the languages he knew in life" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Withers is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Withers has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell expeditious retreat}", + "{@spell feather fall}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 4, + "spells": [ + "{@spell darkness}", + "{@spell hold person}", + "{@spell rope trick}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell telekinesis}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Withers carries the {@item amulet of the black skull|ToA}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Withers has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Withers makes two longsword attacks. He can use his Life Drain in place of one longsword attack." + ] + }, + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A humanoid slain by this attack rises 24 hours later as a zombie under the Withers's control, unless the humanoid is restored to life or its body is destroyed. Withers can have no more than twelve zombies under its control at one time." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "S" + ], + "damageTagsSpell": [ + "A", + "F", + "L", + "N", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "HPR", + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xandala", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 236, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 11, + "con": 14, + "int": 18, + "wis": 16, + "cha": 18, + "save": { + "int": "+7", + "wis": "+6" + }, + "skill": { + "arcana": "+7", + "deception": "+10", + "history": "+7", + "insight": "+6", + "survival": "+6" + }, + "passive": 13, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Halfling" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Xandala is a 9th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Xandala has the following sorcerer spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell feather fall}", + "{@spell shield}" + ] + }, + "2": { + "slots": 4, + "spells": [ + "{@spell invisibility}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell ice storm}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell dominate person}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Quickened Spell (3/Day)", + "entries": [ + "When she casts a spell that has a casting time of 1 action, Xandala changes the casting time to 1 bonus action for that casting." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage when used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "D", + "DR", + "E", + "H" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yellow Musk Creeper", + "source": "ToA", + "page": 237, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 6 + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "speed": { + "walk": 5, + "climb": 5 + }, + "str": 12, + "dex": 3, + "con": 12, + "int": 1, + "wis": 10, + "cha": 3, + "senses": [ + "blindsight 30 ft." + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "prone" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the creeper remains motionless, it is indistinguishable from an ordinary flowering vine." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The creeper regains 10 hit points at the start of its turn. If the creeper takes fire, necrotic, or radiant damage, this trait doesn't function at the start of its next turn. The creeper dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Touch", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d8}) psychic damage. If the target is a humanoid that drops to 0 hit points as a result of this damage, it dies and is implanted with a yellow musk creeper bulb. Unless the bulb is destroyed, the corpse animates as a yellow musk zombie after being dead for 24 hours. The bulb is destroyed if the creature is raised from the dead before it can transform into a yellow musk zombie, or if the corpse is targeted by a {@spell remove curse} spell or similar magic before it animates." + ] + }, + { + "name": "Yellow Musk (3/Day)", + "entries": [ + "The creeper's flowers release a strong musk that targets all humanoids within 30 feet of it. Each target must succeed on a {@dc 11} Wisdom saving throw or be {@condition charmed} by the creeper for 1 minute. A creature {@condition charmed} in this way does nothing on its turn except move as close as it can to the creeper. A creature {@condition charmed} by the creeper can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "False Appearance", + "Regeneration" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yellow Musk Zombie", + "source": "ToA", + "page": 237, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + 9 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 20 + }, + "str": 13, + "dex": 9, + "con": 12, + "int": 1, + "wis": 6, + "cha": 3, + "senses": [ + "blindsight 30 ft." + ], + "passive": 8, + "conditionImmune": [ + "charmed", + "exhaustion" + ], + "cr": "1/4", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 +the damage taken, unless the damage is fire or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yorb", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 108, + "_copy": { + "name": "Grung Elite Warrior", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the grung", + "with": "Yorb", + "flags": "i" + } + }, + "_preserve": { + "variant": true + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Priest", + "source": "ToA", + "page": 118, + "_copy": { + "name": "Yuan-ti Malison (Type 3)", + "source": "MM", + "_mod": { + "action": { + "mode": "removeArr", + "names": "Longbow (Yuan-ti Form Only)" + } + } + }, + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)", + "{@spell eldritch blast} (2 beams)", + "{@spell minor illusion}", + "{@spell poison spray}" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "damageTagsSpell": [ + "I", + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Zalkor\u00e9", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 79, + "_copy": { + "name": "Medusa", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the medusa", + "with": "Zalkor\u00e9", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Zaroum Al-Saryak", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 67, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Zaroum", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zebra", + "source": "ToA", + "page": 106, + "_copy": { + "name": "Riding Horse", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Zhanthi", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 27, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Zhanthi", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zindar", + "isNpc": true, + "isNamedCreature": true, + "source": "ToA", + "page": 239, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-dragon" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 16, + "wis": 15, + "cha": 18, + "save": { + "con": "+5", + "wis": "+5" + }, + "skill": { + "arcana": "+6", + "history": "+9", + "insight": "+5", + "investigation": "+9" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Primordial" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zindar is a 14th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Zindar knows the following sorcerer spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell friends}", + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}" + ] + }, + "1": { + "slots": 6, + "spells": [ + "{@spell magic missile}", + "{@spell shield}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 4, + "spells": [ + "{@spell detect thoughts}", + "{@spell knock}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell hold monster}", + "{@spell telekinesis}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell fire storm}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Dragon Wings", + "entries": [ + "As a bonus action on his turn, Zindar can sprout a pair of dragon wings from his back, gaining a flying speed of 30 feet until he dismisses them as a bonus action." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage when used with two hands." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "Zindar uses one of the following options:" + ] + }, + { + "name": "Fire Breath", + "entries": [ + "Zindar exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Weakening Breath", + "entries": [ + "Zindar exhales gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 15} 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." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "D", + "DR", + "P" + ], + "damageTags": [ + "B", + "F" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zorbo", + "source": "ToA", + "page": 241, + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 10, + "from": [ + "see Natural Armor feature" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 13, + "dex": 11, + "con": 13, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "athletics": "+3" + }, + "passive": 11, + "cr": "1/2", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The zorbo has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Natural Armor", + "entries": [ + "The zorbo magically absorbs the natural strength of its surroundings, adjusting its Armor Class based on the material it is standing or climbing on: AC 15 for wood or bone, AC 17 for earth or stone, or AC 19 for metal. If the zorbo isn't in contact with any of these substances, its AC is 10." + ] + } + ], + "action": [ + { + "name": "Destructive Claws", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) slashing damage, and if the target is a creature wearing armor, carrying a shield, or in possession of a magic item that improves its AC, it must make a {@dc 11} Dexterity saving throw. On a failed save, one such item worn or carried by the creature (the target's choice) magically deteriorates, taking a permanent and cumulative \u22121 penalty to the AC it offers, and the zorbo gains a +1 bonus to AC until the start of its next turn. Armor reduced to an AC of 10 or a shield or magic item that drops to a 0 AC increase is destroyed." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Abjurer", + "source": "VGM", + "page": 209, + "reprintedAs": [ + "Abjurer Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 14, + "int": 18, + "wis": 12, + "cha": 11, + "save": { + "int": "+8", + "wis": "+5" + }, + "skill": { + "arcana": "+8", + "history": "+8" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The abjurer is a 13th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The abjurer has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell dancing lights}", + "{@spell mending}", + "{@spell message}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell alarm}*", + "{@spell mage armor}*", + "{@spell magic missile}", + "{@spell shield}*" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell arcane lock}*", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}*", + "{@spell dispel magic}*", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}*", + "{@spell stoneskin}*" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell flesh to stone}", + "{@spell globe of invulnerability}*" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell symbol}*", + "{@spell teleport}" + ] + } + }, + "footerEntries": [ + "*Abjuration spell of 1st level or higher" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Arcane Ward", + "entries": [ + "The abjurer has a magical ward that has 30 hit points. Whenever the abjurer takes damage, the ward takes the damage instead. If the ward is reduced to 0 hit points, the abjurer takes any remaining damage. When the abjurer casts an abjuration spell of 1st level or higher, the ward regains a number of hit points equal to twice the level of the spell." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/abjurer.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "C", + "F", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Alhoon", + "source": "VGM", + "page": 172, + "reprintedAs": [ + "Alhoon|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "NX", + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 16, + "int": 19, + "wis": 17, + "cha": 17, + "save": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "arcana": "+8", + "deception": "+7", + "history": "+8", + "insight": "+7", + "perception": "+7", + "stealth": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "lightning", + "necrotic" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "10", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The alhoon's innate spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The alhoon is a 12th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The alhoon has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell mirror image}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell Evard's black tentacles}", + "{@spell phantasmal killer}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell modify memory}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The alhoon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The alhoon has advantage on saving throws against any effect that turns undead." + ] + } + ], + "action": [ + { + "name": "Chilling Grasp", + "entries": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) cold damage." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The alhoon magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/alhoon.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Turn Resistance" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "C", + "Y" + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CW", + "I", + "P" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "invisible", + "restrained" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Annis Hag", + "source": "VGM", + "page": 159, + "otherSources": [ + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Annis Hag|MPMM" + ], + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 12, + "con": 14, + "int": 13, + "wis": 14, + "cha": 15, + "save": { + "con": "+5" + }, + "skill": { + "deception": "+5", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Giant", + "Sylvan" + ], + "cr": { + "cr": "6", + "coven": "8" + }, + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 13}). She can innately cast the following spells:" + ], + "daily": { + "3e": [ + "{@spell disguise self} (including the form of a Medium humanoid)", + "{@spell fog cloud}" + ] + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The annis makes three attacks: one with her bite and two with her claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ] + }, + { + "name": "Crushing Hug", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}36 ({@damage 9d6 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. Until the grapple ends, the target takes 36 ({@damage 9d6 + 5}) bludgeoning damage at the start of each of the hag's turns. The hag can't make attacks while grappling a creature in this way." + ] + } + ], + "legendaryGroup": { + "name": "Annis Hag", + "source": "VGM" + }, + "variant": [ + { + "type": "inset", + "name": "Hag Covens", + "entries": [ + "When hags must work together, they form covens, in spite of their selfish natures. A coven is made up of hags of any type, all of whom are equals within the group. However, each of the hags continues to desire more personal power.", + "A coven consists of three hags so that any arguments between two hags can be settled by the third. If more than three hags ever come together, as might happen if two covens come into conflict, the result is usually chaos.", + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save DC is 12 + the hag's Intelligence modifier, and the spell attack bonus is 4 + the hag's Intelligence modifier." + ] + }, + { + "type": "entries", + "name": "Hag Eye", + "entries": [ + "A hag coven can craft a magic item called a hag eye, which is made from a real eye coated in varnish and often fitted to a pendant or other wearable item. The hag eye is usually entrusted to a minion for safekeeping and transport. A hag in the coven can take an action to see what the hag eye sees if the hag eye is on the same plane of existence. A hag eye has AC 10, 1 hit point, and darkvision with a radius of 60 feet. If it is destroyed, each coven member takes {@damage 3d10} psychic damage and is {@condition blinded} for 24 hours.", + "A hag coven can have only one hag eye at a time, and creating a new one requires all three members of the coven to perform a ritual. The ritual takes 1 hour, and the hags can't perform it while {@condition blinded}. During the ritual, if the hags take any action other than performing the ritual, they must start over." + ] + } + ] + }, + { + "type": "variant", + "name": "Death Coven", + "entries": [ + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "For a death coven, replace the spell list of the hags' Shared Spellcasting trait with the following spells:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell inflict wounds}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gentle repose}", + "{@spell ray of enfeeblement}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell revivify}", + "{@spell speak with dead}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell death ward}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell raise dead}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}" + ] + } + } + } + ] + }, + { + "type": "variant", + "name": "Nature Coven", + "entries": [ + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "For a nature coven, replace the spell list of the hags' Shared Spellcasting trait with the following spells:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell speak with animals}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell moonbeam}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell plant growth}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell grasping vine}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell insect plague}", + "{@spell tree stride}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell wall of thorns}" + ] + } + } + } + ] + }, + { + "type": "variant", + "name": "Prophecy Coven", + "entries": [ + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "For a prophecy coven, replace the spell list of the hags' Shared Spellcasting trait with the following spells:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell bless}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell detect thoughts}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell nondetection}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell arcane eye}", + "{@spell locate creature}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell geas}", + "{@spell legend lore}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ] + } + } + } + ] + } + ], + "environment": [ + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/annis-hag.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "S" + ], + "damageTags": [ + "B", + "P", + "S" + ], + "damageTagsLegendary": [ + "A" + ], + "spellcastingTags": [ + "CW", + "I", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "frightened", + "paralyzed", + "poisoned", + "restrained", + "stunned", + "unconscious" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Annis Hag (Coven)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "8", + "variant": null + }, + { + "name": "Annis Hag (Coven; Death)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell inflict wounds}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gentle repose}", + "{@spell ray of enfeeblement}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell revivify}", + "{@spell speak with dead}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell death ward}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell raise dead}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "8", + "variant": null + }, + { + "name": "Annis Hag (Coven; Nature)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell speak with animals}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell moonbeam}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell plant growth}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell grasping vine}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell insect plague}", + "{@spell tree stride}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell wall of thorns}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "8", + "variant": null + }, + { + "name": "Annis Hag (Coven; Prophecy)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell bless}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell detect thoughts}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell nondetection}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell arcane eye}", + "{@spell locate creature}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell geas}", + "{@spell legend lore}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "8", + "variant": null + } + ] + }, + { + "name": "Apprentice Wizard", + "source": "VGM", + "page": 209, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "ERLW" + } + ], + "reprintedAs": [ + "Apprentice Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 10 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 14, + "wis": 10, + "cha": 11, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The apprentice is a 1st-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/apprentice-wizard.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Archdruid", + "source": "VGM", + "page": 210, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Archdruid|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item hide armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 132, + "formula": "24d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 12, + "wis": 20, + "cha": 11, + "save": { + "int": "+5", + "wis": "+9" + }, + "skill": { + "medicine": "+9", + "nature": "+5", + "perception": "+9" + }, + "passive": 19, + "languages": [ + "Druidic plus any two languages" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archdruid is an 18th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell mending}", + "{@spell poison spray}", + "{@spell produce flame}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell faerie fire}", + "{@spell speak with animals}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell beast sense}", + "{@spell hold person}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell conjure animals}", + "{@spell meld into stone}", + "{@spell water breathing}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell locate creature}", + "{@spell stoneskin}", + "{@spell wall of fire}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell commune with nature}", + "{@spell mass cure wounds}", + "{@spell tree stride}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell heal}", + "{@spell heroes' feast}", + "{@spell sunbeam}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell fire storm}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell animal shapes}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell foresight}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Change Shape (2/Day)", + "entries": [ + "The archdruid magically polymorphs into a beast or elemental with a challenge rating of 6 or less, and can remain in this form for up to 9 hours. The archdruid can choose whether its equipment falls to the ground, melds with its new form, or is worn by the new form. The archdruid reverts to its true form if it dies or falls {@condition unconscious}. The archdruid can revert to its true form using a bonus action on its turn.", + "While in a new form, the archdruid retains its game statistics and ability to speak, but its AC, movement modes, Strength, and Dexterity are replaced by those of the new form, and it gains any special senses, proficiencies, traits, actions, and reactions (except class features, legendary actions, and lair actions) that the new form has but that it lacks. It can cast its spells with verbal or somatic components in its new form.", + "The new form's attacks count as magical for the purpose of overcoming resistances and immunity to nonmagical attacks." + ] + } + ], + "environment": [ + "forest", + "mountain", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/archdruid.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "actionTags": [ + "Shapechanger" + ], + "languageTags": [ + "DU", + "X" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "B", + "F", + "I", + "R" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "paralyzed", + "prone", + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Archer", + "source": "VGM", + "page": 210, + "otherSources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Archer|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 16, + "int": 11, + "wis": 13, + "cha": 10, + "skill": { + "acrobatics": "+6", + "perception": "+5" + }, + "passive": 15, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "trait": [ + { + "name": "Archer's Eye (3/Day)", + "entries": [ + "As a bonus action, the archer can add {@dice 1d10} to its next attack or damage roll with a longbow or shortbow." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archer makes two attacks with its longbow." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/archer.mp3" + }, + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aurochs", + "source": "VGM", + "page": 207, + "reprintedAs": [ + "Aurochs|MPMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 38, + "formula": "4d10 + 16" + }, + "speed": { + "walk": 50 + }, + "str": 20, + "dex": 10, + "con": 19, + "int": 2, + "wis": 12, + "cha": 5, + "passive": 11, + "cr": "2", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the aurochs moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ] + } + ], + "environment": [ + "mountain", + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/aurochs.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Babau", + "source": "VGM", + "page": 136, + "reprintedAs": [ + "Babau|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 16, + "con": 16, + "int": 11, + "wis": 12, + "cha": 13, + "skill": { + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The babau's innate spellcasting ability is Wisdom (spell save {@dc 11}). The babau can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}", + "{@spell dispel magic}", + "{@spell fear}", + "{@spell heat metal}", + "{@spell levitate}" + ], + "ability": "wis" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The babau makes two melee attacks. It can also use Weakening Gaze before or after making these attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage when used with two hands to make a melee attack." + ] + }, + { + "name": "Weakening Gaze", + "entries": [ + "The babau targets one creature that it can see within 20 feet of it. The target must make a {@dc 13} Constitution saving throw. On a failed save, the target deals only half damage with weapon attacks that use Strength for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/babau.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Banderhobb", + "source": "VGM", + "page": 122, + "reprintedAs": [ + "Banderhobb|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 11, + "wis": 14, + "cha": 8, + "skill": { + "athletics": "+8", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common and the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Resonant Connection", + "entries": [ + "If the banderhobb has even a tiny piece of a creature or an object in its possession, such as a lock of hair or a splinter of wood, it knows the most direct route to that creature or object if it is within 1 mile of the banderhobb." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the banderhobb can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}22 ({@damage 5d6 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the banderhobb can't use its bite attack or tongue attack on another target." + ] + }, + { + "name": "Tongue", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage, and the target must make a {@dc 15} Strength saving throw. On a failed save, the target is pulled to a space within 5 feet of the banderhobb, which can use a bonus action to make a bite attack against the target." + ] + }, + { + "name": "Swallow", + "entries": [ + "The banderhobb makes a bite attack against a Medium or smaller creature it is grappling. If the attack hits, the target is swallowed, and the grapple ends. The swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the banderhobb and it takes 10 ({@damage 3d6}) necrotic damage at the start of each of the banderhobb's turns. A creature reduced to 0 hit points in this way stops taking necrotic damage and becomes stable.", + "The banderhobb can have only one target swallowed at a time. While the banderhobb isn't {@condition incapacitated}, it can regurgitate the creature at any time (no action required) in a space within 5 feet of it. The creature exits {@condition prone}. If the banderhobb dies, it likewise regurgitates a swallowed creature." + ] + }, + { + "name": "Shadow Step", + "entries": [ + "The banderhobb magically teleports up to 30 feet to an unoccupied space of dim light or darkness that it can see. Before or after teleporting, it can make a bite or tongue attack." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/banderhobb.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Swallow" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bard", + "source": "VGM", + "page": 211, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + } + ], + "reprintedAs": [ + "Bard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "save": { + "dex": "+4", + "wis": "+3" + }, + "skill": { + "acrobatics": "+4", + "perception": "+5", + "performance": "+6" + }, + "passive": 15, + "languages": [ + "any two languages" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The bard is a 4th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following bard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell vicious mockery}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell healing word}", + "{@spell heroism}", + "{@spell sleep}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell shatter}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Song of Rest", + "entries": [ + "The bard can perform a song while taking a short rest. Any ally who hears the song regains an extra {@dice 1d6} hit points if it spends any Hit Dice to regain hit points at the end of that rest. The bard can confer this benefit on itself as well." + ] + }, + { + "name": "Taunt (2/Day)", + "entries": [ + "The bard can use a bonus action on its turn to target one creature within 30 feet of it. If the target can hear the bard, the target must succeed on a {@dc 12} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of the bard's next turn." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bard.mp3" + }, + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "T", + "Y" + ], + "spellcastingTags": [ + "CB" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Barghest", + "source": "VGM", + "page": 123, + "otherSources": [ + { + "source": "TftYP" + } + ], + "reprintedAs": [ + "Barghest|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": { + "number": 60, + "condition": "(30 ft. in goblin form)" + } + }, + "str": 19, + "dex": 15, + "con": 14, + "int": 13, + "wis": 12, + "cha": 14, + "skill": { + "deception": "+4", + "intimidation": "+4", + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Goblin", + "Infernal", + "telepathy 60 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The barghest's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell levitate}", + "{@spell minor illusion}", + "{@spell pass without trace}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell dimension door}", + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The barghest can use its action to polymorph into a Small goblin or back into its true form. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. The barghest reverts to its true form if it dies." + ] + }, + { + "name": "Fire Banishment", + "entries": [ + "When the barghest starts its turn engulfed in flames that are at least 10 feet high or wide, it must succeed on a {@dc 15} Charisma saving throw or be instantly banished to Gehenna. Instantaneous bursts of flame (such as a red dragon's breath or a {@spell fireball} spell) don't have this effect on the barghest." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The barghest has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Soul Feeding", + "entries": [ + "A barghest can feed on the corpse of a humanoid that it killed that has been dead for less than 10 minutes, devouring both flesh and soul in doing so. This feeding takes at least 1 minute, and it destroys the victim's body. The victim's soul is trapped in the barghest for 24 hours, after which time it is digested. If the barghest dies before the soul is digested, the soul is released.", + "While a humanoid's soul is trapped in a barghest, any form of revival that could work has only a {@chance 50} chance of doing so, freeing the soul from the barghest if it is successful. Once a creature's soul is digested, however, no mortal magic can return that humanoid to life." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/barghest.mp3" + }, + "traitTags": [ + "Keen Senses", + "Shapechanger" + ], + "senseTags": [ + "B", + "D" + ], + "languageTags": [ + "AB", + "C", + "GO", + "I", + "TP" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bheur Hag", + "source": "VGM", + "page": 160, + "reprintedAs": [ + "Bheur Hag|MPMM" + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 16, + "con": 14, + "int": 12, + "wis": 13, + "cha": 16, + "save": { + "wis": "+4" + }, + "skill": { + "nature": "+4", + "perception": "+4", + "stealth": "+6", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Auran", + "Common", + "Giant" + ], + "cr": { + "cr": "7", + "coven": "9" + }, + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell hold person}*", + "{@spell ray of frost}" + ], + "daily": { + "3e": [ + "{@spell cone of cold}*", + "{@spell ice storm}*", + "{@spell wall of ice}*" + ], + "1e": [ + "{@spell control weather}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Graystaff Magic", + "entries": [ + "The hag carries a graystaff, a length of gray wood that is a focus for her inner power. She can ride the staff as if it were a {@item broom of flying}. While holding the staff, she can cast additional spells with her Innate Spellcasting trait (these spells are marked with an asterisk). If the staff is lost or destroyed, the hag must craft another, which takes a year and a day. Only a bheur hag can use a graystaff." + ] + }, + { + "name": "Ice Walk", + "entries": [ + "The hag can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost her extra moment." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) bludgeoning damage plus 3 ({@damage 1d6}) cold damage." + ] + }, + { + "name": "Maddening Feast", + "entries": [ + "The hag feasts on the corpse of one enemy within 5 feet of her that died within the past minute. Each creature of the hag's choice that is within 60 feet of her and able to see her must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of her for 1 minute. While {@condition frightened} in this way, a creature is {@condition incapacitated}, can't understand what others say, can't read, and speaks only in gibberish; the DM controls the creature's movement, which is erratic. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Maddening Feast for the next 24 hours." + ] + } + ], + "legendaryGroup": { + "name": "Bheur Hag", + "source": "VGM" + }, + "variant": [ + { + "type": "inset", + "name": "Hag Covens", + "entries": [ + "When hags must work together, they form covens, in spite of their selfish natures. A coven is made up of hags of any type, all of whom are equals within the group. However, each of the hags continues to desire more personal power.", + "A coven consists of three hags so that any arguments between two hags can be settled by the third. If more than three hags ever come together, as might happen if two covens come into conflict, the result is usually chaos.", + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save DC is 12 + the hag's Intelligence modifier, and the spell attack bonus is 4 + the hag's Intelligence modifier." + ] + }, + { + "type": "entries", + "name": "Hag Eye", + "entries": [ + "A hag coven can craft a magic item called a hag eye, which is made from a real eye coated in varnish and often fitted to a pendant or other wearable item. The hag eye is usually entrusted to a minion for safekeeping and transport. A hag in the coven can take an action to see what the hag eye sees if the hag eye is on the same plane of existence. A hag eye has AC 10, 1 hit point, and darkvision with a radius of 60 feet. If it is destroyed, each coven member takes {@damage 3d10} psychic damage and is {@condition blinded} for 24 hours.", + "A hag coven can have only one hag eye at a time, and creating a new one requires all three members of the coven to perform a ritual. The ritual takes 1 hour, and the hags can't perform it while {@condition blinded}. During the ritual, if the hags take any action other than performing the ritual, they must start over." + ] + } + ] + }, + { + "type": "variant", + "name": "Death Coven", + "entries": [ + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "For a death coven, replace the spell list of the hags' Shared Spellcasting trait with the following spells:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell inflict wounds}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gentle repose}", + "{@spell ray of enfeeblement}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell revivify}", + "{@spell speak with dead}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell death ward}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell raise dead}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}" + ] + } + } + } + ] + }, + { + "type": "variant", + "name": "Nature Coven", + "entries": [ + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "For a nature coven, replace the spell list of the hags' Shared Spellcasting trait with the following spells:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell speak with animals}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell moonbeam}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell plant growth}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell grasping vine}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell insect plague}", + "{@spell tree stride}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell wall of thorns}" + ] + } + } + } + ] + }, + { + "type": "variant", + "name": "Prophecy Coven", + "entries": [ + { + "type": "spellcasting", + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "For a prophecy coven, replace the spell list of the hags' Shared Spellcasting trait with the following spells:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell bless}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell detect thoughts}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell nondetection}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell arcane eye}", + "{@spell locate creature}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell geas}", + "{@spell legend lore}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ] + } + } + } + ] + } + ], + "environment": [ + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bheur-hag.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "AU", + "C", + "GI" + ], + "damageTags": [ + "B", + "C" + ], + "damageTagsSpell": [ + "B", + "C" + ], + "spellcastingTags": [ + "CW", + "I", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "incapacitated" + ], + "conditionInflictLegendary": [ + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "frightened", + "paralyzed", + "poisoned", + "restrained", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Bheur Hag (Coven)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell identify}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell locate object}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "9", + "variant": null + }, + { + "name": "Bheur Hag (Coven; Death)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell inflict wounds}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gentle repose}", + "{@spell ray of enfeeblement}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell revivify}", + "{@spell speak with dead}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell death ward}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell raise dead}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "9", + "variant": null + }, + { + "name": "Bheur Hag (Coven; Nature)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell speak with animals}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell moonbeam}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell plant growth}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell grasping vine}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell insect plague}", + "{@spell tree stride}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell wall of thorns}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "9", + "variant": null + }, + { + "name": "Bheur Hag (Coven; Prophecy)", + "source": "VGM", + "_mod": { + "spellcasting": { + "mode": "appendArr", + "items": { + "name": "Shared Spellcasting (Coven Only)", + "headerEntries": [ + "While all three members of a hag coven are within 30 feet of one another, they can each cast the following spells from the wizard's spell list but must share the spell slots among themselves:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell bless}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell detect thoughts}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell nondetection}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell arcane eye}", + "{@spell locate creature}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell geas}", + "{@spell legend lore}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ] + } + }, + "ability": "int", + "footerEntries": [ + "For casting these spells, each hag is a 12th-level spellcaster that uses Intelligence as her spellcasting ability. The spell save {@dc 13}, and the spell attack bonus is {@hit 5}." + ] + } + } + }, + "cr": "9", + "variant": null + } + ] + }, + { + "name": "Black Guard Drake", + "source": "VGM", + "page": 158, + "reprintedAs": [ + "Guard Drake|MPMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 4, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "acid" + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The guard drake can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drake attacks twice, once with its bite and once with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard-drake.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blackguard", + "source": "VGM", + "page": 211, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Blackguard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "NY", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 11, + "con": 18, + "int": 11, + "wis": 14, + "cha": 15, + "save": { + "wis": "+5", + "cha": "+5" + }, + "skill": { + "athletics": "+7", + "deception": "+5", + "intimidation": "+5" + }, + "passive": 12, + "languages": [ + "any one language (usually Common)" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The blackguard is a 10th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following paladin spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell protection from evil and good}", + "{@spell thunderous smite}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell branding smite}", + "{@spell find steed}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell blinding smite}", + "{@spell dispel magic}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blackguard makes three attacks with its glaive or its shortbow." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Dreadful Aspect (Recharges after a Short or Long Rest)", + "entries": [ + "The blackguard exudes magical menace. Each enemy within 30 feet of the blackguard must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If a {@condition frightened} target ends its turn more than 30 feet away from the blackguard, the target can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/blackguard.mp3" + }, + "attachedItems": [ + "glaive|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "R", + "T" + ], + "spellcastingTags": [ + "CP" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RNG", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "blinded", + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Blue Guard Drake", + "source": "VGM", + "page": 158, + "reprintedAs": [ + "Guard Drake|MPMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "burrow": 20 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 4, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "lightning" + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drake attacks twice, once with its bite and once with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard-drake.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bodak", + "source": "VGM", + "page": 127, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Bodak|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 16, + "con": 15, + "int": 7, + "wis": 12, + "cha": 12, + "skill": { + "perception": "+4", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "the languages it knew in life" + ], + "cr": "6", + "trait": [ + { + "name": "Aura of Annihilation", + "entries": [ + "The bodak can activate or deactivate this feature as a bonus action. While active, the aura deals 5 necrotic damage to any creature that ends its turn within 30 feet of the bodak. Undead and fiends ignore this effect." + ] + }, + { + "name": "Death Gaze", + "entries": [ + "When a creature that can see the bodak's eyes starts its turn within 30 feet of the bodak, the bodak can force it to make a {@dc 13} Constitution saving throw if the bodak isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is reduced to 0 hit points, unless it is immune to the {@condition frightened} condition. Otherwise, a creature takes 16 ({@damage 3d10}) psychic damage on a failed save.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it has disadvantage on attack rolls against the bodak until the start of its next turn. If the creature looks at the bodak in the meantime, it must immediately make the saving throw." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "The bodak takes 5 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ] + }, + { + "name": "Withering Gaze", + "entries": [ + "One creature that the bodak can see within 60 feet of it must make a {@dc 13} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/bodak.mp3" + }, + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "LF" + ], + "damageTags": [ + "B", + "N", + "R", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boggle", + "source": "VGM", + "page": 128, + "otherSources": [ + { + "source": "IMR" + }, + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Boggle|MPMM" + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 14 + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 8, + "dex": 18, + "con": 13, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "sleight of hand": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "fire" + ], + "languages": [ + "Sylvan" + ], + "cr": "1/8", + "trait": [ + { + "name": "Boggle Oil", + "entries": [ + "The boggle excretes nonflammable oil from its pores. The boggle chooses whether the oil is slippery or sticky and can change the oil on its skin from one consistency to another as a bonus action.", + "Slippery Oil: While coated in slippery oil, the boggle gains advantage on Dexterity ({@skill Acrobatics}) checks made to escape bonds, squeeze through narrow spaces, and end grapples.", + "Sticky Oil: While coated in sticky oil, the boggle gains advantage on Strength ({@skill Athletics}) checks made to grapple and any ability check made to maintain a hold on another creature, a surface, or an object. The boggle can also climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Dimensional Rift", + "entries": [ + "As a bonus action, the boggle can create an {@condition invisible} and immobile rift within an opening or frame it can see within 5 feet of it, provided that the space is no bigger than 10 feet on any side. The dimensional rift bridges the distance between that space and any point within 30 feet of it that the boggle can see or specify by distance and direction (such as \"30 feet straight up\"). While next to the rift, the boggle can see through it and is considered to be next to the destination as well, and anything the boggle puts through the rift (including a portion of its body) emerges at the destination. Only the boggle can use the rift, and it lasts until the end of the boggle's next turn." + ] + }, + { + "name": "Uncanny Smell", + "entries": [ + "The boggle has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Pummel", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ] + }, + { + "name": "Oil Puddle", + "entries": [ + "The boggle creates a puddle of oil that is either slippery or sticky (boggle's choice). The puddle is 1 inch deep and covers the ground in the boggle's space. The puddle is {@quickref difficult terrain||3} For all creatures except boggles and lasts for 1 hour.", + "If the oil is slippery, any creature that enters the puddle's area or starts its turn there must succeed on a {@dc 11} Dexterity saving throw or fall {@condition prone}.", + "If the oil is sticky, any creature that enters the puddle's area or starts its turn there must succeed on a {@dc 11} Strength saving throw or be {@condition restrained}. On its turn. a creature can use an action to try to extricate itself from the sticky puddle, ending the effect and moving into the nearest safe unoccupied space with a successful {@dc 11} Strength check." + ] + } + ], + "environment": [ + "underdark", + "forest", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/boggle.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Booyahg Booyahg Booyahg", + "shortName": "Goblin", + "source": "VGM", + "page": 43, + "_copy": { + "name": "Mage", + "source": "MM", + "_templates": [ + { + "name": "Goblin", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "(^| )mage", + "with": "$1goblin" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Wild Magic", + "entries": [ + "Each time the goblin casts a spell (including cantrips), there is an accompanying surge of wild magic; roll on the {@table Wild Magic Surge|PHB} table in the {@book Player's Handbook|PHB} to determine the wild magic effect." + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Booyahg Caster", + "source": "VGM", + "page": 42, + "_copy": { + "name": "Goblin", + "source": "MM" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The goblin can cast a randomly determined {@filter 1st-level wizard spell|spells|level=1|class=wizard} once per day. Intelligence is its spellcasting ability (spell save {@dc 10}, {@hit 2} to hit with spell attacks)." + ], + "ability": "int" + } + ], + "spellcastingTags": [ + "CW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Booyahg Slave of the Archfey", + "shortName": "Goblin", + "source": "VGM", + "page": 42, + "_copy": { + "name": "Warlock of the Archfey", + "source": "VGM", + "_templates": [ + { + "name": "Goblin", + "source": "DMG" + } + ], + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "The warlock", + "with": "The goblin" + }, + { + "mode": "replaceTxt", + "replace": "the warlock", + "with": "the goblin" + } + ] + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Booyahg Slave of the Fiend", + "shortName": "Goblin", + "source": "VGM", + "page": 42, + "_copy": { + "name": "Warlock of the Fiend", + "source": "VGM", + "_templates": [ + { + "name": "Goblin", + "source": "DMG" + } + ], + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "The warlock", + "with": "The goblin" + }, + { + "mode": "replaceTxt", + "replace": "the warlock", + "with": "the goblin" + } + ] + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Booyahg Slave of the Great Old One", + "shortName": "Goblin", + "source": "VGM", + "page": 42, + "_copy": { + "name": "Warlock of the Great Old One", + "source": "VGM", + "_templates": [ + { + "name": "Goblin", + "source": "DMG" + } + ], + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "The warlock", + "with": "The goblin" + }, + { + "mode": "replaceTxt", + "replace": "the warlock", + "with": "the goblin" + } + ] + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Booyahg Whip", + "source": "VGM", + "page": 42, + "_copy": { + "name": "Goblin", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Khurgorbaeyag's Gift", + "entries": [ + "Khurgorbaeyag saw fit to gift this goblin with powers that enable it to dominate others. The goblin has {@dice 1d3} other {@creature goblin||goblins} that slavishly obey its orders." + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Booyahg Wielder", + "source": "VGM", + "page": 42, + "_copy": { + "name": "Goblin", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The goblin found a magic item (a {@item necklace of fireballs}, a {@item circlet of blasting}, or the like) and learned how to use it." + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Brontosaurus", + "group": [ + "Dinosaurs" + ], + "source": "VGM", + "page": 139, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Brontosaurus|MPMM" + ], + "size": [ + "G" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 121, + "formula": "9d20 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 9, + "con": 17, + "int": 2, + "wis": 10, + "cha": 7, + "save": { + "con": "+6" + }, + "passive": 10, + "cr": "5", + "action": [ + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}27 ({@damage 5d8 + 5}) bludgeoning damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}32 ({@damage 6d8 + 5}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/brontosaurus.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Catoblepas", + "source": "VGM", + "page": 129, + "otherSources": [ + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Catoblepas|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 12, + "con": 21, + "int": 3, + "wis": 14, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "cr": "5", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The catoblepas has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Stench", + "entries": [ + "Any creature other than a catoblepas that starts its turn within 10 feet of the catoblepas must succeed on a {@dc 16} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of any catoblepas for 1 hour." + ] + } + ], + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}21 ({@damage 5d6 + 4}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the start of the catoblepas's next turn." + ] + }, + { + "name": "Death Ray {@recharge 5}", + "entries": [ + "The catoblepas targets a creature that it can see within 30 feet of it. The target must make a {@dc 16} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the target instead takes 64 necrotic damage. The target dies if reduced to 0 hit points by this ray." + ] + } + ], + "environment": [ + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/catoblepas.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cave Fisher", + "source": "VGM", + "page": 130, + "reprintedAs": [ + "Cave Fisher|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 3, + "wis": 10, + "cha": 3, + "skill": { + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 12, + "cr": "3", + "trait": [ + { + "name": "Adhesive Filament", + "entries": [ + "The cave fisher can use its action to extend a sticky filament up to 60 feet, and the filament adheres to anything that touches it. A creature adhered to the filament is {@condition grappled} by the cave fisher (escape {@dc 13}), and ability checks made to escape this grapple have disadvantage. The filament can be attacked (AC 15; 5 hit points; immunity to poison and psychic damage), but a weapon that fails to sever it becomes stuck to it, requiring an action and a successful {@dc 13} Strength check to pull free. Destroying the filament causes no damage to the cave fisher, which can extrude a replacement filament on its next turn" + ] + }, + { + "name": "Flammable Blood", + "entries": [ + "If the cave fisher drops to half its hit points or fewer, it gains vulnerability to fire damage." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The cave fisher can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cave fisher makes two attacks with its claws." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ] + }, + { + "name": "Filament", + "entries": [ + "One creature {@condition grappled} by the cave fisher's adhesive filament must make a {@dc 13} Strength saving throw, provided that the target weighs 200 pounds or less. On a failure, the target is pulled into an unoccupied space within 5 feet of the cave fisher, and the cave fisher makes a claw attack against it as a bonus action. Reeling up the target releases anyone else who was attached to the filament. Until the grapple ends on the target, the cave fisher can't extrude another filament." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cave-fisher.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Champion", + "source": "VGM", + "page": 212, + "otherSources": [ + { + "source": "WDMM" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Champion|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 14, + "int": 10, + "wis": 14, + "cha": 12, + "save": { + "str": "+9", + "con": "+6" + }, + "skill": { + "athletics": "+9", + "intimidation": "+5", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "any one language (usually Common)" + ], + "cr": "9", + "trait": [ + { + "name": "Indomitable (2/Day)", + "entries": [ + "The champion rerolls a failed saving throw." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the champion can regain 20 hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes three attacks with its greatsword or its shortbow." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage, plus 7 ({@damage 2d6}) slashing damage if the champion has more than half of its total hit points remaining." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 7 ({@damage 2d6}) piercing damage if the champion has more than half of its total hit points remaining." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/champion.mp3" + }, + "attachedItems": [ + "greatsword|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Chitine", + "source": "VGM", + "page": 131, + "reprintedAs": [ + "Chitine|MPMM" + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 10, + "wis": 10, + "cha": 7, + "skill": { + "athletics": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Undercommon" + ], + "cr": "1/2", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The chitine has advantage on saving throws against being {@condition charmed}, and magic can't put the chitine to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the chitine has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the chitine knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The chitine ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chitine makes three attacks with its daggers." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/chitine.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Choldrith", + "source": "VGM", + "page": 132, + "reprintedAs": [ + "Choldrith|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 12, + "dex": 16, + "con": 12, + "int": 11, + "wis": 14, + "cha": 10, + "skill": { + "athletics": "+5", + "religion": "+2", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Undercommon" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The choldrith is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The choldrith has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell healing word}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon} (dagger)" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The choldrith has advantage on saving throws against being {@condition charmed}, and magic can't put the choldrith to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The choldrith can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the choldrith has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the choldrith knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The choldrith ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Web {@recharge 5}", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one Large or smaller creature. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 11} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; 5 hit points; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/choldrith.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Spider Climb", + "Sunlight Sensitivity", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "U" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cloud Giant Smiling One", + "source": "VGM", + "page": 146, + "reprintedAs": [ + "Cloud Giant Smiling One|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "cloud giant" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 262, + "formula": "21d12 + 128" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 12, + "con": 22, + "int": 15, + "wis": 16, + "cha": 17, + "save": { + "con": "+10", + "int": "+6", + "wis": "+7" + }, + "skill": { + "deception": "+11", + "insight": "+7", + "perception": "+7", + "sleight of hand": "+9" + }, + "passive": 17, + "languages": [ + "Common", + "Giant" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant's innate spellcasting ability is Charisma (spell save {@dc 15}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "daily": { + "3e": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell control weather}", + "{@spell gaseous form}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The giant has the following bard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell disguise self}", + "{@spell silent image}", + "{@spell Tasha's hideous laughter}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell major image}", + "{@spell tongues}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The giant has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two attacks with its morningstar." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage. The attack deals an extra 14 ({@damage 4d6}) damage if the giant has advantage on the attack roll." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage. The attack deals an extra 14 ({@damage 4d6}) damage if the giant has advantage on the attack roll." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The giant magically polymorphs into a beast or humanoid it has seen, or back into its true form. Any equipment the giant is wearing or carrying is absorbed by the new form. Its statistics, other than its size, are the same in each form. It reverts to its true form if it dies." + ] + } + ], + "environment": [ + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cloud-giant-smiling-one.mp3" + }, + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "CB", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Conjurer", + "source": "VGM", + "page": 212, + "otherSources": [ + { + "source": "TftYP" + } + ], + "reprintedAs": [ + "Conjurer Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The conjurer is a 9th-level spellcaster. Its spellcasting ability is intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The conjurer has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell unseen servant}*" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell cloud of daggers}*", + "{@spell misty step}*", + "{@spell web}*" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell stinking cloud}*" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell Evard's black tentacles}*", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cloudkill}*", + "{@spell conjure elemental}*" + ] + } + }, + "footerEntries": [ + "*Conjuration spell of 1st level or higher" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Benign Transportation (Recharges after the Conjurer Casts a Conjuration Spell of 1st Level or Higher)", + "entries": [ + "As a bonus action, the conjurer teleports up to 30 feet to an unoccupied space that it can see. If it instead chooses a space within range that is occupied by a willing Small or Medium creature, they both teleport, swapping places." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/conjurer.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "A", + "B", + "F", + "I", + "O", + "S" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cow", + "source": "VGM", + "page": 207, + "otherSources": [ + { + "source": "DIP" + } + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 15, + "formula": "2d10 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the cow moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cow.mp3" + }, + "traitTags": [ + "Charge" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cranium Rat", + "source": "VGM", + "page": 133, + "reprintedAs": [ + "Cranium Rat|MPMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 30 + }, + "str": 2, + "dex": 14, + "con": 10, + "int": 4, + "wis": 11, + "cha": 8, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "languages": [ + "telepathy 30 ft." + ], + "cr": "0", + "trait": [ + { + "name": "Illumination", + "entries": [ + "As a bonus action, the cranium rat can shed dim light from its brain in a 5-foot radius or extinguish the light." + ] + }, + { + "name": "Telepathic Shroud", + "entries": [ + "The cranium rat is immune to any effect that would sense its emotions or read its thoughts, as well as to all divination spells." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/cranium-rat.mp3" + }, + "traitTags": [ + "Illumination" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Darkling", + "source": "VGM", + "page": 134, + "otherSources": [ + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Darkling|MPMM" + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 16, + "con": 12, + "int": 10, + "wis": 12, + "cha": 10, + "skill": { + "acrobatics": "+5", + "deception": "+2", + "perception": "+5", + "stealth": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 15, + "languages": [ + "Elvish", + "Sylvan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Death Flash", + "entries": [ + "When the darkling dies, nonmagical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area and able to see the bright light must succeed on a {@dc 10} Constitution saving throw or be {@condition blinded} until the end of the creature's next turn." + ] + }, + { + "name": "Light Sensitivity", + "entries": [ + "While in bright light, the darkling has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. If the darkling has advantage on the attack roll, the attack deals an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/darkling.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Light Sensitivity" + ], + "senseTags": [ + "B", + "SD" + ], + "languageTags": [ + "E", + "S" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Darkling Elder", + "source": "VGM", + "page": 134, + "otherSources": [ + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Darkling Elder|MPMM" + ], + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 17, + "con": 12, + "int": 10, + "wis": 14, + "cha": 13, + "skill": { + "acrobatics": "+5", + "deception": "+3", + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Elvish", + "Sylvan" + ], + "cr": "2", + "trait": [ + { + "name": "Death Burn", + "entries": [ + "When the darkling elder dies, magical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area must make a {@dc 11} Constitution saving throw. On a failure, the creature takes 7 ({@damage 2d6}) radiant damage and, if the creature can see the light, is {@condition blinded} until the end of its next turn. If the saving throw is successful, the creature takes half the damage and isn't {@condition blinded}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The darkling elder makes two melee attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the darkling elder had advantage on the attack roll, the attack deals as: extra 10 ({@damage 3d6}) piercing damage." + ] + }, + { + "name": "Darkness (Recharges after a Short or Long Rest)", + "entries": [ + "The darkling elder casts {@spell darkness} without any components. Wisdom is its spellcasting ability." + ] + } + ], + "environment": [ + "underdark", + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/darkling-elder.mp3" + }, + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "S" + ], + "damageTags": [ + "P", + "R" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death Kiss", + "group": [ + "Beholders" + ], + "source": "VGM", + "page": 124, + "reprintedAs": [ + "Death Kiss|MPMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "17d10 + 68" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 10, + "wis": 12, + "cha": 10, + "save": { + "con": "+8", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "cr": "10", + "trait": [ + { + "name": "Lightning Blood", + "entries": [ + "A creature within 5 feet of the death kiss takes 5 ({@damage 1d10}) lightning damage whenever it hits the death kiss with a melee attack that deals piercing or slashing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The death kiss makes three tentacle attacks. Up to three of these attacks can be replaced by Blood Drain, one replacement per tentacle grappling a creature" + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Huge or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the death kiss can't use the same tentacle on another target. The death kiss has ten tentacles." + ] + }, + { + "name": "Blood Drain", + "entries": [ + "One creature {@condition grappled} by a tentacle of the death kiss must make a {@dc 16} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) lightning damage, and the death kiss regains half as many hit points." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/death-kiss.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "U" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deep Roth\u00e9", + "source": "VGM", + "page": 208, + "reprintedAs": [ + "Deep Roth\u00e9|MPMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 13, + "formula": "2d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The deep roth\u00e9's spellcasting ability is Charisma. It can innately cast {@spell dancing lights} at will, requiring no components." + ], + "will": [ + "{@spell dancing lights}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Charge", + "entries": [ + "If the roth\u00e9 moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rothe.mp3" + }, + "traitTags": [ + "Charge" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Deep Scion", + "source": "VGM", + "page": 135, + "otherSources": [ + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Deep Scion|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(20 ft. and swim 40 ft. in hybrid form)" + } + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 10, + "wis": 12, + "cha": 14, + "save": { + "wis": "+3", + "cha": "+4" + }, + "skill": { + "deception": "+6", + "insight": "+3", + "sleight of hand": "+3", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 11, + "languages": [ + "Aquan", + "Common", + "Thieves' cant" + ], + "cr": "3", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The deep scion can use its action to polymorph into a humanoid-piscine hybrid form, or back into its true form. Its statistics, other than its speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. The deep scion reverts to its true form if it dies." + ] + }, + { + "name": "Amphibious (Hybrid Form Only)", + "entries": [ + "The deep scion can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "In humanoid form, the deep scion makes two melee attacks. In hybrid form, the deep scion makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Battleaxe (Humanoid Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Bite (Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Claw (Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Psychic Screech (Hybrid Form Only; Recharges after a Short or Long Rest)", + "entries": [ + "The deep scion emits a terrible scream audible within 300 feet. Creatures within 30 feet of the deep scion must succeed on a {@dc 13} Wisdom saving throw or be {@condition stunned} until the end of the deep scion's next turn. In water, the psychic screech also telepathically transmits the deep scion's memories of the last 24 hours to its master, regardless of distance, so long as it and its master are in the same body of water." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deep-scion.mp3" + }, + "attachedItems": [ + "battleaxe|phb" + ], + "traitTags": [ + "Amphibious", + "Shapechanger" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C", + "TC" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deinonychus", + "group": [ + "Dinosaurs" + ], + "source": "VGM", + "page": 139, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "PSX", + "page": 30 + } + ], + "reprintedAs": [ + "Deinonychus|MPMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 15, + "con": 14, + "int": 4, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1", + "trait": [ + { + "name": "Pounce", + "entries": [ + "If the deinonychus moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the deinonychus can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deinonychus makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/deinonychus.mp3" + }, + "traitTags": [ + "Pounce" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Devourer", + "source": "VGM", + "page": 138, + "reprintedAs": [ + "Devourer|MPMM" + ], + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 13, + "wis": 10, + "cha": 16, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "13", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The devourer makes two claw attacks and can use either Imprison Soul or Soul Rend." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 21 ({@damage 6d6}) necrotic damage." + ] + }, + { + "name": "Imprison Soul", + "entries": [ + "The devourer chooses a living humanoid with 0 hit points that it can see within 30 feet of it. That creature is teleported inside the devourer's ribcage and imprisoned there. A creature imprisoned in this manner has disadvantage on death saving throws. If it dies while imprisoned, the devourer regains 25 hit points, immediately recharges Soul Rend, and gains an additional action on its next turn. Additionally, at the start of its next turn, the devourer regurgitates the slain creature as a bonus action, and the creature becomes an undead. If the victim had 2 or fewer Hit Dice, it becomes a zombie. if it had 3 to 5 Hit Dice, it becomes a ghoul. Otherwise, it becomes a wight. A devourer can imprison only one creature at a time." + ] + }, + { + "name": "Soul Rend {@recharge}", + "entries": [ + "The devourer creates a vortex of life-draining energy in a 20-foot radius centered on itself. Each humanoid in that area must make a {@dc 18} Constitution saving throw, taking 44 ({@damage 8d10}) necrotic damage on a failed save, or half as much damage on a successful one. Increase the damage by 10 for each living humanoid with 0 hit points in that area." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/devourer.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dimetrodon", + "group": [ + "Dinosaurs" + ], + "source": "VGM", + "page": 139, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Dimetrodon|MPMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6" + }, + "speed": { + "walk": 30, + "swim": 20 + }, + "str": 14, + "dex": 10, + "con": 15, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+2" + }, + "passive": 12, + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "swamp", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dimetrodon.mp3" + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Diviner", + "source": "VGM", + "page": 213, + "reprintedAs": [ + "Diviner Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 67, + "formula": "15d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 18, + "wis": 12, + "cha": 11, + "save": { + "int": "+7", + "wis": "+4" + }, + "skill": { + "arcana": "+7", + "history": "+7" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The diviner is a 15th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The diviner has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell true strike}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}*", + "{@spell feather fall}", + "{@spell mage armor}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}*", + "{@spell locate object}*", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}*", + "{@spell fly}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell arcane eye}*", + "{@spell ice storm}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell Rary's telepathic bond}*", + "{@spell seeming}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell mass suggestion}", + "{@spell true seeing}*" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell delayed blast fireball}", + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell maze}" + ] + } + }, + "footerEntries": [ + "* Divination spell of 1st level or higher" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Portent (Recharges after the Diviner Casts a Divination Spell of 1st Level or Higher)", + "entries": [ + "When the diviner or a creature it can see makes an attack roll, a saving throw, or an ability check, the diviner can roll a {@dice d20} and choose to use this roll in place of the attack roll, saving throw, or ability check." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/diviner.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B", + "C", + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dolphin", + "source": "VGM", + "page": 208, + "otherSources": [ + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Dolphin|MPMM" + ], + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 0, + "swim": 60 + }, + "str": 14, + "dex": 13, + "con": 13, + "int": 6, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "cr": "1/8", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the dolphin moves at least 30 feet straight toward a target and then hits it with a slam attack on the same turn, the target takes an extra 3 ({@damage 1d6}) bludgeoning damage." + ] + }, + { + "name": "Hold Breath", + "entries": [ + "The dolphin can hold its breath for 20 minutes." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/dolphin.mp3" + }, + "traitTags": [ + "Charge", + "Hold Breath" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Draegloth", + "source": "VGM", + "page": 141, + "reprintedAs": [ + "Draegloth|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 18, + "int": 13, + "wis": 11, + "cha": 11, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Elvish", + "Undercommon" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The draegloth's innate spellcasting ability is Charisma (spell save {@dc 11}). The draegloth can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell darkness}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell dancing lights}", + "{@spell faerie fire}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The draegloth has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The draegloth makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/draegloth.mp3" + }, + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "E", + "U" + ], + "damageTags": [ + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elder Brain", + "source": "VGM", + "page": 173, + "reprintedAs": [ + "Elder Brain|MPMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 210, + "formula": "20d10 + 100" + }, + "speed": { + "walk": 5, + "swim": 10 + }, + "str": 15, + "dex": 10, + "con": 20, + "int": 21, + "wis": 19, + "cha": 24, + "save": { + "int": "+10", + "wis": "+9", + "cha": "+12" + }, + "skill": { + "arcana": "+10", + "deception": "+12", + "insight": "+14", + "intimidation": "+12", + "persuasion": "+12" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 14, + "languages": [ + "understands Common", + "Deep Speech", + "and Undercommon but can't speak", + "telepathy 5 miles" + ], + "cr": "14", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The elder brain's innate spellcasting ability is Intelligence (spell save {@dc 18}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The elder brain is aware of the presence of creatures within 5 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the elder brain fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The elder brain has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Telepathic Hub", + "entries": [ + "The elder brain can use its telepathy to initiate and maintain telepathic conversations with up to ten creatures at a time. The elder brain can let those creatures telepathically hear each other while connected in this way." + ] + } + ], + "action": [ + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 30 ft., one target. {@h}20 ({@damage 4d8 + 2}) bludgeoning damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 15}) and takes 9 ({@damage 1d8 + 5}) psychic damage at the start of each of its turns until the grapple ends. The elder brain can have up to four targets {@condition grappled} at a time." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The elder brain magically emits psychic energy. Creatures of the elder brain's choice within 60 feet of it must succeed on a {@dc 18} Intelligence saving throw or take 32 ({@damage 5d10 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Psychic Link", + "entries": [ + "The elder brain targets one {@condition incapacitated} creature it can perceive with its Creature Sense trait and establishes a psychic link with that creature. Until the psychic link ends, the elder brain can perceive everything the target senses. The target becomes aware that something is linked to its mind once it is no longer {@condition incapacitated}, and the elder brain can terminate the link at any time (no action required). The target can use an action on its turn to attempt to break the psychic link, doing so with a successful {@dc 18} Charisma saving throw. On a successful save, the target takes 10 ({@damage 3d6}) psychic damage. The psychic link also ends if the target and the elder brain are more than 5 miles apart, with no consequences to the target. The elder brain can form psychic links with up to ten creatures at a time." + ] + }, + { + "name": "Sense Thoughts", + "entries": [ + "The elder brain targets a creature with which it has a psychic link. The elder brain gains insight into the target's reasoning, its emotional state, and thoughts that loom large in its mind (including things the target worries about, loves, or hates). The elder brain can also make a Charisma ({@skill Deception}) check with advantage to deceive the target's mind into thinking it believes one idea or feels a particular emotion. The target contests this attempt with a Wisdom ({@skill Insight}) check. If the elder brain succeeds, the mind believes the deception for 1 hour or until evidence of the lie is presented to the target." + ] + } + ], + "legendary": [ + { + "name": "Tentacle", + "entries": [ + "The elder brain makes a tentacle attack." + ] + }, + { + "name": "Break Concentration", + "entries": [ + "The elder brain targets a creature within 120 feet of it with which it has a psychic link. The elder brain breaks the creature's {@status concentration} on a spell it has cast. The creature also takes {@damage 1d4} psychic damage per level of the spell." + ] + }, + { + "name": "Psychic Pulse", + "entries": [ + "The elder brain targets a creature within 120 feet of it with which it has a psychic link. Enemies of the elder brain within 10 feet of that creature take 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Sever Psychic Link", + "entries": [ + "The elder brain targets a creature within 120 feet of it with which it has a psychic link. The elder brain ends the link, causing the creature to have disadvantage on all ability checks, attack rolls, and saving throws until the end of the creature's next turn." + ] + } + ], + "legendaryGroup": { + "name": "Elder Brain", + "source": "VGM" + }, + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/elder-brain.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "C", + "CS", + "DS", + "TP", + "U" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "charisma", + "intelligence" + ], + "savingThrowForcedLegendary": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Enchanter", + "source": "VGM", + "page": 213, + "otherSources": [ + { + "source": "TftYP" + } + ], + "reprintedAs": [ + "Enchanter Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The enchanter is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The enchanter has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}*", + "{@spell mage armor}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}*", + "{@spell invisibility}", + "{@spell suggestion}*" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell haste}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dominate beast}*", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell hold monster}*" + ] + } + }, + "footerEntries": [ + "*Enchantment spell of 1st level or higher" + ], + "ability": "int" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Instinctive Charm (Recharges after the Enchanter Casts an Enchantment Spell of 1st level or Higher)", + "entries": [ + "The enchanter tries to magically divert an attack made against it, provided that the attacker is within 30 feet of it and visible to it. The enchanter must decide to do so before the attack hits or misses.", + "The attacker must make a {@dc 14} Wisdom saving throw. On a failed save, the attacker targets the creature closest to it, other than the enchanter or itself. If multiple creatures are closest, the attacker chooses which one to target." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/enchanter.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Evoker", + "source": "VGM", + "page": 214, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "ERLW" + } + ], + "reprintedAs": [ + "Evoker Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+7", + "wis": "+5" + }, + "skill": { + "arcana": "+7", + "history": "+7" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The evoker is a 12th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The evoker has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}*", + "{@spell light}*", + "{@spell prestidigitation}", + "{@spell ray of frost}*" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell burning hands}*", + "{@spell mage armor}", + "{@spell magic missile}*" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell misty step}", + "{@spell shatter}*" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}*", + "{@spell lightning bolt}*" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell ice storm}*", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell Bigby's hand}*", + "{@spell cone of cold}*" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}*", + "{@spell wall of ice}*" + ] + } + }, + "footerEntries": [ + "*Evocation spell" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Sculpt Spells", + "entries": [ + "When the evoker casts an evocation spell that forces other creatures it can see to make a saving throw, it can choose a number of them equal to 1 + the spell's level. These creatures automatically succeed on their saving throws against the spell. If a successful save means a chosen creature would take half damage from the spell, it instead takes no damage from it." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/evoker.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Fire Giant Dreadnought", + "source": "VGM", + "page": 147, + "reprintedAs": [ + "Fire Giant Dreadnought|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "fire giant" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "{@item plate armor|phb}", + "{@item shield|phb|shields}" + ] + } + ], + "hp": { + "average": 187, + "formula": "15d12 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 27, + "dex": 9, + "con": 23, + "int": 8, + "wis": 10, + "cha": 11, + "save": { + "dex": "+4", + "con": "+11", + "cha": "+5" + }, + "skill": { + "athletics": "+13", + "perception": "+5" + }, + "passive": 15, + "immune": [ + "fire" + ], + "languages": [ + "Giant" + ], + "cr": "14", + "trait": [ + { + "name": "Dual Shields", + "entries": [ + "The giant carries two shields, each of which is accounted for in the giant's AC. The giant must stow or drop one of its shields to hurl rocks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two fireshield attacks." + ] + }, + { + "name": "Fireshield", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage plus 7 ({@damage 2d6}) piercing damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + }, + { + "name": "Shield Charge", + "entries": [ + "The giant moves up to 30 feet in a straight line and can move through the space of any creature smaller than Huge. The first time it enters a creature's space during this move, it makes a fireshield attack against that creature. If the attack hits, the target must also succeed on a {@dc 21} Strength saving throw or be pushed ahead of the giant for the rest of this move. If a creature fails the save by 5 or more, it is also knocked {@condition prone} and takes 18 ({@damage 3d6 + 8}) bludgeoning damage, or 29 ({@damage 6d6 + 8}) bludgeoning damage if it was already {@condition prone}." + ] + } + ], + "environment": [ + "underdark", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/fire-giant-dreadnought.mp3" + }, + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Firenewt Warlock of Imix", + "source": "VGM", + "page": 143, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Firenewt Warlock of Imix|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "firenewt" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 11, + "con": 12, + "int": 9, + "wis": 11, + "cha": 14, + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "passive": 10, + "immune": [ + "fire" + ], + "languages": [ + "Draconic", + "Ignan" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The firenewt's innate spellcasting ability is Charisma. It can innately cast {@spell mage armor} (self only) at will, requiring no material components." + ], + "will": [ + "{@spell mage armor}" + ], + "ability": "cha", + "hidden": [ + "will" + ] + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The firenewt is a 3rd-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell guidance}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "2": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell flaming sphere}", + "{@spell hellish rebuke}", + "{@spell scorching ray}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The firenewt can breathe air and water." + ] + }, + { + "name": "Imix's Blessing", + "entries": [ + "When the firenewt reduces an enemy to 0 hit points, the firenewt gains 5 temporary hit points." + ] + } + ], + "action": [ + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "hill", + "desert" + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "DR", + "IG" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Firenewt Warrior", + "source": "VGM", + "page": 142, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Firenewt Warrior|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "firenewt" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain shirt|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 13, + "con": 12, + "int": 7, + "wis": 11, + "cha": 8, + "passive": 10, + "immune": [ + "fire" + ], + "languages": [ + "Draconic", + "Ignan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The firenewt can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The firenewt makes two attacks with its scimitar." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + }, + { + "name": "Spit Fire (Recharges after a Short or Long Rest)", + "entries": [ + "The firenewt spits fire at a creature within 10 feet of it. The creature must make a {@dc 11} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage on a failed save, or half as much damage on a successful one" + ] + } + ], + "environment": [ + "underdark", + "mountain", + "hill", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/firenewt-warrior.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DR", + "IG" + ], + "damageTags": [ + "F", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flail Snail", + "source": "VGM", + "page": 144, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "reprintedAs": [ + "Flail Snail|MPMM" + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "5d10 + 25" + }, + "speed": { + "walk": 10 + }, + "str": 17, + "dex": 5, + "con": 20, + "int": 3, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "passive": 10, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "3", + "trait": [ + { + "name": "Antimagic Shell", + "entries": [ + "The snail has advantage on saving throws against spells, and any creature making a spell attack against the snail has disadvantage on the attack roll. If the snail succeeds on its saving throw against a spell or a spell attack misses it, an additional effect might occur, as determined by rolling a {@dice d6}:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1\u20132", + "style": "italic", + "entry": "If the spell affects an area or has multiple targets, it fails and has no effect. If the spell targets only the snail, it has no effect on the snail and is reflected back at the caster, using the spell slot level, spell save DC, attack bonus, and spellcasting ability of the caster." + }, + { + "type": "item", + "name": "3\u20134", + "style": "italic", + "entry": "No additional effect." + }, + { + "type": "item", + "name": "5\u20136", + "style": "italic", + "entry": "The snail's shell converts some of the spell's energy into a burst of destructive force. Each creature within 30 feet of the snail must make a {@dc 15} Constitution saving throw, taking {@damage 1d6} force damage per level of the spell on a failed save, or half as much damage on a successful one." + } + ] + } + ] + }, + { + "name": "Flail Tentacles", + "entries": [ + "The flail snail has five flail tentacles. Whenever the snail takes 10 damage or more on a single turn, one of its tentacles dies. If even one tentacle remains, the snail regrows all dead ones within {@dice 1d4} days. If all its tentacles die, the snail retracts into its shell, gaining {@quickref Cover||3||total cover}, and it begins wailing, a sound that can be heard for 600 feet, stopping only when it dies {@dice 5d6} minutes later. Healing magic that restores limbs, such as the {@spell regenerate} spell, can halt this dying process." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The flail snail makes as many flail tentacle attacks as it has flail tentacles, all against the same target." + ] + }, + { + "name": "Flail Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + }, + { + "name": "Scintillating Shell (Recharges after a Short or Long Rest)", + "entries": [ + "The snail's shell emits dazzling, colored light until the end of the snail's next turn. During this time, the shell sheds bright light in a 30-foot radius and dim light for an additional 30 feet, and creatures that can see the snail have disadvantage on attack rolls against it. In addition, any creature within the bright light and able to see the snail when this power is activated must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} until the light ends." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "The flail snail withdraws into its shell, gaining a +4 bonus to AC until it emerges. It can emerge from its shell as a bonus action on its turn." + ] + } + ], + "environment": [ + "underdark", + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flail-snail.mp3" + }, + "senseTags": [ + "D", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flind", + "source": "VGM", + "page": 153, + "reprintedAs": [ + "Flind|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnoll" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|phb}" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 10, + "con": 19, + "int": 11, + "wis": 13, + "cha": 12, + "save": { + "con": "+8", + "wis": "+5" + }, + "skill": { + "intimidation": "+5", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Abyssal", + "Gnoll" + ], + "cr": "9", + "trait": [ + { + "name": "Aura of Blood Thirst", + "entries": [ + "If the flind isn't {@condition incapacitated}, any creature with the Rampage trait can make a bite attack as a bonus action while within 10 feet of the flind." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The flind makes three attacks: one with each of its different flail attacks or three with its longbow." + ] + }, + { + "name": "Flail of Madness", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must make a {@dc 16} Wisdom saving throw. On a failed save, the target must make a melee attack against a random target within its reach on its next turn. If it has no targets within its reach even after moving, it loses its action on that turn." + ] + }, + { + "name": "Flail of Pain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage plus 22 ({@damage 4d10}) psychic damage." + ] + }, + { + "name": "Flail of Paralysis", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition paralyzed} until the end of its next turn." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/flind.mp3" + }, + "attachedItems": [ + "longbow|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "B", + "P", + "Y" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Froghemoth", + "source": "VGM", + "page": 145, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Froghemoth|MPMM" + ], + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 184, + "formula": "16d12 + 80" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 23, + "dex": 13, + "con": 20, + "int": 2, + "wis": 12, + "cha": 5, + "save": { + "con": "+9", + "wis": "+5" + }, + "skill": { + "perception": "+9", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "resist": [ + "fire", + "lightning" + ], + "cr": "10", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The froghemoth can breathe air and water." + ] + }, + { + "name": "Shock Susceptibility", + "entries": [ + "If the froghemoth takes lightning damage, it suffers several effects until the end of its next turn: its speed is halved, it takes a \u22122 penalty to AC and Dexterity saving throws, it can't use reactions or Multiattack, and on its turn, it can use either an action or a bonus action, not both." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The froghemoth makes two attacks with its tentacles. It can also use its tongue or bite." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Huge or smaller creature. Until the grapple ends, the froghemoth can't use this tentacle on another target. The froghemoth has four tentacles." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage, and the target is swallowed if it is a Medium or smaller creature. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the froghemoth, and takes 10 ({@damage 3d6}) acid damage at the start of each of the froghemoth's turns.", + "The froghemoth's gullet can hold up to two creatures at a time. If the Froghemoth takes 20 damage or more on a single turn from a creature inside it, the Froghemoth must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which falls {@condition prone} in a space within 10 feet of the froghemoth. If the froghemoth dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Tongue", + "entries": [ + "The Froghemoth targets one Medium or smaller creature that it can see within 20 feet of it. The target must make a {@dc 18} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the froghemoth, and the froghemoth can make a bite attack against it as a bonus action." + ] + } + ], + "environment": [ + "underdark", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/froghemoth.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Swallow", + "Tentacles" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Giant Everlasting One", + "source": "VGM", + "page": 148, + "reprintedAs": [ + "Frost Giant Everlasting One|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "frost giant" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "patchwork armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "14d12 + 98" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 9, + "con": 24, + "int": 9, + "wis": 10, + "cha": 12, + "save": { + "str": "+11", + "con": "+11", + "wis": "+4" + }, + "skill": { + "athletics": "+11", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "immune": [ + "cold" + ], + "languages": [ + "Giant" + ], + "cr": "12", + "trait": [ + { + "name": "Extra Heads", + "entries": [ + "The giant has a {@chance 25} chance of having more than one head. If it has more than one, it has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The giant regains 10 hit points at the start of its turn. If the giant takes acid or fire damage, this trait doesn't function at the start of its next turn. The giant dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Vaprak's Rage (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, the giant can enter a rage at the start of its turn. The rage lasts for 1 minute or until the giant is {@condition incapacitated}. While raging, the giant gains the following benefits:", + "- The giant has advantage on Strength checks and Strength saving throws", + "- When it makes a melee weapon attack, the giant gains a +4 bonus to the damage roll.", + "- The giant has resistance to bludgeoning, piercing, and slashing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two attacks with its greataxe." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) slashing damage, or 30 ({@damage 3d12 + 11}) slashing damage while raging." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + } + ], + "environment": [ + "coastal", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/frost-giant-everlasting-one.mp3" + }, + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gauth", + "group": [ + "Beholders" + ], + "source": "VGM", + "page": 125, + "reprintedAs": [ + "Gauth|MPMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 14, + "con": 16, + "int": 15, + "wis": 15, + "cha": 13, + "save": { + "int": "+5", + "wis": "+5", + "cha": "+4" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "cr": "6", + "trait": [ + { + "name": "Stunning Gaze", + "entries": [ + "When a creature that can see the gauth's central eye starts its turn within 30 feet of the gauth, the gauth can force it to make a {@dc 14} Wisdom saving throw if the gauth isn't {@condition incapacitated} and can see the creature. A creature that fails the save is {@condition stunned} until the start of its next turn, when it can avert its eyes again. If the creature looks at the gauth in the meantime, it must immediately make the save." + ] + }, + { + "name": "Death Throes", + "entries": [ + "When the gauth dies, the magical energy within it explodes, and each creature within 10 feet of it must make a {@dc 14} Dexterity saving throw, taking 13 ({@damage 3d8}) force damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) piercing damage." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The gauth shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Devour Magic Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Dexterity saving throw or have one of its magic items lose all magical properties until the start of the gauth's next turn. If the object is a charged item, it also loses {@dice 1d4} charges. Determine the affected item randomly, ignoring single-use items such as potions and scrolls." + }, + { + "type": "item", + "name": "2. Enervation Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 14} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "3. Pushing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Strength saving throw or be pushed up to 15 feet directly away from the gauth and have its speed halved until the start of the gauth's next turn." + }, + { + "type": "item", + "name": "4. Fire Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 4d10}) fire damage." + }, + { + "type": "item", + "name": "5. Paralyzing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "6. Sleep Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on constructs and undead." + } + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gauth.mp3" + }, + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "DS", + "U" + ], + "damageTags": [ + "F", + "N", + "O", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gazer", + "group": [ + "Beholders" + ], + "source": "VGM", + "page": 126, + "otherSources": [ + { + "source": "WDH" + } + ], + "reprintedAs": [ + "Gazer|MPMM" + ], + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 13, + "formula": "3d4 + 6" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 3, + "dex": 17, + "con": 14, + "int": 3, + "wis": 10, + "cha": 7, + "save": { + "wis": "+2" + }, + "skill": { + "perception": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "prone" + ], + "cr": "1/2", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the gazer can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Mimicry", + "entries": [ + "The gazer can mimic simple sounds of speech it has heard, in any language. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The gazer shoots two of the following magical eye rays at random (reroll duplicates), choosing one or two targets it can see within 60 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Dazing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition charmed} until the start of the gazer's next turn. While the target is {@condition charmed} in this way, its speed is halved, and it has disadvantage on attack rolls." + }, + { + "type": "item", + "name": "2. Fear Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} until the start of the gazer's next turn." + }, + { + "type": "item", + "name": "3. Frost Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 12} Dexterity saving throw or take 10 ({@damage 3d6}) cold damage." + }, + { + "type": "item", + "name": "4. Telekinetic Ray", + "style": "italic", + "entries": [ + "If the target is a creature that is Medium or smaller, it must succeed on a {@dc 12} Strength saving throw or be moved up to 30 feet directly away from the gazer.", + "If the target is an object weighing 10 pounds or less that isn't being worn or carried, the gazer moves it up to 30 feet in any direction. The gazer can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a container." + ] + } + ] + } + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Gazer Familiar", + "entries": [ + "Spellcasters who are interested in unusual familiars find that gazers are eager to serve someone who has magical power, especially those who make a point of bullying and harassing others. The gazer behaves aggressively toward creatures smaller than itself, and it tends to randomly attack house pets, farm animals, and even children in town unless its master is very strict. A gazer serving as a familiar has the following trait.", + { + "type": "entries", + "name": "Familiar", + "entries": [ + "The gazer can serve another creature as a familiar, forming a telepathic bond with its willing master, provided that the master is at least a 3rd-level spellcaster. While the two are bonded, the master can sense what the gazer senses as long as they are within 1 mile of each other. If its master causes it physical harm, the gazer will end its service as a familiar, breaking the telepathic bond." + ] + } + ], + "_version": { + "addHeadersAs": "trait" + } + } + ], + "environment": [ + "underdark" + ], + "familiar": true, + "soundClip": { + "type": "internal", + "path": "bestiary/gazer.mp3" + }, + "traitTags": [ + "Aggressive", + "Mimicry" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "C", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "frightened" + ], + "savingThrowForced": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Strider", + "source": "VGM", + "page": 143, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Giant Strider|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 13, + "con": 14, + "int": 4, + "wis": 12, + "cha": 6, + "passive": 11, + "immune": [ + "fire" + ], + "cr": "1", + "trait": [ + { + "name": "Fire Absorption", + "entries": [ + "Whenever the giant strider is subjected to fire damage, it takes no damage and regains a number of hit points equal to half the fire damage dealt." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Fire Burst {@recharge 5}", + "entries": [ + "The giant strider hurls a gout of flame at a point it can see within 60 feet of it. Each creature in a 10-foot-radius sphere centered on that point must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners, and it ignites flammable objects in that area that aren't being worn or carried." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/giant-strider.mp3" + }, + "traitTags": [ + "Damage Absorption" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Girallon", + "source": "VGM", + "page": 152, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Girallon|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 18, + "dex": 16, + "con": 16, + "int": 5, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "cr": "4", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the girallon can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The girallon has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The girallon makes five attacks: one with its bite and four with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit. reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/girallon.mp3" + }, + "traitTags": [ + "Aggressive", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnoll Flesh Gnawer", + "source": "VGM", + "page": 154, + "reprintedAs": [ + "Gnoll Flesh Gnawer|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnoll" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 12, + "int": 8, + "wis": 10, + "cha": 8, + "save": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Gnoll" + ], + "cr": "1", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gnoll makes three attacks: one with its bite and two with its shortsword." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Sudden Rush", + "entries": [ + "Until the end of the turn, the gnoll's speed increases by 60 feet and it doesn't provoke opportunity attacks." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-flesh-gnawer.mp3" + }, + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gnoll Hunter", + "source": "VGM", + "page": 154, + "reprintedAs": [ + "Gnoll Hunter|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnoll" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 12, + "int": 8, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Gnoll" + ], + "cr": "1/2", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gnoll makes two melee attacks with its spear or two ranged attacks with its longbow." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage when used with two hands to make a melee attack." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the target's speed is reduced by 10 feet until the end of its next turn." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-hunter.mp3" + }, + "attachedItems": [ + "longbow|phb", + "spear|phb" + ], + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Gnoll Witherling", + "source": "VGM", + "page": 155, + "reprintedAs": [ + "Gnoll Witherling|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 8, + "con": 12, + "int": 5, + "wis": 5, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Gnoll but can't speak" + ], + "cr": "1/4", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When the witherling reduces a creature to 0 hit points with a melee attack on its turn, it can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The witherling makes two attacks: one with its bite and one with its club, or two with its club." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Vengeful Strike", + "entries": [ + "In response to a gnoll being reduced to 0 hit points within 30 feet of the witherling, the witherling makes a melee attack." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/gnoll-witherling.mp3" + }, + "attachedItems": [ + "club|phb" + ], + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Green Guard Drake", + "source": "VGM", + "page": 158, + "reprintedAs": [ + "Guard Drake|MPMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 4, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "poison" + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The guard drake can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drake attacks twice, once with its bite and once with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard-drake.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grung", + "source": "VGM", + "page": 156, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Grung|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "grung" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 11, + "formula": "2d6 + 4" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 7, + "dex": 14, + "con": 15, + "int": 10, + "wis": 11, + "cha": 10, + "save": { + "dex": "+4" + }, + "skill": { + "athletics": "+2", + "perception": "+2", + "stealth": "+4", + "survival": "+2" + }, + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Grung" + ], + "cr": "1/4", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The grung can breathe air and water." + ] + }, + { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Grung Poison", + "entries": [ + "Grung poison loses its potency 1 minute after being removed from a grung. A similar breakdown occurs if the grung dies. A creature {@condition poisoned} by a grung can suffer an additional effect that varies depending on the grung's skin color. This effect lasts until the creature is no longer {@condition poisoned} by the grung.", + { + "type": "entries", + "name": "Green", + "entries": [ + "The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + }, + { + "type": "entries", + "name": "Blue", + "entries": [ + "The {@condition poisoned} creature must shout loudly or otherwise make a loud noise at the start and end of its turn." + ] + }, + { + "type": "entries", + "name": "Purple", + "entries": [ + "The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + }, + { + "type": "entries", + "name": "Red", + "entries": [ + "The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + }, + { + "type": "entries", + "name": "Orange", + "entries": [ + "The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + }, + { + "type": "entries", + "name": "Gold", + "entries": [ + "The {@condition poisoned} creature is {@condition charmed} and can speak Grung." + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grung.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Grung (Blue)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature must shout loudly or otherwise make a loud noise at the start and end of its turn." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Gold)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature is {@condition charmed} and can speak Grung." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Green)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Orange)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Purple)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung (Red)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Grung Elite Warrior", + "source": "VGM", + "page": 157, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Grung Elite Warrior|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "grung" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 49, + "formula": "9d6 + 18" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 7, + "dex": 16, + "con": 15, + "int": 10, + "wis": 11, + "cha": 12, + "save": { + "dex": "+5" + }, + "skill": { + "athletics": "+2", + "perception": "+2", + "stealth": "+5", + "survival": "+2" + }, + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Grung" + ], + "cr": "2", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The grung can breathe air and water." + ] + }, + { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Mesmerizing Chirr {@recharge}", + "entries": [ + "The grung makes a chirring noise to which grungs are immune. Each humanoid or beast that is within 15 feet of the grung and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition stunned} until the end of the grung's next turn." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Grung Poison", + "entries": [ + "Grung poison loses its potency 1 minute after being removed from a grung. A similar breakdown occurs if the grung dies. A creature {@condition poisoned} by a grung can suffer an additional effect that varies depending on the grung's skin color. This effect lasts until the creature is no longer {@condition poisoned} by the grung.", + { + "type": "entries", + "name": "Green", + "entries": [ + "The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + }, + { + "type": "entries", + "name": "Blue", + "entries": [ + "The {@condition poisoned} creature must shout loudly or otherwise make a loud noise at the start and end of its turn." + ] + }, + { + "type": "entries", + "name": "Purple", + "entries": [ + "The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + }, + { + "type": "entries", + "name": "Red", + "entries": [ + "The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + }, + { + "type": "entries", + "name": "Orange", + "entries": [ + "The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + }, + { + "type": "entries", + "name": "Gold", + "entries": [ + "The {@condition poisoned} creature is {@condition charmed} and can speak Grung." + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grung-elite-warrior.mp3" + }, + "attachedItems": [ + "dagger|phb", + "shortbow|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Grung Elite Warrior (Blue)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature must shout loudly or otherwise make a loud noise at the start and end of its turn." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Gold)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature is {@condition charmed} and can speak Grung." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Green)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Orange)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Purple)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Elite Warrior (Red)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Grung Wildling", + "source": "VGM", + "page": 157, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Grung Wildling|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "grung" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10" + }, + "speed": { + "walk": 25, + "climb": 25 + }, + "str": 7, + "dex": 16, + "con": 15, + "int": 10, + "wis": 15, + "cha": 11, + "save": { + "dex": "+5" + }, + "skill": { + "athletics": "+2", + "perception": "+4", + "stealth": "+5", + "survival": "+4" + }, + "passive": 14, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Grung" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The grung is a 9th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It knows the following ranger spells:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell jump}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell plant growth}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The grung can breathe air and water." + ] + }, + { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Grung Poison", + "entries": [ + "Grung poison loses its potency 1 minute after being removed from a grung. A similar breakdown occurs if the grung dies. A creature {@condition poisoned} by a grung can suffer an additional effect that varies depending on the grung's skin color. This effect lasts until the creature is no longer {@condition poisoned} by the grung.", + { + "type": "entries", + "name": "Green", + "entries": [ + "The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + }, + { + "type": "entries", + "name": "Blue", + "entries": [ + "The {@condition poisoned} creature must shout loudly or otherwise make a loud noise at the start and end of its turn." + ] + }, + { + "type": "entries", + "name": "Purple", + "entries": [ + "The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + }, + { + "type": "entries", + "name": "Red", + "entries": [ + "The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + }, + { + "type": "entries", + "name": "Orange", + "entries": [ + "The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + }, + { + "type": "entries", + "name": "Gold", + "entries": [ + "The {@condition poisoned} creature is {@condition charmed} and can speak Grung." + ] + } + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/grung-wildling.mp3" + }, + "attachedItems": [ + "dagger|phb", + "shortbow|phb" + ], + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "P" + ], + "spellcastingTags": [ + "CR" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "conditionInflict": [ + "charmed", + "frightened", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Grung Wildling (Blue)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature must shout loudly or otherwise make a loud noise at the start and end of its turn." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Gold)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature is {@condition charmed} and can speak Grung." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Green)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature can't move except to climb or make standing jumps. If the creature is flying, it can't take any actions or reactions unless it lands." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Orange)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature is {@condition frightened} of its allies." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Purple)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature feels a desperate need to soak itself in liquid or mud. It can't take actions or move except to do so or to reach a body of liquid or mud." + ] + } + } + }, + "variant": null + }, + { + "name": "Grung Wildling (Red)", + "source": "VGM", + "_mod": { + "trait": { + "mode": "replaceArr", + "replace": "Poisonous Skin", + "items": { + "name": "Poisonous Skin", + "entries": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The {@condition poisoned} creature must use its action to eat if food is within reach." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Hadrosaurus", + "group": [ + "Dinosaurs" + ], + "source": "VGM", + "page": 140, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "PSX", + "page": 29 + } + ], + "reprintedAs": [ + "Hadrosaurus|MPMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 10, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+2" + }, + "passive": 12, + "cr": "1/4", + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hadrosaurus.mp3" + }, + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hobgoblin Devastator", + "source": "VGM", + "page": 161, + "reprintedAs": [ + "Hobgoblin Devastator|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 14, + "int": 16, + "wis": 13, + "cha": 11, + "skill": { + "arcana": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Goblin" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hobgoblin is a 7th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell fire bolt}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell fog cloud}", + "{@spell magic missile}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell Melf's acid arrow}", + "{@spell scorching ray}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell ice storm}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Arcane Advantage", + "entries": [ + "Once per turn, the hobgoblin can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a damaging spell attack if that target is within 5 feet of an ally of the hobgoblin and that ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Army Arcana", + "entries": [ + "When the hobgoblin casts a spell that causes damage or that forces other creatures to make a saving throw, it can choose itself and any number of allies to be immune to the damage caused by the spell and to succeed on the required saving throw." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hobgoblin-devastator.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "L", + "O", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hobgoblin Iron Shadow", + "source": "VGM", + "page": 162, + "reprintedAs": [ + "Hobgoblin Iron Shadow|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 15 + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 16, + "con": 15, + "int": 14, + "wis": 15, + "cha": 11, + "skill": { + "acrobatics": "+5", + "athletics": "+4", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Goblin" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hobgoblin is a 2nd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell true strike}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell expeditious retreat}", + "{@spell silent image}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the hobgoblin is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hobgoblin makes four attacks, each of which can be an unarmed strike or a dart attack. It can also use Shadow Jaunt once, either before or after one of the attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Shadow Jaunt", + "entries": [ + "The hobgoblin magically teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see. Both the space it is leaving and its destination must be in dim light or darkness." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/hobgoblin-iron-shadow.mp3" + }, + "attachedItems": [ + "dart|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Illithilich", + "alias": [ + "Mind Flayer Lich" + ], + "source": "VGM", + "page": 172, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "NX", + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 16, + "int": 20, + "wis": 14, + "cha": 16, + "save": { + "con": "+10", + "int": "+12", + "wis": "+9" + }, + "skill": { + "arcana": "+19", + "history": "+12", + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "lightning", + "necrotic" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "22", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The illithilich's innate spellcasting ability is Intelligence (spell save {@dc 20}). It can innately cast the following spells, requiring no components." + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The illithilich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). The lich has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the illithilich fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If it has a phylactery, a destroyed illithilich gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ] + }, + { + "name": "Turn Resistance", + "entries": [ + "The illithilich has advantage on saving throws against any effect that turns undead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The illithilich has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Paralyzing Touch", + "entries": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one creature. {@h}21 ({@damage 3d10 + 5}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 20} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the lich. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the lich kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The illithilich magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 18} Intelligence saving throw or take 27 ({@damage 5d8 + 5}) psychic damage and be {@condition stunned} 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." + ] + } + ], + "legendary": [ + { + "name": "Tentacles", + "entries": [ + "The illithilich makes one attack with its tentacles." + ] + }, + { + "name": "Extract Brain (Costs 2 Actions)", + "entries": [ + "The illithilich uses Extract Brain." + ] + }, + { + "name": "Mind Blast (Costs 3 Actions)", + "entries": [ + "The illithilich recharges its Mind Blast and uses it." + ] + }, + { + "name": "Cast Spell (Costs 1\u20133 Actions)", + "entries": [ + "The illithilich uses a spell slot to cast a 1st-, 2nd-, or 3rd-level spell that it has prepared. Doing so costs 1 legendary action per level of the spell." + ] + } + ], + "legendaryGroup": { + "name": "Illithilich", + "source": "VGM" + }, + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mind-flayer-lich-illithilich.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Rejuvenation", + "Turn Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "C", + "P", + "Y" + ], + "damageTagsLegendary": [ + "N" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "N", + "O", + "T" + ], + "spellcastingTags": [ + "CW", + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled", + "paralyzed", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "intelligence" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Illusionist", + "source": "VGM", + "page": 214, + "otherSources": [ + { + "source": "TftYP" + } + ], + "reprintedAs": [ + "Illusionist Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 13, + "int": 16, + "wis": 11, + "cha": 12, + "save": { + "int": "+5", + "wis": "+2" + }, + "skill": { + "arcana": "+5", + "history": "+5" + }, + "passive": 10, + "languages": [ + "any four languages" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The illusionist is a 7th-level spellcaster. its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). The illusionist has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell color spray}*", + "{@spell disguise self}*", + "{@spell mage armor}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}*", + "{@spell mirror image}*", + "{@spell phantasmal force}*" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell major image}*", + "{@spell phantom steed}*" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell phantasmal killer}*" + ] + } + }, + "footerEntries": [ + "*Illusion spell of 1st level or higher" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Displacement (Recharges after the Illusionist Casts an Illusion Spell of 1st Level or Higher)", + "entries": [ + "As a bonus action, the illusionist projects an illusion that makes the illusionist appear to be standing in a place a few inches from its actual location, causing any creature to have disadvantage on attack rolls against the illusionist. The effect ends if the illusionist takes damage, it is {@condition incapacitated}, or its speed becomes 0." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/illusionist.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "I", + "O", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "frightened", + "invisible" + ], + "savingThrowForcedSpell": [ + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ki-rin", + "source": "VGM", + "page": 163, + "reprintedAs": [ + "Ki-rin|MPMM" + ], + "size": [ + "H" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 152, + "formula": "16d12 + 48" + }, + "speed": { + "walk": 60, + "fly": { + "number": 120, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 21, + "dex": 16, + "con": 16, + "int": 19, + "wis": 20, + "cha": 20, + "skill": { + "insight": "+9", + "perception": "+9", + "religion": "+8" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 19, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ki-rin's innate spellcasting ability is Charisma (spell save {@dc 17}). The ki-rin can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell gaseous form}", + "{@spell major image} (6th-level version)", + "{@spell wind walk}" + ], + "daily": { + "1": [ + "{@spell create food and water}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ki-rin is a 18th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell lesser restoration}", + "{@spell silence}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell remove curse}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}", + "{@spell guardian of faith}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell greater restoration}", + "{@spell mass cure wounds}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell heroes' feast}", + "{@spell true seeing}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell etherealness}", + "{@spell plane shift}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell control weather}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell true resurrection}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the ki-rin fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The ki-rin has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The ki-rin's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ki-rin makes three attacks: two with its hooves and one with its horn." + ] + }, + { + "name": "Hoof", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d4 + 5}) bludgeoning damage." + ] + }, + { + "name": "Horn", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ] + } + ], + "legendary": [ + { + "name": "Detect", + "entries": [ + "The ki-rin makes a Wisdom ({@skill Perception}) check or a Wisdom ({@skill Insight}) check." + ] + }, + { + "name": "Smite", + "entries": [ + "The ki-rin makes a hoof attack or casts {@spell sacred flame}." + ] + }, + { + "name": "Move", + "entries": [ + "The ki-rin moves up to its half its speed without provoking opportunity attacks." + ] + } + ], + "legendaryGroup": { + "name": "Ki-rin", + "source": "VGM" + }, + "environment": [ + "mountain", + "grassland", + "desert", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ki-rin.mp3" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "O", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kobold Dragonshield", + "source": "VGM", + "page": 165, + "otherSources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "reprintedAs": [ + "Kobold Dragonshield|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d6 + 16" + }, + "speed": { + "walk": 20 + }, + "str": 12, + "dex": 15, + "con": 14, + "int": 8, + "wis": 9, + "cha": 10, + "skill": { + "perception": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "trait": [ + { + "name": "Dragon's Resistance", + "entries": [ + "The kobold has resistance to a type of damage based on the color of dragon that invested it with power (choose or roll a {@damage d10}): 1\u20132, acid (black); 3\u20134, cold (white); 5\u20136, fire (red); 7\u20138, lightning (blue); 9\u201310, poison (green)." + ] + }, + { + "name": "Heart of the Dragon", + "entries": [ + "If the kobold is {@condition frightened} or {@condition paralyzed} by an effect that allows a saving throw, it can repeat the save at the start of its turn to end the effect on itself and all kobolds within 30 feet of it. Any kobold that benefits from this trait (including the dragonshield) has advantage on its next attack roll." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kobold makes two melee attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kobold-dragonshield.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kobold Inventor", + "source": "VGM", + "page": 166, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Kobold Inventor|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 12, + "int": 8, + "wis": 7, + "cha": 8, + "skill": { + "perception": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/4", + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Weapon Invention", + "entries": [ + "The kobold uses one of the following options (roll a {@dice d8} or choose one); the kobold can use each one no more than once per day:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Acid", + "style": "italic", + "entry": "The kobold hurls a flask of {@item Acid (vial)|phb|acid}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}7 ({@damage 2d6}) acid damage." + }, + { + "type": "item", + "name": "2. Alchemist's fire", + "style": "italic", + "entry": "The kobold throws a flask of {@item Alchemist's Fire (flask)|phb|alchemist's fire}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}2 ({@damage 1d4}) fire damage at the start of each of the target's turns. A creature can end this damage by using its action to make a {@dc 10} Dexterity check to extinguish the flames." + }, + { + "type": "item", + "name": "3. Basket of Centipedes", + "style": "italic", + "entry": "The kobold throws a small basket into a 5-foot-square space within 20 feet of it. A {@creature swarm of centipedes||swarm of insects (centipedes)} with 11 hit points emerges from the basket and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + }, + { + "type": "item", + "name": "4. Green Slime Pot", + "style": "italic", + "entry": "The kobold throws a clay pot full of green slime at the target, and it breaks open on impact. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}The target is covered in a patch of {@hazard green slime} (see chapter 5 of the Dungeon Master's Guide). Miss: A patch of green slime covers a randomly determined 5-foot-square section of wall or floor within 5 feet of the target." + }, + { + "type": "item", + "name": "5. Rot Grub Pot", + "style": "italic", + "entry": "The kobold throws a clay pot into a 5-foot-square space within 20 feet of it, and it breaks open on impact. A {@creature swarm of rot grubs|vgm} (see appendix A) emerges from the shattered pot and remains a hazard in that square." + }, + { + "type": "item", + "name": "6. Scorpion on a Stick", + "style": "italic", + "entry": "The kobold makes a melee attack with a scorpion tied to the end of a 5-foot-long pole. {@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage, and the target must make a {@dc 9} Constitution saving throw, taking 4 ({@damage 1d8}) poison damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "7. Skunk in a Cage", + "style": "italic", + "entry": "The kobold releases a skunk into an unoccupied space within 5 feet of it. The skunk has a walking speed of 20 feet, AC 10, 1 hit point, and no effective attacks. It rolls initiative and, on its turn, uses its action to spray musk at a random creature within 5 feet of it. The target must make a {@dc 9} Constitution saving throw. On a failed save, the target retches and can't take actions for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that doesn't need to breathe or is immune to poison automatically succeeds on the saving throw. Once the skunk has sprayed its musk, it can't do so again until it finishes a short or long rest." + }, + { + "type": "item", + "name": "8. Wasp Nest in a Bag", + "style": "italic", + "entry": "The kobold throws a small bag into a 5-foot-square space within 20 feet of it. A {@creature swarm of wasps||swarm of insects (wasps)} with 11 hit points emerges from the bag and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + } + ] + } + ] + } + ], + "environment": [ + "underdark", + "mountain", + "forest", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kobold-inventor.mp3" + }, + "attachedItems": [ + "dagger|phb", + "sling|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "F", + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW", + "THW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kobold Scale Sorcerer", + "source": "VGM", + "page": 167, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Kobold Scale Sorcerer|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 14, + "int": 10, + "wis": 9, + "cha": 14, + "skill": { + "arcana": "+2", + "medicine": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The kobold is a 3rd-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following sorcerer spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell poison spray}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell chromatic orb}", + "{@spell expeditious retreat}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell scorching ray}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Sorcery Points", + "entries": [ + "The kobold has 3 sorcery points. It regains all its spent sorcery points when it finishes a long rest. It can spend its sorcery points on the following options:", + "Heightened Spell: When it casts a spell that forces a creature to a saving throw to resist the spell's effects, the kobold can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw against the spell.", + "Subtle Spell: When the kobold casts a spell, it can spend 1 sorcery point to cast the spell without any somatic or verbal components." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature it at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "forest", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kobold-scale-sorcerer.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "T" + ], + "spellcastingTags": [ + "CS" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Korred", + "source": "VGM", + "page": 168, + "otherSources": [ + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Korred|MPMM" + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d6 + 60" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 23, + "dex": 14, + "con": 20, + "int": 10, + "wis": 15, + "cha": 9, + "skill": { + "athletics": "+9", + "perception": "+5", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Dwarvish", + "Gnomish", + "Sylvan", + "Terran", + "Undercommon" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The korred's innate spellcasting ability is Wisdom (save {@dc 13}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell commune with nature}", + "{@spell meld into stone}", + "{@spell stone shape}" + ], + "daily": { + "1e": [ + "{@spell conjure elemental} (as 6th-level spell; {@creature galeb duhr}, {@creature gargoyle}, {@creature earth elemental}, or {@creature xorn} only)", + "{@spell Otto's irresistible dance}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Command Hair", + "entries": [ + "The korred has at least one 50-foot-long rope woven out of its hair. As a bonus action, the korred commands one such rope within 30 feet of it to move up to 20 feet and entangle a Large or smaller creature that the korred can see. The target must succeed on a {@dc 13} Dexterity saving throw or become {@condition grappled} by the rope (escape {@dc 13}). Until this grapple ends. the target is {@condition restrained}. The korred can use a bonus action to release the target, which is also freed if the korred dies or becomes {@condition incapacitated}.", + "A rope of korred hair has AC 20 and 20 hit points. It regains 1 hit point at the start of each of the korred's turns while it has at least 1 hit point and the korred is alive. If the rope drops to 0 hit points, it is destroyed." + ] + }, + { + "name": "Stone Camouflage", + "entries": [ + "The korred has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ] + }, + { + "name": "Stone's Strength", + "entries": [ + "While on the ground, the korred deals 2 extra dice of damage with any weapon attack (included in its attacks)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The korred makes two attacks with its greatclub or hurls two rocks." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 19 ({@damage 3d8 + 6}) bludgeoning damage if the korred is on the ground." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/120 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage, or 24 ({@damage 4d8 + 6}) bludgeoning damage if the korred is on the ground." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/korred.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "SD", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "D", + "G", + "S", + "T", + "U" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kraken Priest", + "source": "VGM", + "page": 215, + "otherSources": [ + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "LR" + } + ], + "reprintedAs": [ + "Kraken Priest|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 12, + "dex": 10, + "con": 16, + "int": 10, + "wis": 15, + "cha": 14, + "skill": { + "perception": "+5" + }, + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "any two languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest's spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell command}", + "{@spell create or destroy water}" + ], + "daily": { + "3e": [ + "{@spell control water}", + "{@spell darkness}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "1e": [ + "{@spell call lightning}", + "{@spell Evard's black tentacles}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The priest can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Thunderous Touch", + "entries": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one creature. {@h}27 ({@damage 5d10}) thunder damage." + ] + }, + { + "name": "Voice of the Kraken (Recharges after a Short or Long Rest)", + "entries": [ + "A kraken speaks through the priest with a thunderous voice audible within 300 feet. Creatures of the priest's choice that can hear the kraken's words (which are spoken in Abyssal, Infernal, or Primordial) must succeed on a {@dc 14} Charisma saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "coastal", + "underwater" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/kraken-priest.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "T" + ], + "damageTagsSpell": [ + "B", + "L" + ], + "spellcastingTags": [ + "I" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Leucrotta", + "source": "VGM", + "page": 169, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Leucrotta|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "speed": { + "walk": 50 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 9, + "wis": 12, + "cha": 6, + "skill": { + "deception": "+2", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Abyssal", + "Gnoll" + ], + "cr": "3", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The leucrotta has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Kicking Retreat", + "entries": [ + "If the leucrotta attacks with its hooves, it can take the Disengage action as a bonus action." + ] + }, + { + "name": "Mimicry", + "entries": [ + "The leucrotta can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ] + }, + { + "name": "Rampage", + "entries": [ + "When the leucrotta reduces a creature to 0 hit points with a melee attack on its turn, it can take a bonus action to move up to half its speed and make an attack with its hooves." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The leucrotta makes two attacks: one with its bite and one with its hooves." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage. If the leucrotta scores a critical hit, it rolls the damage dice three times, instead of twice." + ] + }, + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/leucrotta.mp3" + }, + "traitTags": [ + "Keen Senses", + "Mimicry", + "Rampage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Martial Arts Adept", + "source": "VGM", + "page": 216, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Martial Arts Adept|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 16 + ], + "hp": { + "average": 60, + "formula": "11d8 + 11" + }, + "speed": { + "walk": 40 + }, + "str": 11, + "dex": 17, + "con": 13, + "int": 11, + "wis": 16, + "cha": 10, + "skill": { + "acrobatics": "+5", + "insight": "+5", + "stealth": "+5" + }, + "passive": 13, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the adept is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The adept makes three unarmed strikes or three dart attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the target is a creature, the adept can choose one of the following additional effects:", + { + "type": "list", + "items": [ + "The target must succeed on a {@dc 13} Strength saving throw or drop one item it is holding (adept's choice).", + "The target must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}.", + "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the adept's next turn." + ] + } + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, the adept deflects the missile. The damage it takes from the attack is reduced by {@dice 1d10 + 3}. If the damage is reduced to 0, the adept catches the missile if it's small enough to hold in one hand and the adept has a hand free." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/martial-arts-adept.mp3" + }, + "attachedItems": [ + "dart|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Master Thief", + "source": "VGM", + "page": 216, + "otherSources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "IMR", + "page": 216 + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Master Thief|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 83, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 11, + "wis": 11, + "cha": 12, + "save": { + "dex": "+7", + "int": "+3" + }, + "skill": { + "acrobatics": "+7", + "athletics": "+3", + "perception": "+3", + "sleight of hand": "+7", + "stealth": "+7" + }, + "passive": 13, + "languages": [ + "any one language (usually Common) plus Thieves' cant" + ], + "cr": "5", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of its turns, the thief can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Evasion", + "entries": [ + "If the thief is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the thief instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "The thief deals an extra 14 ({@damage 4d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the thief that isn't {@condition incapacitated} and the thief doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thief makes three attacks with its shortsword." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "The thief halves the damage that it takes from an attack that hits it. The thief must be able to see the attacker." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/master-thief.mp3" + }, + "attachedItems": [ + "light crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maw Demon", + "source": "VGM", + "page": 137, + "otherSources": [ + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Maw Demon|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 8, + "con": 13, + "int": 5, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the maw demon can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/maw-demon.mp3" + }, + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Meenlock", + "source": "VGM", + "page": 170, + "otherSources": [ + { + "source": "CM" + } + ], + "reprintedAs": [ + "Meenlock|MPMM" + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 15, + "con": 12, + "int": 11, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+4", + "stealth": "+6", + "survival": "+2" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "telepathy 120 ft." + ], + "cr": "2", + "trait": [ + { + "name": "Fear Aura", + "entries": [ + "Any beast or humanoid that starts its turn within 10 feet of the meenlock must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} until the start of the creature's next turn." + ] + }, + { + "name": "Light Sensitivity", + "entries": [ + "While in bright light, the meenlock has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Shadow Teleport {@recharge 5}", + "entries": [ + "As a bonus action, the meenlock can teleport to an unoccupied space within 30 feet of it, provided that both the space it's teleporting from and its destination are in dim light or darkness. The destination need not be within line of sight." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "forest", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/meenlock.mp3" + }, + "traitTags": [ + "Light Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mind Flayer Psion", + "alias": [ + "Illithid Psion" + ], + "source": "VGM", + "page": 71, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 12, + "int": 19, + "wis": 17, + "cha": 17, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+7", + "deception": "+6", + "insight": "+6", + "perception": "+6", + "persuasion": "+6", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The mind flayer is a 10th-level spellcaster. Its innate spellcasting ability is Intelligence (spell save {@dc 15}; {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell vicious mockery}", + "{@spell true strike}", + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell command}", + "{@spell comprehend languages}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell phantasmal force}", + "{@spell see invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell fear}", + "{@spell meld into stone}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell stone shape}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell scrying}", + "{@spell telekinesis}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the mind flayer. {@h}The target takes 55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The mind flayer magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ] + } + ], + "environment": [ + "underdark" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "B", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "prone", + "restrained" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mindwitness", + "source": "VGM", + "page": 176, + "reprintedAs": [ + "Mindwitness|MPMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 0, + "fly": { + "number": 20, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 14, + "con": 14, + "int": 15, + "wis": 15, + "cha": 10, + "save": { + "int": "+5", + "wis": "+5" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "conditionImmune": [ + "prone" + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 600 ft." + ], + "cr": "5", + "trait": [ + { + "name": "Telepathic Hub", + "entries": [ + "When the mindwitness receives a telepathic message, it can telepathically share that message with up to seven other creatures within 600 feet of it that it can see." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mindwitness makes two attacks: one with its tentacles and one with its bite." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}16 ({@damage 4d6 + 2}) piercing damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}20 ({@damage 4d8 + 2}) psychic damage. if the target is Large or smaller, it is {@condition grappled} (escape {@dc 13}) and must succeed on a {@dc 13} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Eye Rays", + "entries": [ + "The mindwitness shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Aversion Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 13} Charisma saving throw. On a failed save, the target has disadvantage on attack rolls for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "2. Fear Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "3. Psychic Ray", + "style": "italic", + "entry": "The target must succeed on a {@dc 13} Intelligence saving throw or take 27 ({@damage 6d8}) psychic damage." + }, + { + "type": "item", + "name": "4. Slowing Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 13} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn but not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "5. Stunning Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the start of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "6. Telekinetic Ray", + "style": "italic", + "entries": [ + "If the target is a creature, it must make a {@dc 13} Strength saving throw. On a failed save, the mindwitness moves it up to 30 feet in any direction, and it is {@condition restrained} by the ray's telekinetic grip until the start of the mindwitness's next turn or until the mindwitness is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is telekinetically moved up to 30 feet in any direction. The mindwitness can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ] + } + ] + } + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mindwitness.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "grappled", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Morkoth", + "source": "VGM", + "page": 177, + "reprintedAs": [ + "Morkoth|MPMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 130, + "formula": "20d8 + 40" + }, + "speed": { + "walk": 25, + "swim": 50 + }, + "str": 14, + "dex": 14, + "con": 14, + "int": 20, + "wis": 15, + "cha": 13, + "save": { + "dex": "+6", + "int": "+9", + "wis": "+6" + }, + "skill": { + "arcana": "+9", + "history": "+9", + "perception": "+10", + "stealth": "+6" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "telepathy 120 ft." + ], + "cr": { + "cr": "11", + "lair": "12" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The morkoth is an 11th-level spellcaster. Its spellcasting ability is Intelligence (save {@dc 17}, {@hit 9} to hit with spell attacks). The morkoth has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell shield}", + "{@spell witch bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell shatter}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell lightning bolt}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell Evard's black tentacles}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell geas}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The morkoth can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The morkoth makes three attacks: two with its bite and one with its tentacles or three with its bite." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}15 ({@damage 3d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends. the target is {@condition restrained} and takes 15 ({@damage 3d8 + 2}) bludgeoning damage at the start of each of the morkoth's turns. and the morkoth can't use its tentacles on another target." + ] + }, + { + "name": "Hypnosis", + "entries": [ + "The morkoth projects a 30-foot cone of magical energy. Each creature in that area must make a {@dc 17} Wisdom saving throw. On a failed save, the creature is {@condition charmed} by the morkoth for 1 minute. While {@condition charmed} in this way, the target tries to get as close to the morkoth as possible, using its actions to Dash until it is within 5 feet of the morkoth. A {@condition charmed} target can repeat the saving throw at the end of each of its turns and whenever it takes damage, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature has advantage on saving throws against the morkoth's Hypnosis for 24 hours." + ] + } + ], + "reaction": [ + { + "name": "Spell Reflection", + "entries": [ + "If the morkoth makes a successful saving throw against a spell, or a spell attack misses it, the morkoth can choose another creature (including the spellcaster) it can see within 120 feet of it. The spell targets the chosen creature instead of the morkoth. If the spell forced a saving throw, the chosen creature makes its own save. If the spell was an attack, the attack roll is rerolled against the chosen creature." + ] + } + ], + "legendaryGroup": { + "name": "Morkoth", + "source": "VGM" + }, + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/morkoth.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "B", + "S" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "L", + "O", + "T", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed", + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mouth of Grolantor", + "source": "VGM", + "page": 149, + "reprintedAs": [ + "Mouth of Grolantor|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "hill giant" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40" + }, + "speed": { + "walk": 50 + }, + "str": 21, + "dex": 10, + "con": 18, + "int": 5, + "wis": 7, + "cha": 5, + "skill": { + "perception": "+1" + }, + "passive": 11, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Giant" + ], + "cr": "6", + "trait": [ + { + "name": "Mouth of Madness", + "entries": [ + "The giant is immune to {@spell confusion} spells and similar magic.", + "On each of its turns, the giant uses all its movement to move toward the nearest creature or whatever else it might perceive as food. Roll a {@dice d10} at the start of each of the giant's turns to determine its action for that turn:", + "1\u20133. The giant makes three attacks with its fists against one random target within its reach. If no other creatures are within its reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn.", + "4\u20135. The giant makes one attack with its fist against every creature within its reach. If no other creatures are within its reach, the giant makes one fist attack against itself.", + "6\u20137. The giant makes one attack with its bite against one random target within its reach. If no other creatures are within its reach, its eyes glaze over and it becomes {@condition stunned} until the start of its next turn.", + "8\u201310. The giant makes three attacks against one random target within its reach: one attack with its bite and two with its fists. If no other creatures are within its reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}15 ({@damage 3d6 + 5}) piercing damage, and the giant magically regains hit points equal to the damage dealt." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ] + } + ], + "environment": [ + "grassland", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/mouth-of-grolantor.mp3" + }, + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Necromancer", + "source": "VGM", + "page": 217, + "otherSources": [ + { + "source": "TftYP" + }, + { + "source": "DC" + }, + { + "source": "DIP" + } + ], + "reprintedAs": [ + "Necromancer Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+7", + "wis": "+5" + }, + "skill": { + "arcana": "+7", + "history": "+7" + }, + "passive": 11, + "resist": [ + "necrotic" + ], + "languages": [ + "any four languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The necromancer is a 12th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The necromancer has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell mending}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell false life}*", + "{@spell mage armor}", + "{@spell ray of sickness}*" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}*", + "{@spell ray of enfeeblement}*", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}*", + "{@spell bestow curse}*", + "{@spell vampiric touch}*" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}*", + "{@spell dimension door}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell Bigby's hand}", + "{@spell cloudkill}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell circle of death}*" + ] + } + }, + "footerEntries": [ + "*Necromancy spell of 1st level or higher" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Grim Harvest (1/Turn)", + "entries": [ + "When necromancer kills a creature that is neither a construct nor undead with a spell of 1st level or higher, the necromancer regains hit points equal to twice the spell's level, or three times if it is a necromancy spell." + ] + } + ], + "action": [ + { + "name": "Withering Touch", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one creature. {@h}5 ({@damage 2d4}) necrotic damage." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/necromancer.mp3" + }, + "languageTags": [ + "X" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "B", + "F", + "I", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Neogi", + "source": "VGM", + "page": 180, + "reprintedAs": [ + "Neogi|MPMM" + ], + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 6, + "dex": 16, + "con": 14, + "int": 13, + "wis": 12, + "cha": 15, + "skill": { + "intimidation": "+4", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "cr": "3", + "trait": [ + { + "name": "Mental Fortitude", + "entries": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The neogi makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ] + }, + { + "name": "Enslave (Recharges after a Short or Long Rest)", + "entries": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neogi.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neogi Hatchling", + "source": "VGM", + "page": 179, + "reprintedAs": [ + "Neogi Hatchling|MPMM" + ], + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + 11 + ], + "hp": { + "average": 7, + "formula": "3d4" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 6, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/8", + "trait": [ + { + "name": "Mental Fortitude", + "entries": [ + "The hatchling has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the hatchling to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The hatchling can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage plus 7 ({@damage 2d6}) poison damage, and the target must succeed on a {@dc 10} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neogi-hatchling.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neogi Master", + "source": "VGM", + "page": 180, + "reprintedAs": [ + "Neogi Master|MPMM" + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 6, + "dex": 16, + "con": 14, + "int": 16, + "wis": 12, + "cha": 18, + "save": { + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "deception": "+6", + "intimidation": "+6", + "perception": "+3", + "persuasion": "+6" + }, + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "passive": 13, + "languages": [ + "Common", + "Deep Speech", + "Undercommon", + "telepathy 30 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The neogi is a 7th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell eldritch blast} (range 300 ft., +4 bonus to each damage roll)", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ] + }, + "4": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell counterspell}", + "{@spell dimension door}", + "{@spell fear}", + "{@spell hold person}", + "{@spell hunger of Hadar}", + "{@spell invisibility}", + "{@spell unseen servant}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Mental Fortitude", + "entries": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The neogi makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ] + }, + { + "name": "Enslave (Recharges after a Short or Long Rest)", + "entries": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neogi-master.mp3" + }, + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "TP", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "damageTagsSpell": [ + "A", + "C", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CL" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "conditionInflictSpell": [ + "blinded", + "frightened", + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Neothelid", + "source": "VGM", + "page": 181, + "otherSources": [ + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Neothelid|MPMM" + ], + "size": [ + "G" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 325, + "formula": "21d20 + 105" + }, + "speed": { + "walk": 30 + }, + "str": 27, + "dex": 7, + "con": 21, + "int": 3, + "wis": 16, + "cha": 12, + "save": { + "int": "+1", + "wis": "+8", + "cha": "+6" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 13, + "cr": "13", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The neothelid's innate spellcasting ability is Wisdom (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell feeblemind}", + "{@spell telekinesis}" + ] + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The neothelid is aware of the presence of creatures within 1 mile of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The neothelid has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 13 ({@damage 3d8}) psychic damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be swallowed by the neothelid. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the neothelid, and it takes 35 ({@damage 10d6}) acid damage at the start of each of the neothelid's turns.", + "If the neothelid takes 30 damage or more on a single turn from a creature inside it, the neothelid must succeed on a {@dc 18} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the neothelid. If the neothelid dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ] + }, + { + "name": "Acid Breath {@recharge 5}", + "entries": [ + "The neothelid exhales acid in a 60-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 35 ({@damage 10d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/neothelid.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Swallow", + "Tentacles" + ], + "damageTags": [ + "A", + "B", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "restrained" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nilbog", + "source": "VGM", + "page": 182, + "reprintedAs": [ + "Nilbog|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 10, + "wis": 8, + "cha": 15, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The nilbog's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell mage hand}", + "{@spell Tasha's hideous laughter}", + "{@spell vicious mockery}" + ], + "daily": { + "1": [ + "{@spell confusion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Nilbogism", + "entries": [ + "Any creature that attempts to damage the nilbog must first succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} until the end of the creature's next turn. A creature {@condition charmed} in this way must use its action praising the nilbog. The nilbog can't regain hit points, including through magical healing, except through its Reversal of Fortune reaction." + ] + }, + { + "name": "Nimble Escape", + "entries": [ + "The nilbog can take the Disengage or Hide action as a bonus action on each of its turns." + ] + } + ], + "action": [ + { + "name": "Fool's Scepter", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Reversal of Fortune", + "entries": [ + "In response to another creature dealing damage to the nilbog, the nilbog reduces the damage to 0 and regains {@dice 1d6} hit points." + ] + } + ], + "environment": [ + "underdark", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/nilbog.mp3" + }, + "attachedItems": [ + "shortbow|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B", + "P" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orc Blade of Ilneval", + "source": "VGM", + "page": 183, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 11, + "con": 17, + "int": 10, + "wis": 12, + "cha": 14, + "save": { + "wis": "+3" + }, + "skill": { + "insight": "+3", + "intimidation": "+4", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Orc" + ], + "cr": "4", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Foe Smiter of Ilneval", + "entries": [ + "The orc deals an extra die of damage when it hits with a longsword attack (included in the attack)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The orc makes two melee attacks with its longsword or two ranged attacks with its javelins. If Ilneval's Command is available to use, the orc can use it after these attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage when used with two hands." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Ilneval's Command {@recharge 4}", + "entries": [ + "Up to three allied orcs within 120 feet of this orc that can hear it can use their reactions to each make one weapon attack." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc-blade-of-ilneval.mp3" + }, + "attachedItems": [ + "javelin|phb", + "longsword|phb" + ], + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Orc Claw of Luthic", + "source": "VGM", + "page": 183, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 15, + "con": 16, + "int": 10, + "wis": 15, + "cha": 11, + "skill": { + "intimidation": "+2", + "medicine": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Orc" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The orc is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The orc has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell cure wounds}", + "{@spell guiding bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell warding bond}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell bestow curse}", + "{@spell create food and water}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The orc makes two claw attacks, or four claw attacks if it has fewer than half of its hit points remaining." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ] + } + ], + "environment": [ + "underdark", + "mountain" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc-claw-of-luthic.mp3" + }, + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "N", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orc Hand of Yurtrus", + "source": "VGM", + "page": 184, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 11, + "con": 16, + "int": 11, + "wis": 14, + "cha": 9, + "skill": { + "arcana": "+2", + "intimidation": "+1", + "medicine": "+4", + "religion": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands Common and Orc but can't speak" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The orc is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It requires no verbal components to cast its spells. The orc has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell detect magic}", + "{@spell inflict wounds}", + "{@spell protection from evil and good}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell silence}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ] + } + ], + "action": [ + { + "name": "Touch of the White Hand", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) necrotic damage." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc-hand-of-yurtrus.mp3" + }, + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS", + "O" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Orc Nurtured One of Yurtrus", + "source": "VGM", + "page": 184, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 9 + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 8, + "con": 16, + "int": 7, + "wis": 11, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Orc" + ], + "cr": "1/2", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Corrupted Carrier", + "entries": [ + "When the orc is reduced to 0 hit points, it explodes, and any creature within 10 feet of it must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and becomes {@condition poisoned}. On a success, the creature takes half as much damage and isn't {@condition poisoned}. A creature {@condition poisoned} by this effect can repeat the save at the end of each of its turn, ending the effect on itself on a success. While {@condition poisoned} by this effect, a creature can't regain hit points." + ] + }, + { + "name": "Nurtured One of Yurtrus", + "entries": [ + "The orc has advantage on saving throws against poison and disease." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage plus 2 ({@damage 1d4}) necrotic damage." + ] + }, + { + "name": "Corrupted Vengeance", + "entries": [ + "The orc reduces itself to 0 hit points, triggering its Corrupted Carrier trait." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc-nurtured-one-of-yurtrus.mp3" + }, + "traitTags": [ + "Aggressive" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "I", + "N", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orc Red Fang of Shargaas", + "source": "VGM", + "page": 185, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 15, + "int": 9, + "wis": 11, + "cha": 9, + "skill": { + "intimidation": "+1", + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Orc" + ], + "cr": "3", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of its turns, the orc can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Hand of Shargaas", + "entries": [ + "The orc deals 2 extra dice of damage when it hits a target with a weapon attack (included in its attacks)." + ] + }, + { + "name": "Shargaas's Sight", + "entries": [ + "Magical darkness doesn't impede the orc's darkvision." + ] + }, + { + "name": "Slayer", + "entries": [ + "In the first round of a combat, the orc has advantage on attack rolls against any creature that hasn't taken a turn yet. If the orc hits a creature that round who was {@status surprised}, the hit is automatically a critical hit." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The orc makes two scimitar or dart attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) slashing damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}10 ({@damage 3d4 + 3}) piercing damage." + ] + }, + { + "name": "Veil of Shargaas (Recharges after a Short or Long Rest)", + "entries": [ + "The orc casts {@spell darkness} without any components. Wisdom is its spellcasting ability." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "forest", + "hill", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/orc-red-fang.mp3" + }, + "attachedItems": [ + "dart|phb", + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ox", + "source": "VGM", + "page": 208, + "otherSources": [ + { + "source": "PotA" + } + ], + "reprintedAs": [ + "Ox|MPMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 15, + "formula": "2d10 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the ox moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + }, + { + "name": "Beast of Burden", + "entries": [ + "The oxen is considered to be a Huge animal for the purposes of determining its carrying capacity." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ox.mp3" + }, + "traitTags": [ + "Beast of Burden", + "Charge" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Quetzalcoatlus", + "group": [ + "Dinosaurs" + ], + "source": "VGM", + "page": 140, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Quetzalcoatlus|MPMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d12 + 4" + }, + "speed": { + "walk": 10, + "fly": 80 + }, + "str": 15, + "dex": 13, + "con": 13, + "int": 2, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+2" + }, + "passive": 12, + "cr": "2", + "trait": [ + { + "name": "Dive Attack", + "entries": [ + "If the quetzalcoatlus is flying and dives at least 30 feet toward a target and then hits with a bite attack, the attack deals an extra 10 ({@damage 3d6}) damage to the target." + ] + }, + { + "name": "Flyby", + "entries": [ + "The quetzalcoatlus doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one creature. {@h}12 ({@damage 3d6 + 2}) piercing damage." + ] + } + ], + "environment": [ + "mountain", + "hill", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quetzalcoatlus.mp3" + }, + "traitTags": [ + "Flyby" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Quickling", + "source": "VGM", + "page": 187, + "otherSources": [ + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Quickling|MPMM" + ], + "size": [ + "T" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + 16 + ], + "hp": { + "average": 10, + "formula": "3d4 + 3" + }, + "speed": { + "walk": 120 + }, + "str": 4, + "dex": 23, + "con": 13, + "int": 10, + "wis": 12, + "cha": 7, + "skill": { + "acrobatics": "+8", + "perception": "+5", + "sleight of hand": "+8", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1", + "trait": [ + { + "name": "Blurred Movement", + "entries": [ + "Attack rolls against the quickling have disadvantage unless the quickling is {@condition incapacitated} or {@condition restrained}." + ] + }, + { + "name": "Evasion", + "entries": [ + "If the quickling is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quickling makes three dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/quickling.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Red Guard Drake", + "source": "VGM", + "page": 158, + "reprintedAs": [ + "Guard Drake|MPMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 4, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "fire" + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drake attacks twice, once with its bite and once with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "mountain", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard-drake.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Redcap", + "source": "VGM", + "page": 188, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "WBtW" + } + ], + "reprintedAs": [ + "Redcap|MPMM" + ], + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d6 + 24" + }, + "speed": { + "walk": 25 + }, + "str": 18, + "dex": 13, + "con": 18, + "int": 10, + "wis": 12, + "cha": 9, + "skill": { + "athletics": "+6", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "3", + "trait": [ + { + "name": "Iron Boots", + "entries": [ + "While moving, the redcap has disadvantage on Dexterity ({@skill Stealth}) checks." + ] + }, + { + "name": "Outsize Strength", + "entries": [ + "While grappling, the redcap is considered to be Medium. Also, wielding a heavy weapon doesn't impose disadvantage on its attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The redcap makes three attacks with its wicked sickle." + ] + }, + { + "name": "Wicked Sickle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ] + }, + { + "name": "Ironbound Pursuit", + "entries": [ + "The redcap moves up to its speed to a creature it can see and kicks with its iron boots. The target must succeed on a {@dc 14} Dexterity saving throw or take 20 ({@damage 3d10 + 4}) bludgeoning damage and be knocked {@condition prone}." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Madcap", + "entries": [ + "A madcap is a redcap that soaks its hat in demon ichor instead of blood. Contact with demon ichor makes the creature even more psychotic, causing it to brood over irrational hatreds. A group of madcaps will sometimes band together over a shared hatred of something, such as music, creatures with curly hair, the word \"cool,\" or the color blue.", + "When a madcap drops to 0 hit points, its hateful existence comes to an end in spectacular fashion as it bursts into flames, reducing itself, its ichor-soaked hat, and its pants to ashes instantly while leaving behind its weapon and smoldering iron boots." + ], + "_version": { + "name": "Madcap", + "addAs": "trait" + }, + "source": "BGDIA", + "page": 240 + } + ], + "environment": [ + "forest", + "swamp", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/redcap.mp3" + }, + "altArt": [ + { + "name": "Madcap", + "source": "BGDIA" + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Roth\u00e9", + "source": "VGM", + "page": 208, + "otherSources": [ + { + "source": "CoA", + "page": 48 + } + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 15, + "formula": "2d10 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the roth\u00e9 moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "environment": [ + "grassland" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rothe.mp3" + }, + "traitTags": [ + "Charge" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sea Spawn", + "source": "VGM", + "page": 189, + "reprintedAs": [ + "Sea Spawn|MPMM" + ], + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 20, + "swim": 30 + }, + "str": 15, + "dex": 8, + "con": 15, + "int": 6, + "wis": 10, + "cha": 8, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "languages": [ + "understands Aquan and Common but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Limited Amphibiousness", + "entries": [ + "The sea spawn can breathe air and water, but needs to be submerged in the sea at least once a day for 1 minute to avoid suffocating." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sea spawn makes three attacks: two unarmed strikes and one with its Piscine Anatomy." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Piscine Anatomy", + "entries": [ + "The sea spawn has one or more of the following attack options, provided it has the appropriate anatomy:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Bite", + "entry": "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + }, + { + "type": "item", + "name": "Poison Quills", + "entry": "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "Tentacle", + "entry": "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}) if it is a Medium or smaller creature. Until this grapple ends, the sea spawn can't use this tentacle on another target." + } + ] + } + ] + } + ], + "environment": [ + "underwater", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/sea-spawn.mp3" + }, + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C", + "CS" + ], + "damageTags": [ + "B", + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadow Mastiff", + "source": "VGM", + "page": 190, + "reprintedAs": [ + "Shadow Mastiff Alpha|MPMM" + ], + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 5, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks while in dim light or darkness", + "cond": true + } + ], + "cr": "2", + "trait": [ + { + "name": "Ethereal Awareness", + "entries": [ + "The shadow mastiff can see ethereal creatures and objects." + ] + }, + { + "name": "Keen Hearing and Smell", + "entries": [ + "The shadow mastiff has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Shadow Blend", + "entries": [ + "While in dim light or darkness, the shadow mastiff can use a bonus action to become {@condition invisible}, along with anything it is wearing or carrying. The invisibility lasts until the shadow mastiff uses a bonus action to end it or until the shadow mastiff attacks, is in bright light, or is {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Weakness", + "entries": [ + "While in bright light created by sunlight, the shadow mastiff has disadvantage on attack rolls, ability checks, and saving throws." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Shadow Mastiff Alpha", + "entries": [ + "A shadow mastiff alpha has the statistics of a normal shadow mastiff, with the following modifications:", + { + "type": "list", + "items": [ + "The alpha has above average (42\u201354) hit points.", + "It has an Intelligence of 6 (-2).", + "It has the Terrifying Howl action option described below." + ] + }, + { + "type": "entries", + "name": "Terrifying Howl", + "entries": [ + "The shadow mastiff howls. Any beast or humanoid within 300 feet of the mastiff and able to hear its howl must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to any shadow mastiff's Terrifying Howl for the next 24 hours." + ] + } + ] + } + ], + "environment": [ + "forest", + "swamp", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shadow-mastiff.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Shadow Mastiff Alpha", + "source": "VGM", + "_mod": { + "action": { + "mode": "appendArr", + "items": { + "name": "Terrifying Howl", + "entries": [ + "The shadow mastiff howls. Any beast or humanoid within 300 feet of the mastiff and able to hear its howl must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to any shadow mastiff's Terrifying Howl for the next 24 hours." + ] + } + } + }, + "hp": { + "average": 48, + "formula": "6d8 + 6" + }, + "int": 6, + "variant": null + } + ] + }, + { + "name": "Shoosuva", + "source": "VGM", + "page": 137, + "reprintedAs": [ + "Shoosuva|MPMM" + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 13, + "con": 17, + "int": 7, + "wis": 14, + "cha": 9, + "save": { + "dex": "+4", + "con": "+6", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Gnoll", + "telepathy 120 ft." + ], + "cr": "8", + "trait": [ + { + "name": "Rampage", + "entries": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the shoosuva can take a bonus action to move up to half its speed and make a bite attack." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shoosuva makes two attacks: one with its bite and one with its tail stinger." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d10 + 4}) piercing damage." + ] + }, + { + "name": "Tail Stinger", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one creature. {@h}13 ({@damage 2d8 + 4}) piercing damage, and the target must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned}, the target is also {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/shoosuva.mp3" + }, + "traitTags": [ + "Rampage" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "OTH", + "TP" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Slithering Tracker", + "source": "VGM", + "page": 191, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "Slithering Tracker|MPMM" + ], + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "C", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30, + "climb": 30, + "swim": 30 + }, + "str": 16, + "dex": 19, + "con": 15, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "stealth": "+8" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "cold", + "fire" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "unconscious" + ], + "languages": [ + "understands languages it knew in its previous form but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Ambusher", + "entries": [ + "In the first round of a combat, the slithering tracker has advantage on attack rolls against any creature it {@status surprised}." + ] + }, + { + "name": "Damage Transfer", + "entries": [ + "While grappling a creature, the slithering tracker takes only haIf the damage dealt to it, and the creature it is grappling takes the other half." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the slithering tracker remains motionless, it is indistinguishable from a puddle, unless an observer succeeds on a {@dc 18} Intelligence ({@skill Investigation}) check." + ] + }, + { + "name": "Keen Tracker", + "entries": [ + "The slithering tracker has advantage on Wisdom checks to track prey." + ] + }, + { + "name": "Liquid Form", + "entries": [ + "The slithering tracker can enter an enemy's space and stop there. It can also move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The slithering tracker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Watery Stealth", + "entries": [ + "While underwater, the slithering tracker has advantage on Dexterity ({@skill Stealth}) checks made to hide, and it can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage." + ] + }, + { + "name": "Life Leech", + "entries": [ + "One Large or smaller creature that the slithering tracker can see within 5 feet of it must succeed on a {@dc 13} Dexterity saving throw or be {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained} and unable to breathe unless it can breathe water. In addition, the {@condition grappled} target takes 16 ({@damage 3d10}) necrotic damage at the start of each of its turns. The slithering tracker can grapple only one target at a time." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/slithering-tracker.mp3" + }, + "traitTags": [ + "Ambusher", + "False Appearance", + "Keen Senses", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spawn of Kyuss", + "source": "VGM", + "page": 192, + "reprintedAs": [ + "Spawn of Kyuss|MPMM" + ], + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 76, + "formula": "9d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 18, + "int": 5, + "wis": 7, + "cha": 3, + "save": { + "wis": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The spawn of Kyuss regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or a body of running water. If the spawn takes acid, fire, or radiant damage, this trait doesn't function at the start of the spawn's next turn. The spawn is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Worms", + "entries": [ + "If the spawn of Kyuss is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away, and it loses its Burrowing Worm action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spawn of Kyuss makes two attacks with its claws and uses Burrowing Worm." + ] + }, + { + "name": "Burrowing Worm", + "entries": [ + "A worm launches from the spawn of Kyuss at one humanoid that the spawn can see within 10 feet of it. The worm latches onto the target's skin unless the target succeeds on a {@dc 11} Dexterity saving throw. The worm is a Tiny undead with AC 6, 1 hit point, a 2 (-4) in every ability score, and a speed of 1 foot. While on the target's skin, the worm can be killed by normal means or scraped off using an action (the spawn can use this action to launch a scraped-off worm at a humanoid it can see within 10 feet of the worm). Otherwise, the worm burrows under the target's skin at the end of the target's next turn, dealing 1 piercing damage to it. At the end of each of its turns thereafter, the target takes 7 ({@damage 2d6}) necrotic damage per worm infesting it (maximum of {@damage 10d6}). A worm-infested target dies if it drops to 0 hit points, then rises 10 minutes later as a spawn of Kyuss. If a worm-infested creature is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + } + ], + "environment": [ + "underdark", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/spawn-of-kyuss.mp3" + }, + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "DIS", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stegosaurus", + "group": [ + "Dinosaurs" + ], + "source": "VGM", + "page": 140, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Stegosaurus|MPMM" + ], + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 9, + "con": 17, + "int": 2, + "wis": 11, + "cha": 5, + "passive": 10, + "cr": "4", + "action": [ + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}26 ({@damage 6d6 + 5}) piercing damage." + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stegosaurus.mp3" + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stench Kow", + "source": "VGM", + "page": 208, + "reprintedAs": [ + "Stench Kow|MPMM" + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 15, + "formula": "2d10 + 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 14, + "int": 2, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "poison" + ], + "cr": "1/4", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the kow moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ] + }, + { + "name": "Stench", + "entries": [ + "Any creature other than a stench kow that starts its turn within 5 feet of the stench kow must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all stench kows for 1 hour." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stench-cow.mp3" + }, + "traitTags": [ + "Charge" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Stone Giant Dreamwalker", + "source": "VGM", + "page": 150, + "reprintedAs": [ + "Stone Giant Dreamwalker|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "stone giant" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 14, + "con": 21, + "int": 10, + "wis": 8, + "cha": 12, + "save": { + "dex": "+6", + "con": "+9", + "wis": "+3" + }, + "skill": { + "athletics": "+14", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "10", + "trait": [ + { + "name": "Dreamwalker's Charm", + "entries": [ + "An enemy that starts its turn within 30 feet of the giant must make a {@dc 13} Charisma saving throw, provided that the giant isn't {@condition incapacitated}. On a failed save, the creature is {@condition charmed} by the giant. A creature {@condition charmed} in this way can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it succeeds on the saving throw, the creature is immune to this giant's Dreamwalker's Charm for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two attacks with its greatclub." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ] + }, + { + "name": "Petrifying Touch", + "entries": [ + "The giant touches one Medium or smaller creature within 10 feet of it that is {@condition charmed} by it. The target must make a {@dc 17} Constitution saving throw. On a failed save, the target becomes {@condition petrified}, and the giant can adhere the target to its stony body. {@spell Greater restoration} spells and other magic that can undo petrification have no effect on a {@condition petrified} creature on the giant unless the giant is dead, in which case the magic works normally, freeing the {@condition petrified} creature as well as ending the {@condition petrified} condition on it." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "environment": [ + "mountain", + "hill", + "coastal" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/stone-giant-dreamwalker.mp3" + }, + "attachedItems": [ + "greatclub|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "charmed", + "petrified", + "prone" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Storm Giant Quintessent", + "source": "VGM", + "page": 151, + "otherSources": [ + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Storm Giant Quintessent|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "storm giant" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 230, + "formula": "20d12 + 100" + }, + "speed": { + "walk": 50, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "swim": 50, + "canHover": true + }, + "str": 29, + "dex": 14, + "con": 20, + "int": 17, + "wis": 20, + "cha": 19, + "save": { + "str": "+14", + "con": "+10", + "wis": "+10", + "cha": "+9" + }, + "skill": { + "arcana": "+8", + "history": "+8" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 20, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "thunder" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "16", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The giant can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Lightning Sword attacks or uses Wind Javelin twice." + ] + }, + { + "name": "Lightning Sword", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}40 ({@damage 9d6 + 9}) lightning damage." + ] + }, + { + "name": "Windjavelin", + "entries": [ + "The giant coalesces wind into a javelin-like form and hurls it at a creature it can see within 600 feet of it. The javelin is considered a magic weapon and deals 19 ({@damage 3d6 + 9}) piercing damage to the target, striking unerringly. The javelin disappears after it hits." + ] + } + ], + "legendary": [ + { + "name": "Gust", + "entries": [ + "The giant targets a creature it can see within 60 feet of it and creates a magical gust of wind around it. The target must succeed on a {@dc 18} Strength saving throw or be pushed up to 20 feet in any horizontal direction the giant chooses." + ] + }, + { + "name": "Thunderbolt (2 Actions)", + "entries": [ + "The giant hurls a thunderbolt at a creature it can see within 600 feet of it. The target must make a {@dc 18} Dexterity saving throw, taking 22 ({@damage 4d10}) thunder damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "One with the Storm (3 Actions)", + "entries": [ + "The giant vanishes, dispersing itself into the storm surrounding its lair. The giant can end this effect at the start of any of its turns, becoming a giant once more and appearing in any location it chooses within its lair. While dispersed, the giant can't take any actions other than lair actions, and it can't be targeted by attacks, spells, or other effects. The giant can't use this ability outside its lair, nor can it use this ability if another creature is using a {@spell control weather} spell or similar magic to quell the storm." + ] + } + ], + "legendaryGroup": { + "name": "Storm Giant Quintessent", + "source": "VGM" + }, + "environment": [ + "underwater", + "mountain", + "desert", + "coastal", + "arctic" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/storm-giant-quintessent.mp3" + }, + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "L", + "P", + "T" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Cranium Rats", + "source": "VGM", + "page": 133, + "reprintedAs": [ + "Swarm of Cranium Rats|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 10, + "int": 15, + "wis": 11, + "cha": 14, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "telepathy 30 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The swarm's innate spellcasting ability is Intelligence (spell save {@dc 13}). As long as it has more than half of its hit points, it can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell command}", + "{@spell comprehend languages}", + "{@spell detect thoughts}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell dominate monster}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Illumination", + "entries": [ + "As a bonus action, the swarm can shed dim light from its brains in a 5-foot radius, increase the illumination to bright light in a 5 to 20-foot radius (and dim light for an additional number of feet equal to the chosen radius), or extinguish the light." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Telepathic Shroud", + "entries": [ + "The swarm is immune to any effect that would sense its emotions or read its thoughts. as well as to all divination spells." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "environment": [ + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-cranium-rats.mp3" + }, + "traitTags": [ + "Illumination" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Rot Grubs", + "source": "VGM", + "page": 208, + "otherSources": [ + { + "source": "GoS" + } + ], + "reprintedAs": [ + "Swarm of Rot Grubs|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 5, + "climb": 5 + }, + "str": 2, + "dex": 7, + "con": 10, + "int": 1, + "wis": 2, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 6, + "resist": [ + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained" + ], + "cr": "1/2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny maggot. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 0 ft., one creature in the swarm's space. {@h}The target is infested by {@dice 1d4} rot grubs. At the start of each of the target's turns, the target takes {@damage 1d6} piercing damage per rot grub infesting it. Applying fire to the bite wound before the end of the target's next turn deals 1 fire damage to the target and kills these rot grubs. After this time, these rot grubs are too far under the skin to be burned. If a target infested by rot grubs ends its turn with 0 hit points, it dies as the rot grubs burrow into its heart and kill it. Any effect that cures disease kills all rot grubs infesting the target." + ] + } + ], + "environment": [ + "underdark", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swarm-of-rot-grubs.mp3" + }, + "senseTags": [ + "B" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "DIS", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swashbuckler", + "source": "VGM", + "page": 217, + "otherSources": [ + { + "source": "WDH" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + } + ], + "reprintedAs": [ + "Swashbuckler|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "NX", + "C", + "G", + "NY", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 12, + "int": 14, + "wis": 11, + "cha": 15, + "skill": { + "acrobatics": "+8", + "athletics": "+5", + "persuasion": "+6" + }, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "cr": "3", + "trait": [ + { + "name": "Lightfooted", + "entries": [ + "The swashbuckler can take the Dash or Disengage action as a bonus action on each of its turns." + ] + }, + { + "name": "Suave Defense", + "entries": [ + "While the swashbuckler is wearing light or no armor and wielding no shield, its AC includes its Charisma modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The swashbuckler makes three attacks: one with a dagger and two with its rapier." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "environment": [ + "coastal", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/swashbuckler.mp3" + }, + "attachedItems": [ + "dagger|phb", + "rapier|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tanarukk", + "source": "VGM", + "page": 186, + "reprintedAs": [ + "Tanarukk|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon", + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d8 + 50" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 20, + "int": 9, + "wis": 9, + "cha": 9, + "skill": { + "intimidation": "+2", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "fire", + "poison" + ], + "languages": [ + "Abyssal", + "Common", + "Orc" + ], + "cr": "5", + "trait": [ + { + "name": "Aggressive", + "entries": [ + "As a bonus action, the tanarukk can move up to its speed toward a hostile creature that it can see." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The tanarukk has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tanarukk makes two attacks: one with its bite and one with its greatsword." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + } + ], + "reaction": [ + { + "name": "Unbridled Fury", + "entries": [ + "In response to being hit by a melee attack, the tanarukk can make one melee weapon attack with advantage against the attacker." + ] + } + ], + "environment": [ + "underdark", + "mountain", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tanarukk.mp3" + }, + "attachedItems": [ + "greatsword|phb" + ], + "traitTags": [ + "Aggressive", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thorny", + "source": "VGM", + "page": 197, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Thorny Vegepygmy|MPMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 13, + "int": 2, + "wis": 10, + "cha": 6, + "skill": { + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "lightning", + "piercing" + ], + "cr": "1", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The thorny has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The thorny regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the thorny's next turn. The thorny dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Thorny Body", + "entries": [ + "At the start of its turn, the thorny deals 2 ({@damage 1d4}) piercing damage to any creature grappling it." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/thorny.mp3" + }, + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tlincalli", + "source": "VGM", + "page": 193, + "reprintedAs": [ + "Tlincalli|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 13, + "con": 16, + "int": 8, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+4", + "stealth": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Tlincalli" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tlincalli makes two attacks: one with its longsword or spiked chain, and one with its sting." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Spiked Chain", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the tlincalli can't use the spiked chain against another target." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} for 1 minute. If it fails the saving throw by 5 or more, the target is also {@condition paralyzed} while {@condition poisoned}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/tlincalli.mp3" + }, + "attachedItems": [ + "longsword|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "paralyzed", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Transmuter", + "source": "VGM", + "page": 218, + "otherSources": [ + { + "source": "TftYP" + } + ], + "reprintedAs": [ + "Transmuter Wizard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "any four languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The transmuter is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The transmuter has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell expeditious retreat}*", + "{@spell mage armor}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell alter self}*", + "{@spell hold person}", + "{@spell knock}*" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell blink}*", + "{@spell fireball}", + "{@spell slow}*" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell polymorph}*", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell telekinesis}*" + ] + } + }, + "footerEntries": [ + "*Transmutation spell of 1st level or higher" + ], + "ability": "int" + } + ], + "trait": [ + { + "name": "Transmuter's Stone", + "entries": [ + "The transmuter carries a magic stone it crafted that grants its bearer one of the following effects:", + "Darkvision out to a range of 60 feet", + "An extra 10 feet of speed while the bearer is unencumbered", + "Proficiency with Constitution saving throws", + "Resistance to acid, cold, fire, lightning, or thunder damage (transmuter's choice whenever the transmuter chooses this benefit)", + "If the transmuter has the stone and casts a transmutation spell of 1st level or higher, it can change the effect of the stone." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/transmuter.mp3" + }, + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "P", + "S", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Trapper", + "source": "VGM", + "page": 194, + "otherSources": [ + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Trapper|MPMM" + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 17, + "dex": 10, + "con": 17, + "int": 2, + "wis": 13, + "cha": 4, + "skill": { + "stealth": "+2" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 11, + "cr": "3", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the trapper is attached to a ceiling, floor, or wall and remains motionless, it is almost indistinguishable from an ordinary section of ceiling, floor, or wall. A creature that can see it and succeeds on a {@dc 20} Intelligence ({@skill Investigation}) or Intelligence ({@skill Nature}) check can discern its presence." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The trapper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Smother", + "entries": [ + "One Large or smaller creature within 5 feet of the trapper must succeed on a {@dc 14} Dexterity saving throw or be {@condition grappled} (escape {@dc 14}). Until the grapple ends, the target takes 17 ({@damage 4d6 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) acid damage at the start of each of its turns. While {@condition grappled} in this way, the target is {@condition restrained}, {@condition blinded}, and at risk of suffocating. The trapper can smother only one creature at a time." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/trapper.mp3" + }, + "traitTags": [ + "False Appearance", + "Spider Climb" + ], + "senseTags": [ + "B", + "D" + ], + "damageTags": [ + "A", + "B" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ulitharid", + "source": "VGM", + "page": 175, + "otherSources": [ + { + "source": "WDMM" + } + ], + "reprintedAs": [ + "Ulitharid|MPMM" + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 12, + "con": 15, + "int": 21, + "wis": 19, + "cha": 21, + "save": { + "int": "+9", + "wis": "+8", + "cha": "+9" + }, + "skill": { + "arcana": "+9", + "insight": "+8", + "perception": "+8", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 2 miles" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The ulitharid's innate spellcasting ability is Intelligence (spell save {@dc 17}). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell dominate monster}", + "{@spell eyebite}", + "{@spell feeblemind}", + "{@spell mass suggestion}", + "{@spell plane shift} (self only)", + "{@spell project image}", + "{@spell scrying}", + "{@spell telekinesis}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The ulitharid is aware of the presence of creatures within 2 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The ulitharid has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Psionic Hub", + "entries": [ + "If an elder brain establishes a psychic link with the ulitharid, the elder brain can form a psychic link with any other creature the ulitharid can detect using its Creature Sense. Any such link ends if the creature falls outside the telepathy ranges of both the ulitharid and the elder brain. The ulitharid can maintain its psychic link with the elder brain regardless of the distance between them, so long as they are both on the same plane of existence. If the ulitharid is more than 5 miles away from the elder brain, it can end the psychic link at any time (no action required)." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}27 ({@damage 4d10 + 5}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 14}) and must succeed on a {@dc 17} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the ulitharid. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ulitharid kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The ulitharid magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 17} Intelligence saving throw or take 31 ({@damage 4d12 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "environment": [ + "underdark" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/ulitharid.mp3" + }, + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "stunned" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "frightened", + "restrained", + "unconscious" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vargouille", + "source": "VGM", + "page": 195, + "reprintedAs": [ + "Vargouille|MPMM" + ], + "size": [ + "T" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 13, + "formula": "3d4 + 6" + }, + "speed": { + "walk": 5, + "fly": 40 + }, + "str": 6, + "dex": 14, + "con": 14, + "int": 4, + "wis": 7, + "cha": 2, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Abyssal", + "Infernal", + "and any languages it knew before becoming a vargouille but can't speak" + ], + "cr": "1", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Kiss", + "entries": [ + "The vargouille kisses one {@condition incapacitated} humanoid within 5 feet of it. The target must succeed on a {@dc 12} Charisma saving throw or become cursed. The cursed target loses 1 point of Charisma after each hour, as its head takes on fiendish aspects. The curse doesn't advance while the target is in sunlight or the area of a {@spell daylight} spell; don't count that time. When the cursed target's Charisma becomes 2, it dies, and its head tears from its body and becomes a new vargouille. Casting {@spell remove curse}, {@spell greater restoration}, or a similar spell on the target before the transformation is complete can end the curse. Doing so undoes the changes made to the target by the curse." + ] + }, + { + "name": "Stunning Shriek", + "entries": [ + "The vargouille shrieks. Each humanoid and beast within 30 feet of the vargouille and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} until the end of the vargouille's next turn. While {@condition frightened} in this way, a target is {@condition stunned}. If a target's saving throw is successful or the effect ends for it, the target is immune to the Stunning Shriek of all vargouilles for 1 hour." + ] + } + ], + "environment": [ + "underdark", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vargouille.mp3" + }, + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS", + "I" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "frightened", + "stunned" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vegepygmy", + "source": "VGM", + "page": 196, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Vegepygmy|MPMM" + ], + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 14, + "con": 13, + "int": 6, + "wis": 11, + "cha": 7, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "lightning", + "piercing" + ], + "languages": [ + "Vegepygmy" + ], + "cr": "1/4", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vegepygmy regains 3 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vegepygmy.mp3" + }, + "attachedItems": [ + "sling|phb" + ], + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vegepygmy Chief", + "source": "VGM", + "page": 197, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Vegepygmy Chief|MPMM" + ], + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 14, + "int": 7, + "wis": 12, + "cha": 9, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "lightning", + "piercing" + ], + "languages": [ + "Vegepygmy" + ], + "cr": "2", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vegepygmy regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vegepygmy makes two attacks with its claws or two melee attacks with its spear." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + }, + { + "name": "Spores (1/Day)", + "entries": [ + "A 15-foot-radius cloud of toxic spores extends out from the vegepygmy. The spores spread around corners. Each creature in that area that isn't a plant must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned}. While {@condition poisoned} in this way, a target takes 9 ({@damage 2d8}) 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." + ] + } + ], + "environment": [ + "forest", + "swamp" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/vegepygmy-chief.mp3" + }, + "attachedItems": [ + "spear|phb" + ], + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Velociraptor", + "group": [ + "Dinosaurs" + ], + "source": "VGM", + "page": 140, + "otherSources": [ + { + "source": "ToA" + }, + { + "source": "PSX", + "page": 30 + } + ], + "reprintedAs": [ + "Velociraptor|MPMM" + ], + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 14, + "con": 13, + "int": 4, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+3" + }, + "passive": 13, + "cr": "1/4", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The velociraptor has advantage on an attack roll against a creature if at least one of the velociraptor's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The velociraptor makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + } + ], + "environment": [ + "grassland", + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/velociraptor.mp3" + }, + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "War Priest", + "source": "VGM", + "page": 218, + "otherSources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "MOT" + } + ], + "reprintedAs": [ + "War Priest|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 14, + "int": 11, + "wis": 17, + "cha": 13, + "save": { + "con": "+6", + "wis": "+7" + }, + "skill": { + "intimidation": "+5", + "religion": "+4" + }, + "passive": 13, + "languages": [ + "any two languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The priest is a 9th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell divine favor}", + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell magic weapon}", + "{@spell prayer of healing}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell beacon of hope}", + "{@spell crusader's mantle}", + "{@spell dispel magic}", + "{@spell revivify}", + "{@spell spirit guardians}", + "{@spell water walk}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}", + "{@spell guardian of faith}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell flame strike}", + "{@spell mass cure wounds}", + "{@spell hold monster}" + ] + } + }, + "ability": "wis" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The priest makes two melee attacks." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Guided Strike (Recharges after a Short or Long Rest)", + "entries": [ + "The priest grants a +10 bonus to an attack roll made by itself or another creature within 30 feet of it. The priest can make this choice after the roll is made but before it hits or misses." + ] + } + ], + "environment": [ + "desert", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/war-priest.mp3" + }, + "attachedItems": [ + "maul|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Warlock of the Archfey", + "source": "VGM", + "page": 219, + "reprintedAs": [ + "Warlock of the Archfey|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 49, + "formula": "11d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 13, + "con": 11, + "int": 11, + "wis": 12, + "cha": 18, + "save": { + "wis": "+3", + "cha": "+6" + }, + "skill": { + "arcana": "+2", + "deception": "+6", + "nature": "+2", + "persuasion": "+6" + }, + "passive": 11, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "any two languages (usually Sylvan)" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock's innate spellcasting ability is Charisma. It can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "will": [ + "{@spell disguise self}", + "{@spell mage armor} (self only)", + "{@spell silent image}", + "{@spell speak with animals}" + ], + "daily": { + "1": [ + "{@spell conjure fey}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock is an 11th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell dancing lights}", + "{@spell eldritch blast}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ] + }, + "5": { + "lower": 1, + "slots": 3, + "spells": [ + "{@spell blink}", + "{@spell charm person}", + "{@spell dimension door}", + "{@spell dominate beast}", + "{@spell faerie fire}", + "{@spell fear}", + "{@spell hold monster}", + "{@spell misty step}", + "{@spell phantasmal force}", + "{@spell seeming}", + "{@spell sleep}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Misty Escape (Recharges after a Short or Long Rest)", + "entries": [ + "In response to taking damage, the warlock turns {@condition invisible} and teleports up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks, makes a damage roll, or casts a spell." + ] + } + ], + "environment": [ + "arctic", + "forest", + "mountain", + "swamp", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlock-of-the-archfey.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "S", + "X" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "O", + "Y" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "paralyzed", + "unconscious" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Warlock of the Fiend", + "source": "VGM", + "page": 219, + "otherSources": [ + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Warlock of the Fiend|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 15, + "int": 12, + "wis": 12, + "cha": 18, + "save": { + "wis": "+4", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "deception": "+7", + "persuasion": "+7", + "religion": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "cond": true + } + ], + "languages": [ + "any two languages (usually Abyssal or Infernal)" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock's innate spellcasting ability is Charisma. It can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "will": [ + "{@spell alter self}", + "{@spell false life}", + "{@spell levitate} (self only)", + "{@spell mage armor} (self only)", + "{@spell silent image}" + ], + "daily": { + "1e": [ + "{@spell feeblemind}", + "{@spell finger of death}", + "{@spell plane shift}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock is a 17th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell eldritch blast}", + "{@spell fire bolt}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "5": { + "lower": 1, + "slots": 4, + "spells": [ + "{@spell banishment}", + "{@spell burning hands}", + "{@spell flame strike}", + "{@spell hellish rebuke}", + "{@spell magic circle}", + "{@spell scorching ray}", + "{@spell scrying}", + "{@spell stinking cloud}", + "{@spell suggestion}", + "{@spell wall of fire}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Dark One's Own Luck (Recharges after a Short or Long Rest)", + "entries": [ + "When the warlock makes an ability check or saving throw, it can add a {@dice d10} to the roll. It can do this after the roll is made but before any of the roll's effects occur." + ] + } + ], + "action": [ + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage." + ] + } + ], + "environment": [ + "arctic", + "desert", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlock-of-the-fiend.mp3" + }, + "attachedItems": [ + "mace|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "I", + "X" + ], + "damageTags": [ + "B", + "F" + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "N", + "O", + "P", + "R", + "S", + "Y" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warlock of the Great Old One", + "source": "VGM", + "page": 220, + "otherSources": [ + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Warlock of the Great Old One|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 15, + "int": 12, + "wis": 12, + "cha": 18, + "save": { + "wis": "+4", + "cha": "+7" + }, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "psychic" + ], + "languages": [ + "any two languages", + "telepathy 30 ft." + ], + "cr": "6", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock's innate spellcasting ability is Charisma. It can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell jump}", + "{@spell levitate}", + "{@spell mage armor} (self only)", + "{@spell speak with dead}" + ], + "daily": { + "1e": [ + "{@spell arcane gate}", + "{@spell true seeing}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock is a 14th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "5": { + "lower": 1, + "slots": 3, + "spells": [ + "{@spell armor of Agathys}", + "{@spell arms of Hadar}", + "{@spell crown of madness}", + "{@spell clairvoyance}", + "{@spell contact other plane}", + "{@spell detect thoughts}", + "{@spell dimension door}", + "{@spell dissonant whispers}", + "{@spell dominate beast}", + "{@spell telekinesis}", + "{@spell vampiric touch}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Whispering Aura", + "entries": [ + "At the start of each of the warlock's turns, each creature of its choice within 5 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage, provided that the warlock isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "environment": [ + "desert", + "hill", + "mountain", + "underdark", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlock-of-the-great-old-one.mp3" + }, + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "C", + "L", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "intelligence", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Warlord", + "source": "VGM", + "page": 220, + "otherSources": [ + { + "source": "IMR" + } + ], + "reprintedAs": [ + "Warlord|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 229, + "formula": "27d8 + 108" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 16, + "con": 18, + "int": 12, + "wis": 12, + "cha": 18, + "save": { + "str": "+9", + "dex": "+7", + "con": "+8" + }, + "skill": { + "athletics": "+9", + "intimidation": "+8", + "perception": "+5", + "persuasion": "+8" + }, + "passive": 15, + "languages": [ + "any two languages" + ], + "cr": "12", + "trait": [ + { + "name": "Indomitable (3/Day)", + "entries": [ + "The warlord can reroll a saving throw it fails. It must use the new roll." + ] + }, + { + "name": "Survivor", + "entries": [ + "The warlord regains 10 hit points at the start of its turn if it has at least 1 hit point but fewer hit points than half its hit point maximum." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warlord makes two weapon attacks." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "legendary": [ + { + "name": "Weapon Attack", + "entries": [ + "The warlord makes a weapon attack." + ] + }, + { + "name": "Command Ally", + "entries": [ + "The warlord targets one ally it can see within 30 feet of it. If the target can see and hear the warlord, the target can make one weapon attack as a reaction and gains advantage on the attack roll." + ] + }, + { + "name": "Frighten Foe (Costs 2 Actions)", + "entries": [ + "The warlord targets one enemy it can see within 30 feet of it. If the target can see and hear it, the target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} until the end of warlord's next turn." + ] + } + ], + "environment": [ + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/warlord.mp3" + }, + "attachedItems": [ + "greatsword|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "White Guard Drake", + "source": "VGM", + "page": 158, + "reprintedAs": [ + "Guard Drake|MPMM" + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "burrow": 20, + "climb": 30 + }, + "str": 16, + "dex": 11, + "con": 16, + "int": 4, + "wis": 10, + "cha": 7, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "cold" + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drake attacks twice, once with its bite and once with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ] + } + ], + "environment": [ + "arctic", + "urban" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/guard-drake.mp3" + }, + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wood Woad", + "source": "VGM", + "page": 198, + "otherSources": [ + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "reprintedAs": [ + "Wood Woad|MPMM" + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 12, + "con": 16, + "int": 10, + "wis": 13, + "cha": 8, + "skill": { + "athletics": "+7", + "perception": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "bludgeoning", + "piercing" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Sylvan" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Club", + "entries": [ + "In the wood woad's hand, its club is magical and deals 7 ({@damage 3d4}) extra damage (included in its attacks)." + ] + }, + { + "name": "Plant Camouflage", + "entries": [ + "The wood woad has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The wood woad regains 10 hit points at the start of its turn if it is in contact with the ground. If the wood woad takes fire damage, this trait doesn't function at the start of the wood woad's next turn. The wood woad dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Tree Stride", + "entries": [ + "Once on each of its turns, the wood woad can use 10 feet of its movement to step magically into one living tree within 5 feet of it and emerge from a second living tree within 60 feet of it that it can see, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wood woad makes two attacks with its club." + ] + }, + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) bludgeoning damage." + ] + } + ], + "environment": [ + "forest" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/wood-woad.mp3" + }, + "attachedItems": [ + "club|phb" + ], + "traitTags": [ + "Camouflage", + "Regeneration", + "Tree Stride" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xvart", + "source": "VGM", + "page": 200, + "reprintedAs": [ + "Xvart|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "xvart" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 8, + "wis": 7, + "cha": 7, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 8, + "languages": [ + "Abyssal" + ], + "cr": "1/8", + "trait": [ + { + "name": "Low Cunning", + "entries": [ + "The xvart can take the Disengage action as a bonus action on each of its turns." + ] + }, + { + "name": "Overbearing Pack", + "entries": [ + "The xvart has advantage on Strength ({@skill Athletics}) checks to shove a creature if at least one of the xvart's allies is within 5 feet of the target and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Raxivort's Tongue", + "entries": [ + "The xvart can communicate with ordinary bats and rats, as well as giant bats and giant rats." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "underdark", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/xvart.mp3" + }, + "attachedItems": [ + "shortsword|phb", + "sling|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xvart Speaker", + "source": "VGM", + "page": 200, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "xvart" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 13, + "wis": 7, + "cha": 7, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 8, + "languages": [ + "Abyssal and one additional language (usually Common or Goblin)" + ], + "cr": "1/8", + "trait": [ + { + "name": "Low Cunning", + "entries": [ + "The xvart can take the Disengage action as a bonus action on each of its turns." + ] + }, + { + "name": "Overbearing Pack", + "entries": [ + "The xvart has advantage on Strength ({@skill Athletics}) checks to shove a creature if at least one of the xvart's allies is within 5 feet of the target and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Raxivort's Tongue", + "entries": [ + "The xvart can communicate with ordinary bats and rats, as well as giant bats and giant rats." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "environment": [ + "underdark", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/xvart-speaker.mp3" + }, + "attachedItems": [ + "shortsword|phb", + "sling|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C", + "GO", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Xvart Warlock of Raxivort", + "source": "VGM", + "page": 200, + "reprintedAs": [ + "Xvart Warlock of Raxivort|MPMM" + ], + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "xvart" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 12, + "int": 8, + "wis": 11, + "cha": 12, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "languages": [ + "Abyssal" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The xvart's innate spellcasting ability is Charisma. it can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell detect magic}", + "{@spell mage armor} (self only)" + ], + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The xvart is a 3rd-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 11}, {@hit 3} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell eldritch blast}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ] + }, + "2": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell expeditious retreat}", + "{@spell invisibility}", + "{@spell scorching ray}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Low Cunning", + "entries": [ + "The xvart can take the Disengage action as a bonus action on each of its turns." + ] + }, + { + "name": "Overbearing Pack", + "entries": [ + "The xvart has advantage on Strength ({@skill Athletics}) checks to shove a creature if at least one of the xvart's allies is within 5 feet of the target and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Raxivort's Tongue", + "entries": [ + "The xvart can communicate with ordinary bats and rats, as well as giant bats and giant rats." + ] + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "environment": [ + "underdark", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/xvart-warlock-of-raxivort.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "F", + "I", + "O" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Yeth Hound", + "source": "VGM", + "page": 201, + "reprintedAs": [ + "Yeth Hound|MPMM" + ], + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 17, + "con": 16, + "int": 5, + "wis": 12, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The yeth hound has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Sunlight Banishment", + "entries": [ + "If the yeth hound starts its turn in sunlight, it is transported to the Ethereal Plane. While sunlight shines on the spot from which it vanished, the hound must remain in the Deep Ethereal. After sunset, it returns to the Border Ethereal at the same spot, whereupon it typically sets out to find its pack or its master. The hound is visible on the Material Plane while it is in the Border Ethereal, and vice versa, but it can't affect or be affected by anything on the other plane. Once it is adjacent to its master or a pack mate that is on the Material Plane, a yeth hound in the Border Ethereal can return to the Material Plane as an action." + ] + }, + { + "name": "Telepathic Bond", + "entries": [ + "While the yeth hound is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, plus 14 ({@damage 4d6}) psychic damage if the target is {@condition frightened}." + ] + }, + { + "name": "Baleful Baying", + "entries": [ + "The yeth hound bays magically. Every enemy within 300 feet of the hound that can hear it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} until the end of the hound's next turn or until the hound is {@condition incapacitated}. A {@condition frightened} target that starts its turn within 30 feet of the hound must use all its movement on that turn to get as far from the hound as possible, must finish the move before taking an action, and must take the most direct route, even if hazards lie that way. A target that successfully saves is immune to the baying of all yeth hounds for the next 24 hours." + ] + } + ], + "environment": [ + "grassland", + "forest", + "hill" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yeth-hound.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS", + "E", + "S" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Anathema", + "source": "VGM", + "page": 202, + "reprintedAs": [ + "Yuan-ti Anathema|MPMM" + ], + "size": [ + "H" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d12 + 72" + }, + "speed": { + "walk": 40, + "climb": 30, + "swim": 30 + }, + "str": 23, + "dex": 13, + "con": 19, + "int": 19, + "wis": 17, + "cha": 20, + "skill": { + "perception": "+7", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft.", + "blindsight 30 ft." + ], + "passive": 17, + "resist": [ + "acid", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting (Anathema Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The anathema's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "1": [ + "{@spell divine word}" + ], + "3e": [ + "{@spell darkness}", + "{@spell entangle}", + "{@spell fear}", + "{@spell haste}", + "{@spell suggestion}", + "{@spell polymorph}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The anathema has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Ophidiophobia Aura", + "entries": [ + "Any creature of the anathema's choice, other than a snake or a yuan-ti, that starts its turn within 30 feet of the anathema and can see or hear it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of snakes and yuan-ti. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this aura for the next 24 hours." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "The anathema can use its action to polymorph into a Huge giant constrictor snake, or back into its true form. its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ] + }, + { + "name": "Six Heads", + "entries": [ + "The anathema has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}. {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ] + } + ], + "action": [ + { + "name": "Multiattack (Anathema Form Only)", + "entries": [ + "The anathema makes two claw attacks, one constrict attack, and one Flurry of Bites attack." + ] + }, + { + "name": "Claw (Anathema Form Only)", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained} and takes 16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage at the start of each of its turns, and the anathema can't constrict another target." + ] + }, + { + "name": "Flurry of Bites", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one creature. {@h}27 ({@damage 6d6 + 6}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Acid Slime", + "entries": [ + "As a bonus action, the yuan-ti can coat its body in a slimy acid that lasts for 1 minute. A creature that touches the yuan-ti, hits it with a melee attack while within 5 feet of it, or is hit by its constrict attack takes 5 ({@damage 1d10}) acid damage." + ], + "_version": { + "name": "Yuan-ti Anathema (Acid Slime)", + "addAs": "bonus" + } + }, + { + "type": "variant", + "name": "Chameleon Skin", + "entries": [ + "The yuan-ti has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "_version": { + "name": "Yuan-ti Anathema (Chameleon Skin)", + "addAs": "trait" + } + }, + { + "type": "variant", + "name": "Shed Skin (1/Day)", + "entries": [ + "The yuan-ti can shed its skin as a bonus action to free itself from a grapple, shackles, or other restraints. If the yuan-ti spends 1 minute eating its shed skin, it regains hit points equal to half its hit point maximum." + ], + "_version": { + "name": "Yuan-ti Anathema (Shed Skin)", + "addAs": "bonus" + } + } + ], + "environment": [ + "underdark", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-anathema.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "A", + "B", + "I", + "P", + "S" + ], + "spellcastingTags": [ + "F", + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "frightened", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Broodguard", + "source": "VGM", + "page": 203, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Yuan-ti Broodguard|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 14, + "con": 14, + "int": 6, + "wis": 11, + "cha": 4, + "save": { + "str": "+4", + "dex": "+4", + "wis": "+2" + }, + "skill": { + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "2", + "trait": [ + { + "name": "Mental Resistance", + "entries": [ + "The broodguard has advantage on saving throws against being {@condition charmed}, and magic can't paralyze it." + ] + }, + { + "name": "Reckless", + "entries": [ + "At the start of its turn, the broodguard can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The broodguard makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Chameleon Skin", + "entries": [ + "The yuan-ti has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "_version": { + "name": "Yuan-ti Broodguard (Chameleon Skin)", + "addAs": "trait" + } + }, + { + "type": "variant", + "name": "Shed Skin (1/Day)", + "entries": [ + "The yuan-ti can shed its skin as a bonus action to free itself from a grapple, shackles, or other restraints. If the yuan-ti spends 1 minute eating its shed skin, it regains hit points equal to half its hit point maximum." + ], + "_version": { + "name": "Yuan-ti Broodguard (Shed Skin)", + "addAs": "bonus" + } + } + ], + "environment": [ + "underdark", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-broodguard.mp3" + }, + "traitTags": [ + "Reckless" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Malison (Type 4)", + "source": "VGM", + "page": 96, + "otherSources": [ + { + "source": "ToA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Malison Type", + "entries": [ + "The yuan-ti has one of the following types:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Type 4:", + "entry": "Human form with one or more serpentine tails" + }, + { + "type": "item", + "name": "Type 5:", + "entry": "Human form covered in scales" + } + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes two ranged attacks or two melee attacks." + ] + }, + { + "name": "Bite (Snake Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Longbow (Yuan-ti Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-malison.mp3" + }, + "attachedItems": [ + "longbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "F", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Malison (Type 5)", + "source": "VGM", + "page": 96, + "otherSources": [ + { + "source": "ToA" + } + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Malison Type", + "entries": [ + "The yuan-ti has one of the following types:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Type 4:", + "entry": "Human form with one or more serpentine tails" + }, + { + "type": "item", + "name": "Type 5:", + "entry": "Human form covered in scales" + } + ] + } + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes two ranged attacks or two melee attacks." + ] + }, + { + "name": "Bite (Snake Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Longbow (Yuan-ti Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "environment": [ + "forest", + "swamp", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-malison.mp3" + }, + "attachedItems": [ + "longbow|phb", + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "F", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Mind Whisperer", + "source": "VGM", + "page": 204, + "reprintedAs": [ + "Yuan-ti Mind Whisperer|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 14, + "cha": 16, + "save": { + "wis": "+4", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell eldritch blast} (range 300 ft., +3 bonus to each damage roll)", + "{@spell friends}", + "{@spell message}", + "{@spell minor illusion}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell charm person}", + "{@spell crown of madness}", + "{@spell detect thoughts}", + "{@spell expeditious retreat}", + "{@spell fly}", + "{@spell hypnotic pattern}", + "{@spell illusory script}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Mind Fangs (2/Day)", + "entries": [ + "The first time the yuan-ti hits with a melee attack on its turn, it can deal an extra 16 ({@damage 3d10}) psychic damage to the target." + ] + }, + { + "name": "Sseth's Blessing", + "entries": [ + "When the yuan-ti reduces an enemy to 0 hit points, the yuan-ti gains 9 temporary hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes one bite attack and one scimitar attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Chameleon Skin", + "entries": [ + "The yuan-ti has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "_version": { + "name": "Yuan-ti Mind Whisperer (Chameleon Skin)", + "addAs": "trait" + } + }, + { + "type": "variant", + "name": "Shed Skin (1/Day)", + "entries": [ + "The yuan-ti can shed its skin as a bonus action to free itself from a grapple, shackles, or other restraints. If the yuan-ti spends 1 minute eating its shed skin, it regains hit points equal to half its hit point maximum." + ], + "_version": { + "name": "Yuan-ti Mind Whisperer (Shed Skin)", + "addAs": "bonus" + } + } + ], + "environment": [ + "underdark", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-mind-whisperer.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "I", + "O" + ], + "spellcastingTags": [ + "CL", + "F", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Nightmare Speaker", + "source": "VGM", + "page": 205, + "otherSources": [ + { + "source": "ToA" + } + ], + "reprintedAs": [ + "Yuan-ti Nightmare Speaker|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "wis": "+3", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast} (range 300 ft., +3 bonus to each damage roll)", + "{@spell mage hand}", + "{@spell message}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell darkness}", + "{@spell fear}", + "{@spell hex}", + "{@spell hold person}", + "{@spell hunger of Hadar}", + "{@spell witch bolt}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ] + }, + { + "name": "Death Fangs (2/Day)", + "entries": [ + "The first time the yuan-ti hits with a melee attack on its turn, it can deal an extra 16 ({@damage 3d10}) necrotic damage to the target." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes one constrict attack and one scimitar attack." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the yuan-ti can't constrict another target." + ] + }, + { + "name": "Scimitar (Yuan-ti Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Invoke Nightmare (Recharges after a Short or Long Rest)", + "entries": [ + "The yuan-ti taps into the nightmares of a creature it can see within 60 feet of it and creates an illusory, immobile manifestation of the creature's deepest fears, visible only to that creature. The target must make a {@dc 13} Intelligence saving throw. On a failed save, the target takes 11 ({@damage 2d10}) psychic damage and is {@condition frightened} of the manifestation, believing it to be real. The yuan-ti must concentrate to maintain the illusion (as if {@status concentration||concentrating} on a spell), which lasts for up to 1 minute and can't be harmed. The target can repeat the saving throw at the end of each of its turns, ending the illusion on a success, or taking 11 ({@damage 2d10}) psychic damage on a failure." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Chameleon Skin", + "entries": [ + "The yuan-ti has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "_version": { + "name": "Yuan-ti Nightmare Speaker (Chameleon Skin)", + "addAs": "trait" + } + }, + { + "type": "variant", + "name": "Shed Skin (1/Day)", + "entries": [ + "The yuan-ti can shed its skin as a bonus action to free itself from a grapple, shackles, or other restraints. If the yuan-ti spends 1 minute eating its shed skin, it regains hit points equal to half its hit point maximum." + ], + "_version": { + "name": "Yuan-ti Nightmare Speaker (Shed Skin)", + "addAs": "bonus" + } + } + ], + "environment": [ + "underdark", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-nightmare-speaker.mp3" + }, + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "B", + "N", + "S", + "Y" + ], + "damageTagsSpell": [ + "A", + "C", + "I", + "L", + "N", + "O" + ], + "spellcastingTags": [ + "CL", + "F", + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "restrained" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yuan-ti Pit Master", + "source": "VGM", + "page": 206, + "reprintedAs": [ + "Yuan-ti Pit Master|MPMM" + ], + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger", + "yuan-ti" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "wis": "+4", + "cha": "+6" + }, + "skill": { + "deception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell animal friendship} (snakes only)" + ], + "daily": { + "3": [ + "{@spell suggestion}" + ] + }, + "ability": "cha" + }, + { + "name": "Spellcasting (Yuan-ti Form Only)", + "type": "spellcasting", + "headerEntries": [ + "The yuan-ti is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "spells": { + "0": { + "spells": [ + "{@spell eldritch blast} (range 300 ft., +3 bonus to each damage roll)", + "{@spell friends}", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell message}", + "{@spell poison spray}" + ] + }, + "3": { + "lower": 1, + "slots": 2, + "spells": [ + "{@spell command}", + "{@spell counterspell}", + "{@spell hellish rebuke}", + "{@spell invisibility}", + "{@spell misty step}", + "{@spell unseen servant}", + "{@spell vampiric touch}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The yuan-ti can use its action to polymorph into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Poison's Disciple (2/Day)", + "entries": [ + "The first time the yuan-ti hits with a melee attack on its turn, it can deal an extra 16 ({@damage 3d10}) poison damage to the target." + ] + } + ], + "action": [ + { + "name": "Multiattack (Yuan-ti Form Only)", + "entries": [ + "The yuan-ti makes two bite attacks using its snake arms." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Merrshaulk's Slumber (1/Day)", + "entries": [ + "The yuan-ti targets up to five creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 13} Constitution saving throw or fall into a magical sleep and be {@condition unconscious} for 10 minutes. A sleeping target awakens if it takes damage or if someone uses an action to shake or slap it awake. This magical sleep has no effect on a creature immune to being {@condition charmed}." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Chameleon Skin", + "entries": [ + "The yuan-ti has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "_version": { + "name": "Yuan-ti Pit Master (Chameleon Skin)", + "addAs": "trait" + } + }, + { + "type": "variant", + "name": "Shed Skin (1/Day)", + "entries": [ + "The yuan-ti can shed its skin as a bonus action to free itself from a grapple, shackles, or other restraints. If the yuan-ti spends 1 minute eating its shed skin, it regains hit points equal to half its hit point maximum." + ], + "_version": { + "name": "Yuan-ti Pit Master (Shed Skin)", + "addAs": "bonus" + } + } + ], + "environment": [ + "underdark", + "forest", + "desert" + ], + "soundClip": { + "type": "internal", + "path": "bestiary/yuan-ti-pit-master.mp3" + }, + "traitTags": [ + "Magic Resistance", + "Shapechanger" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "DR" + ], + "damageTags": [ + "I", + "P" + ], + "damageTagsSpell": [ + "F", + "I", + "N", + "O" + ], + "spellcastingTags": [ + "CL", + "F", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "prone" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bodytaker Plant", + "source": "VRGR", + "page": 226, + "size": [ + "H" + ], + "type": "plant", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 92, + "formula": "8d12 + 40" + }, + "speed": { + "walk": 10, + "climb": 10, + "swim": 10 + }, + "str": 18, + "dex": 8, + "con": 20, + "int": 14, + "wis": 14, + "cha": 18, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 12, + "vulnerable": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "prone" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Podling Link", + "entries": [ + "The plant can see through and communicate telepathically with any of its podlings within 10 miles of it." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "When the plant dies, it returns to life in the place where it died {@dice 1d12} months later, unless the ground where it took root is sown with salt or soaked with poison." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The plant doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The plant makes three Vine Lash attacks." + ] + }, + { + "name": "Vine Lash", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 20 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is a creature, it is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target is {@condition restrained}. The plant has four vines, each of which can grapple one target." + ] + }, + { + "name": "Entrapping Pod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Medium or smaller creature {@condition grappled} by the plant. {@h}22 ({@damage 4d8 + 4}) acid damage, and the target is pulled into the plant's space and enveloped by the pod, and the grapple ends. While enveloped, the target is {@condition restrained}, and it has {@quickref Cover||3||total cover} against attacks and effects originating outside the pod. The enveloped target must also immediately succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} by the plant's sapping enzymes until it is removed from the pod or the plant dies. The enveloped target doesn't require air and gains 1 level of {@condition exhaustion} for each hour it spends in the pod. If the target dies while enveloped, it immediately emerges from the pod as a living podling, wearing or carrying all of the original creature's equipment.", + "As an action, a creature within 5 feet of the bodytaker plant that is outside the pod can open the pod and pull the target free with a successful {@dc 15} Strength check. If the plant dies, the target is no longer {@condition restrained} and can escape from the pod by spending 10 feet of movement, exiting {@condition prone}. The plant has one pod, which can envelop one creature at a time." + ] + } + ], + "traitTags": [ + "Rejuvenation", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "A", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boneless", + "source": "VRGR", + "page": 228, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + 12 + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 15, + "int": 1, + "wis": 10, + "cha": 1, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Compression", + "entries": [ + "The boneless can move through any opening at least 1 inch wide without squeezing. It can also squeeze to fit into a space that a Tiny creature could fit in." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The boneless doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The boneless makes two Slam attacks. If both attacks hit a Large or smaller creature, the creature is {@condition grappled} (escape {@dc 13}), and the boneless can use Crushing Embrace." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + }, + { + "name": "Crushing Embrace", + "entries": [ + "The boneless wraps its body around a Large or smaller creature {@condition grappled} by it. While the boneless is attached, the target is {@condition blinded} and is unable to breathe. The target must succeed on a {@dc 13} Strength saving throw at the start of each of the boneless' turns or take 5 ({@damage 1d4 + 3}) bludgeoning damage. If something moves the target, the boneless moves with it. The boneless can detach itself by spending 5 feet of its movement. A creature, including the target, can use its action to try to detach the boneless and force it to move into the nearest unoccupied space, doing so with a successful {@dc 13} Strength check. When the boneless dies, it detaches from any creature it is attached to." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "grappled" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brain in a Jar", + "source": "VRGR", + "page": 278, + "otherSources": [ + { + "source": "IDRotF", + "page": 278 + } + ], + "size": [ + "S" + ], + "type": "undead", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d6 + 20" + }, + "speed": { + "walk": 0, + "fly": { + "number": 10, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 3, + "con": 15, + "int": 19, + "wis": 10, + "cha": 15, + "save": { + "int": "+6", + "cha": "+4" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius); see also \"detect sentience\" below" + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "poisoned", + "prone" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The brain's innate spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "will": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell detect thoughts}", + "{@spell mage hand}", + "{@spell zone of truth}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell hold person}" + ], + "1e": [ + "{@spell compulsion}", + "{@spell hold monster}", + "{@spell sleep} (3rd-level version)", + "{@spell Tasha's hideous laughter}" + ] + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Detect Sentience", + "entries": [ + "The brain can sense the presence and location of any creature within 300 feet of it that has an Intelligence of 3 or higher, regardless of interposing barriers, unless the creature is protected by a {@spell mind blank} spell." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The brain has advantage on saving throws against spells and other magic effects." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The brain doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Chill Touch (Cantrip)", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}13 ({@damage 3d8}) necrotic damage, and the target can't regain hit points until the start of the brain's next turn. If the target is undead, it also has disadvantage on attack rolls against the brain until the end of the brain's next turn." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The brain magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 14} Intelligence saving throw or take 17 ({@damage 3d8 + 4}) psychic damage and be {@condition stunned} 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." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "Y" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "paralyzed", + "prone", + "unconscious" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Carrion Stalker", + "source": "VRGR", + "page": 230, + "size": [ + "T" + ], + "type": "monstrosity", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 35, + "formula": "10d4 + 10" + }, + "speed": { + "walk": 30, + "burrow": 30 + }, + "str": 6, + "dex": 16, + "con": 12, + "int": 2, + "wis": 13, + "cha": 6, + "skill": { + "stealth": "+7" + }, + "senses": [ + "tremorsense 60 ft." + ], + "passive": 11, + "conditionImmune": [ + "blinded" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The carrion stalker makes three Tentacle attacks. If it is attached to a creature, it can replace one Tentacle attack with Larval Burst, if available." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the carrion stalker attaches to the target and pulls itself into the target's space. While attached, the carrion stalker moves with the target and has advantage on attack rolls against it.", + "A creature can use its action to try to detach the carrion stalker and force it to move into the nearest unoccupied space, doing so with a successful {@dc 11} Strength check. On its turn, the carrion stalker can detach itself from the target by using 5 feet of movement. When it dies, the carrion stalker detaches from any creature it is attached to." + ] + }, + { + "name": "Larval Burst (1/Day)", + "entries": [ + "The carrion stalker releases a burst of larvae in a 10-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned}. A creature {@condition poisoned} in this way takes 7 ({@damage 2d6}) poison damage at the start of each of its turns as larvae infest its body. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Any effect that cures disease or removes the {@condition poisoned} condition instantly kills the larvae in the creature, ending the effect on it.", + "If a creature is reduced to 0 hit points by the infestation, it dies. The larvae remain in the corpse, and one survives to become a fully grown carrion stalker in {@dice 1d4} weeks. Any effect that cures diseases or removes the {@condition poisoned} condition that targets the corpse instantly kills the larvae." + ] + } + ], + "senseTags": [ + "T" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "DIS", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Carrionette", + "source": "VRGR", + "page": 231, + "size": [ + "S" + ], + "type": "construct", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 8, + "wis": 14, + "cha": 14, + "passive": 12, + "resist": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands the languages of its creator" + ], + "cr": "1", + "trait": [ + { + "name": "False Object", + "entries": [ + "If the carrionette is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the carrionette move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the carrionette is animate." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The carrionette doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Silver Needle", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}1 piercing damage plus 3 ({@damage 1d6}) necrotic damage, and the target must succeed on a {@dc 12} Charisma saving throw or become cursed for 1 minute. While cursed in this way, the target's speed is reduced by 10 feet, and it must roll a {@dice 1d4} and subtract the number rolled from each ability check or attack roll it makes." + ] + }, + { + "name": "Soul Swap", + "entries": [ + "The carrionette targets a creature it can see within 15 feet of it that is cursed by its Silver Needle. Unless the target is protected by a {@spell protection from evil and good} spell, it must succeed on a {@dc 12} Charisma saving throw or have its consciousness swapped with the carrionette. The carrionette gains control of the target's body, and the target is {@condition unconscious} for 1 hour, after which it gains control of the carrionette's body. While controlling the target's body, the carrionette retains its Intelligence, Wisdom, and Charisma scores. It otherwise uses the controlled body's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "If the carrionette's body is destroyed, both the carrionette and the target die. A {@spell protection from evil and good} spell cast on the controlled body drives the carrionette out and returns the consciousness of both creatures to their original bodies. The swap is also undone if the controlled body takes damage from the carrionette's Silver Needle." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death's Head", + "source": "VRGR", + "page": 232, + "size": [ + "T" + ], + "type": "undead", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 17, + "formula": "5d4 + 5" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 8, + "dex": 13, + "con": 12, + "int": 5, + "wis": 14, + "cha": 3, + "passive": 12, + "resist": [ + "necrotic" + ], + "cr": "1/2", + "trait": [ + { + "name": "Beheaded Form", + "entries": [ + "When created, a death's head takes one of three forms: Aberrant Head, Gnashing Head, or Petrifying Head. This form determines the creature's attack." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The death's head doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Gnashing Bite (Gnashing Head Only)", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Mind-Bending Bite (Aberrant Head Only)", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 5 ({@damage 1d10}) necrotic damage, and the target must succeed on a {@dc 10} Intelligence saving throw or it can't take a reaction until the end of its next turn. Moreover, on its next turn, the target must choose whether it gets a move, an action, or a bonus action; it gets only one of the three." + ] + }, + { + "name": "Petrifying Bite (Petrifying Head Only)", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition restrained} as it begins to turn to stone. The target must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the target is {@condition petrified} for 10 minutes." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dullahan", + "source": "VRGR", + "page": 233, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 16, + "int": 11, + "wis": 15, + "cha": 16, + "save": { + "con": "+7" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "resist": [ + "cold", + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "10", + "trait": [ + { + "name": "Headless Summoning (Recharges after a Short or Long Rest)", + "entries": [ + "If the dullahan is reduced to 0 hit points, it doesn't die or fall {@condition unconscious}. Instead, it regains 97 hit points. In addition, it summons three {@creature death's head|VRGR|death's heads}, one of each type, in unoccupied spaces within 5 feet of it. The death's heads are under the dullahan's control and act immediately after the dullahan in the initiative order. Additionally, the dullahan can now use the options in the \"Mythic Actions\" section. Award a party an additional 5,900 XP (11,800 XP total) for defeating the dullahan after it uses Headless Summoning." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the dullahan fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The dullahan doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dullahan makes two attacks." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands, plus 11 ({@damage 2d10}) necrotic damage. If the dullahan scores a critical hit against a creature, the target must succeed on a {@dc 15} Constitution saving throw or the dullahan cuts off the target's head. The target dies if it can't survive without the lost head. A creature that doesn't have or need a head, or has legendary actions, instead takes an extra 27 ({@damage 6d8}) slashing damage." + ] + }, + { + "name": "Fiery Skull", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) fire damage." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The dullahan makes one attack." + ] + }, + { + "name": "Frightful Presence (Costs 2 Actions)", + "entries": [ + "Each creature of the dullahan's choice within 30 feet of it must succeed on a {@dc 15} Wisdom saving throw or become {@condition frightened} of the dullahan until the end of its next turn." + ] + }, + { + "name": "Head Hunt (Costs 3 Actions)", + "entries": [ + "The dullahan moves up to its speed without provoking opportunity attacks and makes one Battleaxe attack with advantage. If the attack hits, but is not a critical hit, the attack deals an extra 27 ({@damage 6d8}) necrotic damage." + ] + } + ], + "mythicHeader": [ + "If the dullahan's Headless Summoning trait is active, it can use the options below as legendary actions." + ], + "mythic": [ + { + "name": "Coordinated Assault", + "entries": [ + "The dullahan makes a Battleaxe attack, and then one {@creature death's head|VRGR} the dullahan can see within 30 feet of it can use its reaction to make a melee attack." + ] + }, + { + "name": "Headless Wail (Costs 2 Actions)", + "entries": [ + "An echoing shriek issues from the dullahan's headless stump. Each creature of the dullahan's choice within 10 feet of it must make a {@dc 15} Wisdom saving throw. Each creature takes 16 ({@damage 3d10}) psychic damage on a failed save, or half as much damage on a successful one. If one or more creatures fail the saving throw, the dullahan gains 10 temporary hit points." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "F", + "N", + "S", + "Y" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elise", + "isNamedCreature": true, + "source": "VRGR", + "page": 143, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 9 + ], + "hp": { + "average": 93, + "formula": "11d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 9, + "con": 18, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "cold", + "lightning", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "Elise is immune to any spell or effect that would alter her form." + ] + }, + { + "name": "Lightning Absorption", + "entries": [ + "Whenever Elise is subjected to lightning damage, she takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Elise has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "Elise's weapon attacks are magical." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Elise makes two slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gallows Speaker", + "source": "VRGR", + "page": 234, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + 12 + ], + "hp": { + "average": 85, + "formula": "19d8" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 10, + "wis": 12, + "cha": 18, + "save": { + "wis": "+4" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 17, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "any languages its component spirits knew in life" + ], + "cr": "6", + "trait": [ + { + "name": "Divination Senses", + "entries": [ + "The gallows speaker can see 60 feet into the Ethereal Plane when it is on the Material Plane and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The gallows speaker can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends it turn inside an object." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The gallows speaker doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Foretelling Touch", + "entries": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage, and the target must roll a {@dice d4} and subtract the number rolled from the next attack roll or saving throw it makes before the start of the gallows speaker's next turn." + ] + }, + { + "name": "Suffering Echoes", + "entries": [ + "The gallows speaker targets a creature it can see within 30 feet of it. The target must make a {@dc 15} Wisdom saving throw. On a failed save, the target takes 19 ({@damage 3d12}) psychic damage, and waves of painful memories leap from the target to up to three other creatures of the gallows speaker's choice that are within 30 feet of the target, each of which takes 13 ({@damage 3d8}) psychic damage." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "O", + "Y" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Greater Star Spawn Emissary", + "source": "VRGR", + "page": 245, + "size": [ + "H" + ], + "type": "aberration", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 290, + "formula": "20d12 + 160" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 24, + "dex": 13, + "con": 26, + "int": 27, + "wis": 22, + "cha": 25, + "save": { + "con": "+15", + "int": "+15", + "wis": "+13", + "cha": "+14" + }, + "skill": { + "arcana": "+22", + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "acid", + "force", + "necrotic", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "all", + "telepathy 1,000 ft." + ], + "cr": "21", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the emissary fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The emissary doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The emissary makes three attacks." + ] + }, + { + "name": "Lashing Maw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 7}) piercing damage plus 13 ({@damage 3d8}) acid damage." + ] + }, + { + "name": "Psychic Orb", + "entries": [ + "{@atk rs} {@hit 15} to hit, range 120 ft., one creature. {@h}27 ({@damage 3d12 + 8}) psychic damage." + ] + }, + { + "name": "Unearthly Bile {@recharge 5}", + "entries": [ + "The emissary expels bile that splashes all creatures in a 30-foot-radius sphere centered on a point within 120 feet of the emissary. Each creature in that area must make a {@dc 23} Dexterity saving throw, taking 55 ({@damage 10d10}) acid damage on a failed save, or half as much damage on a successful one. For each creature that fails the saving throw, a {@creature gibbering mouther} (see its entry in the Monster Manual) appears in an unoccupied space on a surface that can support it within 30 feet of that creature. The gibbering mouthers act right after the emissary on the same initiative count, gaining a +7 bonus to their attack and damage rolls, and fighting until they are destroyed. They disappear when the emissary dies." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The emissary teleports up to 30 feet to an unoccupied space it can see and makes one attack." + ] + }, + { + "name": "Warp Space (Costs 2 Actions)", + "entries": [ + "The emissary causes the ground in a 20-foot square that it can see within 90 feet of it to turn into teeth and maws until the start of its next turn. The area becomes {@quickref difficult terrain||3} for the duration. Any creature takes 10 ({@damage 3d6}) piercing damage for each 5 feet it moves on this terrain." + ] + }, + { + "name": "Mind Cloud (Costs 3 Actions)", + "entries": [ + "The emissary unleashes a psychic wave. Each creature within 30 feet of the emissary must succeed on a {@dc 23} Wisdom saving throw or take 32 ({@damage 5d12}) psychic damage. In addition, every spell ends on creatures and objects of the emissary's choice in that area." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gremishka", + "source": "VRGR", + "page": 235, + "size": [ + "T" + ], + "type": "monstrosity", + "ac": [ + 12 + ], + "hp": { + "average": 10, + "formula": "4d4" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 14, + "con": 10, + "int": 12, + "wis": 11, + "cha": 4, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "languages": [ + "understands Common but can't speak" + ], + "cr": "1/8", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4 + 2}) piercing damage plus 3 ({@damage 1d6}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Magic Allergy (1/Day)", + "entries": [ + "Immediately after a creature within 30 feet of the gremishka casts a spell, the gremishka can spontaneously react to the magic. Roll a {@dice d6} to determine the effect:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-2", + "entry": "The gremishka emanates magical energy. Each creature within 30 feet of the gremishka must succeed on a {@dc 10} Constitution saving throw or take 3 ({@damage 1d6}) force damage." + }, + { + "type": "item", + "name": "3-4", + "entry": "The gremishka surges with magical energy and regains 3 ({@dice 1d6}) hit points." + }, + { + "type": "item", + "name": "5-6", + "entry": "The gremishka explodes and dies, and one swarm of gremishkas instantly appears in the space where this gremishka died. The swarm uses the gremishka's initiative." + } + ] + } + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "O", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Inquisitor of the Mind Fire", + "source": "VRGR", + "page": 248, + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 77, + "formula": "14d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 17, + "wis": 16, + "cha": 19, + "save": { + "int": "+6", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "insight": "+6", + "perception": "+6" + }, + "senses": [ + "truesight 30 ft." + ], + "passive": 16, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "any three languages", + "telepathy 120 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The inquisitor casts one of the following spells, requiring no components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell arcane eye}", + "{@spell calm emotions}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell sending}", + "{@spell suggestion}" + ], + "daily": { + "1e": [ + "{@spell mass suggestion}", + "{@spell modify memory}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The inquisitor attacks twice with its Silver Longsword or uses Mind Fire twice." + ] + }, + { + "name": "Silver Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@dice 1d10 + 4}) if used with two hands, plus 18 ({@damage 4d8}) force damage." + ] + }, + { + "name": "Mind Fire", + "entries": [ + "The inquisitor targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 15} Intelligence saving throw or take 17 ({@damage 3d8 + 4}) psychic damage and be {@condition stunned} until the start of the inquisitor's next turn." + ] + }, + { + "name": "Inquisitor's Command {@recharge 5}", + "entries": [ + "Each creature of the inquisitor's choice that it can see within 60 feet of it must succeed on a {@dc 15} Wisdom saving throw or be {@condition charmed} until the start of the inquisitor's next turn. On the {@condition charmed} target's turn, the inquisitor can telepathically control the target's move, action, or both. When controlled in this way, the target can take only the Attack (inquisitor chooses the target) or Dash action." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "O", + "S", + "Y" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed", + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Inquisitor of the Sword", + "source": "VRGR", + "page": 249, + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 14, + "int": 15, + "wis": 18, + "cha": 16, + "save": { + "int": "+5", + "wis": "+7", + "cha": "+6" + }, + "skill": { + "acrobatics": "+5", + "athletics": "+4", + "insight": "+7", + "perception": "+7" + }, + "senses": [ + "truesight 30 ft." + ], + "passive": 17, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "any two languages", + "telepathy 120 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The inquisitor casts one of the following spells, requiring no components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell sending}" + ], + "daily": { + "1e": [ + "{@spell dimension door}", + "{@spell fly}", + "{@spell greater invisibility}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Metabolic Control", + "entries": [ + "At the start of each of its turns, the inquisitor regains 10 hit points and can end one condition on itself, provided the inquisitor has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The inquisitor attacks twice with its Silver Longsword. After it hits or misses with an attack, the inquisitor can teleport up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Silver Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) if used with two hands, plus 18 ({@damage 4d8}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Blink Step", + "entries": [ + "The inquisitor teleports up to 60 feet to an unoccupied space it can see." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "O", + "S" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Inquisitor of the Tome", + "source": "VRGR", + "page": 249, + "otherSources": [ + { + "source": "VEoR" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + 11 + ], + "hp": { + "average": 77, + "formula": "14d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 12, + "int": 19, + "wis": 16, + "cha": 15, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+5" + }, + "skill": { + "arcana": "+10", + "history": "+7", + "nature": "+7", + "religion": "+10" + }, + "senses": [ + "truesight 30 ft." + ], + "passive": 13, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "any four languages", + "telepathy 120 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The inquisitor casts one of the following spells, requiring no components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell levitate}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell sending}" + ], + "daily": { + "1e": [ + "{@spell Otiluke's resilient sphere}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The inquisitor attacks twice." + ] + }, + { + "name": "Force Bolt", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}22 ({@damage 4d8 + 4}) force damage, and if the target is a Large or smaller creature, the inquisitor can push it up to 10 feet away." + ] + }, + { + "name": "Silver Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) if used with two hands, plus 18 ({@damage 4d8}) force damage." + ] + }, + { + "name": "Implode {@recharge 4}", + "entries": [ + "Each creature in a 20-foot-radius sphere centered on a point the inquisitor can see within 120 feet of it must succeed on a {@dc 15} Constitution saving throw or take 31 ({@damage 6d8 + 4}) force damage and be knocked {@condition prone} and moved to the unoccupied space closest to the sphere's center. Large and smaller objects that aren't being worn or carried in the sphere automatically take the damage and are similarly moved." + ] + } + ], + "reaction": [ + { + "name": "Telekinetic Deflection", + "entries": [ + "In response to being hit by an attack roll, the inquisitor increases its AC by 4 against the attack. If this causes the attack to miss, the attacker is hit by the attack instead." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "O", + "S" + ], + "spellcastingTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Isolde", + "isNamedCreature": true, + "source": "VRGR", + "page": 86, + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "elf" + ] + }, + "alignment": [ + "L", + "NX", + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item scale mail|PHB}" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 18, + "dex": 18, + "con": 16, + "int": 14, + "wis": 12, + "cha": 16, + "save": { + "str": "+7", + "con": "+6", + "int": "+5", + "cha": "+6" + }, + "skill": { + "deception": "+6", + "intimidation": "+6", + "perception": "+4", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Isolde's spellcasting ability is Charisma (spell save {@dc 14}). Isolde can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ], + "3e": [ + "{@spell alter self}", + "{@spell command}", + "{@spell detect magic}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fiendish Blessing", + "entries": [ + "The AC of Isolde includes her Charisma bonus." + ] + }, + { + "name": "Magic Resistance Aura", + "entries": [ + "While holding {@item Nepenthe|VRGR}, Isolde creates an aura in a 10-foot radius around her. While this aura is active, Isolde and all creatures friendly to her in the aura have advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Isolde makes two melee attacks or uses its Fire Ray twice." + ] + }, + { + "name": "Nepenthe", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft.., one target. {@h}11 ({@damage 1d8 + 7}) slashing damage, or 12 ({@damage 1d10 + 7}) slashing damage if used with two hands to make a melee attack. If the target is a fiend or an undead, it takes an extra 11 ({@damage 2d10}) radiant damage." + ] + }, + { + "name": "Fire Ray", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}10 ({@damage 3d6}) fire damage." + ] + }, + { + "name": "Fiendish Charm", + "entries": [ + "One humanoid Isolde can see within 30 feet of it must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys Isolde's spoken commands. If the target suffers any harm from Isolde or another creature or receives a suicidal command from Isolde, the target can repeat the saving throw, ending the effect on itself on a success. If a target's saving throw is successful, or if the effect ends for it, the creature is immune to Isolde's Fiendish Charm for the next 24 hours." + ] + } + ], + "attachedItems": [ + "nepenthe|vrgr" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I" + ], + "damageTags": [ + "F", + "R", + "S" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jiangshi", + "source": "VRGR", + "page": 236, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 3, + "con": 18, + "int": 17, + "wis": 14, + "cha": 12, + "save": { + "con": "+8", + "int": "+7", + "wis": "+6", + "cha": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "any languages it knew in life" + ], + "cr": "9", + "trait": [ + { + "name": "Jiangshi Weaknesses", + "entries": [ + "The jiangshi has the following flaws:", + "{@i Fear of Its Own Reflection.} If the jiangshi sees its own reflection, it immediately uses its reaction, if available, to move as far away from the reflection as possible.", + "{@i Susceptible to Holy Symbols.} While the jiangshi is wearing or touching a holy symbol, it automatically fails saving throws against effects that turn Undead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The jiangshi doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The jiangshi makes three Slam attacks and uses Consume Energy." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Consume Energy", + "entries": [ + "The jiangshi draws energy from a creature it can see within 30 feet of it. The target makes a {@dc 16} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one. The jiangshi regains hit points equal to the amount of necrotic damage dealt. After regaining hit points from this action, the jiangshi gains the following benefits for 7 days: its walking speed increases to 40 feet, and it gains a flying speed equal to its walking speed and can hover.", + "A Humanoid slain by this necrotic damage rises as a wight (see its entry in the Monster Manual) at the end of the jiangshi's turn. The wight acts immediately after the jiangshi in the initiative order. If this wight slays a Humanoid with its Life Drain, the wight transforms into a jiangshi 5 days later." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The jiangshi polymorphs into a Beast, a Humanoid, or an Undead that is Medium or Small or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying is absorbed or borne by the new form (the jiangshi's choice). It reverts to its true form if it dies." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lesser Star Spawn Emissary", + "source": "VRGR", + "page": 245, + "size": [ + "M" + ], + "type": "aberration", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 241, + "formula": "21d8 + 147" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 21, + "dex": 18, + "con": 24, + "int": 25, + "wis": 20, + "cha": 23, + "save": { + "int": "+13", + "wis": "+11", + "cha": "+12" + }, + "skill": { + "arcana": "+19", + "deception": "+18", + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "acid", + "force", + "necrotic", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "all", + "telepathy 1,000 ft." + ], + "cr": "19", + "trait": [ + { + "name": "Aberrant Rejuvenation", + "entries": [ + "When the emissary drops to 0 hit points, its body melts away. A greater star spawn emissary instantly appears in an unoccupied space within 60 feet of where the lesser emissary disappeared. The greater emissary uses the lesser emissary's initiative count." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the emissary fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The emissary doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The emissary makes three attacks." + ] + }, + { + "name": "Lashing Maw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 13 ({@damage 3d8}) acid damage." + ] + }, + { + "name": "Psychic Orb", + "entries": [ + "{@atk rs} {@hit 13} to hit, range 120 ft., one creature. {@h}18 ({@damage 2d10 + 7}) psychic damage." + ] + }, + { + "name": "Change Shape", + "entries": [ + "The emissary polymorphs into a Small or Medium creature of its choice or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ] + } + ], + "legendary": [ + { + "name": "Psychic Orb", + "entries": [ + "The emissary makes a Psychic Orb attack." + ] + }, + { + "name": "Teleportation Maw (Costs 2 Actions)", + "entries": [ + "The emissary teleports to an unoccupied space it can see within 30 feet of it and can make a Lashing Maw attack." + ] + }, + { + "name": "Psychic Lash (Costs 3 Actions)", + "entries": [ + "The emissary targets a creature it can see within 30 feet of it and psychically lashes at that creature's mind. The target must succeed on a {@dc 21} Wisdom saving throw or take 36 ({@damage 8d8}) psychic damage and be {@condition stunned} until the start of its next turn." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Unusual Nature" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "P", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Loup Garou", + "group": [ + "Lycanthropes" + ], + "source": "VRGR", + "page": 237, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(40 ft. in hybrid form, 50 ft. in dire wolf form)" + } + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 14, + "wis": 16, + "cha": 16, + "save": { + "dex": "+9", + "con": "+9", + "cha": "+8" + }, + "skill": { + "perception": "+13", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 23, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common (can't speak in wolf form)" + ], + "cr": "13", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The loup garou has advantage on attack rolls against a creature that doesn't have all its hit points." + ] + }, + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "When the loup garou fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The loup garou regains 10 hit points at the start of each of its turns. If the loup garou takes damage from a silver weapon, this trait doesn't function at the start of the loup garou's next turn. The loup garou dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The loup garou makes two attacks: two with its Longsword (humanoid form) or one with its Bite and one with its Claws (dire wolf or hybrid form)." + ] + }, + { + "name": "Bite (Dire Wolf or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 14 ({@damage 4d6}) necrotic damage. If the target is a Humanoid, it must succeed on a {@dc 17} Constitution saving throw or be cursed with loup garou lycanthropy." + ] + }, + { + "name": "Claws (Dire Wolf or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Longsword (Humanoid Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The loup garou polymorphs into a Large wolf-humanoid hybrid or into a Large dire wolf, or back into its true form, which appears humanoid. Its statistics, other than its size and speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + ], + "legendary": [ + { + "name": "Swipe", + "entries": [ + "The loup garou makes one Claws attack (dire wolf or hybrid form only) or one Longsword attack (humanoid form only)." + ] + }, + { + "name": "Mauling Pounce (Costs 2 Actions)", + "entries": [ + "The loup garou moves up to its speed without provoking opportunity attacks, and it can make one Claws attack (dire wolf or hybrid form only) or one Longsword attack (humanoid form only) against each creature it moves past." + ] + }, + { + "name": "Bite (Costs 3 Actions)", + "entries": [ + "The loup garou changes into hybrid or dire wolf form and then makes one Bite attack." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Necrichor", + "source": "VRGR", + "page": 238, + "otherSources": [ + { + "source": "AATM" + } + ], + "size": [ + "M" + ], + "type": "undead", + "ac": [ + 12 + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 8, + "dex": 15, + "con": 17, + "int": 17, + "wis": 13, + "cha": 10, + "save": { + "con": "+6", + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+9" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 11, + "resist": [ + "acid", + "necrotic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "any three languages", + "telepathy 120 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the necrichor fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "Unless its lifeless remains are splashed with holy water or placed in a vessel under the effects of the {@spell hallow} spell, the destroyed necrichor re-forms in {@dice 1d10} days, regaining all its hits points and appearing in the place it died or in the nearest unoccupied space." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The necrichor can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The necrichor doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The necrichor makes two attacks." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) necrotic damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} until the start of the necrichor's next turn." + ] + }, + { + "name": "Necrotic Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}12 ({@damage 2d8 + 3}) necrotic damage, and the target can't regain hit points until the start of the necrichor's next turn." + ] + }, + { + "name": "Blood Puppeteering {@recharge}", + "entries": [ + "The necrichor targets a creature it can see within 5 feet of it that is missing any of its hit points. If the target isn't a Construct or an Undead, it must succeed on a {@dc 14} Constitution saving throw or the necrichor enters the target's space and attaches itself to the target for 1 minute. While attached, the necrichor takes only half damage dealt to it (round down), and the target takes the remaining damage. The necrichor can attach to only one creature at a time.", + "The attached necrichor can telepathically control the target's move, action, or both. When controlled this way, the target can take only the Attack action (necrichor chooses the target) or the Dash action. The attached target can repeat the saving throw at the end of each of its turns, detaching from the necrichor and forcing it to move into the nearest unoccupied space on a success." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Rejuvenation", + "Spider Climb", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nosferatu", + "source": "VRGR", + "page": 239, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "9d8 + 45" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 18, + "con": 21, + "int": 6, + "wis": 17, + "cha": 14, + "save": { + "dex": "+7", + "con": "+8", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "the languages it knew in life" + ], + "cr": "8", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The nosferatu regains 10 hit points at the start of each of its turns if it has at least 1 hit point and isn't in sunlight. If the nosferatu takes radiant damage, this trait doesn't function until the start of the nosferatu's next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The nosferatu can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "The nosferatu takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The nosferatu doesn't require air." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nosferatu makes two Claw attacks followed by one Bite attack. If both Claw attacks hit the same creature, the Bite attack is made with advantage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. If the target is missing any of its hit points, it instead takes 11 ({@damage 2d10}) necrotic damage.", + "The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the nosferatu regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A Humanoid slain in this way and then buried in the ground rises as a nosferatu after {@dice 1d10} days." + ] + }, + { + "name": "Blood Disgorge {@recharge 5}", + "entries": [ + "The nosferatu vomits blood in a 15-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) necrotic damage, and it can't regain hit points for 1 minute. On a successful save, the creature takes half as much damage with no additional effects." + ] + } + ], + "traitTags": [ + "Regeneration", + "Spider Climb", + "Sunlight Sensitivity", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "LF" + ], + "damageTags": [ + "N", + "P", + "R", + "S" + ], + "miscTags": [ + "AOE", + "HPR", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Podling", + "source": "VRGR", + "page": 227, + "size": [ + "M" + ], + "type": "plant", + "ac": [ + 10 + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 20 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 10, + "senses": [ + "blindsight 30 ft." + ], + "passive": 10, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Deep Speech", + "the languages the creature knew in life" + ], + "cr": "1/2", + "trait": [ + { + "name": "Semblance of Life", + "entries": [ + "The podling is a physical copy of a creature digested by a bodytaker plant. The podling has the digested creature's memories and behaves like that creature, but with occasional lapses. An observer familiar with the digested creature can recognize the discrepancies with a successful {@dc 20} Wisdom ({@skill Insight}) check, or automatically if the podling does something in direct contradiction to the digested creature's established beliefs or behavior. The podling melts into a slurry when it dies, when the bodytaker plant that created it dies, or when the bodytaker plant dismisses it (no action required)." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The podling doesn't require sleep." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "DS", + "LF" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Priest of Osybus", + "source": "VRGR", + "page": 241, + "otherSources": [ + { + "source": "VEoR" + } + ], + "size": [ + "M" + ], + "type": "humanoid", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 16, + "int": 18, + "wis": 17, + "cha": 11, + "save": { + "int": "+7", + "wis": "+6", + "cha": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "any three languages" + ], + "cr": "6", + "trait": [ + { + "name": "Tattoo of Osybus", + "entries": [ + "If the priest drops to 0 hit points, roll on the Boons of Undeath table for the boon the priest receives. The priest dies if it receives a boon it already has. If it receives a new boon, it revives at the start of its next turn with half its hit points restored, and its creature type is now Undead.", + "To prevent this revival, the Tattoo of Osybus on the priest's body must be destroyed. The tattoo is invulnerable while the priest has at least 1 hit point. The tattoo is otherwise an object with AC 15, and it is immune to poison and psychic damage. It has 15 hit points, but it regains all its hit points at the end of every combatant's turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The priest attacks twice." + ] + }, + { + "name": "Soul Blade", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage, and if the target is a creature, it is {@condition paralyzed} until the start of the priest's next turn. If this damage reduces a Medium or smaller creature to 0 hit points, the creature dies, and its soul is trapped in the priest's body, manifesting as a shadowy Soul Tattoo on the priest. The soul is freed if the priest dies." + ] + }, + { + "name": "Necrotic Bolt", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) necrotic damage, and the target can't regain hit points until the start of the priest's next turn." + ] + } + ], + "bonus": [ + { + "name": "Soul Tattoo {@recharge 5}", + "entries": [ + "The priest touches one of the Soul Tattoos on its body. The tattoo vanishes as the trapped soul manifests as a shadowy creature that appears in an unoccupied space the priest can see within 30 feet of it. The creature has the size and silhouette of its original body, but it otherwise uses the stat block of a shadow.", + "The shadow obeys the priest's mental commands (no action required) and takes its turn immediately after the priest. If the creature is within 5 feet of the priest, it can turn back into a tattoo as an action, reappearing on the priest's flesh and regaining all its hit points." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Boons of Undeath", + "entries": [ + "When a priest of Osybus drops to 0 hit points, the priest might revive with a benefit from the Boons of Undeath table. You can give a priest one or more of these boons of your choice before the priest faces adventurers. If you do so, the priest is Undead, rather than Humanoid, and a priest can receive each boon only once.", + { + "type": "table", + "caption": "Boons of Undeath", + "colLabels": [ + "d6", + "Boon" + ], + "colStyles": [ + "col-1 text-center", + "col-11" + ], + "rows": [ + [ + "1", + { + "type": "entries", + "name": "Dread", + "entries": [ + "Eerie whispers can now be heard around the priest. Any non-Undead creature that starts its turn within 30 feet of the priest must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of the priest until the start of the creature's next turn." + ] + } + ], + [ + "2", + { + "type": "entries", + "name": "Ectoplasmic", + "entries": [ + "An otherworldly slime drips off the priest and fades away moments later, leaving a greenish stain. When any creature starts its turn within 10 feet of the priest, the priest can reduce that creature's speed by 10 feet until the start of the creature's next turn, until which the creature is covered by ectoplasm. In addition, as an action, the priest can use the slime to make itself look and feel like any creature that is Medium or Small, while retaining its game statistics. This transformation lasts for 8 hours or until the priest drops to 0 hit points." + ] + } + ], + [ + "3", + { + "type": "entries", + "name": "Vampiric", + "entries": [ + "When the priest deals necrotic damage to any creature, the priest gains a number of temporary hit points equal to half that necrotic damage. The priest's speed also increases by 10 feet." + ] + } + ], + [ + "4", + { + "type": "entries", + "name": "Blazing", + "entries": [ + "The priest sloughs off its flesh, and its skeleton crumbles away, leaving only its skull. Its stat block is replaced by that of a {@creature flameskull}, but it retains its Tattoo of Osybus trait, and all fire damage it deals becomes necrotic damage. The Tattoo of Osybus now appears carved into the skull's forehead." + ] + } + ], + [ + "5", + { + "type": "entries", + "name": "Spectral", + "entries": [ + "The priest now appears wraithlike, and its challenge rating increases by 1. It gains resistance to all damage but force, radiant, and psychic, and it is vulnerable to radiant damage. It can also move through creatures and objects as if they were {@quickref difficult terrain||3}, but it takes 5 ({@damage 1d10}) force damage if it ends its turn inside a creature or an object." + ] + } + ], + [ + "6", + { + "type": "entries", + "name": "Deathly", + "entries": [ + "The priest's visage becomes bone white, and its challenge rating increases by 1. It can cast {@spell animate dead} and {@spell create undead} once per day each, using Intelligence as the spellcasting ability, and it gains the following action:", + { + "type": "entries", + "name": "Circle of Death (Spell; {@recharge 5|m})", + "entries": [ + "Each creature in a 60-foot-radius sphere centered on a point the priest can see within 150 feet of it must make a {@dc 15} Constitution saving throw, taking 28 ({@damage 8d6}) necrotic damage on a failed save, or half as much damage on a successful one.)" + ] + } + ] + } + ] + ] + } + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "X" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Priest of Osybus (Blazing Boon)", + "source": "VRGR", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Blazing Boon", + "entries": [ + "The priest sloughs off its flesh, and its skeleton crumbles away, leaving only its skull. Its stat block is replaced by that of a {@creature flameskull}, but it retains its Tattoo of Osybus trait, and all fire damage it deals becomes necrotic damage. The Tattoo of Osybus now appears carved into the skull's forehead." + ] + } + } + }, + "type": "undead", + "variant": null + }, + { + "name": "Priest of Osybus (Deathly Boon)", + "source": "VRGR", + "_mod": { + "action": { + "mode": "appendArr", + "items": { + "name": "Circle of Death (Spell; {@recharge 5|m})", + "entries": [ + "Each creature in a 60-foot-radius sphere centered on a point the priest can see within 150 feet of it must make a {@dc 15} Constitution saving throw, taking 28 ({@damage 8d6}) necrotic damage on a failed save, or half as much damage on a successful one.)" + ] + } + } + }, + "type": "undead", + "cr": "7", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "headerEntries": [ + "The priest casts one of the following spells, requiring no components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + { + "entry": "{@spell circle of death}", + "hidden": true + } + ], + "daily": { + "1e": [ + "{@spell animate dead}", + "{@spell create undead}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "variant": null + }, + { + "name": "Priest of Osybus (Dread Boon)", + "source": "VRGR", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Dread Boon", + "entries": [ + "Eerie whispers can now be heard around the priest. Any non-Undead creature that starts its turn within 30 feet of the priest must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of the priest until the start of the creature's next turn." + ] + } + } + }, + "type": "undead", + "variant": null + }, + { + "name": "Priest of Osybus (Ectoplasmic Boon)", + "source": "VRGR", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Ectoplasmic Boon", + "entries": [ + "An otherworldly slime drips off the priest and fades away moments later, leaving a greenish stain. When any creature starts its turn within 10 feet of the priest, the priest can reduce that creature's speed by 10 feet until the start of the creature's next turn, until which the creature is covered by ectoplasm. In addition, as an action, the priest can use the slime to make itself look and feel like any creature that is Medium or Small, while retaining its game statistics. This transformation lasts for 8 hours or until the priest drops to 0 hit points." + ] + } + } + }, + "type": "undead", + "variant": null + }, + { + "name": "Priest of Osybus (Spectral Boon)", + "source": "VRGR", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Spectral Boon", + "entries": [ + "The priest now appears wraithlike, and its challenge rating increases by 1. It gains resistance to all damage but force, radiant, and psychic, and it is vulnerable to radiant damage. It can also move through creatures and objects as if they were {@quickref difficult terrain||3}, but it takes 5 ({@damage 1d10}) force damage if it ends its turn inside a creature or an object." + ] + } + } + }, + "type": "undead", + "variant": null + }, + { + "name": "Priest of Osybus (Vampiric Boon)", + "source": "VRGR", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Vampiric Boon", + "entries": [ + "When the priest deals necrotic damage to any creature, the priest gains a number of temporary hit points equal to half that necrotic damage. The priest's speed also increases by 10 feet." + ] + } + } + }, + "type": "undead", + "variant": null + } + ] + }, + { + "name": "Relentless Juggernaut", + "source": "VRGR", + "page": 243, + "size": [ + "L" + ], + "type": "fiend", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "14d10 + 84" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 12, + "con": 22, + "int": 8, + "wis": 15, + "cha": 16, + "save": { + "dex": "+5", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "perception": "+6", + "survival": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "understands all languages but can't speak" + ], + "cr": "12", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the juggernaut fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The juggernaut regains 20 hit points at the start of its turn. If the juggernaut takes radiant damage, this trait doesn't function at the start of its next turn. The juggernaut dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The juggernaut doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The juggernaut makes two attacks. It can replace one attack with Deadly Shaping if it is ready." + ] + }, + { + "name": "Executioner's Pick", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage, and if the target is a creature, its speed is reduced by 10 feet until the start of the juggernaut's next turn." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) bludgeoning damage, and if the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Deadly Shaping {@recharge 5}", + "entries": [ + "The juggernaut magically shapes a feature of its surroundings into a deadly implement. A creature the juggernaut can see within 60 feet of it must make a {@dc 18} Dexterity saving throw. If the saving throw fails, the targeted creature is struck by one of the following (juggernaut's choice):" + ] + }, + { + "name": "Flying Stone", + "entries": [ + "The target takes 22 ({@damage 5d8}) bludgeoning damage and is {@condition incapacitated} until the start of the juggernaut's next turn, and the implement vanishes." + ] + }, + { + "name": "Scything Shrapnel", + "entries": [ + "The target takes 14 ({@damage 4d6}) slashing damage, and the implement vanishes. At the start of each of its turns, the target takes 10 ({@damage 3d6}) necrotic damage from the wound left by the shrapnel. The wound ends if the target regains any hit points or if a creature uses an action to stanch the wound, which requires a successful {@dc 15} Wisdom ({@skill Medicine}) check." + ] + } + ], + "legendary": [ + { + "name": "Implacable Advance", + "entries": [ + "The juggernaut moves up to its speed, ignoring {@quickref difficult terrain||3}. Any object in its path takes 55 ({@damage 10d10}) bludgeoning damage if it isn't being worn or carried." + ] + }, + { + "name": "Rapid Shaping (Costs 3 Actions)", + "entries": [ + "The juggernaut recharges Deadly Shaping and uses it." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "B", + "N", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Relentless Slasher", + "source": "VRGR", + "page": 242, + "size": [ + "M" + ], + "type": "fiend", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 18, + "con": 14, + "int": 14, + "wis": 15, + "cha": 16, + "save": { + "str": "+4", + "dex": "+7", + "con": "+5", + "wis": "+5" + }, + "skill": { + "athletics": "+7", + "perception": "+5", + "survival": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "understands all languages but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If the slasher fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Shrouded Presence", + "entries": [ + "The slasher is immune to any effect that would sense its emotions or read its thoughts, and it can't be detected by abilities that sense Fiends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The slasher makes two Slasher's Knife attacks." + ] + }, + { + "name": "Slasher's Knife", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it suffers a lingering wound that causes it to take 7 ({@damage 2d6}) necrotic damage at the start of each of its turns. Each time the slasher hits the wounded target with this attack, the damage dealt by the wound increases by 3 ({@damage 1d6}). The wound ends if the target regains hit points or if a creature uses an action to stanch the wound, which requires a successful {@dc 15} Wisdom ({@skill Medicine}) check." + ] + } + ], + "legendary": [ + { + "name": "Slice", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Vanishing Strike (Costs 3 Actions)", + "entries": [ + "The slasher makes one Slasher's Knife attack. After the attack hits or misses, the slasher can teleport up to 30 feet to an unoccupied space it can see." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Strigoi", + "source": "VRGR", + "page": 246, + "size": [ + "M" + ], + "type": "monstrosity", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 17, + "dex": 14, + "con": 16, + "int": 11, + "wis": 17, + "cha": 10, + "save": { + "str": "+5", + "dex": "+4", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common" + ], + "cr": "4", + "trait": [ + { + "name": "Stirge Telepathy", + "entries": [ + "The strigoi can magically command any {@creature stirge} within 120 feet of it, using a limited form of telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The strigoi makes one Claw attack and makes one Proboscis attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 6 ({@damage 1d12}) acid damage." + ] + }, + { + "name": "Proboscis", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 10 ({@damage 3d6}) necrotic damage, and the strigoi regains hit points equal to the amount of necrotic damage dealt. A creature reduced to 0 hit points from this attack dies and leaves nothing behind except its skin and its equipment." + ] + }, + { + "name": "Ravenous Children (1/Day)", + "entries": [ + "The strigoi magically summons {@dice 1d4 + 2} {@creature stirge||stirges} (see their entry in the Monster Manual) in unoccupied spaces it can see within 30 feet of it. The stirges are under the strigoi's control and act immediately after the strigoi in the initiative order. The stirges disappear after 1 hour, when the strigoi dies, or when the strigoi dismisses them (no action required)." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "A", + "N", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Gremishkas", + "source": "VRGR", + "page": 235, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "swarmSize": "T" + }, + "ac": [ + 12 + ], + "hp": { + "average": 24, + "formula": "7d6" + }, + "speed": { + "walk": 25 + }, + "str": 12, + "dex": 14, + "con": 10, + "int": 12, + "wis": 14, + "cha": 4, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 14, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "2", + "trait": [ + { + "name": "Limited Spell Immunity", + "entries": [ + "The swarm automatically succeeds on saving throws against spells of 3rd level or lower, and the attack rolls of such spells always miss it." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny gremishka. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}12 ({@damage 3d6 + 2}) piercing damage, or 5 ({@damage 1d6 + 2}) piercing damage if the swarm has half of its hit points or fewer, plus 7 ({@damage 2d6}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Spell Redirection", + "entries": [ + "In response to a spell attack roll missing the swarm, the swarm causes that spell to hit another creature of its choice within 30 feet of it that it can see." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "O", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Maggots", + "source": "VRGR", + "page": 247, + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "ac": [ + 11 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 20, + "swim": 20 + }, + "str": 3, + "dex": 12, + "con": 10, + "int": 1, + "wis": 7, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "2", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny maggot. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Infestation", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer. A creature damaged by the swarm must succeed on a {@dc 12} Constitution saving throw or contract a disease.", + "Each time the diseased creature finishes a long rest, roll a {@dice d6} to determine the disease's effect:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-2", + "entries": [ + "The creature is {@condition blinded} until it finishes a long rest." + ] + }, + { + "type": "item", + "name": "3-4", + "entries": [ + "The creature's hit point maximum decreases by 5 ({@dice 2d4}), and the reduction can't be removed until the disease ends. The creature dies if its hit point maximum drops to 0." + ] + }, + { + "type": "item", + "name": "5-6", + "entries": [ + "The creature has disadvantage on ability checks and attack rolls until it finishes its next long rest.", + "The disease lasts until it's removed by magic or until the creature rolls the same random effect for the disease two long rests in a row." + ] + } + ] + } + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "DIS", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Scarabs", + "source": "VRGR", + "page": 247, + "size": [ + "M" + ], + "type": { + "type": "beast", + "swarmSize": "T" + }, + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30, + "burrow": 30, + "climb": 30 + }, + "str": 3, + "dex": 14, + "con": 13, + "int": 1, + "wis": 12, + "cha": 1, + "senses": [ + "tremorsense 60 ft." + ], + "passive": 11, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "cr": "3", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny scarab. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Skeletonize", + "entries": [ + "If the swarm starts its turn in the same space as a dead creature that is Large or smaller, the corpse is destroyed, leaving behind only equipment and bones (or exoskeleton)." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Ravenous Bites", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer. If the target is a creature, scarabs burrow into its body, and the creature takes 3 ({@damage 1d6}) piercing damage at the start of each of its turns. Any creature can use an action to kill or remove the scarabs with fire or a weapon that deals piercing damage, causing 1 damage of the appropriate type to the target. A creature reduced to 0 hit points by the swarm's piercing damage dies." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "T" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swarm of Zombie Limbs", + "source": "VRGR", + "page": 254, + "size": [ + "M" + ], + "type": { + "type": "undead", + "swarmSize": "T" + }, + "ac": [ + 10 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 14, + "dex": 10, + "con": 10, + "int": 3, + "wis": 8, + "cha": 5, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 9, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "cr": "1", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny limb. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The swarm doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The swarm makes one Undead Mass attack and one Grasping Limbs attack." + ] + }, + { + "name": "Undead Mass", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if the swarm has half of its hit points or fewer." + ] + }, + { + "name": "Grasping Limbs", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one creature in the swarm's space. {@h}7 ({@damage 2d6}) necrotic damage, and the creature must succeed on a {@dc 12} Strength saving throw or be {@condition restrained}. The creature can repeat the saving throw at the end of each of its turns, taking 7 ({@damage 2d6}) necrotic damage on a failed save. The creature is freed if it succeeds on this saving throw, the swarm moves out of the creature's space, or the swarm dies." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "The Bagman", + "source": "VRGR", + "page": 225, + "_copy": { + "name": "Troll", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "troll", + "with": "Bagman", + "flags": "i" + }, + "trait": [ + { + "mode": "appendArr", + "items": [ + { + "name": "Grappler", + "entries": [ + "The Bagman has advantage on attack rolls against any creature {@condition grappled} by it." + ] + }, + { + "name": "Amorphous", + "entries": [ + "The Bagman can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Alien Mind", + "entries": [ + "If a creature tries to read the Bagman's thoughts, that creature must succeed on a {@dc 8} Intelligence saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ] + } + ] + } + }, + "traitTags": [ + "Amorphous", + "Keen Senses", + "Regeneration" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Unspeakable Horror", + "source": "VRGR", + "page": 250, + "size": [ + "H" + ], + "type": "monstrosity", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + }, + { + "ac": 17, + "from": [ + "Aberrant Armor Only" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 13, + "con": 19, + "int": 3, + "wis": 14, + "cha": 17, + "save": { + "con": "+7", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "cr": "8", + "trait": [ + { + "name": "Formed by the Mists", + "entries": [ + "When created, the horror's body composition takes one of four forms: Aberrant Armor, Loathsome Limbs, Malleable Mass, or Oozing Organs. This form determines certain traits in this stat block." + ] + }, + { + "name": "Amorphous (Malleable Mass Only)", + "entries": [ + "The horror can move through any opening at least 1 inch wide without squeezing." + ] + }, + { + "name": "Bile Body (Oozing Organs Only)", + "entries": [ + "Any creature that touches the horror or hits it with a melee attack takes 5 ({@damage 1d10}) acid damage." + ] + }, + { + "name": "Relentless Stride (Loathsome Limbs Only)", + "entries": [ + "The horror can move through the space of another creature. The first time on a turn that the horror enters a creature's space during this move, the creature must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The horror makes two Limbs attacks." + ] + }, + { + "name": "Limbs", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage." + ] + }, + { + "name": "Hex Blast {@recharge 5}", + "entries": [ + "The horror expels necrotic energy in a 30-foot cone. Each creature in that area must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 7d12}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "type": "inset", + "name": "Customizing a Horror", + "entries": [ + "An unspeakable horror has one of four body compositions, determined by rolling on the Body Composition table. You can roll on the Limbs to customize it further, while results from the Hex Blast table replace that action in the stat block. If the results of multiple tables conflict, chose your preferred result.", + "The results of these tables are meant to be broad, so feel free to describe the details of an unspeakable horror's form and the interplay between its parts however you desire. The more discordant and unexpected a horror's parts, the more unsettling it might be.", + { + "type": "table", + "caption": "Body Composition", + "colLabels": [ + "d4", + "Body" + ], + "colStyles": [ + "col-1 text-center", + "col-11" + ], + "rows": [ + [ + "1", + { + "type": "entries", + "name": "Aberrant Armor", + "entries": [ + "The horror's body is armored in petrified wood, alien crystal, rusted mechanisms, sculpted stone, or an exoskeleton." + ] + } + ], + [ + "2", + { + "type": "entries", + "name": "Loathsome Limbs", + "entries": [ + "The horror's body boasts spider like legs, many-jointed appendages, or thrashing tentacles." + ] + } + ], + [ + "3", + { + "type": "entries", + "name": "Malleable Mass", + "entries": [ + "The horror's body is composed of a clot of boneless flesh, shadowy tendrils, or mist." + ] + } + ], + [ + "4", + { + "type": "entries", + "name": "Oozing Organs", + "entries": [ + "The horror's body boasts exposed entrails, bloated parasites, or a gelatinous shroud, perhaps because it is inside out." + ] + } + ] + ] + }, + { + "type": "table", + "caption": "Hex Blast", + "colLabels": [ + "d4", + "Hex" + ], + "colStyles": [ + "col-1 text-center", + "col-11" + ], + "rows": [ + [ + "1", + { + "type": "entries", + "name": "Beguiling Hex {@recharge 5}", + "entries": [ + "The horror expels a wave of mind-altering magic. Each creature within 30 feet of the horror must make a {@dc 15} Wisdom saving throw, taking 33 ({@damage 6d10}) psychic damage and being {@condition incapacitated} until the end of the creature's next turn on a failed save, or taking half as much damage on a successful one." + ] + } + ], + [ + "2", + { + "type": "entries", + "name": "Bile Hex {@recharge 5}", + "entries": [ + "The horror expels acidic bile in a 60-foot line that is 5 feet wide. Each creature in that line must succeed on a {@dc 15} Dexterity saving throw or be covered in bile. A creature covered in bile takes 31 ({@damage 7d8}) acid damage at the start of each of its turns until it or another creature uses its action to scrape or wash off the bile that covers it." + ] + } + ], + [ + "3", + { + "type": "entries", + "name": "Petrifying Hex {@recharge 5}", + "entries": [ + "The horror expels petrifying gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 15} Constitution saving throw or take 14 ({@damage 4d6}) necrotic damage and be {@condition restrained} as it begins to turn to stone. A {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + ] + } + ], + [ + "4", + { + "type": "entries", + "name": "Reality-Stealing Hex {@recharge 5}", + "entries": [ + "The horror expels a wave of perception-distorting energy. Each creature within 30 feet of the horror must make a {@dc 15} Wisdom saving throw. On a failed save, the target takes 22 ({@damage 5d8}) psychic damage and is {@condition deafened} until the end of its next turn. If the saving throw fails by 5 or more, the target is also {@condition blinded} until the end of its next turn." + ] + } + ] + ] + }, + { + "type": "table", + "caption": "Limbs", + "colLabels": [ + "d4", + "Attack" + ], + "colStyles": [ + "col-1 text-center", + "col-11" + ], + "rows": [ + [ + "1", + { + "type": "entries", + "name": "Bone Blade", + "entries": [ + "The horror's limb ends in a blade made of bone, which deals slashing damage instead of bludgeoning damage. In addition, it scores a critical hit on a roll of 19 or 20 and rolls the damage dice of a crit three times, instead of twice." + ] + } + ], + [ + "2", + { + "type": "entries", + "name": "Corrosive Pseudopod", + "entries": [ + "The horror's limb attack deals an extra 9 ({@damage 2d8}) acid damage." + ] + } + ], + [ + "3", + { + "type": "entries", + "name": "Grasping Tentacle", + "entries": [ + "The horror's limb is a grasping tentacle. When the horror hits a creature with this limb, the creature is also {@condition grappled} (escape {@dc 16}). The limb can have only one creature {@condition grappled} at a time." + ] + } + ], + [ + "4", + { + "type": "entries", + "name": "Poisonous Limb", + "entries": [ + "The horror's limb deals piercing damage instead of bludgeoning damage. In addition, when the horror hits a creature with this limb, the creature must succeed on a {@dc 15} Constitution saving throw or take 7 ({@damage 2d6}) poison damage and be {@condition poisoned} until the end of its next turn." + ] + } + ] + ] + } + ], + "_version": { + "name": "Unspeakable Horror (Customized)", + "addAs": "trait" + } + } + ], + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "I", + "N", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded", + "deafened", + "grappled", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vampiric Mind Flayer", + "source": "VRGR", + "page": 252, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 5, + "wis": 15, + "cha": 18, + "save": { + "dex": "+7", + "int": "+0", + "wis": "+5", + "cha": "+7" + }, + "skill": { + "perception": "+5", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "necrotic", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "telepathy 120 ft. but can only project emotions" + ], + "cr": "5", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The mind flayer can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the mind flayer has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The mind flayer doesn't require air, food, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mind flayer makes two Claw attacks or one Claw attack and one Tentacles attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 15})." + ] + }, + { + "name": "Drink Sapience", + "entries": [ + "The mind flayer targets one creature it is grappling. The target must succeed on a {@dc 15} Wisdom saving throw or take 14 ({@damage 4d6}) psychic damage and gain 1 level of {@condition exhaustion}. The mind flayer regains a number of hit points equal to the psychic damage dealt. A creature reduced to 0 hit points by the psychic damage dies." + ] + } + ], + "bonus": [ + { + "name": "Disrupt Psyche {@recharge 5}", + "entries": [ + "The mind flayer magically emits psionic energy in a 30-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or be {@condition incapacitated} for 1 minute. The {@condition incapacitated} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Spider Climb", + "Sunlight Sensitivity", + "Unusual Nature" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "N", + "P", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "exhaustion", + "grappled", + "incapacitated" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wereraven", + "group": [ + "Lycanthropes" + ], + "source": "VRGR", + "page": 253, + "otherSources": [ + { + "source": "CM" + }, + { + "source": "CoS", + "page": 242 + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "shapechanger" + ] + }, + "ac": [ + 12 + ], + "hp": { + "average": 31, + "formula": "7d8" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(fly 50 ft. in raven and hybrid forms)" + } + }, + "str": 10, + "dex": 15, + "con": 11, + "int": 13, + "wis": 15, + "cha": 14, + "skill": { + "insight": "+4", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Common (can't speak in raven form)" + ], + "cr": "2", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The wereraven can use its action to polymorph into a raven-humanoid hybrid or into a raven, or back into its human form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its human form if it dies." + ] + }, + { + "name": "Mimicry", + "entries": [ + "The wereraven can mimic simple sounds it has heard, such as a person whispering, a baby crying, or an animal chittering. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The wereraven regains 10 hit points at the start of its turn. If the wereraven takes damage from a silvered weapon or a spell, this trait doesn't function at the start of the wereraven's next turn. The wereraven dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack (Human or Hybrid Form Only)", + "entries": [ + "The wereraven makes two weapon attacks, one of which can be with its hand crossbow." + ] + }, + { + "name": "Beak (Raven or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage in raven form, or 4 ({@damage 1d4 + 2}) piercing damage in hybrid form. If the target is humanoid, it must succeed on a {@dc 10} Constitution saving throw or be cursed with wereraven lycanthropy." + ] + }, + { + "name": "Shortsword (Human or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow (Human or Hybrid Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Mimicry", + "Regeneration", + "Shapechanger" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zombie Clot", + "source": "VRGR", + "page": 255, + "size": [ + "H" + ], + "type": "undead", + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "11d12 + 33" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 10, + "con": 16, + "int": 3, + "wis": 8, + "cha": 10, + "save": { + "con": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Deathly Stench", + "entries": [ + "Any creature that starts its turn within 10 feet of the zombie must succeed on a {@dc 14} Constitution saving throw or take 9 ({@damage 2d8}) poison damage and be {@condition poisoned} until the start of the creature's next turn." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The zombie doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zombie makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ] + }, + { + "name": "Flesh Entomb {@recharge 5}", + "entries": [ + "The zombie flings a detached clump of corpses at a creature it can see within 30 feet of it. The target must succeed on a {@dc 16} Strength saving throw or take 16 ({@damage 3d10}) bludgeoning damage, and if the target is a Large or smaller creature, it becomes entombed in dead flesh.", + "A creature entombed in the dead flesh is {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the dead flesh, and takes 10 ({@damage 3d6}) necrotic damage at the start of each of its turns. The creature can be freed if the dead flesh is destroyed. The dead flesh is a Large object with AC 10, 25 hit points, and immunity to poison and psychic damage." + ] + } + ], + "traitTags": [ + "Undead Fortitude", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B", + "I", + "N" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zombie Plague Spreader", + "source": "VRGR", + "page": 255, + "size": [ + "M" + ], + "type": "undead", + "ac": [ + 10 + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 3, + "wis": 5, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 7, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The zombie doesn't require air, food, drink, or sleep." + ] + }, + { + "name": "Viral Aura", + "entries": [ + "Any creature that starts its turn within 10 feet of the plague spreader must make a {@dc 12} Constitution saving throw. On a failed save, the creature is {@condition poisoned} and can't regain hit points until the end of its next turn. On a successful save, the creature is immune to this plague spreader's Viral Aura for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The plague spreader makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ] + }, + { + "name": "Virulent Miasma (1/Day)", + "entries": [ + "The plague spreader releases toxic gas in a 30-foot-radius sphere centered on itself. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 14 ({@damage 4d6}) poison damage on a failed save, or half as much damage on a successful one. A Humanoid reduced to 0 hit points by this damage dies and rises as a zombie (see its stat block in the Monster Manual) 1 minute later. The zombie acts immediately after the plague spreader in the initiative count." + ] + } + ], + "traitTags": [ + "Undead Fortitude", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B", + "I", + "N" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hound of Ill Omen", + "source": "XGE", + "page": 50, + "summonedByClass": "Sorcerer|PHB", + "_copy": { + "name": "Dire Wolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "\\bwolf\\b", + "with": "hound" + }, + "trait": [ + { + "mode": "appendArr", + "items": [ + { + "name": "Cloak of Shadows", + "entries": [ + "The hound appears with a number of temporary hit points equal to half your sorcerer level." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The hound can move through other creatures and objects as if they were {@quickref difficult terrain||3}. The hound takes 5 force damage if it ends its turn inside an object." + ] + }, + { + "name": "Omen Sight", + "entries": [ + "At the start of its turn, the hound automatically knows its target's location. If the target was hidden, it is no longer hidden from the hound." + ] + }, + { + "name": "Ever at Your Heels", + "entries": [ + "On its turn, it can move only toward its target by the most direct route, and it can use its action only to attack its target. The hound can make opportunity attacks, but only against its target. Additionally, while the hound is within 5 feet of the target, the target has disadvantage on saving throws against any spell you cast. The hound disappears if it is reduced to 0 hit points, if its target is reduced to 0 hit points, or after 5 minutes." + ] + } + ] + } + ] + } + }, + "size": [ + "M" + ], + "type": "monstrosity", + "traitTags": [ + "Incorporeal Movement", + "Keen Senses", + "Pack Tactics" + ], + "hasToken": true + }, + { + "name": "Tiny Servant", + "source": "XGE", + "page": 169, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 10, + "formula": "4d4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 4, + "dex": 16, + "con": 10, + "int": 2, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Agdon Longscarf", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 73, + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "harengon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item studded leather armor|PHB|studded leather}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 35, + "alternate": { + "walk": [ + { + "number": 70, + "condition": "while wearing his scarf" + } + ] + } + }, + "str": 11, + "dex": 20, + "con": 11, + "int": 11, + "wis": 14, + "cha": 16, + "save": { + "dex": "+7", + "wis": "+4" + }, + "skill": { + "acrobatics": "+7", + "perception": "+6", + "sleight of hand": "+7", + "stealth": "+7" + }, + "passive": 16, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "2", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If Agdon is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw and only half damage if he fails, provided he isn't {@condition incapacitated}." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "Agdon's long jump is up to 20 feet and his high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Agdon makes two Branding Iron or Dagger attacks." + ] + }, + { + "name": "Branding Iron", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) fire damage, and the target is magically branded. Agdon is {@condition invisible} to creatures branded in this way. The brand disappears after 24 hours, or it can be removed from a creature or object by any spell that ends a curse." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Quick Fingers", + "entries": [ + "Agdon targets one creature within 5 feet of him that he can see and makes a Dexterity ({@skill Sleight of Hand}) check, with a DC equal to 1 + the target's passive Wisdom ({@skill Perception}) score. On a successful check, Agdon pilfers one object weighing 1 pound or less that the target has in its possession but not in its grasp, without the target noticing the theft." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "Agdon halves the damage that he takes from an attack that hits him. He must be able to see the attacker." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Alagarthas", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 144, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 10 + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 14, + "int": 11, + "wis": 11, + "cha": 15, + "save": { + "con": "+4", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Elvish" + ], + "cr": "3", + "trait": [ + { + "name": "Brave", + "entries": [ + "Alagarthas has advantage on saving throws against being {@condition frightened}." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Alagarthas has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Alagarthas makes two melee attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 bludgeoning damage." + ] + }, + { + "name": "Leadership (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, Alagarthas can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand him. A creature can benefit from only one Leadership die at a time. This effect ends if Alagarthas is {@condition incapacitated}." + ] + } + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Amidor the Dandelion", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 135, + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N", + "G" + ], + "ac": [ + 12 + ], + "hp": { + "average": 28, + "formula": "8d6" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 15, + "con": 10, + "int": 13, + "wis": 12, + "cha": 17, + "save": { + "str": "+0", + "dex": "+4", + "con": "+2", + "wis": "+3" + }, + "skill": { + "perception": "+3", + "persuasion": "+5", + "stealth": "+4" + }, + "passive": 13, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Speak with Beasts and Plants", + "entries": [ + "Amidor can communicate with Beasts and Plants as if it shared a language with them." + ] + } + ], + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + }, + { + "name": "Seed Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Amidor adds 2 to its AC against one melee attack that would hit it. To do so, Amidor must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bavlorna Blightstraw", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 216, + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "hag" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 22, + "dex": 11, + "con": 18, + "int": 16, + "wis": 12, + "cha": 15, + "save": { + "con": "+7", + "int": "+6", + "wis": "+4", + "cha": "+5" + }, + "skill": { + "arcana": "+9", + "deception": "+5", + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Bavlorna casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ], + "2e": [ + "{@spell create food and water}", + "{@spell polymorph}", + "{@spell remove curse}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Bavlorna can breathe air and water." + ] + }, + { + "name": "Boon of Immortality", + "entries": [ + "Bavlorna is immune to any effect that would age her, and she can't die from old age." + ] + }, + { + "name": "Widdershins Allergy", + "entries": [ + "If a creature within 10 feet of Bavlorna uses at least 10 feet of movement to run in place counterclockwise, Bavlorna is overcome by a fit of sneezing and can't cast spells until the end of her next turn. In addition, any creature Bavlorna has swallowed is immediately expelled and falls {@condition prone} in an unoccupied space within 5 feet of her." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bavlorna makes one Bite attack and one Withering Ray attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition restrained}, and Bavlorna can't use her Bite attack on another target." + ] + }, + { + "name": "Withering Ray", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ] + }, + { + "name": "Create Lornlings {@recharge 5}", + "entries": [ + "Bavlorna creates one or two 1-foot-tall duplicates of herself, called lornlings (use the Quickling stat block in appendix C). Each lornling appears in an unoccupied space within 5 feet of Bavlorna, obeys her commands, and takes its turn immediately after hers. A lornling lasts for 1 hour, until it or Bavlorna dies, or until Bavlorna dismisses it as an action. Bavlorna can have no more than eight lornlings in existence at a time." + ] + } + ], + "bonus": [ + { + "name": "Swallow", + "entries": [ + "Bavlorna swallows a Small or smaller creature she is grappling, ending the grapple on it. The swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside Bavlorna, and it takes 10 ({@damage 3d6}) acid damage at the start of each of its turns. If the swallowed creature is one of Bavlorna's lornlings, Bavlorna gains all the lornling's memories when the acid damage reduces it to 0 hit points.", + "Bavlorna can have only one creature swallowed at a time. If Bavlorna dies, a swallowed creature is no longer {@condition restrained} and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "A", + "N", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brigganock", + "source": "WBtW", + "page": 230, + "size": [ + "T" + ], + "type": "fey", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 9, + "formula": "2d4 + 4" + }, + "speed": { + "walk": 15 + }, + "str": 4, + "dex": 15, + "con": 14, + "int": 10, + "wis": 11, + "cha": 13, + "save": { + "dex": "+4", + "con": "+4" + }, + "passive": 10, + "conditionImmune": [ + "exhaustion" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1/8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The brigganock casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "will": [ + "{@spell minor illusion}", + "{@spell spare the dying}" + ], + "daily": { + "1e": [ + "{@spell animal friendship}", + "{@spell faerie fire}", + "{@spell meld into stone}", + "{@spell silence}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The brigganock has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ] + }, + { + "name": "Soul Light", + "entries": [ + "The brigganock is accompanied by an insubstantial, invulnerable ball of light that contains its soul. The brigganock can't turn off the light or control its brightness. The soul light sheds bright light in a 10-foot radius and dim light for an additional 10 feet. If the brigganock dies, its soul light fades away." + ] + }, + { + "name": "Tunneler", + "entries": [ + "Using a pickaxe or similar tool, a brigganock can burrow through solid rock at a speed of 5 feet, leaving a 6-inch-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Pickaxe", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Time Lapse (Recharges after a Short or Long Rest)", + "entries": [ + "The brigganock accelerates the passage of time around itself, enabling it to accomplish up to 1 hour of work in a matter of seconds. This work can't affect any creature other than the brigganock, or any object being worn or carried by another creature, and the activity must take place within a 10-foot cube. For example, the brigganock could use this action to rapidly carve a pumpkin, cook and eat dinner, move a pile of stones, or tie a dozen knots in a length of rope." + ] + } + ], + "bonus": [ + { + "name": "Move Soul Light", + "entries": [ + "The brigganock moves its soul light up to 30 feet in any direction to an unoccupied space it can see. At the end of the current turn, the light returns to the brigganock." + ] + } + ], + "traitTags": [ + "Fey Ancestry", + "Tunneler" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "deafened", + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bullywug Knight", + "source": "WBtW", + "page": 231, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 16, + "dex": 12, + "con": 13, + "int": 9, + "wis": 11, + "cha": 14, + "save": { + "con": "+3", + "wis": "+2" + }, + "passive": 10, + "languages": [ + "Bullywug", + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The knight can breathe air and water." + ] + }, + { + "name": "Speak with Frogs and Toads", + "entries": [ + "The knight can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The knight's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The knight makes two Glaive attacks." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Croak of Charming (Recharges after a Short or Long Rest)", + "entries": [ + "The knight makes a loud croak while targeting one creature it can see within 30 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or be {@condition charmed} until the end of its next turn." + ] + } + ], + "attachedItems": [ + "glaive|phb" + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Campestri", + "source": "WBtW", + "page": 232, + "size": [ + "T" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 5 + }, + "str": 1, + "dex": 7, + "con": 10, + "int": 4, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+4" + }, + "senses": [ + "tremorsense 30 ft." + ], + "passive": 14, + "languages": [ + "understands Common but speaks only through the use of its Mimicry trait" + ], + "cr": "0", + "trait": [ + { + "name": "Mimicry", + "entries": [ + "The campestri can mimic any voice or song it has heard, albeit in a nasal falsetto." + ] + } + ], + "action": [ + { + "name": "Head Butt", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ] + }, + { + "name": "Spores (1/Day)", + "entries": [ + "A 5-foot radius of spores extends from the campestri. These spores can go around corners, and they have no effect on Constructs, Elementals, Plants, or Undead. Each other creature in the area must make a {@dc 10} Wisdom saving throw. On a failed save, the creature is {@condition incapacitated} and its speed is halved, both 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." + ] + } + ], + "traitTags": [ + "Mimicry" + ], + "senseTags": [ + "T" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Clapperclaw the Scarecrow", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 78, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 14, + "formula": "4d6" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 13, + "con": 11, + "int": 7, + "wis": 10, + "cha": 10, + "skill": { + "stealth": "+3", + "survival": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "Clapperclaw doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ] + }, + { + "name": "Stuffing", + "entries": [ + "Clapperclaw stuffs straw or other dead plant matter into itself and regains {@dice 2d4 + 2} hit points. Roll a {@dice d6}; on a 1 or 2, Clapperclaw runs out of stuffing and must spend 8 hours foraging for more before it can use this action again." + ] + } + ], + "bonus": [ + { + "name": "Unsettling Presence {@recharge}", + "entries": [ + "Clapperclaw targets one creature it can see within 15 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition frightened} until the end of Clapperclaw's next turn." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Detached Shadow", + "source": "WBtW", + "page": 213, + "_copy": { + "name": "Shadow", + "source": "MM" + }, + "type": "fey", + "action": [ + { + "name": "Strength Drain", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d6 + 2}) necrotic damage, and the target's Strength score is reduced by {@dice 1d4}. The target falls {@condition unconscious} if this reduces its Strength to 0. The creature regains consciousness and the reduction to its Strength score disappears after it finishes a short or long rest." + ] + } + ], + "hasToken": true + }, + { + "name": "Displacer Beast Kitten", + "source": "WBtW", + "page": 108, + "otherSources": [ + { + "source": "BMT" + } + ], + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 13, + "con": 12, + "int": 4, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/8", + "trait": [ + { + "name": "Displacement", + "entries": [ + "The displacer beast projects a magical illusion that makes it appear to be standing near its actual location, causing attack rolls against it to have disadvantage. If it is hit by an attack, this trait is disrupted until the end of its next turn. This trait is also disrupted while the displacer beast is {@condition incapacitated} or has a speed of 0." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 bludgeoning damage plus 2 piercing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Tentacles" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Elkhorn", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 224, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 25 + }, + "str": 9, + "dex": 13, + "con": 16, + "int": 9, + "wis": 10, + "cha": 11, + "save": { + "str": "+1", + "con": "+5" + }, + "skill": { + "perception": "+2", + "survival": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "2", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Elkhorn wields a {@item +1 longsword}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Elkhorn makes two Dagger or +1 Longsword attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage. If the target is a creature that is Large or bigger, it takes an extra 5 ({@damage 1d10}) piercing damage." + ] + }, + { + "name": "+1 Longsword", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) slashing damage, or 5 ({@damage 1d10}) slashing damage when used with two hands. If the target is a creature that is Large or bigger, it takes an extra 5 ({@damage 1d10}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Feint {@recharge 5}", + "entries": [ + "Elkhorn targets one creature that he can see within 5 feet of him. Elkhorn has advantage on the next attack roll he makes against that target before the end of his turn. If that attack hits, the target takes an extra 7 ({@damage 2d6}) damage of the weapon's type." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "Elkhorn regains 12 hit points." + ] + } + ], + "attachedItems": [ + "+1 longsword|dmg", + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Endelyn Moongrave", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 217, + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "hag" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d8 + 60" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 20, + "dex": 13, + "con": 20, + "int": 13, + "wis": 10, + "cha": 17, + "save": { + "con": "+8", + "int": "+4", + "wis": "+3", + "cha": "+6" + }, + "skill": { + "arcana": "+7", + "deception": "+6", + "perception": "+3", + "stealth": "+4" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Endelyn casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell mage hand}" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ], + "2e": [ + "{@spell augury}", + "{@spell polymorph}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Boon of Immortality", + "entries": [ + "Endelyn is immune to any effect that would age her, and she can't die from old age." + ] + }, + { + "name": "Eclipsed Doom", + "entries": [ + "Endelyn can be killed only if she is reduced to 0 hit points during a solar eclipse or while she is within 60 feet of a symbolic representation of one. Otherwise, Endelyn disappears in a cloud of inky smoke when she drops to 0 hit points, along with anything she was wearing or carrying, and reappears 24 hours later in the same location or the nearest unoccupied space." + ] + }, + { + "name": "Uncanny Awareness", + "entries": [ + "Endelyn can't be {@status surprised}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Endelyn makes two Puppeteer's Lash attacks" + ] + }, + { + "name": "Puppeteer's Lash", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 60 ft., one creature. {@h}17 ({@damage 4d6 + 3}) psychic damage, and if the target is Large or smaller, Endelyn telekinetically moves it up to 10 feet in any direction horizontally." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Envy", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 178, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 11, + "con": 18, + "int": 2, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "petrified" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "5", + "trait": [ + { + "name": "Trampling Charge", + "entries": [ + "If Envy moves at least 20 feet straight toward a creature and then hits it with a bite attack on the same turn, that target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, Envy can make one attack with its claws against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage." + ] + }, + { + "name": "Petrifying Breath {@recharge 5}", + "entries": [ + "Envy exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw. On a failed save, a target begins to turn to stone and is {@condition restrained}. The {@condition restrained} target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "petrified", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flying Rocking Horse", + "source": "WBtW", + "page": 121, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(only while mounted; hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 10, + "con": 13, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1/8", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the rocking horse is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the rocking horse move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the rocking horse is animate." + ] + }, + { + "name": "Flying Mount", + "entries": [ + "The rocking horse can serve as a mount for a Medium or smaller creature and can fly only while mounted." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The rocking horse doesn't require air, food, drink, or sleep, and it regains no hit points or Hit Dice at the end of a long rest." + ] + } + ], + "action": [ + { + "name": "Head Butt", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "False Appearance", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Giant Dragonfly", + "source": "WBtW", + "page": 234, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d10" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 15, + "dex": 18, + "con": 11, + "int": 3, + "wis": 10, + "cha": 3, + "passive": 10, + "cr": "1/2", + "trait": [ + { + "name": "Drone", + "entries": [ + "When it beats its wings, the dragonfly emits a loud droning sound that can be heard out to a range of 120 feet." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "The dragonfly halves the damage it takes from an attack made against it, provided it can see the attacker." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Snail", + "source": "WBtW", + "page": 234, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d10" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 15, + "dex": 3, + "con": 11, + "int": 3, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": "1/4", + "trait": [ + { + "name": "Salt Osmosis", + "entries": [ + "Whenever the snail starts its turn in contact with a pound or more of salt, it takes {@damage 1d4} necrotic damage. Using an action to sprinkle a pound of salt on the snail deals {@damage 1d4} necrotic damage to it immediately and another {@damage 1d4} necrotic damage to it at the start of its next turn (after which the salt rubs off), provided the snail has not withdrawn into its shell." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Shell Defense", + "entries": [ + "The snail withdraws into its shell, gaining a +4 bonus to its AC until it emerges. It can emerge from its shell as a bonus action on its turn." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Swan", + "source": "WBtW", + "page": 38, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "N", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 26, + "formula": "4d10 + 4" + }, + "speed": { + "walk": 10, + "fly": 80 + }, + "str": 16, + "dex": 17, + "con": 13, + "int": 8, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Auran", + "Common" + ], + "cr": "1", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The swan has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The swan makes two attacks with its beak." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Glass Pegasus", + "source": "WBtW", + "page": 181, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 15, + "condition": "while animated and 13 otherwise" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21" + }, + "speed": { + "walk": 60, + "fly": 90 + }, + "str": 18, + "dex": 15, + "con": 16, + "int": 10, + "wis": 15, + "cha": 13, + "save": { + "dex": "+4", + "wis": "+4", + "cha": "+3" + }, + "skill": { + "perception": "+6" + }, + "passive": 16, + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified" + ], + "languages": [ + "Celestial", + "Common", + "Elvish and Sylvan but can't speak" + ], + "cr": "2", + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + } + ], + "languageTags": [ + "C", + "CE", + "CS", + "E", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Glasswork Golem", + "source": "WBtW", + "page": 193, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 36, + "formula": "8d8" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 10, + "con": 10, + "int": 1, + "wis": 10, + "cha": 1, + "save": { + "dex": "+2", + "con": "+2", + "wis": "+2" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the golem is embedded in a window and motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the golem move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the golem is animate." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The golem is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The golem regains 10 hit points at the start of its turn. If the golem takes bludgeoning or thunder damage, this trait doesn't function at the start of the golem's next turn. The golem is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The golem doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The golem makes two Glass Sword attacks." + ] + }, + { + "name": "Glass Sword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Dazzling Light {@recharge 5}", + "entries": [ + "Magical, colored light springs from the golem in a 15-foot cone. Each creature in the cone must succeed on a {@dc 10} Constitution saving throw or be {@condition 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." + ] + } + ], + "traitTags": [ + "False Appearance", + "Immutable Form", + "Regeneration", + "Unusual Nature" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gloam", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 93, + "size": [ + "T" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 40, + "climb": 30 + }, + "str": 3, + "dex": 15, + "con": 10, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+3", + "stealth": "+4" + }, + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "cr": "0", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The cat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + }, + { + "name": "Cloud of Dust", + "entries": [ + "On its first turn in combat or when it is reduced to 0 hit points, the cat expels a cloud of dust that acts as dust of sneezing and choking" + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Harengon Brigand", + "source": "WBtW", + "page": 235, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 17, + "con": 11, + "int": 10, + "wis": 11, + "cha": 10, + "save": { + "dex": "+5" + }, + "skill": { + "acrobatics": "+5", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1/8", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The harengon has advantage on an attack roll against a creature if at least one of the harengon's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The harengon's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb", + "sling|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Harengon Sniper", + "source": "WBtW", + "page": 235, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 17, + "con": 11, + "int": 10, + "wis": 13, + "cha": 10, + "save": { + "dex": "+5" + }, + "skill": { + "athletics": "+2", + "perception": "+5", + "stealth": "+5" + }, + "passive": 15, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1/4", + "trait": [ + { + "name": "Standing Leap", + "entries": [ + "The harengon's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 5} to hit (the target gains no benefit from less than {@quickref Cover||3||total cover}), range 320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage. {@hom}Immediately after making this attack, the harengon can use the Hide action." + ] + } + ], + "attachedItems": [ + "club|phb", + "light crossbow|phb" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Iggwilv the Witch Queen", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 205, + "otherSources": [ + { + "source": "VEoR" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item robe of the archmagi}" + ] + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 18, + "con": 18, + "int": 27, + "wis": 12, + "cha": 23, + "save": { + "int": "+14", + "wis": "+7", + "cha": "+12" + }, + "skill": { + "arcana": "+20", + "history": "+14", + "nature": "+14" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 11, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Abyssal", + "Celestial", + "Common", + "Draconic", + "Elvish", + "Infernal", + "Sylvan" + ], + "cr": "20", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Iggwilv casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 24}, {@hit 16} to hit with spell attacks):" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell invisibility}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell Tasha's hideous laughter}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell polymorph}" + ], + "1e": [ + "{@spell maze}", + "{@spell telekinesis}", + "{@spell teleport}", + "{@spell wish}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Boon of Immortality", + "entries": [ + "Iggwilv is immune to any effect that would age her, and she can't die from old age." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Iggwilv fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Iggwilv has advantage on saving throws against spells and other magical effects. (This trait is bestowed by her robe of the archmagi.)" + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Iggwilv wears an {@item amulet of the planes} and a {@item robe of the archmagi}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Iggwilv makes two Bewitching Bolt attacks." + ] + }, + { + "name": "Bewitching Bolt", + "entries": [ + "{@atk ms,rs} {@hit 16} to hit, reach 5 ft. or range 120 ft., one target. {@h}25 ({@damage 5d6 + 8}) lightning damage, and if the target is a creature, it must succeed on a {@dc 22} Wisdom saving throw or be {@condition charmed} by Iggwilv until the start of her next turn." + ] + }, + { + "name": "Abyssal Rift {@recharge 5}", + "entries": [ + "Iggwilv opens a momentary Abyssal rift within 120 feet of her. The rift is a 20-foot-radius sphere. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 40 ({@damage 9d8}) necrotic damage on a failed save, or half as much damage on a successful one. In addition, there is a 50 percent chance that 3 {@creature hezrou||hezrous} then appear in unoccupied spaces in the sphere. They act as Iggwilv's allies, take their turns immediately after hers, and can't summon other demons. They remain until they die or until Iggwilv dismisses them as an action." + ] + } + ], + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "Iggwilv teleports, along with any equipment she is wearing or carrying, to an unoccupied space she can see within 30 feet of her." + ] + } + ], + "reaction": [ + { + "name": "Negate Spell (2/Day)", + "entries": [ + "When Iggwilv sees a creature within 60 feet of her casting a spell, she tries to interrupt it. If the creature is casting a spell using a spell slot of 8th level or lower, its spell fails and has no effect. If it is casting a 9th-level spell, it must succeed on a {@dc 22} Intelligence saving throw, or the spells fails and has no effect." + ] + } + ], + "legendary": [ + { + "name": "Witchcraft", + "entries": [ + "Iggwilv uses Spellcasting or Fey Step." + ] + }, + { + "name": "Dark Speech (Costs 2 Actions)", + "entries": [ + "Iggwilv utters a phrase in a forbidden language and targets one or two creatures she can see within 60 feet of her. Each target must succeed on a {@dc 22} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage and be {@condition frightened} of Iggwilv for 1 minute. A target can repeat the save at the end of each of its turns, ending the effect on itself on a success and thereby becoming immune to Iggwilv's Dark Speech for 24 hours." + ] + }, + { + "name": "Fey Beguilement (Costs 3 Actions)", + "entries": [ + "Iggwilv targets one creature she can see within 60 feet of her. The target must succeed on a {@dc 22} Charisma saving throw or be possessed by a fey spirit. While possessed, the target must obey Iggwilv's commands. The target can repeat the saving throw at the end of each of its turns, banishing the fey spirit and ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "CE", + "DR", + "E", + "I", + "S" + ], + "damageTags": [ + "L", + "N", + "Y" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "charmed", + "frightened" + ], + "conditionInflictSpell": [ + "incapacitated", + "invisible", + "prone", + "restrained" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "intelligence", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jabberwock", + "source": "WBtW", + "page": 236, + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 115, + "formula": "10d12 + 50" + }, + "speed": { + "walk": 30, + "climb": 30, + "fly": 60, + "swim": 30 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 4, + "wis": 7, + "cha": 11, + "save": { + "str": "+10", + "dex": "+6", + "con": "+10", + "int": "+2", + "wis": "+3", + "cha": "+5" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 18, + "immune": [ + "poison" + ], + "vulnerable": [ + { + "vulnerable": [ + "slashing" + ], + "note": "from a vorpal sword", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "cr": "13", + "trait": [ + { + "name": "Confusing Burble", + "entries": [ + "The jabberwock burbles to itself unless it is {@condition incapacitated}. Any creature that starts its turn within 30 feet of the jabberwock and is able to hear its burbling must make a {@dc 18} Charisma saving throw. On a failed saving throw, the creature can't take reactions until the start of its next turn, and it rolls a {@dice d4} to determine what it does during its current turn:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-2", + "entry": "The creature does nothing." + }, + { + "type": "item", + "name": "3", + "entry": "The creature does nothing except use all its movement to move in a random direction." + }, + { + "type": "item", + "name": "4", + "entry": "The creature either makes one melee attack against a random creature it can see or does nothing if no visible creature is within its reach." + } + ] + } + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the jabberwock fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The jabberwock regains 10 hit points at the start of its turn. If the jabberwock takes slashing damage, this trait doesn't function at the start of its next turn. The jabberwock dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Uncanny Tracker", + "entries": [ + "The jabberwock can unerringly track any creature it has wounded in the last 24 hours, and it knows the distance and direction to its quarry as long as the two of them are on the same plane of existence." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The jabberwock makes two Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage." + ] + }, + { + "name": "Fiery Gaze {@recharge 5}", + "entries": [ + "Unless it is {@condition blinded}, the jabberwock emits a 120-foot-long, 5-foot-wide line of fire from its eyes. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 31 ({@damage 7d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Tail Attack", + "entries": [ + "The jabberwock makes one Tail attack." + ] + }, + { + "name": "Rend Attack (2 Actions)", + "entries": [ + "The jabberwock makes one Rend attack." + ] + }, + { + "name": "Wing Attack (3 Actions)", + "entries": [ + "The jabberwock beats its wings. Each creature within 10 feet of the jabberwock must succeed on a {@dc 18} Dexterity saving throw or take 8 ({@damage 1d6 + 5}) bludgeoning damage and be knocked {@condition prone}." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "F", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jingle Jangle", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 70, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item leather armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 10, + "wis": 8, + "cha": 8, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Goblin" + ], + "cr": "1/4", + "trait": [ + { + "name": "Nimble Escape", + "entries": [ + "Jingle Jangle can take the Disengage or Hide action as a bonus action on each of her turns." + ] + } + ], + "action": [ + { + "name": "Flail of Locks", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 3d4}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kelek", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 219, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "sorcerer" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item bracers of defense}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 14, + "int": 15, + "wis": 13, + "cha": 17, + "save": { + "con": "+5", + "cha": "+6" + }, + "skill": { + "deception": "+6", + "intimidation": "+6" + }, + "passive": 11, + "languages": [ + "Common", + "Draconic", + "Elvish" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kelek casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell dominate beast}", + "{@spell fly}", + "{@spell mirror image}", + "{@spell web}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Kelek wears {@item bracers of defense} and carries a {@item staff of striking} with 10 charges. The staff regains {@dice 1d6 + 4} expended charges daily at dawn. If its last charge is expended, roll a {@dice d20}; on a 1, the staff becomes a nonmagical quarterstaff." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Kelek makes three attacks using Sorcerer's Bolt, Staff of Striking, or a combination of them. He can replace one of the attacks with a use of Spellcasting." + ] + }, + { + "name": "Sorcerer's Bolt", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 2d12}) force damage." + ] + }, + { + "name": "Staff of Striking", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage, or 9 ({@damage 1d8 + 5}) bludgeoning damage when used with two hands, and Kelek can expend up to 3 of the staff's charges, dealing an extra 3 ({@damage 1d6}) force damage for each expended charge." + ] + }, + { + "name": "Fiery Explosion {@recharge 4}", + "entries": [ + "Kelek creates a magical explosion of fire centered on a point he can see within 120 feet of him. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 14} Dexterity saving throw, taking 35 ({@damage 10d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "reaction": [ + { + "name": "Arcane Defense (3/Day)", + "entries": [ + "When he is hit by an attack, Kelek protects himself with an {@condition invisible} barrier of magical force. Until the end of his next turn, he gains a +5 bonus to AC, including against the triggering attack." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E" + ], + "damageTags": [ + "B", + "F", + "O" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kettlesteam the Kenku", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 52, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "kenku", + "warlock" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 10, + "int": 11, + "wis": 10, + "cha": 16, + "save": { + "wis": "+2", + "cha": "+5" + }, + "skill": { + "arcana": "+2", + "deception": "+5", + "investigation": "+2", + "perception": "+2", + "persuasion": "+5", + "stealth": "+5" + }, + "passive": 12, + "languages": [ + "understands Auran and Common but speaks only through the use of her Mimicry trait" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kettlesteam casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell disguise self}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell bestow curse}", + "{@spell faerie fire}", + "{@spell speak with animals}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Mimicry", + "entries": [ + "Kettlesteam can mimic any sounds she has heard, including voices. A creature that hears the sounds can tell they are imitations only with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Kettlesteam makes two Dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + }, + { + "name": "Twilight Sleep (2/Day)", + "entries": [ + "Kettlesteam targets one creature she can see within 10 feet of her. The target is engulfed in a cloud of magical, sleep-inducing gas and must succeed on a {@dc 13} Constitution saving throw or fall {@condition unconscious} for 1 minute. A creature put to sleep by this gas awakens instantly if it takes damage, or if someone uses an action to shake or slap the sleeper awake." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Mimicry" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Doll", + "source": "WBtW", + "page": 238, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 28, + "formula": "8d4 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 3, + "dex": 11, + "con": 13, + "int": 10, + "wis": 10, + "cha": 7, + "save": { + "int": "+2", + "wis": "+2", + "cha": "+0" + }, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the doll is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the doll move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the doll is animate." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The doll regains 5 hit points at the start of its turn. If the doll takes fire or psychic damage, this trait doesn't function at the start of the doll's next turn. The doll is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The doll doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Grabby Hands", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}The target is {@condition grappled} (escape {@dc 6}) and takes 11 ({@damage 2d10}) psychic damage at the start of each of its turns until this grapple ends. The doll can grapple only one creature at a time." + ] + } + ], + "bonus": [ + { + "name": "Cackle {@recharge 4}", + "entries": [ + "The doll cackles as it targets one or two creatures it can see within 30 feet of it. Each target that can hear the doll's cackling must make a {@dc 11} Wisdom saving throw, succeeding automatically if it has an Intelligence of 4 or lower. On a failed saving throw, the creature takes 5 ({@damage 2d4}) psychic damage and is {@condition incapacitated} for 1 minute as it is overcome by a fit of laughter. At the end of each of its turns, the creature can repeat the saving throw, ending the effect on itself on a success. A creature that succeeds on this saving throw is immune to this doll's Cackle for 24 hours." + ] + } + ], + "traitTags": [ + "False Appearance", + "Regeneration", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "incapacitated" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mercion", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 224, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric", + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 31, + "formula": "9d8 - 9" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 9, + "int": 12, + "wis": 17, + "cha": 17, + "save": { + "wis": "+5", + "cha": "+5" + }, + "skill": { + "insight": "+5", + "medicine": "+5" + }, + "passive": 13, + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Mercion casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell light}", + "{@spell spare the dying}" + ], + "daily": { + "1": [ + "{@spell death ward}" + ], + "2e": [ + "{@spell command}", + "{@spell create food and water}", + "{@spell cure wounds}", + "{@spell faerie fire}", + "{@spell hold person}", + "{@spell revivify}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Mercion wields a {@item +1 quarterstaff}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Mercion makes one Divine Radiance attack and one +1 Quarterstaff attack. She can replace one of these attacks with a use of Spellcasting." + ] + }, + { + "name": "Divine Radiance", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 3d8}) radiant damage." + ] + }, + { + "name": "+1 Quarterstaff", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, or 7 ({@damage 1d8 + 3}) bludgeoning damage when used with two hands." + ] + }, + { + "name": "Radiant Fire {@recharge 5}", + "entries": [ + "Mercion creates a magical explosion of fiery radiance centered on a point she can see within 120 feet of her. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 13} Dexterity saving throw, taking 28 ({@damage 8d6}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "+1 quarterstaff|dmg" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mister Light", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 26, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf", + "shadar-kai" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 77, + "formula": "14d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 12, + "int": 12, + "wis": 13, + "cha": 17, + "save": { + "dex": "+5", + "cha": "+5" + }, + "skill": { + "perception": "+3", + "performance": "+5", + "sleight of hand": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic" + ], + "vulnerable": [ + "lightning" + ], + "conditionImmune": [ + "blinded", + "deafened", + "petrified", + "stunned" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "While carrying the {@item Witchlight vane|WbtW}, Light casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell polymorph} (after casting, roll a {@dice d8}; on a roll of 3 or 8, Light can't cast the spell again until the next dawn)", + "{@spell ray of frost}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Light has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Light carries and is attuned to the {@item Witchlight vane|WbtW}. In Light's hands, the vane is a finesse weapon." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Light makes two {@item Witchlight vane|WbtW} attacks." + ] + }, + { + "name": "Witchlight Vane", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 4 ({@damage 1d8}) radiant damage." + ] + } + ], + "bonus": [ + { + "name": "Blessing of the Raven Queen (1/Day)", + "entries": [ + "Light magically teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see. Until the start of his next turn, he appears ghostly and gains resistance to all damage." + ] + } + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "C" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mister Witch", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 25, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf", + "shadar-kai" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 10 + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 11, + "con": 16, + "int": 16, + "wis": 13, + "cha": 14, + "save": { + "int": "+5", + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "deception": "+4", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "While carrying the {@item Witchlight watch|WbtW}, Witch casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks):" + ], + "will": [ + "{@spell fire bolt}", + "{@spell invisibility} (after casting, roll a {@dice d8}; on a roll of 3 or 8, Witch can't cast the spell again until the next dawn)", + "{@spell message}" + ], + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Witch has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Witch carries and is attuned to the {@item Witchlight watch|WbtW}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Witch makes two Cane attacks." + ] + }, + { + "name": "Cane", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage plus 6 ({@damage 1d12}) necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Blessing of the Raven Queen (1/Day)", + "entries": [ + "Witch magically teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see. Until the start of his next turn, he appears ghostly and gains resistance to all damage." + ] + } + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "S" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Molliver", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 226, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item +1 leather armor}" + ] + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 17, + "con": 16, + "int": 10, + "wis": 9, + "cha": 16, + "save": { + "dex": "+5", + "int": "+2" + }, + "skill": { + "acrobatics": "+7", + "sleight of hand": "+7", + "stealth": "+7" + }, + "passive": 9, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Evasion", + "entries": [ + "When subjected to an effect that allows a Dexterity saving throw to take only half damage, Molliver takes no damage on a successful save or half damage on a failed one, provided Molliver is not {@condition incapacitated}." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Molliver wears {@item +1 leather armor} and {@item boots of levitation}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Molliver makes two Dagger or Shortsword attacks, or one of each." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. The attack deals an extra 7 ({@damage 2d6}) piercing damage if Molliver has advantage on the attack roll or if the target is within 5 feet of one of Molliver's allies." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage. The attack deals an extra 7 ({@damage 2d6}) piercing damage if Molliver has advantage on the attack roll or if the target is within 5 feet of one of Molliver's allies." + ] + }, + { + "name": "Levitate", + "entries": [ + "While wearing boots of levitation, Molliver casts {@spell levitate} (self only)." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "Molliver halves the damage they take from an attack made against them, provided they can see the attacker." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Paper Bird", + "source": "WBtW", + "page": 166, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 5, + "dex": 16, + "con": 8, + "int": 2, + "wis": 14, + "cha": 6, + "skill": { + "perception": "+4" + }, + "passive": 14, + "immune": [ + "poison", + "psychic" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "cr": "0", + "trait": [ + { + "name": "Keen Sight", + "entries": [ + "The paper bird has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Sharp Edges", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ] + } + ], + "traitTags": [ + "Keen Senses" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Pollenella the Honeybee", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 135, + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 5, + "fly": 30 + }, + "str": 1, + "dex": 16, + "con": 8, + "int": 1, + "wis": 10, + "cha": 1, + "passive": 10, + "cr": "0", + "action": [ + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}3 piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Raezil", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 193, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + { + "alignment": [ + "N" + ] + }, + { + "alignment": [ + "NX", + "NY", + "N" + ] + } + ], + "ac": [ + 12 + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 10, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "investigation": "+5", + "perception": "+6", + "persuasion": "+5", + "sleight of hand": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "Common", + "Elvish" + ], + "cr": "1", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of her turns, Raezil can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Raezil has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Raezil deals an extra 7 ({@damage 2d6}) damage when she hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of hers that isn't incapacitated and Raezil doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Raezil makes two melee attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sneak Attack" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ringlerun", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 227, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "wizard" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item staff of power}" + ] + } + ], + "hp": { + "average": 42, + "formula": "12d8 - 12" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 10, + "con": 9, + "int": 17, + "wis": 13, + "cha": 11, + "save": { + "str": "+2", + "dex": "+3", + "con": "+2", + "int": "+6", + "wis": "+4", + "cha": "+3" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ringlerun casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "3e": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell sleep}" + ], + "1e": [ + "{@spell banishment}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell knock}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Ringlerun wields a {@item staff of power}. It has 20 charges when fully charged and regains {@dice 2d8 + 4} expended charges daily at dawn. If its last charge is expended, roll a {@dice d20}. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses its other properties; on a 20, it regains {@dice 1d8 + 2} charges." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ringlerun makes three {@item staff of power} or Freezing Ray attacks. He can replace one of those attacks with a use of Spellcasting." + ] + }, + { + "name": "Staff of Power", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage when used with two hands, and Ringlerun can expend 1 of the staff's charges to deal an extra 3 ({@damage 1d6}) force damage." + ] + }, + { + "name": "Freezing Ray", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}27 ({@damage 6d8}) cold damage." + ] + }, + { + "name": "Staff Spell", + "entries": [ + "While holding his {@item staff of power}, Ringlerun can expend 1 or more of its charges to cast one of the following spells from it (spell save {@dc 14}, {@hit 8} to hit with spell attacks): cone of cold ({@damage 8d8} cold damage; 5 charges), fireball ({@damage 10d6} fire damage; 5 charges), globe of invulnerability (6 charges), hold monster (5 charges), levitate (2 charges), lightning bolt ({@damage 10d6} lightning damage; 5 charges), magic missile (1 charge), ray of enfeeblement (1 charge), or wall of force (5 charges)." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "B", + "C", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "unconscious" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Selenelion Twin", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 241, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 14 + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 18, + "con": 13, + "int": 12, + "wis": 10, + "cha": 17, + "save": { + "dex": "+6", + "cha": "+5" + }, + "skill": { + "acrobatics": "+8", + "sleight of hand": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The Selenelion twins, Gleam and Glister, have advantage on saving throws against being {@condition charmed}, and magic can't put them to sleep." + ] + }, + { + "name": "Regeneration", + "entries": [ + "A Selenelion twin regains 5 hit points at the start of her turn as long as both twins are alive and within 60 feet of each other. A twin dies only if she starts her turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Twin Bond", + "entries": [ + "While both Selenelion twins are alive and on the same plane of existence, each is aware of the other's emotions." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Moon Ray (Gleam Only; 3/Day)", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}12 ({@damage 2d8 + 3}) radiant damage, and the target must succeed on a {@dc 13} Wisdom saving throw or be transformed into a bat for 1 minute, as though affected by a {@spell polymorph} spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Sun Ray (Glister Only; 3/Day)", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}12 ({@damage 2d8 + 3}) radiant damage, and the target must succeed on a {@dc 13} Wisdom saving throw or be {@condition blinded} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Twin Sight (Recharges after a Short or Long Rest)", + "entries": [ + "In her mind's eye, a Selenelion twin can see what the other twin sees for up to 1 minute, provided both twins are alive and on the same plane of existence. Maintaining this effect requires {@status concentration} (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P", + "R" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sir Talavar", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 69, + "size": [ + "T" + ], + "type": "dragon", + "alignment": [ + "L", + "G" + ], + "ac": [ + 15 + ], + "hp": { + "average": 14, + "formula": "4d4 + 4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 3, + "dex": 20, + "con": 13, + "int": 14, + "wis": 12, + "cha": 16, + "skill": { + "arcana": "+4", + "perception": "+3", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sir Talavar's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components. As the dragon ages and changes color, it gains additional spells as shown below." + ], + "daily": { + "1": [ + "{@spell color spray} (Orange)", + "{@spell mirror image} (Yellow)", + "{@spell suggestion} (Green)", + "{@spell major image} (Blue)", + "{@spell hallucinatory terrain} (Indigo)", + "{@spell polymorph} (Violet)" + ], + "1e": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Superior Invisibility", + "entries": [ + "As a bonus action, Sir Talavar can magically turn {@condition invisible} until his {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment Sir Talavar wears or carries is {@condition invisible} with him." + ] + }, + { + "name": "Limited Telepathy", + "entries": [ + "Using telepathy, Sir Talavar can magically communicate with any other faerie dragon within 60 feet of him." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Sir Talavar has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "+1 Tiny Sword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ] + }, + { + "name": "Euphoria Breath {@recharge 5}", + "entries": [ + "Sir Talavar exhales a puff of euphoria gas at one creature within 5 feet of him. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-4", + "entries": [ + "The target takes no action or bonus action and uses all of its movement to move in a random direction." + ] + }, + { + "type": "item", + "name": "5-6", + "entries": [ + "The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ] + } + ] + } + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "DR", + "E", + "S" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skabatha Nightshade", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 218, + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "hag" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 9, + "con": 16, + "int": 12, + "wis": 16, + "cha": 15, + "save": { + "con": "+6", + "int": "+4", + "wis": "+6", + "cha": "+5" + }, + "skill": { + "arcana": "+7", + "deception": "+5", + "perception": "+6", + "stealth": "+2" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 16, + "languages": [ + "Common", + "Elvish", + "Infernal", + "Sylvan" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Skabatha casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell druidcraft}", + "{@spell speak with animals}" + ], + "daily": { + "1": [ + "{@spell awaken} (as an action)", + "{@spell plane shift} (self only)" + ], + "2e": [ + "{@spell polymorph}", + "{@spell remove curse}", + "{@spell speak with plants}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Boon of Immortality", + "entries": [ + "Skabatha is immune to any effect that would age her, and she can't die from old age." + ] + }, + { + "name": "Forgetfulness", + "entries": [ + "The first creature that Skabatha sees after she finishes a long rest is {@condition invisible} to her. She can't remember seeing the creature or perceive it using her truesight until the end of her next long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Skabatha makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}25 ({@damage 6d6 + 4}) poison damage." + ] + } + ], + "bonus": [ + { + "name": "Alter Size", + "entries": [ + "Skabatha magically shrinks herself to Tiny size (between 4 and 8 inches tall) or returns to her normal size. If Skabatha lacks the room to return to her normal size, she attains the maximum size possible in the space available. Anything she is wearing or carrying changes size along with her.", + "As a Tiny creature, Skabatha deals 2 ({@damage 1d4}) poison damage when she hits with a Claw attack. She has advantage on Dexterity ({@skill Stealth}) checks, and disadvantage on Strength checks and Strength saving throws. Her statistics otherwise remain unchanged." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "I", + "S" + ], + "damageTags": [ + "I" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Skylla", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 220, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "warlock" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 11, + "con": 14, + "int": 12, + "wis": 15, + "cha": 17, + "save": { + "wis": "+4", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "intimidation": "+5", + "nature": "+3", + "persuasion": "+5" + }, + "passive": 12, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Skylla casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "1e": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell faerie fire}", + "{@spell fly}", + "{@spell hypnotic pattern}", + "{@spell invisibility}", + "{@spell mage armor}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Skylla carries an {@item Eldritch Staff|WBtW} (see appendix A) with 10 charges. The staff regains {@dice 1d6 + 4} expended charges daily at dawn. If its last charge is expended, roll a {@dice d20}; on a 1, the staff is destroyed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Skylla makes two Eldritch Staff attacks. She can replace one of the attacks with a use of Spellcasting." + ] + }, + { + "name": "Eldritch Staff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage when used with two hands, and Skylla can expend up to 3 of the staff's charges, dealing an extra 4 ({@damage 1d8}) lightning damage for each expended charge." + ] + } + ], + "reaction": [ + { + "name": "Eldritch Escape", + "entries": [ + "When Skylla takes damage, she can expend 3 charges of her eldritch staff to turn {@condition invisible} and teleport, along with any equipment she's wearing or carrying, up to 60 feet to an unoccupied space she can see. She remains {@condition invisible} until the start of her next turn or until she attacks or casts a spell." + ] + } + ], + "attachedItems": [ + "eldritch staff|wbtw" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B", + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "invisible" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Squirt the Oilcan", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 110, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 17, + "formula": "7d4" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 3, + "dex": 15, + "con": 10, + "int": 11, + "wis": 8, + "cha": 15, + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "Common", + "Dwarvish", + "Sylvan" + ], + "cr": "1/4", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If Squirt is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed Squirt move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that Squirt is animate." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "Squirt doesn't require air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Boggle Oil (3 Applications)", + "entries": [ + "Squirt expends 1 application of boggle oil to create a 10-foot-square puddle of slippery, non-flammable oil on the ground within 5 feet of it. The puddle is {@quickref difficult terrain||3} and lasts for 1 hour. Each creature that enters the puddle's area or starts its turn there must succeed on a {@dc 11} Dexterity saving throw or fall {@condition prone}. Boggles are unaffected by the oil. After it expends all 3 applications, Squirt can't use this action again until its supply of boggle oil is replenished." + ] + } + ], + "traitTags": [ + "False Appearance", + "Unusual Nature" + ], + "languageTags": [ + "C", + "D", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Strongheart", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 228, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "paladin" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 12, + "wis": 13, + "cha": 17, + "save": { + "wis": "+3", + "cha": "+5" + }, + "skill": { + "insight": "+3", + "persuasion": "+5" + }, + "passive": 11, + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Strongheart casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "3e": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}" + ], + "1e": [ + "{@spell lesser restoration}", + "{@spell remove curse}", + "{@spell zone of truth}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Strongheart wields {@item Steel|WBtW}, a sentient, lawful good longsword (see appendix A)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Strongheart makes three Steel attacks." + ] + }, + { + "name": "Steel", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage when used with two hands. Once on each of his turns, Strongheart can also cause the blade to gleam with holy light. If he does so, the target is {@condition blinded} until the start of Strongheart's next turn." + ] + }, + { + "name": "Revivify (Recharges at the Next Dawn)", + "entries": [ + "While holding Steel, Strongheart casts {@spell revivify}." + ] + } + ], + "reaction": [ + { + "name": "Protect Another", + "entries": [ + "When a creature Strongheart can see attacks another creature that is within 5 feet of him, Strongheart can use his reaction to impose disadvantage on the attack roll, provided he is carrying a shield." + ] + } + ], + "attachedItems": [ + "steel|wbtw" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Campestris", + "source": "WBtW", + "page": 232, + "size": [ + "M" + ], + "type": { + "type": "plant", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 5 + }, + "str": 3, + "dex": 7, + "con": 10, + "int": 4, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+4" + }, + "senses": [ + "tremorsense 30 ft." + ], + "passive": 14, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "understands Common but speaks only through the use of its Mimicry trait" + ], + "cr": "1", + "trait": [ + { + "name": "Mimicry", + "entries": [ + "Each campestri in the swarm can mimic any voice or song it has heard, albeit in a nasal falsetto." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough to accommodate an individual campestri. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Head Butts", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}10 ({@damage 4d4}) bludgeoning damage, or 5 ({@damage 2d4}) bludgeoning damage if the swarm has half its hit points or fewer." + ] + }, + { + "name": "Spores (1/Day)", + "entries": [ + "A 20-foot radius of spores extends from the swarm. These spores can go around corners, and they have no effect on Constructs, Elementals, Plants, or Undead. Each other creature in the area must make a {@dc 10} Wisdom saving throw. On a failed save, the creature is {@condition incapacitated} and its speed is halved, both 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." + ] + } + ], + "traitTags": [ + "Mimicry" + ], + "senseTags": [ + "T" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thinnings", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 15, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Thinnings", + "flags": "i" + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Change Shape", + "entries": [ + "Thinnings can make himself as flat as a piece of parchment or revert to his normal thickness. In his flattened form, he can slide under doors, roll himself up, or even fold himself into the pages of a book." + ] + } + } + } + }, + "type": "fey", + "alignment": [ + "N" + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Tin Soldier", + "source": "WBtW", + "page": 115, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 25 + }, + "str": 14, + "dex": 11, + "con": 13, + "int": 1, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The tin soldier is incapacitated while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the tin soldier must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the tin soldier remains motionless, it is indistinguishable from a normal suit of armor." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tin soldier makes two melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Treant Sapling", + "source": "WBtW", + "page": 36, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 8, + "con": 15, + "int": 12, + "wis": 12, + "cha": 10, + "passive": 11, + "resist": [ + "bludgeoning", + "piercing" + ], + "vulnerable": [ + "fire" + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the treant is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the treant move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the treant is animate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The treant makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}14 ({@damage 2d10 + 3}) bludgeoning damage." + ] + }, + { + "name": "Animate Trees (1/Day)", + "entries": [ + "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as an awakened tree (see the Monster Manual), except they can't speak. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies, until the treant dies or is more than 120 feet from the tree, or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU", + "E", + "S" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Warduke", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 221, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|PHB|half plate}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 14, + "int": 9, + "wis": 11, + "cha": 11, + "save": { + "str": "+6", + "con": "+5" + }, + "skill": { + "athletics": "+6", + "intimidation": "+3" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "5", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Warduke wears a {@item dread helm|XGE} (see appendix A) and wields a {@item flame tongue longsword}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Warduke makes three Flame Tongue or Dagger attacks." + ] + }, + { + "name": "Flame Tongue", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands, plus 7 ({@damage 2d6}) fire damage if the weapon is aflame." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Flaming Blade", + "entries": [ + "Warduke ignites or extinguishes his flame tongue longsword. While aflame, it sheds bright light in a 40-foot radius and dim light for an additional 40 feet." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "Warduke regains 13 hit points." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Will-o'-Wells", + "source": "WBtW", + "page": 61, + "_copy": { + "name": "Will-o'-Wisp", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "will-o'-wisp", + "with": "will-o'-wells" + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Magic Boon (Recharges after a Long Rest)", + "entries": [ + "The will-o'-wells grants a boon to one creature it can see within 5 feet of it that isn't an Undead. The boon's recipient gains a {@dice d4} and can, at any time within the next 24 hours, roll this die and add the number rolled to one ability check, attack roll, or saving throw made by it. No creature can have more than one of these magic boons at a time." + ] + } + } + } + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true + }, + { + "name": "Witchlight Hand (Medium)", + "source": "WBtW", + "page": 27, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 11, + "int": 12, + "wis": 13, + "cha": 12, + "skill": { + "sleight of hand": "+6" + }, + "passive": 11, + "languages": [ + "Common plus any one language" + ], + "cr": "1/8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hand casts one of the following spells, using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Secret Expertise", + "entries": [ + "The hand has one of these additional skills: {@skill Acrobatics} {@skillCheck acrobatics 6}, {@skill Animal Handling} {@skillCheck animal_handling 5}, {@skill Arcana} {@skillCheck arcana 5}, {@skill Athletics} {@skillCheck athletics 4}, {@skill Medicine} {@skillCheck medicine 5}, or {@skill Performance} {@skillCheck performance 5}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Pixie Dust (1/Day)", + "entries": [ + "The hand sprinkles a pinch of pixie dust on itself or another creature it can see within 5 feet of it. The recipient gains a flying speed of 30 feet for 1 minute. If the creature is airborne when this effect ends, it falls safely to the ground, taking no damage and landing on its feet." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Witchlight Hand (Small)", + "source": "WBtW", + "_copy": { + "name": "Witchlight Hand (Medium)", + "source": "WBtW", + "_preserve": { + "page": true, + "hasFluff": true, + "hasFluffImages": true + } + }, + "size": [ + "S" + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Zarak", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 222, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 16, + "con": 16, + "int": 11, + "wis": 15, + "cha": 6, + "save": { + "dex": "+5", + "int": "+2" + }, + "skill": { + "acrobatics": "+7", + "insight": "+6", + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 60" + ], + "passive": 16, + "languages": [ + "Common", + "Orc" + ], + "cr": "2", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Zarak carries a {@item potion of invisibility}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zarak makes two Dagger attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, plus an extra 5 ({@damage 2d4}) piercing damage if the target is a creature and Zarak has at least 18 hit points." + ] + }, + { + "name": "Garrote", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Humanoid. {@h}8 ({@damage 2d4 + 3}) slashing damage, and the target is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the target takes 8 ({@damage 2d4 + 3}) slashing damage at the start of each of its turns, and Zarak can't grapple another creature or use Assassin's Whim." + ] + } + ], + "bonus": [ + { + "name": "Assassin's Whim", + "entries": [ + "Zarak takes the Dash, Disengage, or Hide action." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "Zarak halves the damage he takes from an attack made against him, provided he can see the attacker." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zargash", + "isNpc": true, + "isNamedCreature": true, + "source": "WBtW", + "page": 223, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric", + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 14, + "int": 12, + "wis": 16, + "cha": 15, + "save": { + "wis": "+5", + "cha": "+4" + }, + "skill": { + "deception": "+6", + "insight": "+5" + }, + "passive": 13, + "languages": [ + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Zargash casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell light}", + "{@spell thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell command}", + "{@spell gaseous form}", + "{@spell hold person}", + "{@spell silence}", + "{@spell speak with dead}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Cling to Life (Recharges after a Long Rest)", + "entries": [ + "The first time Zargash would drop to 0 hit points as a result of taking damage, he instead drops to 1 hit point." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Zargash wears a bat-shaped amulet that has the properties of a {@item ring of feather falling}." + ] + } + ], + "action": [ + { + "name": "Warhammer", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, or 7 ({@damage 1d10 + 2}) bludgeoning damage when used with two hands." + ] + }, + { + "name": "Deathly Ray", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}25 ({@damage 4d10 + 3}) necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Animate Corpse (1/Day)", + "entries": [ + "Zargash targets the lifeless corpse of one Humanoid he can see within 30 feet of him and commands it to rise, transforming it into a zombie under his control. The zombie takes its turn immediately after Zargash. Animating the zombie requires Zargash's {@status concentration} (as if {@status concentration||concentrating} on a spell). The zombie reverts to an inanimate corpse after 10 minutes, when it drops to 0 hit points, or when Zargash's {@status concentration} ends." + ] + } + ], + "attachedItems": [ + "warhammer|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "deafened", + "paralyzed", + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ahmaergo", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 193, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44" + }, + "speed": { + "walk": 25 + }, + "str": 20, + "dex": 15, + "con": 14, + "int": 15, + "wis": 14, + "cha": 12, + "save": { + "str": "+9", + "con": "+6" + }, + "skill": { + "athletics": "+9", + "intimidation": "+5", + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish", + "Undercommon" + ], + "cr": "9", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Ahmaergo has advantage on saving throws against being {@condition poisoned}." + ] + }, + { + "name": "Indomitable (2/Day)", + "entries": [ + "Ahmaergo can reroll a saving throw that he fails. He must use the new roll." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, Ahmaergo can regain 20 hit points." + ] + }, + { + "name": "Extra Damage", + "entries": [ + "If Ahmaergo has more than half his hit points remaining he deals an extra 7 ({@damage 2d6}) slashing damage on every hit." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ahmaergo makes three attacks with his greataxe." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage" + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "greataxe|phb", + "heavy crossbow|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "U" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ammalia Cassalanter", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 193, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 45, + "formula": "10d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 15, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "insight": "+4", + "persuasion": "+5" + }, + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ammalia is a 9th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell mage armor}", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell invisibility}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell haste}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell hold monster}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "languageTags": [ + "C", + "DR", + "E", + "I" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aurinax", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 194, + "_copy": { + "name": "Adult Gold Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Aurinax", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Avi", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 32, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Avi", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Control Water", + "entries": [ + "At will, Avi can control the flow and shape of water in a 5-foot cube, or cause the water to freeze for up to 1 hour." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "genasi", + "prefix": "Water" + } + ] + }, + "alignment": [ + "N", + "G" + ], + "speed": { + "walk": 30, + "swim": 30 + }, + "resist": [ + "acid" + ], + "languages": [ + "Common", + "Primordial" + ], + "languageTags": [ + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Awakened Rat", + "source": "WDH", + "page": 102, + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 20 + }, + "str": 2, + "dex": 11, + "con": 9, + "int": 10, + "wis": 10, + "cha": 4, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "languages": [ + "Common" + ], + "cr": "0", + "trait": [ + { + "name": "Keen Smell", + "entries": [ + "The rat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "soundClip": { + "type": "internal", + "path": "bestiary/rat.mp3" + }, + "traitTags": [ + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Barnibus Blastwind", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 195, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 24, + "formula": "7d8 - 7" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 10, + "con": 9, + "int": 17, + "wis": 15, + "cha": 11, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "arcana": "+5", + "insight": "+6", + "investigation": "+7", + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Halfling" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Barnibus is a 7th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks) He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell identify}", + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell sending}" + ] + }, + "4": { + "slots": 1, + "spells": [ + "{@spell locate creature}", + "{@spell Otiluke's resilient sphere}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Barnibus carries a {@item wand of magic detection}. (spell included in spell list below but does not use a slot when cast from the wand)" + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "D", + "DR", + "H" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bepis Honeymaker", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 112, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "halfling", + "prefix": "Strongheart" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + 10 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "languages": [ + "Common", + "Halfling" + ], + "cr": "0", + "trait": [ + { + "name": "Halfling Nimbleness", + "entries": [ + "Bepis can move through a space occupied by a creature of a size larger than him" + ] + }, + { + "name": "Brave", + "entries": [ + "Bepis has advantage on saving throws against being {@condition frightened}." + ] + } + ], + "languageTags": [ + "C", + "H" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Black Viper", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 196, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 18, + "con": 14, + "int": 11, + "wis": 11, + "cha": 12, + "save": { + "dex": "+7", + "int": "+3" + }, + "skill": { + "acrobatics": "+7", + "athletics": "+3", + "perception": "+3", + "sleight of hand": "+7", + "stealth": "+7" + }, + "passive": 13, + "languages": [ + "Common", + "Thieves' cant" + ], + "cr": "5", + "trait": [ + { + "name": "Cunning Action", + "entries": [ + "On each of her turns, the Black Viper can use a bonus action to take the Dash, Disengage, or Hide action." + ] + }, + { + "name": "Evasion", + "entries": [ + "If the Black Viper is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. She can't use this trait if she's {@condition incapacitated}." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "The Black Viper deals an extra 14 ({@damage 4d6}) damage when she hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the Black Viper that isn't {@condition incapacitated} and the Black Viper doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Black Viper makes three attacks with her rapier." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "The Black Viper halves the damage that she takes from an attack that hits her. She must be able to see the attacker." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "rapier|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blinded Troll", + "isNpc": true, + "source": "WDH", + "page": 114, + "_copy": { + "name": "Troll", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": { + "name": "Blinded", + "entries": [ + "The troll is wearing an eyeless helm, and is {@condition blinded}." + ] + } + } + } + }, + "speed": { + "walk": 20 + }, + "cr": "4", + "hasToken": true + }, + { + "name": "Bonnie", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 20, + "_copy": { + "name": "Doppelganger", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the doppelganger", + "with": "Bonnie", + "flags": "i" + } + } + }, + "speed": { + "walk": 20 + }, + "cr": "4", + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Davil Starsong", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 199, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 16, + "wis": 12, + "cha": 17, + "save": { + "dex": "+5", + "cha": "+6" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "insight": "+4", + "perception": "+4", + "performance": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Davil is a 12th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks) He has the following bard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell mending}", + "{@spell minor illusion}", + "{@spell vicious mockery}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell disguise self}", + "{@spell sleep}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell invisibility}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell nondetection}", + "{@spell sending}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell compulsion}", + "{@spell freedom of movement}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dominate person}", + "{@spell greater restoration}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell Otto's irresistible dance}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Davil has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "CB" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "unconscious" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Diatryma", + "source": "WDH", + "page": 191, + "_copy": { + "name": "Axe Beak", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "axe beak", + "with": "diatryma" + } + } + }, + "action": [ + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ] + } + ], + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Dining Table Mimic", + "source": "WDH", + "page": 122, + "size": [ + "L" + ], + "type": { + "type": "monstrosity", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 15 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 5, + "wis": 13, + "cha": 8, + "skill": { + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "acid" + ], + "conditionImmune": [ + "prone" + ], + "cr": "3", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Adhesive (Object Form Only)", + "entries": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 13}). Ability checks made to escape this grapple have disadvantage." + ] + }, + { + "name": "False Appearance (Object Form Only)", + "entries": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ] + }, + { + "name": "Grappler", + "entries": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mimic can make three attacks; two with its pseudopods and one with its bite" + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ] + } + ], + "traitTags": [ + "False Appearance", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true + }, + { + "name": "Drow Gunslinger", + "source": "WDH", + "page": 201, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 18, + "con": 14, + "int": 11, + "wis": 13, + "cha": 14, + "save": { + "dex": "+6", + "con": "+4", + "wis": "+3" + }, + "skill": { + "perception": "+3", + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 12}) It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ] + }, + { + "name": "Gunslinger", + "entries": [ + "Being within 5 feet of a hostile creature or attacking at long range doesn't impose disadvantage on the drow's ranged attack rolls with a pistol. In addition, the drow ignores {@quickref Cover||3||half cover} and {@quickref Cover||3||three-quarters cover} when making ranged attacks with a pistol." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The drow makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ] + }, + { + "name": "Poisonous Pistol", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 30/90 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Durnan", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 203, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item elven chain}" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 18, + "int": 13, + "wis": 12, + "cha": 10, + "save": { + "str": "+8", + "con": "+8" + }, + "skill": { + "athletics": "+8", + "perception": "+5" + }, + "passive": 15, + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "9", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Durnan wields a {@item Greatsword of Sharpness||sword of sharpness (greatsword)} called Grimvault. He wears {@item boots of striding and springing}, {@item elven chain}, and a {@item ring of spell turning}." + ] + }, + { + "name": "Indomitable (Recharges after a Long Rest)", + "entries": [ + "Durnan can reroll a saving throw that he fails. He must use the new roll." + ] + }, + { + "name": "Spell Turning", + "entries": [ + "While wearing his ring of spell turning, Durnan has advantage on saving throws against any spell that targets only him (not in an area of effect). If Durnan rolls a 20 for the save and the spell is 7th level or lower, the spell has no effect on him and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Durnan makes four melee weapon attacks." + ] + }, + { + "name": "Grimvault", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is an object, the hit instead deals 16 slashing damage. If the target is a creature and Durnan rolls a 20 on the {@dice d20} for the attack roll, the target takes an extra 14 slashing damage, and Durnan rolls another {@dice d20}. On a roll of 20, he lops off one of the target's limbs, or some other part of its body if it is limbless." + ] + }, + { + "name": "Double Crossbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 60/240 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Elzerina Cassalanter", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 115, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Embric", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 32, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Embric", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "genasi", + "prefix": "Fire" + } + ] + }, + "alignment": [ + "N", + "G" + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Primordial" + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Embric's spellcasting ability is Constitution ({@hit 4} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell produce flame}" + ], + "ability": "con" + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "I" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Emmek Frewn", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 42, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true + }, + { + "name": "Engineer", + "source": "WDH", + "page": 141, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "gnome", + "prefix": "Rock" + } + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 10 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 14, + "wis": 10, + "cha": 11, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Gnomish" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The gnome is a 1st-level spellcaster. Its spellcasting ability is Intelligence. It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Gnome Cunning", + "entries": [ + "The gnome has advantage on all Intelligence, Wisdom and Charisma saving throws against magic." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Or Ranged Weapon Attack: {@hit 2} to hit, range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "G" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Fala Lefaliir", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 32, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "elf", + "prefix": "Wood" + } + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 35 + }, + "str": 10, + "dex": 12, + "con": 13, + "int": 12, + "wis": 15, + "cha": 11, + "skill": { + "medicine": "+4", + "nature": "+3", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Druidic", + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Fala is a 4th-level spellcaster. Their spellcasting ability is Wisdom. They have the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Fala has advantage on saving throws against being {@condition charmed}, and magic can't put them to sleep." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit or Melee Weapon Attack {@hit 4} to hit with shillelagh, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh or if wielded with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DU", + "E" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Falcon", + "source": "WDH", + "page": 53, + "_copy": { + "name": "Hawk", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "hawk", + "with": "falcon", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Fel'rekt Lafeen", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 67, + "_copy": { + "name": "Drow Gunslinger", + "source": "WDH", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Fel'rekt", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Floon Blagmaar", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 202, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "int": 7, + "cha": 13, + "hasToken": true + }, + { + "name": "Flying Staff", + "group": [ + "Animated Objects" + ], + "source": "WDH", + "page": 152, + "size": [ + "S" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 17, + "formula": "5d6" + }, + "speed": { + "walk": 0, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 12, + "dex": 15, + "con": 11, + "int": 1, + "wis": 5, + "cha": 1, + "save": { + "dex": "+4" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 7, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1/4", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The staff is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the staff must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ] + }, + { + "name": "False Appearance", + "entries": [ + "While the staff remains motionless and isn't flying, it is indistinguishable from a normal staff." + ] + } + ], + "action": [ + { + "name": "Knife", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility", + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Griffon Cavalry Rider", + "source": "WDH", + "page": 197, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item half plate armor|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 15, + "con": 14, + "int": 10, + "wis": 12, + "cha": 10, + "skill": { + "animal handling": "+3", + "athletics": "+4", + "perception": "+3" + }, + "passive": 13, + "languages": [ + "any one language (usually Common)" + ], + "cr": "2", + "action": [ + { + "name": "Lance", + "entries": [ + "{@atk mw} {@hit 4} to hit (with disadvantage against a target within 5 ft.), reach 10 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage, or 11 ({@damage 1d12 + 5}) piercing damage while mounted." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Feather Fall", + "entries": [ + "The rider wears a magic ring with which it can cast the {@spell feather fall} spell on itself once as a reaction to falling. After the spell is cast, the ring becomes nonmagical." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "lance|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grinda Garloth", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 65, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Grinda", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "languages": [ + "Common", + "Dwarvish", + "Halfling", + "Undercommon" + ], + "languageTags": [ + "C", + "D", + "H", + "U" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Grum'shar", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 29, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-orc" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 14, + "wis": 10, + "cha": 11, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Orc" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Grum'shar is a 1st-level spellcaster. His spellcasting ability is Intelligence. He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Relentless Endurance", + "entries": [ + "When reduced to 0 hit points, Grum'shar drops to 1 hit point instead. He can only do this once per long rest." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Or Ranged Weapon Attack: {@hit 2} to hit, range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hester Barch", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 83, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Hester", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "skill": { + "medicine": "+4", + "religion": "+2", + "insight": "+4" + }, + "hasToken": true + }, + { + "name": "Hlam", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 204, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 22, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 137, + "formula": "25d8 + 25" + }, + "speed": { + "walk": 60 + }, + "str": 11, + "dex": 24, + "con": 13, + "int": 14, + "wis": 21, + "cha": 14, + "save": { + "str": "+5", + "dex": "+12" + }, + "skill": { + "athletics": "+5", + "religion": "+7" + }, + "passive": 15, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned", + "disease" + ], + "languages": [ + "all spoken languages" + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Hlam is a 5th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks) He has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect evil and good}", + "{@spell healing word}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell prayer of healing}", + "{@spell silence}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell protection from energy}", + "{@spell remove curse}", + "{@spell sending}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Evasion", + "entries": [ + "If Hlam is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ] + }, + { + "name": "Magic Attacks", + "entries": [ + "Hlam's unarmed strikes are magical." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "While Hlam is wearing no armor and wielding no shield, his AC includes his Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hlam attacks three times using his unarmed strike, darts, or both." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}12 ({@damage 1d10 + 7}) bludgeoning, magic damage. If the target is a creature, Hlam can choose one of the following additional effects:", + "The target must succeed on a {@dc 18} Strength saving throw or drop one item it is holding (Hlam's choice).", + "The target must succeed on a {@dc 18} Dexterity saving throw or be knocked {@condition prone}.", + "The target must succeed on a {@dc 18} Constitution saving throw or be {@condition stunned} until the end of Hlam's next turn." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 20/60 ft., one target. {@h}9 ({@damage 1d4 + 7}) piercing damage." + ] + }, + { + "name": "Quivering Palm {@recharge}", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one creature. {@h}The target must make a {@dc 18} Constitution saving throw. On a failed save, the target is reduced to 0 hit points. On a successful save, the target takes 55 ({@damage 10d10}) necrotic damage." + ] + }, + { + "name": "Wholeness of Body (Recharges after a Long Rest)", + "entries": [ + "Hlam regains 60 hit points." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, Hlam deflects the missile. The damage he takes from the attack is reduced by {@dice 1d10 + 27}. If the damage is reduced to 0, Hlam catches the missile if it's small enough to hold in one hand and he has a hand free." + ] + }, + { + "name": "Slow Fall", + "entries": [ + "Hlam reduces the bludgeoning damage he takes from a fall by 100." + ] + } + ], + "legendary": [ + { + "name": "Quick Step", + "entries": [ + "Hlam moves up to his speed without provoking opportunity attacks." + ] + }, + { + "name": "Unarmed Strike (Costs 2 Actions)", + "entries": [ + "Hlam makes one unarmed strike." + ] + }, + { + "name": "Invisibility (Costs 3 Actions)", + "entries": [ + "Hlam becomes {@condition invisible} until the end of his next turn. The effect ends if Hlam attacks or casts a spell." + ] + } + ], + "attachedItems": [ + "dart|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "N", + "P" + ], + "damageTagsSpell": [ + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "conditionInflictSpell": [ + "deafened" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hrabbaz", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-orc" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 17, + "int": 10, + "wis": 14, + "cha": 12, + "save": { + "str": "+8", + "con": "+6" + }, + "skill": { + "athletics": "+8", + "intimidation": "+4", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Common", + "Orc" + ], + "cr": "5", + "trait": [ + { + "name": "Indomitable (2/Day)", + "entries": [ + "Hrabbaz can reroll a saving throw that he fails. He must use the new roll." + ] + }, + { + "name": "Relentless Endurance (Recharges after a Long Rest)", + "entries": [ + "When Hrabbaz is reduced to 0 hit points but not killed outright, he drops to 1 hit point instead." + ] + }, + { + "name": "Extra Damage", + "entries": [ + "As long as Hrabbaz has more than half his hit points left he deals an extra 3 ({@damage 1d6}) damage on all hits." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hrabbaz makes three attacks with his morningstar." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Istrid Horn", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 199, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36" + }, + "speed": { + "walk": 25 + }, + "str": 12, + "dex": 10, + "con": 14, + "int": 11, + "wis": 17, + "cha": 13, + "save": { + "con": "+5", + "wis": "+6" + }, + "skill": { + "intimidation": "+4", + "religion": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Istrid is a 9th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks) She has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell divine favor}", + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell magic weapon}", + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell beacon of hope}", + "{@spell crusader's mantle}", + "{@spell dispel magic}", + "{@spell revivify}", + "{@spell spirit guardians}", + "{@spell water walk}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}", + "{@spell guardian of faith}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell flame strike}", + "{@spell mass cure wounds}", + "{@spell hold monster}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Istrid has advantage on saving throws against being {@condition poisoned}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Istrid makes two melee attacks." + ] + }, + { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) bludgeoning damage." + ] + }, + { + "name": "Treasure Sense (3/Day)", + "entries": [ + "Istrid magically pinpoints precious metals and stones, such as coins and gems, within 60 feet of her." + ] + } + ], + "attachedItems": [ + "maul|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "deafened", + "incapacitated", + "paralyzed" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jalester Silvermane", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 205, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item chain mail|phb}", + "{@item Badge of the Watch|wdh}" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 14, + "con": 13, + "int": 12, + "wis": 14, + "cha": 13, + "save": { + "str": "+4", + "con": "+3" + }, + "skill": { + "athletics": "+4", + "survival": "+4" + }, + "passive": 12, + "languages": [ + "Common", + "Elvish" + ], + "cr": "4", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Jalester carries a {@item badge of the Watch|wdh}." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, Jalester can regain 16 ({@dice 1d10 + 11}) hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jalester makes two weapon attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage when used with two hands." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Riposte", + "entries": [ + "When a creature that Jalester can see misses him with a melee attack, he can use his reaction to make a melee weapon attack against that creature. On a hit, the target takes an extra 4 damage from the weapon." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jandar Chergoba", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 116, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tiefling" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "skill": { + "deception": "+4", + "persuasion": "+4", + "religion": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Jandar's spellcasting ability is Charisma. He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell thaumaturgy}" + ], + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Jandar is a 4th-level spellcaster. His spellcasting ability is Wisdom. Jandar has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "Jandar has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jandar makes two melee attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Jarlaxle Baenre", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 206, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 24, + "from": [ + "{@item +3 leather armor}", + "Suave Defense" + ] + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 22, + "con": 14, + "int": 20, + "wis": 16, + "cha": 19, + "save": { + "dex": "+11", + "wis": "+8" + }, + "skill": { + "acrobatics": "+11", + "athletics": "+6", + "deception": "+14", + "perception": "+8", + "sleight of hand": "+11", + "stealth": "+16" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Undercommon" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Jarlaxle's innate spellcasting ability is Charisma (spell save {@dc 17}, {@hit 9} to hit with spell attacks) He can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Jarlaxle wears {@item +3 leather armor}, a {@item hat of disguise}, a {@item bracer of flying daggers|wdh}, a {@item cloak of invisibility}, a {@item knave's eye patch|wdh}, and a {@item ring of truth telling|wdh}. He wields a {@item +3 rapier} and carries a {@item portable hole} and a {@item wand of web}. His hat is adorned with a {@item feather of diatryma summoning|wdh}." + ] + }, + { + "name": "Evasion", + "entries": [ + "If he is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Jarlaxle instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Jarlaxle has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "Legendary Resistance (1/Day)", + "entries": [ + "If Jarlaxle fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Master Attuner", + "entries": [ + "Jarlaxle can attune to up to five magic items, and he can attune to magic items that normally require attunement by a sorcerer, warlock, or wizard." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Jarlaxle deals an extra 24 ({@damage 7d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Jarlaxle's that isn't {@condition incapacitated} and Jarlaxle doesn't have disadvantage on the attack roll." + ] + }, + { + "name": "Suave Defense", + "entries": [ + "While Jarlaxle is wearing light or no armor and wielding no shield, his AC includes his Charisma modifier." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "When not wearing his knave's eye patch, Jarlaxle has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jarlaxle makes three attacks with his +3 rapier or two attacks with daggers created by his bracer of flying daggers." + ] + }, + { + "name": "+3 Rapier", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}13 ({@damage 1d8 + 9}) piercing damage." + ] + }, + { + "name": "Flying Dagger", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ] + } + ], + "legendary": [ + { + "name": "Quick Step", + "entries": [ + "Jarlaxle moves up to his speed without provoking opportunity attacks." + ] + }, + { + "name": "Attack (Costs 2 Actions)", + "entries": [ + "Jarlaxle makes one attack with his +3 rapier or two attacks with daggers created by his bracer of flying daggers." + ] + } + ], + "attachedItems": [ + "+3 rapier|dmg" + ], + "traitTags": [ + "Fey Ancestry", + "Legendary Resistances", + "Sneak Attack", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "D", + "DR", + "E", + "U" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Jenks", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 63, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kaevja Cynavern", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 158, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Mulan" + } + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kaevja is a 9th-level spellcaster. Her spellcasting ability is Intelligence. Kaevja has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Kaevja carries a yellow {@item elemental gem}. As an action she can break the gem releasing an earth elemental under her command." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kalain", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 89, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "save": { + "dex": "+4", + "wis": "+3" + }, + "skill": { + "acrobatics": "+4", + "perception": "+5", + "performance": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Kalain is a 4th-level spellcaster. Her spellcasting ability is Charisma. She has the following bard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell vicious mockery}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell healing word}", + "{@spell heroism}", + "{@spell sleep}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell shatter}" + ] + } + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Kalain has advantage on saving throws against being {@condition charmed} and magic can't put her to sleep." + ] + }, + { + "name": "Art Imitates Life (3/Day)", + "entries": [ + "Kalain touches one of her paintings and causes its subject to spring forth, becoming a creature of that kind provided its CR is 3 or lower. The creature appears in an unoccupied space within 5 feet of the painting, which becomes blank. The creature is friendly toward Kalain and hostile toward all others. It rolls initiative to determine when it acts. It disappears after 1 minute, when it is reduced to 0 hit points, or when Kalain dies or falls {@condition unconscious}." + ] + }, + { + "name": "Taunt (2/Day)", + "entries": [ + "Kalain can use a bonus action on her turn to target one creature within 30 feet of it. If the target can hear Kalain, the target must succeed on a {@dc 12} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of Kalain's next turn." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "T", + "Y" + ], + "spellcastingTags": [ + "CB" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "unconscious" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Krebbyg Masq'il'yr", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 67, + "_copy": { + "name": "Drow Gunslinger", + "source": "WDH", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Krebbyg", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true + }, + { + "name": "Lady Gondafrey", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 152, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 15, + "dex": 11, + "con": 16, + "int": 10, + "wis": 11, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "petrified", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gargoyle makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Laeral Silverhand", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 207, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item robe of the archmagi}" + ] + } + ], + "hp": { + "average": 228, + "formula": "24d8 + 120" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 17, + "con": 20, + "int": 20, + "wis": 20, + "cha": 19, + "save": { + "int": "+11", + "wis": "+11" + }, + "skill": { + "arcana": "+17", + "history": "+17", + "insight": "+11", + "perception": "+11", + "persuasion": "+10" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 21, + "resist": [ + "fire" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Giant", + "Infernal" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Laeral is a 19th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 21}, {@hit 13} to hit with spell attacks). Laeral has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell sending}", + "{@spell tongues}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell greater invisibility}", + "{@spell Otiluke's resilient sphere}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cone of cold}", + "{@spell geas}", + "{@spell Rary's telepathic bond}" + ] + }, + "6": { + "slots": 2, + "spells": [ + "{@spell globe of invulnerability}", + "{@spell mass suggestion}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell prismatic spray}", + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell time stop}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Laeral wears a white {@item robe of the archmagi} (accounted for in her statistics). She wields a {@item flame tongue longsword}." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "While wearing her robe of the archmagi, Laeral has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Laeral makes three attacks with her silver hair and flame tongue, in any combination. She can cast one of her cantrips or 1st-level spells before or after making these attacks." + ] + }, + { + "name": "Silver Hair", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) force damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Flame Tongue", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage plus 7 ({@damage 2d6}) fire damage, or 6 ({@damage 1d10 + 1}) slashing damage plus 7 ({@damage 2d6}) fire damage when used with two hands." + ] + }, + { + "name": "Spellfire (Recharges after a Long Rest)", + "entries": [ + "Magical, heatless, silver fire harmlessly erupts from Laeral and surrounds her until she is {@condition incapacitated} or until she uses an action to quench it. She gains one of the following benefits of her choice, which lasts until the silver fire ends:", + { + "type": "list", + "items": [ + "She can breathe underwater.", + "She can survive without food and water.", + "She is immune to magic that would ascertain her thoughts, truthfulness, alignment, or creature type.", + "She gains resistance to cold damage, and she is unharmed by temperatures as low as -50 degrees Fahrenheit." + ] + }, + "While the silver fire is present, she has the following additional action options:", + { + "type": "list", + "items": [ + "Cast the {@spell cure wounds} spell. The target regains {@dice 1d8 + 5} hit points. After Laeral takes this action, roll a {@dice d6}. On a roll of 1, the silver fire disappears.", + "Cast the {@spell revivify} spell without material components. After Laeral takes this action, roll a {@dice d6}. On a roll of 1-2, the silver fire disappears.", + "Release a 60-foot line of silver fire that is 5 feet wide or a 30-foot cone of silver fire. Objects in the area that aren't being worn or carried take 26 ({@damage 4d12}) fire damage. Each creature in the area must succeed on a {@dc 21} Dexterity saving throw, taking 26 ({@damage 4d12}) fire damage on a failed save, or half as much damage on a successful one. After Laeral takes this action, roll a {@dice d6}. On a roll of 1-3, the silver fire disappears." + ] + } + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR", + "E", + "GI", + "I" + ], + "damageTags": [ + "F", + "O", + "S" + ], + "damageTagsSpell": [ + "A", + "C", + "F", + "I", + "L", + "O", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "paralyzed" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "incapacitated", + "invisible", + "petrified", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Laiba \"Nana\" Rosse", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 116, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tiefling" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "skill": { + "deception": "+4", + "persuasion": "+4", + "religion": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Laiba's spellcasting ability is Charisma. She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell thaumaturgy}" + ], + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Laiba is a 4th-level spellcaster. Her spellcasting ability is Wisdom. Laiba has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "Laiba has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Laiba makes two melee attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Losser Mirklav", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 85, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "halfling", + "prefix": "Lightfoot" + } + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 31, + "formula": "9d6" + }, + "speed": { + "walk": 25 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "Common", + "Halfling" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence. The mage has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Halfling Nimbleness", + "entries": [ + "Losser can move through the space of a creature that is a size bigger than him." + ] + }, + { + "name": "Brave", + "entries": [ + "Losser has advantage on saving throws against being {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "H" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Magister Umbero Zastro", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 82, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 11 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 11, + "int": 12, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "persuasion": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Elvish" + ], + "cr": "0", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Umbero has advantage on saving throws against being {@condition charmed} and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The noble adds 2 to its AC against one melee attack that would hit it. To do so, the noble must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Manafret Cherryport", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 149, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "halfling", + "prefix": "Lightfoot" + } + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 31, + "formula": "9d6" + }, + "speed": { + "walk": 25 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "languages": [ + "Common", + "Halfling" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence. The mage has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Halfling Nimbleness", + "entries": [ + "Manafret can move through a space of a Medium or larger creature." + ] + }, + { + "name": "Brave", + "entries": [ + "Manafret has advantage on saving throws against being {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "H" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Manshoon", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 209, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item robe of the archmagi}", + "{@item staff of power}" + ] + } + ], + "hp": { + "average": 126, + "formula": "23d8 + 23" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 23, + "wis": 15, + "cha": 16, + "save": { + "str": "+2", + "dex": "+4", + "con": "+3", + "int": "+13", + "wis": "+9", + "cha": "+5" + }, + "skill": { + "arcana": "+11", + "history": "+11" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Goblin", + "Infernal", + "Orc", + "Undercommon" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Manshoon is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 21}, {@hit 15} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell lightning bolt}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell fire shield}", + "{@spell greater invisibility}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell scrying}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell flesh to stone}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell simulacrum}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell mind blank}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell imprisonment}", + "{@spell power word kill}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Manshoon wears a black {@item robe of the archmagi} and wields a {@item staff of power} (both accounted for in his statistics). Roll {@dice 2d10} to determine how many charges the staff has remaining." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "While wearing his robe of the archmagi, Manshoon has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Metal Fist", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + }, + { + "name": "Staff of Power", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage when used with two hands. Manshoon can expend 1 of the staff's charges to deal an extra 3 ({@damage 1d6}) force damage on a hit." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "GO", + "I", + "O", + "U" + ], + "damageTags": [ + "B", + "O" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "L", + "N", + "O", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Manshoon Simulacrum", + "isNpc": true, + "source": "WDH", + "page": 208, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 126, + "formula": "23d8 + 23" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 23, + "wis": 15, + "cha": 16, + "save": { + "int": "+11", + "wis": "+7" + }, + "skill": { + "arcana": "+12", + "history": "+12" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Goblin", + "Infernal", + "Orc", + "Undercommon" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Manshoon is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 19}, {@hit 11} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell lightning bolt}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell fire shield}", + "{@spell greater invisibility}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell scrying}", + "{@spell wall of force}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Metal Fist", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "GO", + "I", + "O", + "U" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "L", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mattrim \"Threestrings\" Mereg", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 20, + "_copy": { + "name": "Bard", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the bard", + "with": "Mattrim", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maxeene", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 37, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 10, + "con": 12, + "int": 10, + "wis": 11, + "cha": 7, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1/4", + "action": [ + { + "name": "Hooves", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ] + } + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mechanical Bird", + "source": "WDH", + "page": 46, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 15 + ], + "hp": { + "special": "1" + }, + "speed": { + "fly": 60 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "Unknown", + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d3}) piercing damage, and the bird is destroyed by the impact." + ] + } + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Melannor Fellbranch", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 36, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 13, + "int": 12, + "wis": 15, + "cha": 11, + "skill": { + "medicine": "+4", + "nature": "+3", + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Melannor is a 4th-level spellcaster. His spellcasting ability is Wisdom. He has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Melannor has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit or Melee Weapon Attack {@hit 4} to hit with shillelagh, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh or if wielded with two hands." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Meloon Wardragon", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 210, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 15, + "con": 14, + "int": 10, + "wis": 14, + "cha": 15, + "save": { + "str": "+9", + "con": "+6" + }, + "skill": { + "athletics": "+9", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Deep Speech", + "telepathy 60 ft." + ], + "cr": "9", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Meloon wields {@item Azuredge|wdh} but can't attune to it, and thus gains none of its benefits." + ] + }, + { + "name": "Indomitable (2/Day)", + "entries": [ + "Meloon can reroll a saving throw that he fails. He must use the new roll." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, Meloon can regain 20 hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Meloon makes four attacks with Azuredge." + ] + }, + { + "name": "Azuredge", + "entries": [ + "{@atk m} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage." + ] + } + ], + "attachedItems": [ + "azuredge|wdh" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "TP" + ], + "damageTags": [ + "S" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mirt", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 211, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item bracers of defense}" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 15, + "wis": 12, + "cha": 15, + "save": { + "dex": "+8", + "wis": "+5" + }, + "skill": { + "acrobatics": "+8", + "athletics": "+8", + "perception": "+5", + "persuasion": "+6", + "stealth": "+8" + }, + "passive": 15, + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "9", + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Mirt wears {@item bracers of defense} and a {@item ring of regeneration}. He wields a {@item +1 longsword} and a {@item +1 dagger}." + ] + }, + { + "name": "Brute", + "entries": [ + "A melee weapon deals one extra die of its damage when Mirt hits with it (included in the attacks below)." + ] + }, + { + "name": "Evasion", + "entries": [ + "If he is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Mirt instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Mirt deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Mirt's that isn't {@condition incapacitated} and Mirt doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Mirt makes three attacks: two with his +1 longsword and one with his +1 dagger." + ] + }, + { + "name": "+1 Longsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage, or 16 ({@damage 2d10 + 5}) slashing damage when used with two hands." + ] + }, + { + "name": "+1 Dagger", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) piercing damage. Or Ranged Weapon Attack: {@hit 9} to hit, range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Mirt adds 2 to his AC against one melee attack that would hit him. To do so, Mirt must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "+1 dagger|dmg", + "+1 longsword|dmg" + ], + "traitTags": [ + "Brute", + "Sneak Attack" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nar'l Xibrindas", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 211, + "_copy": { + "name": "Drow Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "\\bthe drow\\b", + "with": "Nar'l", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Nar'l carries a vial containing three doses of eyescratch, a contact poison. A creature that comes into contact with the poison must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} for 1 hour and {@condition blinded} while {@condition poisoned} in this way. A {@spell lesser restoration} spell or similar magic ends the effect." + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nat", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 63, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nihiloor", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 212, + "_copy": { + "name": "Mind Flayer", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "Nihiloor", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nimblewright", + "source": "WDH", + "page": 212, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 60 + }, + "str": 12, + "dex": 18, + "con": 17, + "int": 8, + "wis": 10, + "cha": 6, + "save": { + "dex": "+6" + }, + "skill": { + "acrobatics": "+8", + "perception": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "understands one language known to its creator but can't speak" + ], + "cr": "4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The nimblewright has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Magic Weapons", + "entries": [ + "The nimblewright's weapon attacks are magical." + ] + }, + { + "name": "Repairable", + "entries": [ + "As long as it has at least 1 hit point remaining, the nimblewright regains 1 hit point when a {@spell mending} spell is cast on it." + ] + }, + { + "name": "Sure-Footed", + "entries": [ + "The nimblewright has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nimblewright makes three attacks: two with its rapier and one with its dagger." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage. Or Ranged Weapon Attack: {@hit 6} to hit, range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The nimblewright adds 2 to its AC against one melee attack that would hit it. To do so, the nimblewright must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "rapier|phb" + ], + "traitTags": [ + "Magic Resistance", + "Magic Weapons" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Noska Ur'gray", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 213, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 25 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 11, + "skill": { + "intimidation": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1/2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "Noska has advantage on an attack roll against a creature if at least one of Noska's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Dwarven Resilience", + "entries": [ + "Noska has advantage on saving throws against poison and resistance to poison damage." + ] + }, + { + "name": "Difficult Climber", + "entries": [ + "Noska has disadvantage on Strength checks made to climb, due to his disability." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Noska makes two melee attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "mace|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Obaya Uday", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 20, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Obaya", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Obliteros", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 66, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55" + }, + "speed": { + "walk": 0, + "swim": 50 + }, + "str": 23, + "dex": 11, + "con": 21, + "int": 10, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+3" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 13, + "languages": [ + "Aquan" + ], + "cr": "5", + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "Obliteros has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Water Breathing", + "entries": [ + "Obliteros can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ] + } + ], + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "AQ" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Orond Gralhund", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 213, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Tethyrian" + } + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 11, + "int": 9, + "wis": 14, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+4", + "persuasion": "+5" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1/8", + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Orond adds 2 to its AC against one melee attack that would hit it. To do so, Orond must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Osvaldo Cassalanter", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 124, + "_copy": { + "name": "Chain Devil", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the devil", + "with": "Osvaldo", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ott Steeltoes", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 214, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 25 + }, + "str": 11, + "dex": 12, + "con": 10, + "int": 6, + "wis": 11, + "cha": 10, + "skill": { + "deception": "+2", + "religion": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1/8", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Ott has advantage on saving throws against poison and resistance to poison damage." + ] + }, + { + "name": "Dark Devotion", + "entries": [ + "The cultist has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Panopticus Wizard", + "source": "WDH", + "page": 106, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 10 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 14, + "wis": 10, + "cha": 11, + "skill": { + "arcana": "+4", + "history": "+4" + }, + "passive": 10, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "1/4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Dwarf is a 1st-level spellcaster. Its spellcasting ability is Intelligence. It has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "The dwarf has advantage on saving throws against poison and resistance to poison damage." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Or Ranged Weapon Attack: {@hit 2} to hit, range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Remallia Haventree", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 214, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 13, + "int": 18, + "wis": 15, + "cha": 17, + "save": { + "int": "+8", + "wis": "+6" + }, + "skill": { + "arcana": "+8", + "deception": "+7", + "history": "+8", + "persuasion": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Halfling" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Remallia is a 13th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell alarm}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell invisibility}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell flesh to stone}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell symbol}", + "{@spell teleport}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Remallia has a {@item Figurine of Wondrous Power, Silver Raven||figurine of wondrous power (silver raven)}." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Remallia has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + }, + { + "name": "Arcane Ward", + "entries": [ + "Remallia has a magical ward that has 30 hit points. Whenever she takes damage, the ward takes the damage instead. If the ward is reduced to 0 hit points, Remallia takes any remaining damage. When Remallia casts an abjuration spell of 1st level or higher, the ward regains a number of hit points equal to twice the level of the spell. This applies to any of the following spells she casts: {@spell alarm}, {@spell mage armor}, {@spell shield}, {@spell arcane lock}, {@spell counterspell}, {@spell dispel magic}, {@spell banishment}, {@spell stoneskin}, {@spell globe of invulnerability} and {@spell symbol}." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "DR", + "E", + "H" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "C", + "F", + "N", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "frightened", + "incapacitated", + "invisible", + "petrified", + "restrained", + "stunned", + "unconscious" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Renaer Neverember", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 215, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 18, + "con": 12, + "int": 14, + "wis": 11, + "cha": 15, + "skill": { + "acrobatics": "+8", + "athletics": "+5", + "persuasion": "+6" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "3", + "trait": [ + { + "name": "Lightfooted", + "entries": [ + "The swashbuckler can take the Dash or Disengage action as a bonus action on each of its turns." + ] + }, + { + "name": "Suave Defense", + "entries": [ + "While the swashbuckler is wearing light or no armor and wielding no shield, its AC includes its Charisma modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The swashbuckler makes three attacks: one with a dagger and two with its rapier." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage. Or Ranged Weapon Attack: {@hit 6} to hit, range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb", + "rapier|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rishaal the Page-Turner", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 33, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dragonborn" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Rishaal is a 9th-level spellcaster. His spellcasting ability is Intelligence. Rishaal has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Breath Weapon", + "entries": [ + "Rishaal can use his action to exhale a 15-foot cone of fire (but can't do this again until he finishes a short or long rest); each creature in the cone must make a {@dc 10} Dexterity saving throw, taking {@damage 2d6} fire damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Saeth Cromley", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 216, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item splint armor|phb}" + ] + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 14, + "int": 10, + "wis": 11, + "cha": 14, + "skill": { + "athletics": "+5", + "perception": "+2", + "intimidation": "+4" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Saeth makes two longsword attacks. If he has a shortsword drawn, he can also make a shortsword attack." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb", + "shortsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Samara Strongbones", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 104, + "_copy": { + "name": "Spy", + "source": "MM", + "_templates": [ + { + "name": "Stout Halfling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Samara", + "flags": "i" + } + } + }, + "languageTags": [ + "H", + "X" + ], + "hasToken": true + }, + { + "name": "Sergeant", + "source": "WDH", + "page": 197, + "_copy": { + "name": "Guard", + "source": "MM" + }, + "hasToken": true + }, + { + "name": "Shard Shunner", + "source": "WDH", + "page": 42, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "halfling", + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 27, + "formula": "6d6 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 12, + "int": 11, + "wis": 10, + "cha": 8, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft. (rat form only)" + ], + "passive": 12, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Common", + "Halfling", + "Thieves' cant" + ], + "cr": "2", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The Shard Shunner can use their action to polymorph into a rat-humanoid hybrid or into a giant rat, or back into their true form, which is humanoid. Their statistics, other than their size, are the same in each form. Any equipment they are wearing or carrying isn't transformed. They revert to their true form if they die." + ] + }, + { + "name": "Keen Smell", + "entries": [ + "The Shard Shunner has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ] + }, + { + "name": "Halfling Nimbleness", + "entries": [ + "The Shard Shunner can move through the space of creatures that is of a size larger than them." + ] + }, + { + "name": "Brave", + "entries": [ + "The Shard Shunner has advantage on saving throws against being {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack (Humanoid or Hybrid Form Only)", + "entries": [ + "The Shard Shunner makes two attacks, only one of which can be a bite." + ] + }, + { + "name": "Bite (Rat or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 11} Constitution saving throw or be cursed with wererat lycanthropy." + ] + }, + { + "name": "Shortsword (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + }, + { + "name": "Hand Crossbow (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Keen Senses", + "Shapechanger" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "H", + "TC" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Skeemo Weirdbottle", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 200, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 72, + "formula": "16d6 + 16" + }, + "speed": { + "walk": 25 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 17, + "wis": 12, + "cha": 15, + "save": { + "int": "+6", + "wis": "+4" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "perception": "+4", + "performance": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Abyssal", + "Common", + "Gnomish", + "Undercommon" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Skeemo is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks) He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Gnome Cunning", + "entries": [ + "Skeemo has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ] + } + ], + "action": [ + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C", + "G", + "U" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "C", + "F", + "O" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Soluun Xibrindas", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 202, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|phb|studded leather}", + "{@item shield|phb}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 18, + "con": 14, + "int": 11, + "wis": 13, + "cha": 14, + "save": { + "dex": "+6", + "con": "+4", + "wis": "+3" + }, + "skill": { + "perception": "+3", + "stealth": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "languages": [ + "Elvish", + "Undercommon" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Soluun's spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Soluun has advantage on saving throws against being {@condition charmed}, and magic can't put Soluun to sleep." + ] + }, + { + "name": "Gunslinger", + "entries": [ + "Being within 5 feet of a hostile creature or attacking at long range doesn't impose disadvantage on Soluun's ranged attack rolls with a pistol. In addition, Soluun ignores {@quickref Cover||3||half cover} and {@quickref Cover||3||three-quarters cover} when making ranged attacks with a pistol." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, Soluun has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + }, + { + "name": "Equipment", + "entries": [ + "Four packets of smokepowder and a pouch containing 20 pistol bullets" + ] + }, + { + "name": "Boots of Elvenkind", + "entries": [ + "Whilst wearing these boots Soluun's steps make no sound and he has advantage on any Dexterity ({@skill Stealth}) checks that rely on moving silently." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Soluun makes two scimitar attacks." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + }, + { + "name": "Poisonous Pistol", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 30/90 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Squiddly", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 63, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "tiefling" + ] + }, + "senses": [ + "darkvision 60 ft." + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Books", + "source": "WDH", + "page": 156, + "size": [ + "M" + ], + "type": { + "type": "construct", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 0, + "fly": 30 + }, + "str": 5, + "dex": 15, + "con": 10, + "int": 2, + "wis": 12, + "cha": 4, + "senses": [ + "blindsight 60 ft." + ], + "passive": 11, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned", + "grappled" + ], + "cr": "1/4", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny book. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one creature in the swarm's space. {@h}5 ({@damage 2d4}) bludgeoning damage, or 2 ({@damage 1d4}) bludgeoning damage if the swarm has half of its hit points or fewer." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Swarm of Mechanical Spiders", + "source": "WDH", + "page": 143, + "size": [ + "M" + ], + "type": { + "type": "construct", + "swarmSize": "T" + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 3, + "dex": 13, + "con": 10, + "int": 1, + "wis": 7, + "cha": 1, + "senses": [ + "blindsight 10 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "vulnerable": [ + "lightning" + ], + "conditionImmune": [ + "exhaustion", + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned", + "poisoned" + ], + "cr": "1/2", + "trait": [ + { + "name": "Constructed Nature", + "entries": [ + "The swarm doesn't require air, food, drink, or sleep." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the swarm knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The swarm ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sylgar", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 220, + "size": [ + "T" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 1, + "formula": "1d4 - 1" + }, + "speed": { + "walk": 0, + "swim": 40 + }, + "str": 2, + "dex": 16, + "con": 9, + "int": 1, + "wis": 7, + "cha": 2, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "cr": "0", + "trait": [ + { + "name": "Water Breathing", + "entries": [ + "Sylgar can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "traitTags": [ + "Water Breathing" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Talisolvanar \"Tally\" Fellbranch", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 32, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 10 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 10, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Elvish" + ], + "cr": "0", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Tally has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Tashlyn Yafeera", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 200, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|phb}" + ] + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 14, + "int": 10, + "wis": 14, + "cha": 12, + "save": { + "str": "+8", + "con": "+6" + }, + "skill": { + "athletics": "+8", + "intimidation": "+5", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Common" + ], + "cr": "9", + "trait": [ + { + "name": "Indomitable (2/Day)", + "entries": [ + "Tashlyn can reroll a saving throw that she fails. She must use the new roll." + ] + }, + { + "name": "Second Wind (Recharges after a Short or Long Rest)", + "entries": [ + "As a bonus action, Tashlyn can regain 20 hit points." + ] + }, + { + "name": "Extra Damage", + "entries": [ + "Tashlyn deals an extra 7 ({@damage 2d6}) damage to every hit if she has more than half her hit points remaining." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tashlyn makes three attacks with her greatsword or her shortbow." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "shortbow|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Terenzio Cassalanter", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 115, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "hasToken": true + }, + { + "name": "Thorvin Twinbeard", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 216, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 10 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 16, + "cha": 10, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "0", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Thorvin has advantage on saving throws against poison and resistance to poison damage." + ] + } + ], + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Thrakkus", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 89, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dragonborn" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|phb}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 17, + "int": 9, + "wis": 11, + "cha": 9, + "passive": 10, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "2", + "trait": [ + { + "name": "Reckless", + "entries": [ + "At the start of his turn, Thrakkus can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against him have advantage until the start of his next turn." + ] + } + ], + "action": [ + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d12 + 3}) slashing damage." + ] + }, + { + "name": "Breath Weapon (1/Day)", + "entries": [ + "Thrakkus can use his action to exhale a 15-foot cone of fire. Each creature in the cone must make a {@dc 13} Dexterity saving throw, taking 6 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Reckless" + ], + "actionTags": [ + "Breath Weapon" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "F", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Tissina Khyret", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 116, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "tiefling" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "skill": { + "deception": "+4", + "persuasion": "+4", + "religion": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "fire" + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tissina's spellcasting ability is Charisma. She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell thaumaturgy}" + ], + "ability": "cha" + }, + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tissina is a 4th-level spellcaster. Her spellcasting ability is Wisdom. Tissina has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Dark Devotion", + "entries": [ + "Tissina has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tissina makes two melee attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Urstul Floxin", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 216, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Illuskan" + } + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|phb|studded leather}" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 14, + "int": 13, + "wis": 11, + "cha": 10, + "save": { + "dex": "+6", + "int": "+4" + }, + "skill": { + "acrobatics": "+6", + "deception": "+3", + "perception": "+3", + "stealth": "+9" + }, + "passive": 13, + "resist": [ + "poison" + ], + "languages": [ + "Common", + "Orc", + "Thieves' cant" + ], + "cr": "8", + "trait": [ + { + "name": "Assassinate", + "entries": [ + "During its first turn, Urstul has advantage on attack rolls against any creature that hasn't taken a turn. Any hit Urstul scores against a {@status surprised} creature is a critical hit." + ] + }, + { + "name": "Evasion", + "entries": [ + "If Urstul is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Urstul instead takes no damage if he succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Sneak Attack (1/Turn)", + "entries": [ + "Urstul deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Urstul that isn't {@condition incapacitated} and Urstul doesn't have disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Urstul makes two shortsword attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Light Crossbow", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "light crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Sneak Attack" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O", + "TC" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vajra Safahr", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 217, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 126, + "formula": "23d8 + 23" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 20, + "wis": 11, + "cha": 16, + "save": { + "str": "+2", + "dex": "+4", + "con": "+3", + "int": "+12", + "wis": "+7", + "cha": "+5" + }, + "skill": { + "arcana": "+10", + "history": "+10" + }, + "passive": 10, + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Giant", + "Halfling", + "Undercommon" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Vajra is an 18th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 12} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell mage armor}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell misty step}", + "{@spell web}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell sending}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell fire shield}", + "{@spell stoneskin}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell geas}", + "{@spell telekinesis}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell forcecage}", + "{@spell prismatic spray}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell antimagic field}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell imprisonment}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Vajra wields the {@item Blackstaff|wdh}, accounted for in her statistics. Roll {@dice 2d10} to determine how many charges the staff has remaining." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Vajra has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Staff Spells", + "entries": [ + "While holding the blackstaff, Vajra can use an action to expend 1 or more of its charges to cast one of the following spells from it, using her spell save DC and spell attack bonus: {@spell cone of cold} (5 charges), {@spell fireball} (5th-level version, 5 charges), {@spell globe of invulnerability} (6 charges), {@spell hold monster} (5 charges), {@spell levitate} (2 charges), {@spell lightning bolt} (5th-level version, 5 charges), {@spell magic missile} (1 charge), {@spell ray of enfeeblement} (1 charge), or {@spell wall of force} (5 charges)." + ] + } + ], + "action": [ + { + "name": "Blackstaff", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning, magic damage, or 6 ({@damage 1d8 + 2}) bludgeoning, magic damage when used with two hands. Vajra can expend 1 of the staff's charges to deal an extra 3 ({@damage 1d6}) force damage on a hit." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "languageTags": [ + "C", + "D", + "E", + "GI", + "H", + "U" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "I", + "L", + "O", + "T", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Valetta", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 47, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dragonborn" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 25 + }, + "str": 10, + "dex": 10, + "con": 12, + "int": 13, + "wis": 16, + "cha": 13, + "skill": { + "medicine": "+7", + "persuasion": "+3", + "religion": "+5" + }, + "passive": 13, + "resist": [ + "lightning" + ], + "languages": [ + "Common", + "Draconic" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Valetta is a 5th-level spellcaster. Her spellcasting ability is Wisdom. Valetta has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell guiding bolt}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell spirit guardians}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Divine Eminence", + "entries": [ + "As a bonus action, Valetta can expend a spell slot to cause her melee weapon attacks to magically deal an extra 10 ({@damage 3d6}) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If Valetta expends a spell slot of 2nd level or higher, the extra damage increases by {@damage 1d6} for each level above 1st." + ] + } + ], + "action": [ + { + "name": "Breathe Weapon", + "entries": [ + "Valetta can use her action to exhale a 5-foot-wide, 30-foot line of lightning (but can't do this again until she finishes a short or long rest); each creature in the line must make a {@dc 11} Dexterity saving throw, taking {@damage 2d6} lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "mace|phb" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "R" + ], + "damageTagsSpell": [ + "N", + "O", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Victoro Cassalanter", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 218, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-elf" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item glamoured studded leather}", + "{@item ring of protection}" + ] + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 13, + "con": 14, + "int": 16, + "wis": 17, + "cha": 18, + "save": { + "con": "+6", + "wis": "+7" + }, + "skill": { + "history": "+7", + "insight": "+7", + "persuasion": "+8", + "religion": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Victoro is a 15th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Victoro has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell command}", + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell protection from evil and good}", + "{@spell sanctuary}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell lesser restoration}", + "{@spell mirror image}", + "{@spell pass without trace}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell blink}", + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell magic circle}", + "{@spell protection from energy}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell dimension door}", + "{@spell divination}", + "{@spell freedom of movement}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell dominate person}", + "{@spell flame strike}", + "{@spell modify memory}", + "{@spell insect plague}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell heal}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell divine word}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell earthquake}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Victoro wears a {@item ring of protection} and {@item glamoured studded leather} disguised to look like fine clothing. He carries a {@item rod of rulership} shaped like a ruby-tipped cane." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Victoro has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ] + }, + { + "name": "Rod of Rulership", + "entries": [ + "Victoro can use an action to present the rod and command obedience from each creature of his choice that he can see within 120 feet of him. Each target must succeed on a {@dc 15} Wisdom saving throw or be {@condition charmed} for 8 hours by Victoro. While {@condition charmed} in this way, the creature regards Victoro as its trusted leader. If harmed by Victoro or his companions, or commanded to do something contrary to its nature, a target ceases to be {@condition charmed} in this way. The rod can't be used again until the next dawn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Victoro makes two attacks with his rapier." + ] + }, + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + }, + { + "name": "Cloak of Shadows (2/Day)", + "entries": [ + "Victoro becomes {@condition invisible} until the end of his next turn. He becomes visible early immediately after he attacks or casts a spell." + ] + }, + { + "name": "Summon Devil (Recharges after 9 Days)", + "entries": [ + "Victoro summons a {@creature barbed devil}. The devil appears in an unoccupied space within 30 feet of Victoro, acts as Victoro's ally, and can't summon other devils. It remains for 1 minute, until it or Victoro dies, or until Victoro dismisses it as an action." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "I" + ], + "damageTags": [ + "P" + ], + "damageTagsSpell": [ + "B", + "F", + "O", + "P", + "R" + ], + "spellcastingTags": [ + "CC" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "incapacitated", + "prone", + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vincent Trench", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 32, + "_copy": { + "name": "Rakshasa", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the rakshasa", + "with": "Vincent", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Walking Statue of Waterdeep", + "source": "WDH", + "page": 219, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 314, + "formula": "17d20 + 136" + }, + "speed": { + "walk": 60 + }, + "str": 30, + "dex": 8, + "con": 27, + "int": 1, + "wis": 10, + "cha": 1, + "save": { + "con": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 10, + "immune": [ + "cold", + "fire", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with adamantine weapons", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "stunned" + ], + "cr": "18", + "trait": [ + { + "name": "Crumbling Colossus", + "entries": [ + "When the statue drops to 0 hit points, it crumbles and is destroyed. Any creature on the ground within 30 feet of the crumbling statue must make a {@dc 22} Dexterity saving throw, taking 22 ({@damage 4d10}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The statue is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The statue has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The statue deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The statue makes two melee attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 5 ft., one target. {@h}29 ({@damage 3d12 + 10}) bludgeoning damage." + ] + }, + { + "name": "Hurled Stone", + "entries": [ + "{@atk rw} {@hit 16} to hit, range 200/800 ft., one target. {@h}43 ({@damage 6d10 + 10}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Willifort Crowelle", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 62, + "_copy": { + "name": "Doppelganger", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the doppelganger", + "with": "Willifort", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Xanathar", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 220, + "_copy": { + "name": "Beholder", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the beholder", + "with": "Xanathar", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Xanathar wears a {@item ring of invisibility}, a {@item ring of mind shielding}, and a {@item ring of force resistance||ring of resistance (force)}." + ] + } + } + }, + "_preserve": { + "legendaryGroup": true + } + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yagra Stonefist", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 20, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-orc" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 11, + "skill": { + "intimidation": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Orc" + ], + "cr": "1/2", + "trait": [ + { + "name": "Relentless Endurance", + "entries": [ + "When reduced to 0 hit points, Yagra drops to 1 hit point instead (but can't do this again until she finishes a long rest)." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "Yagra has advantage on an attack roll against a creature if at least one of her allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Savage Attacks", + "entries": [ + "When she scores a critical hit Yagra can roll one of the weapon's damage dice and add it to the extra damage of the critical hit." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Yagra makes two melee attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "mace|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yalah Gralhund", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 220, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "human", + "prefix": "Tethyrian" + } + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 12, + "con": 11, + "int": 12, + "wis": 16, + "cha": 16, + "skill": { + "deception": "+5", + "insight": "+5", + "persuasion": "+5" + }, + "passive": 13, + "languages": [ + "Common", + "Infernal" + ], + "cr": "1/8", + "action": [ + { + "name": "Rapier", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "Yalah adds 2 to its AC against one melee attack that would hit it. To do so, Yalah must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "rapier|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Yorn", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 150, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-orc" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "{@item leather armor|phb}" + ] + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 11, + "con": 14, + "int": 10, + "wis": 10, + "cha": 11, + "skill": { + "intimidation": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Common", + "Orc" + ], + "cr": "1/2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Relentless Endurance (1/Day)", + "entries": [ + "When reduced to 0 hit points Yorn drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The thug makes two melee attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "mace|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Zhent Martial Arts Adept", + "source": "WDH", + "page": 160, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + { + "tag": "halfling", + "prefix": "Lightfoot" + } + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 16 + ], + "hp": { + "average": 49, + "formula": "11d6 + 11" + }, + "speed": { + "walk": 25 + }, + "str": 11, + "dex": 17, + "con": 13, + "int": 11, + "wis": 16, + "cha": 10, + "skill": { + "acrobatics": "+5", + "insight": "+5", + "stealth": "+5" + }, + "passive": 13, + "languages": [ + "Common", + "Halfling" + ], + "cr": "3", + "trait": [ + { + "name": "Halfling Nimbleness", + "entries": [ + "The adept can move through the space of a medium of larger creature." + ] + }, + { + "name": "Brave", + "entries": [ + "The adept has advantage on any saving throws against being {@condition frightened}." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "While the adept is wearing no armor and wielding no shield, their AC includes their Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The adept makes three unarmed strikes or three dart attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the target is a creature, the adept can choose one of the following additional effects:", + { + "type": "list", + "items": [ + "The target must succeed on a {@dc 13} Strength saving throw or drop one item it is holding (adept's choice).", + "The target must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}.", + "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the adept's next turn." + ] + } + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, the adept deflects the missile. The damage it takes from the attack is reduced by {@dice 1d10 + 3}. If the damage is reduced to 0, the adept catches the missile if it's small enough to hold in one hand and the adept has a hand free." + ] + } + ], + "attachedItems": [ + "dart|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "H" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ziraj the Hunter", + "isNpc": true, + "isNamedCreature": true, + "source": "WDH", + "page": 201, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "half-orc" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "{@item +2 leather armor}" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 11, + "wis": 14, + "cha": 15, + "save": { + "wis": "+5", + "cha": "+5" + }, + "skill": { + "athletics": "+7", + "intimidation": "+5", + "stealth": "+7", + "survival": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Orc" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ziraj is a 10th-level spellcaster. His spellcasting ability is Charisma. He has the following paladin spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell protection from evil and good}", + "{@spell thunderous smite}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell branding smite}", + "{@spell find steed}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell blinding smite}", + "{@spell dispel magic}" + ] + } + }, + "ability": "cha" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ziraj makes three attacks with his glaive or with his oversized longbow." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ] + }, + { + "name": "Oversized Longbow", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Dreadful Aspect (Recharges after a Short or Long Rest)", + "entries": [ + "Ziraj exudes magical menace. Each enemy within 30 feet of him must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute of Ziraj. If a {@condition frightened} enemy ends its turn more than 30 feet away from Ziraj, the enemy can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "attachedItems": [ + "glaive|phb", + "oversized longbow|wdh" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "O" + ], + "damageTags": [ + "P", + "S" + ], + "damageTagsSpell": [ + "R", + "T" + ], + "spellcastingTags": [ + "CP" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "blinded", + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Al'chaia", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 218, + "_copy": { + "name": "Githyanki Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the githyanki", + "with": "Al'chaia", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Animated Ballista", + "source": "WDMM", + "page": 39, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 15 + ], + "hp": { + "average": 50, + "formula": "50d1" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "2", + "action": [ + { + "name": "Magic Bolt", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 120 ft., one target. {@h}16 ({@damage 3d10}) fire damage" + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "F" + ], + "miscTags": [ + "RW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Animated Jade Serpent", + "source": "WDMM", + "page": 92, + "_copy": { + "name": "Giant Poisonous Snake", + "source": "MM" + }, + "type": "construct", + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "hasToken": true + }, + { + "name": "Animated Staff", + "source": "WDMM", + "page": 262, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "40" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 12, + "dex": 12, + "con": 10, + "int": 18, + "wis": 14, + "cha": 10, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 12, + "resist": [ + "cold" + ], + "immune": [ + "poison" + ], + "languages": [ + "Common" + ], + "trait": [ + { + "name": "Wielder Domination", + "entries": [ + "A creature can grab the staff out of the air with a successful grapple check against the staff, and grappling the staff does not reduce the creature's speed. Any creature that successfully grapples the staff must succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} by the staff until the staff is no longer in its grasp. While the creature is {@condition charmed}, the staff can issue commands to it, which the creature does its best to obey. The creature can repeat the saving throw each time it takes damage, ending the effect on itself on a success. A creature that successfully resists the staff's control can't be {@condition charmed} by it for 24 hours.", + "A creature holding the staff that isn't {@condition charmed} by it can use an action to attempt to break the staff over a knee or against a solid surface, doing so with a successful {@dc 17} Strength ({@skill Athletics}) check. Breaking the staff in this manner destroys it." + ] + } + ], + "action": [ + { + "name": "Staff of Frost", + "entries": [ + "The staff has 10 charges. It can expend 1 or more of its charges to cast one of the following spells (save {@dc 12}): {@spell cone of cold} (5 charges), {@spell fog cloud} (1 charge), {@spell ice storm} (4 charges), or {@spell wall of ice} (4 charges). It regains {@dice 1d6 + 4} expended charges daily at dawn. If the staff expends its last charge, roll a {@dice d20}. On a 1, the staff turns to water and is destroyed." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage plus 1 cold damage." + ] + } + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "C" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true + }, + { + "name": "Animated Statue of Lolth", + "source": "WDMM", + "page": 142, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "statue" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Spider Climb", + "entries": [ + "The statue can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + } + } + }, + "size": [ + "H" + ], + "hp": { + "average": 230, + "formula": "20d12 + 100" + }, + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "11", + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Magic Weapons", + "Spider Climb" + ], + "languageTags": [ + "AB", + "CS" + ], + "hasToken": true + }, + { + "name": "Animated Stove", + "source": "WDMM", + "page": 186, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 17 + ], + "hp": { + "average": 50, + "formula": "50d1" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "passive": 6, + "cr": "3", + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) bludgeoning damage." + ] + }, + { + "name": "Belch Fire {@recharge 4}", + "entries": [ + "The stove belches fire in a 15-foot cone. Each creature in the area must make a {@dc 10} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Animated Wand", + "source": "WDMM", + "page": 299, + "_copy": { + "name": "Animated Object (Tiny)", + "source": "PHB", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "object", + "with": "wand", + "flags": "i" + }, + "action": { + "mode": "prependArr", + "items": { + "name": "Wand of Wonder", + "entries": [ + "The animated wand can expend 1 of its charges and target a random creature with one of its {@item wand of wonder||randomly determined effects}. Any such effect that would target the wand's user targets the wand instead. If reduced to 0 hit points, the wand crumbles into dust and is destroyed." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Arcturia", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 296, + "_copy": { + "name": "Lich", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the lich", + "with": "Arcturia", + "flags": "i" + } + } + }, + "speed": { + "walk": 30, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Arcturia is an 18th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). Arcturia can cast {@spell alter self} at will and has the following wizard spells prepared:" + ], + "will": [ + "{@spell alter self}" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell enlarge/reduce}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}", + "{@spell slow}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell animate objects}", + "{@spell telekinesis}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell flesh to stone}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell reverse gravity}", + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell maze}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell true polymorph}" + ] + } + }, + "ability": "int", + "hidden": [ + "will" + ] + } + ], + "damageTagsLegendary": [], + "damageTagsSpell": [ + "A", + "B", + "C", + "F", + "N", + "O", + "P", + "S", + "T", + "Y" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ashtyrranthor", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 210, + "_copy": { + "name": "Adult Red Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Ashtyrranthor", + "flags": "i" + } + } + }, + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ashtyrranthor's spellcasting ability is Charisma. She can innately cast the following spells, requiring no material components:" + ], + "daily": { + "1e": [ + "{@spell alarm}", + "{@spell detect magic}", + "{@spell gaseous form}", + "{@spell misty step}", + "{@spell passwall}", + "{@spell see invisibility}" + ] + }, + "ability": "cha" + } + ], + "damageTagsLegendary": [], + "spellcastingTags": [ + "I" + ], + "hasToken": true + }, + { + "name": "Awakened Brown Bear", + "source": "WDMM", + "page": 72, + "_copy": { + "name": "Brown Bear", + "source": "MM", + "_templates": [ + { + "name": "Awakened", + "source": "PHB" + } + ] + }, + "hasToken": true + }, + { + "name": "Awakened Elk", + "source": "WDMM", + "page": 72, + "_copy": { + "name": "Elk", + "source": "MM", + "_templates": [ + { + "name": "Awakened", + "source": "PHB" + } + ] + }, + "hasToken": true + }, + { + "name": "Awakened Giant Wasp", + "source": "WDMM", + "page": 72, + "_copy": { + "name": "Giant Wasp", + "source": "MM", + "_templates": [ + { + "name": "Awakened", + "source": "PHB" + } + ] + }, + "hasToken": true + }, + { + "name": "Berlain Shadowdusk", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 283, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Berlain", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Extra Parts", + "entries": [ + "As a bonus action, Berlain can use her extra mouth and arms to cast any cantrip she has prepared." + ] + } + } + } + }, + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "languages": [ + "Common", + "Deep Speech", + "Grell", + "Undercommon" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Berlain is an 18th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). Berlain can cast {@spell disguise self} and invisibility at will and has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell mage armor}*", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell polymorph}", + "{@spell fire shield}", + "{@spell stoneskin}*" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cone of cold}", + "{@spell scrying}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell mind blank}*" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell time stop}" + ] + } + }, + "footerEntries": [ + "*Berlain casts these spells on herself before combat." + ], + "ability": "int" + } + ], + "languageTags": [ + "C", + "DS", + "OTH", + "U" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Big Xorn", + "source": "WDMM", + "page": 51, + "_copy": { + "name": "Xorn", + "source": "MM" + }, + "size": [ + "L" + ], + "hp": { + "formula": "9d10 + 54", + "average": 103 + }, + "str": 20, + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The xorn makes three claw attacks and one bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}22 ({@damage 5d6 + 5}) piercing damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + } + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true + }, + { + "name": "Bore Worm", + "source": "WDMM", + "page": 171, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 247, + "formula": "15d20 + 90" + }, + "speed": { + "walk": 50, + "burrow": 30 + }, + "str": 28, + "dex": 7, + "con": 22, + "int": 1, + "wis": 8, + "cha": 4, + "save": { + "con": "+11", + "wis": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "passive": 9, + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "cr": "16", + "trait": [ + { + "name": "Tunneler", + "entries": [ + "The worm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The worm regains 10 hit points at the start of each of its turns if it has at least 1 hit point." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The worm makes two attacks: one with its grinding jaws and one with its stinger." + ] + }, + { + "name": "Grinding Jaws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) slashing damage." + ] + }, + { + "name": "Tail Stinger", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}19 ({@damage 3d6 + 9}) piercing damage, and the target must make a {@dc 19} Constitution saving throw, taking 42 ({@damage 12d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Regeneration", + "Tunneler" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Captain N'ghathrod", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 250, + "_copy": { + "name": "Mind Flayer Arcanist", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "Captain N'ghathrod", + "flags": "i" + } + } + }, + "hp": { + "average": 111, + "formula": "13d8 + 13" + }, + "legendaryGroup": { + "name": "Captain N'ghathrod", + "source": "WDMM" + }, + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Carrion Ogre", + "source": "WDMM", + "page": 189, + "_copy": { + "name": "Ogre", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "type": "entries", + "name": "Tied Down", + "entries": [ + "While lashed to the floor, the creature is {@condition prone} and {@condition restrained}. It also suffers from two levels of {@condition exhaustion}." + ] + } + } + } + }, + "int": 1, + "languages": null, + "action": [ + { + "name": "Multiattack", + "entries": [ + "The creature makes two attacks: one with its tentacles and one with its bite." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}4 ({@damage 1d4 + 2}) poison damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 minute. Until this poison ends, the target is {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the poison on itself on a success." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ] + } + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cassiok Shadowdusk", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 287, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Cassiok", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Cassiok carries a {@item staff of power} that grants him a +2 bonus to Armor Class, spell attack rolls, and saving throws. His insectoid physiology prevents him from making melee attacks with the staff. If reduced to 20 hit points or fewer, Cassiok uses his next action to break his staff in a retributive strike." + ] + } + }, + "action": "remove" + } + }, + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "save": { + "str": "+2", + "dex": "+4", + "con": "+3", + "int": "+11", + "wis": "+8", + "cha": "+5" + }, + "languages": [ + "Common", + "Deep Speech", + "Infernal", + "Undercommon" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Cassiok is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 19}, {@hit 11} to hit with spell attacks). Cassiok can cast {@spell disguise self} and invisibility at will and has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell mage armor}*", + "{@spell magic missile}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell phantasmal killer}", + "{@spell fire shield}", + "{@spell stoneskin}*" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cone of cold}", + "{@spell scrying}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell mind blank}*" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell time stop}" + ] + } + }, + "footerEntries": [ + "*Cassiok casts these spells on himself before combat." + ], + "ability": "int" + } + ], + "languageTags": [ + "C", + "DS", + "I", + "U" + ], + "damageTagsSpell": [ + "C", + "F", + "L", + "O", + "Y" + ], + "miscTags": [], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Copper Stormforge", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 30, + "_copy": { + "name": "Scout", + "source": "MM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Copper", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Crow", + "source": "WDMM", + "page": 302, + "_copy": { + "name": "Raven", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "raven", + "with": "crow", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Crystal Battleaxe", + "source": "WDMM", + "page": 89, + "_copy": { + "name": "Flying Sword", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "sword", + "with": "battleaxe", + "flags": "i" + } + } + }, + "action": [ + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "miscTags": [ + "MLW" + ], + "hasToken": true + }, + { + "name": "Crystal Golem", + "source": "WDMM", + "page": 210, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Illumination", + "entries": [ + "The golem magically sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light goes out when the golem is destroyed." + ] + }, + { + "name": "Light Intensity", + "entries": [ + "Any creature that starts its turn within 10 feet of the illuminated golem and can see the golem must succeed on a {@dc 17} Wisdom saving throw or be {@condition blinded} until the start of the creature's next turn.", + "A creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the golem until the start of its next turn, when it can avert its eyes again. If the creature looks at the golem in the meantime, it must immediately make the save." + ] + } + ] + } + } + }, + "traitTags": [ + "Illumination", + "Immutable Form", + "Magic Resistance", + "Magic Weapons" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Deformed Duergar", + "isNpc": true, + "source": "WDMM", + "page": 180, + "_copy": { + "name": "Duergar", + "source": "MM", + "_mod": { + "trait": { + "mode": "prependArr", + "items": [ + { + "name": "Third Arm", + "entries": [ + "The duergar can make an attack with its javelin as a bonus action." + ] + }, + { + "name": "Merged Heads", + "entries": [ + "The duergar has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition charmed}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ] + } + ] + } + } + }, + "hp": { + "average": 40, + "formula": "4d8 + 4" + }, + "miscTags": [ + "MW", + "RCH", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Dezmyr Shadowdusk", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 287, + "_copy": { + "name": "Death Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the death knight", + "with": "Dezmyr", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": [ + { + "name": "Warp Reality", + "entries": [ + "As a bonus action on her turn, Dezmyr can warp reality, undoing damage dealt to herself or another creature that she can see within 20 feet of her. The beneficiary of this warped reality instantly regains 10 hit points." + ] + } + ] + } + } + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Dezmyr is a 19th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). She has the following paladin spells prepared:" + ], + "spells": { + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell compelled duel}", + "{@spell searing smite}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell magic weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell elemental weapon}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell locate creature}", + "{@spell staggering smite}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell destructive wave} (necrotic)" + ] + } + }, + "ability": "cha" + } + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Drivvin Freth", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 169, + "_copy": { + "name": "Archmage", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Drivvin", + "flags": "i" + }, + "action": { + "mode": "appendArr", + "items": { + "name": "Summon Demon (1/Day)", + "entries": [ + "Drivvin magically summons a {@filter demon of challenge rating 6 or lower|bestiary|challenge rating=[&0;&6]|tag=demon|miscellaneous=!swarm}. The summoned demon appears in an unoccupied space within 60 feet of him, acts as his ally, and can't summon other demons. The summoned demon remains until Drivvin dismisses it as an action or until the demon is reduced to 0 hit points." + ] + } + } + } + }, + "languages": [ + "Abyssal", + "Common", + "Dwarvish", + "Elvish", + "Goblin", + "Undercommon" + ], + "traitTags": [ + "Fey Ancestry", + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "C", + "D", + "E", + "GO", + "U" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "hasToken": true + }, + { + "name": "Emberosa", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 185, + "_copy": { + "name": "Fire Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the giant", + "with": "Emberosa", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Rock", + "items": { + "name": "Hurl Fire", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) fire damage." + ] + } + } + } + }, + "damageTags": [ + "F", + "S" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ezzat", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 262, + "_copy": { + "name": "Lich", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the lich", + "with": "Ezzat", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Ezzat wears an {@item amulet of proof against detection and location}." + ] + } + } + } + }, + "languages": [ + "Common", + "Dwarvish", + "Draconic", + "Elvish", + "Sylvan", + "Undercommon" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Ezzat is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell forcecage}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ] + } + }, + "ability": "int" + } + ], + "languageTags": [ + "C", + "D", + "DR", + "E", + "S", + "U" + ], + "damageTagsLegendary": [], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true + }, + { + "name": "Fazrian", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 275, + "_copy": { + "name": "Planetar", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the planetar", + "with": "Fazrian", + "flags": "i" + }, + "action": { + "mode": "removeArr", + "names": "Healing Touch (4/Day)" + } + } + }, + "alignment": [ + "L", + "E" + ], + "legendaryGroup": { + "name": "Fazrian", + "source": "WDMM" + }, + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Fidelio", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 197, + "_copy": { + "name": "Ghost", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ghost", + "with": "Fidelio", + "flags": "i" + } + } + }, + "hp": { + "average": 80, + "formula": "10d8" + }, + "hasToken": true + }, + { + "name": "Five-Armed Troll", + "source": "WDMM", + "page": 154, + "_copy": { + "name": "Troll", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The troll makes six attacks: one with its bite and five with its claws." + ] + } + } + } + }, + "cr": "8", + "hasToken": true + }, + { + "name": "Flying Trident", + "source": "WDMM", + "page": 106, + "_copy": { + "name": "Flying Sword", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "sword", + "with": "trident", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Trident", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ] + } + } + } + }, + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Giant Flying Spider", + "source": "WDMM", + "page": 150, + "_copy": { + "name": "Giant Spider", + "source": "MM" + }, + "speed": { + "walk": 30, + "climb": 30, + "fly": 40 + }, + "hasToken": true + }, + { + "name": "Giant Mutated Drow", + "source": "WDMM", + "page": 143, + "_copy": { + "name": "Cloud Giant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "giant", + "with": "drow", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": [ + { + "name": "Fey Ancestry", + "entries": [ + "The drow has advantage on saving throws against being charmed, and magic can't put the drow to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ] + } + } + }, + "type": "giant", + "alignment": [ + "N", + "E" + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 15}). The drow can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}" + ] + }, + "ability": "cha" + } + ], + "traitTags": [ + "Fey Ancestry", + "Keen Senses", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "E", + "GI" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Glyster", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 241, + "_copy": { + "name": "Adult Bronze Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Glyster", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Gorka Tharn", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 257, + "_copy": { + "name": "Mummy Lord", + "source": "MM", + "_mod": { + "action": { + "mode": "appendArr", + "items": [ + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the mummy lord magically increases in size, along with anything it is wearing or carrying. While enlarged, the mummy lord is Large, doubles its damage dice with its Rotting Fist attack, and makes Strength checks and Strength saving throws with advantage. If the mummy lord lacks the room to become Large, it attains the maximum size possible in the space available." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The mummy lord magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the mummy lord wears or carries is {@condition invisible} with it.", + "The stalagmite in the northwest alcove is hollow and serves as Gorka Tharn's sarcophagus. The mummy lord is lodged inside the stalagmite's funnel-shaped interior. When it awakens, the mummy lord uses a {@spell stone shape} spell to create an opening large enough for it to emerge. It destroys any intruders in its lair, then returns to its sarcophagus and its slumber.", + "At the bottom of the stalagmite's hollow cavity, four 1-foot-tall clay urns contain Gorka Tharn's preserved internal organs, including the mummy lord's shriveled heart. Only by destroying the heart can the characters prevent the mummy lord from rejuvenating. The heart is a Tiny object with AC 5, 25 hit points, and immunity to all damage except fire." + ] + } + ] + } + } + }, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mummy lord is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The mummy lord has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell shield of faith}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell stone shape}", + "{@spell guardian of faith}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell insect plague}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell harm}" + ] + } + }, + "ability": "wis" + } + ], + "languageTags": [ + "D", + "U" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gorzil's Gang Troglodyte", + "source": "WDMM", + "page": 150, + "_copy": { + "name": "Troglodyte", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The troglodyte makes three attacks: one with its bite and two with its longsword." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Claw", + "items": { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ] + } + } + ] + } + }, + "ac": [ + { + "ac": 14, + "from": [ + "{@item breastplate|phb}" + ] + } + ], + "languages": [ + "understands Undercommon but can't speak" + ], + "languageTags": [ + "CS", + "U" + ], + "hasToken": true + }, + { + "name": "Halaster Blackcloak", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 310, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 246, + "formula": "29d8 + 116" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 18, + "con": 18, + "int": 24, + "wis": 18, + "cha": 18, + "save": { + "int": "+14", + "wis": "+11" + }, + "skill": { + "arcana": "+21", + "history": "+21", + "perception": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "resist": [ + "fire", + { + "resist": [ + "lightning" + ], + "note": "(granted by the blast scepter, see \"Special Equipment\" below)" + } + ], + "languages": [ + "Abyssal", + "Celestial", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Infernal", + "Undercommon" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Halaster is a 20th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 22}, {@hit 14} to hit with spell attacks). He can cast {@spell disguise self} and {@spell invisibility} at will. He can cast {@spell fly} and {@spell lightning bolt} once each without expending a spell slot, but can't do so again until he finishes a short or long rest. Halaster has the following wizard spells prepared:" + ], + "will": [ + "{@spell disguise self}", + "{@spell invisibility}" + ], + "daily": { + "1": [ + "{@spell fly}", + "{@spell lightning bolt}" + ] + }, + "spells": { + "0": { + "spells": [ + "{@spell dancing lights}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell silent image}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell cloud of daggers}", + "{@spell darkvision}", + "{@spell knock}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell hallucinatory terrain}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell geas}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 2, + "spells": [ + "{@spell chain lightning}", + "{@spell globe of invulnerability}", + "{@spell programmed illusion}" + ] + }, + "7": { + "slots": 2, + "spells": [ + "{@spell finger of death}", + "{@spell symbol}", + "{@spell teleport}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell maze}", + "{@spell mind blank}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell meteor swarm}", + "{@spell wish}" + ] + } + }, + "ability": "int", + "hidden": [ + "will", + "daily" + ] + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Halaster wears a {@item robe of eyes} that lets him see in all directions, gives him darkvision out to a range of 120 feet, grants advantage on Wisdom ({@skill Perception}) checks that rely on sight, and allows him to see {@condition invisible} creatures and objects, as well as into the Ethereal Plane, out to a range of 120 feet.", + "Halaster wields a {@item blast scepter|WDMM} (a very rare magic item that requires attunement). It can be used as an arcane focus. Whoever is attuned to the blast scepter gains resistance to fire and lightning damage and can, as an action, use it to cast {@spell thunderwave} as a 4th-level spell (save {@dc 16}) without expending a spell slot.", + "Halaster also wears a horned ring (a very rare magic item that requires attunement), which allows an attuned wearer to ignore Undermountain's magical restrictions (see \"Alterations to Magic\")." + ] + }, + { + "name": "Arcane Recovery (1/Day)", + "entries": [ + "When he finishes a short rest, Halaster recovers all his spell slots of 5th level and lower." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Halaster fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "If Halaster dies in Undermountain, he revives after {@dice 1d10} days, with all his hit points and any missing body parts restored. His new body appears in a random safe location in Undermountain." + ] + } + ], + "action": [ + { + "name": "Blast Scepter", + "entries": [ + "Halaster uses his blast scepter to cast {@spell thunderwave} as a 4th-level spell. Each creature in a 15-foot cube originating from him must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes {@damage 5d8} thunder damage and is pushed 10 feet away. On a successful save, the creature takes half as much damage and isn't pushed" + ] + } + ], + "legendary": [ + { + "name": "Cast Spell", + "entries": [ + "Halaster casts a spell of 3rd level or lower." + ] + }, + { + "name": "Spell Ward (Costs 2 Actions)", + "entries": [ + "Halaster expends a spell slot of 4th level or lower and gains 5 temporary hit points per level of the slot." + ] + } + ], + "legendaryGroup": { + "name": "Halaster Blackcloak", + "source": "WDMM" + }, + "traitTags": [ + "Legendary Resistances", + "Rejuvenation" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "AB", + "C", + "CE", + "D", + "DR", + "E", + "I", + "U" + ], + "damageTags": [ + "T" + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "N", + "O", + "S", + "Y" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "AOE" + ], + "conditionInflictSpell": [ + "charmed", + "frightened", + "incapacitated", + "invisible", + "stunned", + "unconscious" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Halaster Horror", + "source": "WDMM", + "page": 129, + "_copy": { + "name": "Helmed Horror", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "helmed", + "with": "Halaster" + }, + "trait": { + "mode": "replaceArr", + "replace": "Spell Immunity", + "items": { + "name": "Spell Immunity", + "entries": [ + "The Halaster horror is immune to the {@spell cone of cold}, {@spell disintegrate}, and {@spell fireball} spells." + ] + } + } + } + }, + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Halaster horror makes two staff attacks." + ] + }, + { + "name": "Staff", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage." + ] + } + ], + "damageTags": [ + "B" + ], + "hasToken": true + }, + { + "name": "Halaster Puppet", + "isNpc": true, + "source": "WDMM", + "page": 31, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + 10 + ], + "hp": { + "special": "8" + }, + "speed": { + "walk": 20 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "frightened", + "exhaustion" + ], + "languages": [ + "Common" + ], + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "The puppet is destroyed if a successful {@spell dispel magic} spell ({@dc 15}) is cast on it" + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility" + ], + "languageTags": [ + "C" + ], + "hasToken": true + }, + { + "name": "Haungharassk", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 258, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 6 + ], + "hp": { + "average": 52, + "formula": "7d12 + 7" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 20, + "dex": 3, + "con": 13, + "int": 3, + "wis": 10, + "cha": 3, + "passive": 10, + "cr": "0", + "trait": [ + { + "name": "Salt Sensitivity", + "entries": [ + "A pound of salt thrown onto the snail's skin deals {@damage 1d6} acid damage to the creature." + ] + }, + { + "name": "Magical Properties", + "entries": [ + "A creature that uses an action to touch the living snail gains 6 temporary hit points that last for 24 hours. Any creature or object that touches the living snail also gains the benefit of a {@spell remove curse} spell. The snail loses these magical properties if it dies." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The snail can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Horned Sister", + "shortName": "the horned sister", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 118, + "_copy": { + "name": "Mage", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "(^| )mage", + "with": "$1horned sister" + } + } + }, + "alignment": [ + "L", + "E" + ], + "languages": [ + "Common", + "Draconic", + "Infernal", + "Undercommon" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR", + "I", + "U" + ], + "spellcastingTags": [ + "CW", + "I" + ], + "hasToken": true + }, + { + "name": "Huge Gray Ooze", + "source": "WDMM", + "page": 243, + "_copy": { + "name": "Gray Ooze", + "source": "MM" + }, + "size": [ + "H" + ], + "hp": { + "average": 152, + "formula": "16d12 + 48" + }, + "str": 18, + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "As an action, it can make two attacks with its pseudopods." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}21 ({@damage 6d6}) acid damage, or 42 ({@damage 12d6}) acid damage while the ooze is enlarged. If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the ooze magically increases in size. While enlarged, the ooze is Gargantuan, doubles its damage dice with its pseudopod attack, and makes Strength checks and Strength saving throws with advantage." + ] + }, + { + "name": "Invisibility (Recharges after a Short or Long Rest)", + "entries": [ + "The ooze magically turns {@condition invisible} for up to 1 hour until it attacks, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true + }, + { + "name": "Intelligent Black Pudding", + "source": "WDMM", + "page": 244, + "_copy": { + "name": "Black Pudding", + "source": "MM" + }, + "int": 14, + "languages": [ + "Elvish and Undercommon but can't speak" + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The pudding's spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It can cast the following spells, requiring no components:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}" + ], + "daily": { + "1": [ + "{@spell Melf's acid arrow}" + ], + "3e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell shield}" + ] + }, + "ability": "int" + } + ], + "languageTags": [ + "CS", + "E", + "U" + ], + "damageTagsSpell": [ + "A" + ], + "spellcastingTags": [ + "I" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true + }, + { + "name": "Iron Spider", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 165, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 19 + ], + "hp": { + "special": "80" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 10, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 6, + "immune": [ + "poison", + "psychic" + ], + "action": [ + { + "name": "Web Cable", + "entries": [ + "The iron spider shoots out a 6-inch-thick web cable up to 50 feet long, attaching the far end of the cable to a solid surface up to 50 feet away from it. As a bonus action, it can detach the other end of the cable from itself and attach it to a solid surface within 10 feet of it. Once it creates 200 feet of web cable, the spider can't produce any more cable until the next dawn." + ] + } + ], + "senseTags": [ + "B" + ], + "hasToken": true + }, + { + "name": "Junior Drow Priestess of Lolth", + "source": "WDMM", + "page": 149, + "_copy": { + "name": "Priest", + "source": "MM", + "_templates": [ + { + "name": "Drow", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "priest", + "with": "priestess" + } + } + }, + "alignment": [ + "N", + "E" + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "E", + "X" + ], + "spellcastingTags": [ + "CC", + "I" + ], + "hasToken": true + }, + { + "name": "Kavil", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 205, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Kavil", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "E" + ], + "languages": [ + "Dwarvish", + "Common", + "Giant", + "Undercommon" + ], + "languageTags": [ + "C", + "D", + "GI", + "U" + ], + "hasToken": true + }, + { + "name": "Keresta Delvingstone", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 232, + "_copy": { + "name": "Vampire", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Keresta", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Children of the Night (1/Day)", + "items": { + "name": "Children of the Night (1/Day)", + "entries": [ + "The vampire magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, the vampire can call {@dice 3d6} {@creature giant centipede||giant centipedes} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ] + } + } + } + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Keresta is a 9th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell inflict wounds}", + "{@spell ray of sickness}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell ray of enfeeblement}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell bestow curse}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell death ward}", + "{@spell divination}" + ] + }, + "5": { + "slots": 1, + "spells": [ + "{@spell antilife shell}", + "{@spell destructive wave}" + ] + } + }, + "ability": "int" + } + ], + "legendaryGroup": { + "name": "Keresta Delvingstone", + "source": "WDMM" + }, + "damageTagsSpell": [ + "I", + "N", + "O", + "R", + "T" + ], + "spellcastingTags": [ + "CC" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Kol'daan", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 155, + "_copy": { + "name": "Troglodyte", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the troglodyte", + "with": "Kol'daan", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Kol'daan makes three attacks: one with its bite and two with its claws or sparring sword." + ] + } + }, + { + "mode": "appendArr", + "items": { + "name": "Sparring Sword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + } + ] + } + }, + "hp": { + "average": 20, + "formula": "2d8 + 4" + }, + "damageTags": [ + "B", + "P", + "S" + ], + "hasToken": true + }, + { + "name": "Large Mimic", + "source": "WDMM", + "page": 76, + "_copy": { + "name": "Mimic", + "source": "MM" + }, + "size": [ + "L" + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "hasToken": true + }, + { + "name": "Lava Child", + "source": "WDMM", + "page": 313, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "lava child" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + 11 + ], + "hp": { + "average": 60, + "formula": "8d8 + 24" + }, + "speed": { + "walk": 25, + "climb": 20 + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 11, + "wis": 10, + "cha": 10, + "skill": { + "athletics": "+6", + "survival": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "fire", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from metal weapons", + "cond": true + } + ], + "languages": [ + "Common", + "Ignan" + ], + "cr": "3", + "trait": [ + { + "name": "Metal Immunity", + "entries": [ + "The lava child can move through metal without hindrance, and it has advantage on attack rolls against any creature wearing metal armor or using a metal shield." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lava child makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "IG" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Left Hand of Manshoon", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 119, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "archmage", + "with": "hand", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "4": [ + { + "replace": "{@spell banishment}", + "with": "{@spell blight}" + } + ] + } + } + } + }, + "size": [ + "T" + ], + "type": { + "type": "undead" + }, + "alignment": [ + "U" + ], + "hp": { + "average": 63, + "formula": "18d4 + 18" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "conditionImmune": [ + "blinded", + "deafened" + ], + "hasToken": true + }, + { + "name": "Living Unseen Servant", + "source": "WDMM", + "page": 313, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 10 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 30 + }, + "str": 2, + "dex": 10, + "con": 11, + "int": 1, + "wis": 10, + "cha": 1, + "skill": { + "perception": "+2", + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "unconscious" + ], + "languages": [ + "understands one language (usually Common) but can't speak" + ], + "cr": "0", + "trait": [ + { + "name": "Invisibility", + "entries": [ + "The unseen servant is {@condition invisible}." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ] + } + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mad Golem", + "source": "WDMM", + "page": 254, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}24 ({@damage 4d8 + 6}) bludgeoning damage." + ] + } + } + } + }, + "size": [ + "H" + ], + "hp": { + "average": 264, + "formula": "23d12 + 115" + }, + "int": 9, + "cha": 9, + "languages": [ + "understands Abyssal", + "Celestial", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Infernal", + "and Undercommon but can't speak" + ], + "cr": "12", + "languageTags": [ + "AB", + "C", + "CE", + "CS", + "D", + "DR", + "E", + "I", + "U" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Maddgoth's Homunculus", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 96, + "_copy": { + "name": "Homunculus", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Bite", + "items": { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}{@damage 2d6 + 2} piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} for 1 minute. If the saving throw fails by 5 or more, the target is instead {@condition poisoned} for 5 ({@dice 1d10}) minutes and {@condition unconscious} while {@condition poisoned} in this way." + ] + } + } + } + }, + "size": [ + "L" + ], + "hp": { + "average": 55, + "formula": "10d10" + }, + "str": 15, + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Gnomish but can't speak" + ], + "cr": "2", + "languageTags": [ + "AB", + "C", + "CS", + "DR", + "G" + ], + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Marta Moonshadow", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 46, + "_copy": { + "name": "Mage", + "source": "MM", + "_templates": [ + { + "name": "High Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Marta", + "flags": "i" + }, + "_": { + "mode": "addSpells", + "spells": { + "0": { + "spells": [ + "{@spell ray of frost}" + ] + } + } + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Fey Ancestry", + "entries": [ + "Marta has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + } + } + } + }, + "alignment": [ + "N", + "E" + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Undercommon" + ], + "traitTags": [ + "Fey Ancestry" + ], + "languageTags": [ + "C", + "D", + "DR", + "E", + "U" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Melissara Shadowdusk", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 281, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Melissara", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "4": [ + { + "replace": "{@spell banishment}", + "with": "{@spell dimension door}" + } + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N" + ], + "languages": [ + "Common", + "Deep Speech", + "Draconic", + "Dwarvish" + ], + "languageTags": [ + "C", + "D", + "DR", + "DS" + ], + "hasToken": true + }, + { + "name": "Metal Wasp", + "source": "WDMM", + "page": 174, + "_copy": { + "name": "Giant Wasp", + "source": "MM" + }, + "type": "construct", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "senses": [ + "darkvision 60 ft." + ], + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "senseTags": [ + "D" + ], + "hasToken": true + }, + { + "name": "Mobar", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 77, + "_copy": { + "name": "Werebat", + "source": "WDMM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the werebat", + "with": "Mobar", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Blind Eye", + "entries": [ + "Due to poor depth perception, Mobar has disadvantage on any attack roll against a target more than 30 feet away." + ] + } + } + } + }, + "hp": { + "average": 42, + "formula": "7d6" + }, + "hasToken": true + }, + { + "name": "Muiral", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 314, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "23d10 + 69" + }, + "speed": { + "walk": 50 + }, + "str": 19, + "dex": 11, + "con": 16, + "int": 18, + "wis": 13, + "cha": 18, + "save": { + "con": "+8", + "int": "+9" + }, + "skill": { + "arcana": "+9", + "athletics": "+9", + "perception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Goblin", + "Undercommon" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Muiral is a 13th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell fog cloud}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell knock}", + "{@spell see invisibility}", + "{@spell spider climb}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell polymorph}" + ] + }, + "5": { + "slots": 2, + "spells": [ + "{@spell animate objects}", + "{@spell wall of force}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell create undead}", + "{@spell flesh to stone}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ] + } + }, + "ability": "int" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Muiral fails a saving throw, he can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Muiral makes three attacks: two with his longsword and one with his sting." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}9 ({@damage 1d10 + 4}) piercing damage. The target must make a {@dc 16} Constitution saving throw, taking 27 ({@damage 6d8}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Cast Cantrip", + "entries": [ + "Muiral casts a cantrip." + ] + }, + { + "name": "Lunging Attack (Costs 2 Actions)", + "entries": [ + "Muiral makes one longsword attack that has a reach of 10 feet." + ] + }, + { + "name": "Retreating Strike (Costs 3 Actions)", + "entries": [ + "Muiral moves up to his speed without provoking opportunity attacks. Before the move, he can make one longsword attack." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "E", + "GO", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "damageTagsSpell": [ + "B", + "C", + "L", + "N", + "O", + "P", + "S" + ], + "spellcastingTags": [ + "CW" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nerozar the Defeated", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 52, + "_copy": { + "name": "Beholder Zombie", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the zombie", + "with": "Nerozar", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Eye Ray", + "items": { + "name": "Eye Ray", + "entries": [ + "The zombie uses a random magical eye ray, choosing a target that it can see within 60 feet of it.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1. Paralyzing Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "2. Fear Ray", + "style": "italic", + "entry": "The targeted creature must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "3. Enervation Ray", + "style": "italic", + "entry": "The targeted creature must make a {@dc 14} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "4. Telekinetic Ray", + "style": "italic", + "entry": "If the target is a creature, it must succeed on a {@dc 14} Strength saving throw, or the zombie moves it up to 30 feet in any direction. It is restrained by the ray's telekinetic grip until the start of the zombie's next turn or until the zombie is incapacitated. If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is moved up to 30 feet in any direction. The zombie can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or container." + } + ] + } + ] + } + } + } + }, + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Nester", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 131, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Nester", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "3": [ + { + "replace": "{@spell fly}", + "with": "{@spell animate dead}" + } + ], + "4": [ + { + "replace": "{@spell banishment}", + "with": "{@spell blight}" + } + ], + "5": [ + { + "replace": "{@spell scrying}", + "with": "{@spell Rary's telepathic bond}" + } + ] + } + } + } + }, + "type": "undead", + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "Common", + "Draconic", + "Dwarvish", + "Giant", + "Terran" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AU", + "C", + "D", + "DR", + "GI", + "T" + ], + "damageTagsSpell": [ + "C", + "F", + "L", + "N", + "O" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Old Troglodyte", + "source": "WDMM", + "page": 155, + "_copy": { + "name": "Troglodyte", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The troglodyte makes two claw attacks." + ] + } + }, + { + "mode": "removeArr", + "names": "Bite" + } + ] + } + }, + "cr": "1/8", + "damageTags": [ + "S" + ], + "hasToken": true + }, + { + "name": "Otto", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 96, + "_copy": { + "name": "Faerie Dragon (Violet)", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Bite", + "items": { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}{@damage 2d6 + 4} piercing damage." + ] + } + } + } + }, + "size": [ + "L" + ], + "hp": { + "average": 104, + "formula": "16d10 + 16" + }, + "str": 18, + "cr": "3", + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Play-by-Play Generator", + "isNpc": true, + "source": "WDMM", + "page": 205, + "_copy": { + "name": "Quadrone", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the quadrone", + "with": "the generator", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The generator makes two fist attacks or four dart attacks." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Shortbow", + "items": { + "name": "Magic Dart", + "entries": [ + "The generator hurls a magic dart at a target it can see up to 60 feet away from it. The dart hits its target automatically (no attack roll required) for 5 ({@damage 2d4}) force damage." + ] + } + } + ] + } + }, + "alignment": [ + "C", + "E" + ], + "languages": [ + "Common" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Poison Weird", + "source": "WDMM", + "page": 127, + "_copy": { + "name": "Water Weird", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "water weird", + "with": "poison weird" + } + } + }, + "cr": "4", + "trait": [ + { + "name": "Invisible in Water", + "entries": [ + "The weird is {@condition invisible} while fully immersed in toxic brew." + ] + }, + { + "name": "Brew Bound", + "entries": [ + "The weird dies if forced to leave the basin of toxic brew it inhabits, or if a {@spell purify food and drink} spell is cast on the brew." + ] + }, + { + "name": "Poisonous Body", + "entries": [ + "A creature takes 10 ({@damage 3d6}) poison damage at the start of each of its turns while {@condition grappled} by a poison weird." + ] + } + ], + "damageTags": [ + "B", + "I" + ], + "conditionInflict": [ + "invisible" + ], + "hasToken": true + }, + { + "name": "Portia Dzuth", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 239, + "_copy": { + "name": "Champion", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the champion", + "with": "Portia", + "flags": "i" + }, + "trait": [ + { + "mode": "appendArr", + "items": { + "name": "Shadowfell Despair", + "entries": [ + "Portia suffers from Shadowfell despair manifesting as unshakable dread. Until the despair ends, she has disadvantage on all saving throws and gains the following flaw: \"I'm convinced that I'm going to die in Vanrakdoom.\" Portia can attempt to end her despair each time she finishes a long rest, doing so with a successful {@dc 15} Wisdom saving throw. A {@spell calm emotions} spell also ends her despair, as does any spell or other magical effect that removes a curse." + ] + } + } + ] + } + }, + "alignment": [ + "L", + "N" + ], + "languages": [ + "Common" + ], + "languageTags": [ + "C" + ], + "hasToken": true + }, + { + "name": "Preeta Kreepa", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 56, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Preeta", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Dwarvish", + "Goblin", + "Undercommon" + ], + "reaction": [ + { + "name": "Eye Rays", + "entries": [ + "As a bonus action or a reaction, Preeta can shoot one of the following eye rays at one target she can see within 120 feet of her:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Fear Ray", + "entry": "The target must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + }, + { + "type": "item", + "name": "Paralyzing Ray", + "entry": "The target must succeed on a {@dc 15} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + } + ] + } + ] + } + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "D", + "GO", + "U" + ], + "conditionInflict": [ + "frightened", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Rabbithead", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 295, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "U" + ], + "languages": null, + "cr": "0", + "action": null, + "languageTags": [], + "hasToken": true + }, + { + "name": "Rowboat Mimic", + "source": "WDMM", + "page": 76, + "_copy": { + "name": "Mimic", + "source": "MM" + }, + "size": [ + "L" + ], + "hp": { + "average": 67, + "formula": "9d10 + 18" + }, + "hasToken": true + }, + { + "name": "Runed Behir", + "source": "WDMM", + "page": 158, + "_copy": { + "name": "Behir", + "source": "MM" + }, + "legendary": [ + { + "name": "Lesser Magic", + "entries": [ + "The behir casts {@spell color spray} or {@spell sleep}, requiring no components." + ] + }, + { + "name": "Greater Magic (Costs 2 Actions)", + "entries": [ + "The behir casts {@spell invisibility} or {@spell misty step}, requiring no components." + ] + } + ], + "hasToken": true + }, + { + "name": "Scaladar", + "source": "WDMM", + "page": 315, + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 94, + "formula": "7d12 + 49" + }, + "speed": { + "walk": 30, + "climb": 20 + }, + "str": 19, + "dex": 10, + "con": 25, + "int": 1, + "wis": 12, + "cha": 1, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "force", + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "paralyzed", + "poisoned" + ], + "cr": "8", + "trait": [ + { + "name": "Lightning Absorption", + "entries": [ + "Whenever the scaladar is subjected to lightning damage, it takes no damage, and its sting deals an extra 11 ({@damage 2d10}) lightning damage until the end of its next turn." + ] + }, + { + "name": "Scaladar Link", + "entries": [ + "The scaladar knows the location of other scaladar within 100 feet of it, and it can sense when any of them take damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scaladar makes three attacks: two with its claws and one with its sting." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). The scaladar has two claws, each of which can grapple one target." + ] + }, + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 11 ({@damage 2d10}) lightning damage." + ] + } + ], + "traitTags": [ + "Damage Absorption" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "L", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadow Assassin", + "source": "WDMM", + "page": 316, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 6, + "dex": 19, + "con": 14, + "int": 13, + "wis": 12, + "cha": 14, + "save": { + "dex": "+8", + "int": "+5" + }, + "skill": { + "perception": "+9", + "stealth": "+12" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "9", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The assassin can move through a space as narrow as 1 inch wide without squeezing." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the assassin can take the Hide action as a bonus action." + ] + }, + { + "name": "Sunlight Weakness", + "entries": [ + "While in sunlight, the assassin has disadvantage on attack rolls, ability checks, and saving throws." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The assassin makes two Shadow Blade attacks." + ] + }, + { + "name": "Shadow Blade", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. Unless the target is immune to necrotic damage, the target's Strength score is reduced by {@dice 1d4} each time it is hit by this attack. The target dies if its Strength is reduced to 0. The reduction lasts until the target finishes a short or long rest. If a non-evil humanoid dies from this attack, a shadow (see the Monster Manual) rises from the corpse {@dice 1d4} hours later." + ] + } + ], + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Shapechanged Roper", + "source": "WDMM", + "page": 106, + "_copy": { + "name": "Roper", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Shapechanger", + "entries": [ + "The roper can use its action to polymorph into a stone object or back to its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + } + } + } + }, + "traitTags": [ + "False Appearance", + "Shapechanger", + "Spider Climb" + ], + "hasToken": true + }, + { + "name": "Shockerstomper", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 174, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 18 + ], + "hp": { + "average": 300, + "formula": "300d1" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 10, + "con": 20, + "int": 1, + "wis": 1, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 5, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "deafened", + "charmed", + "frightened", + "paralyzed", + "poisoned" + ], + "cr": "14", + "trait": [ + { + "name": "Disable", + "entries": [ + "When a leg drops to 0 hit points, it is disabled, and Shockerstomper can use a reaction to detach it from its main body. Whenever one of its legs is disabled, Shockerstomper's walking speed is reduced by 10 feet. The whole contraption topples over and shuts down if four of its seven legs are disabled." + ] + }, + { + "name": "Electrified Surface", + "entries": [ + "A creature that ends its turn in contact with Shockerstomper's body (saucer or turrets) must make a {@dc 15} Constitution saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "Shockerstomper is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Control Module", + "entries": [ + "A creature atop or above Shockerstomper's platform can locate its control module with a successful {@dc 15} Intelligence ({@skill Investigation}) check or Wisdom ({@skill Perception}) check. As an action, a character can try to open the control module's access panel, either by tearing it off with a successful {@dc 25} Strength ({@skill Athletics}) check or by dislodging it with thieves' tools and a successful {@dc 25} Dexterity check. Behind the panel, embedded in the floor of the control module, is a 5-foot-diameter pulsating crystal hemisphere with AC 10, 25 hit points, and immunity to poison and psychic damage. Destroying the crystal hemisphere shuts down Shockerstomper." + ] + }, + { + "name": "Lightning Turret", + "entries": [ + "A character can try to plug the nozzle of a lightning turret with a 10-pound rock or similar object, doing so with a successful {@dc 15} Strength ({@skill Athletics}) check. A plugged turret can't shoot lightning until a creature uses an action to try to clear the obstruction, which requires another successful {@dc 15} Strength ({@skill Athletics}) check. Shockerstomper has no ability to clear an obstruction itself." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Shockerstomper makes three Lightning Turret attacks and two Stomp attacks." + ] + }, + { + "name": "Lightning Turret", + "entries": [ + "The turret shoots a magical lightning bolt at one creature within 60 feet of Shockerstomper. The target must make a {@dc 15} Dexterity saving throw, taking 44 ({@damage 8d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Immutable Form" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "L" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true + }, + { + "name": "Shunn Shurreth", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 33, + "_copy": { + "name": "Drow Elite Warrior", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Shunn", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Spider Features", + "entries": [ + "While cursed with spider features, Shunn can climb difficult surfaces, even across ceilings, without needing to make an ability check." + ] + } + } + } + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sing-Along", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 148, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Stout Halfling", + "source": "PHB" + } + ] + }, + "alignment": [ + "L", + "G" + ], + "cha": 14, + "skill": { + "performance": "+4" + }, + "languages": [ + "Common", + "Halfling" + ], + "languageTags": [ + "C", + "H" + ], + "hasToken": true + }, + { + "name": "Space Hamster", + "source": "WDMM", + "page": 251, + "_copy": { + "name": "Rat", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the rat", + "with": "the hamster", + "flags": "i" + } + } + }, + "action": null, + "damageTags": [], + "miscTags": [], + "hasToken": true + }, + { + "name": "Stalagma Steelshadow", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 273, + "_copy": { + "name": "Adult Silver Dragon", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Breath Weapons {@recharge 5}", + "items": { + "name": "Breath Weapons {@recharge 5}", + "entries": [ + "The dragon uses one of the following breath weapons.", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Acid Breath", + "entry": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 58 ({@damage 13d8}) acid damage on a failed save, or half as much damage on a successful one." + }, + { + "type": "item", + "name": "Paralyzing Breath", + "entry": "The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 20} Constitution saving throw or be {@condition 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." + } + ] + } + ] + } + } + } + }, + "alignment": [ + "L", + "E" + ], + "languages": [ + "Draconic", + "Dwarvish", + "Terran" + ], + "languageTags": [ + "D", + "DR", + "T" + ], + "damageTags": [ + "A", + "B", + "P", + "S" + ], + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Statue of Vergadain", + "source": "WDMM", + "page": 202, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "statue", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Magic Theft", + "entries": [ + "As a bonus action, the golem targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 17} Charisma saving throw, or all magic items in its possession are teleported to the bottom of the pit in {@adventure area 31|WDMM|15|31. Hall of Embers}." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Stonecloak", + "source": "WDMM", + "page": 253, + "_copy": { + "name": "Stone Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "golem", + "with": "stonecloak", + "flags": "i" + } + } + }, + "int": 9, + "cha": 9, + "languages": [ + "understands Abyssal", + "Celestial", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Infernal", + "and Undercommon but can't speak" + ], + "languageTags": [ + "AB", + "C", + "CE", + "CS", + "D", + "DR", + "E", + "I", + "U" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sundeth", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 304, + "_copy": { + "name": "Champion", + "source": "VGM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the champion", + "with": "Sundeth", + "flags": "i" + } + } + }, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GI" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Thwad Underbrew", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 204, + "_copy": { + "name": "Champion", + "source": "VGM", + "_templates": [ + { + "name": "Shield Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the champion", + "with": "Thwad", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "Thwad makes three attacks with his maul or his shortbow." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Maul", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage, plus 7 ({@damage 2d6}) bludgeoning damage if Thwad has more than half of his total hit points remaining." + ] + } + } + ] + } + }, + "alignment": [ + "N", + "E" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "D", + "X" + ], + "damageTags": [ + "B", + "P" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Torbit", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 115, + "_copy": { + "name": "Assassin", + "source": "MM", + "_templates": [ + { + "name": "Bullywug", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Torbit", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "traitTags": [ + "Amphibious", + "Sneak Attack" + ], + "languageTags": [ + "OTH", + "TC", + "X" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Trenzia", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 32, + "_copy": { + "name": "Flameskull", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the flameskull", + "with": "Trenzia", + "flags": "i" + } + } + }, + "resist": [ + "fire", + "necrotic", + "piercing" + ], + "immune": [ + "lightning", + "cold", + "poison" + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Trenzia is a 5th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She requires no somatic or material components to cast its spells. Trenzia has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell mage hand}" + ] + }, + "1": { + "slots": 3, + "spells": [ + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 2, + "spells": [ + "{@spell blur}", + "{@spell flaming sphere}" + ] + }, + "3": { + "slots": 1, + "spells": [ + "{@spell lightning bolt}" + ] + } + }, + "ability": "int" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Trenzia uses Lightning Ray twice." + ] + }, + { + "name": "Fire Ray", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 30 ft., one target. {@h}10 ({@damage 3d6}) lightning damage." + ] + } + ], + "damageTags": [ + "L" + ], + "damageTagsSpell": [ + "F", + "L", + "O" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Trobriand", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 294, + "_copy": { + "name": "Iron Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the golem", + "with": "Trobriand", + "flags": "i" + } + } + }, + "int": 20, + "cr": "22", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Trobriand is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell detect thoughts}", + "{@spell misty step}", + "{@spell shatter}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}", + "{@spell haste}" + ] + }, + "4": { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell greater invisibility}" + ] + }, + "5": { + "slots": 3, + "spells": [ + "{@spell animate objects}", + "{@spell Bigby's hand}", + "{@spell scrying}" + ] + }, + "6": { + "slots": 1, + "spells": [ + "{@spell chain lightning}", + "{@spell globe of invulnerability}" + ] + }, + "7": { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell forcecage}" + ] + }, + "8": { + "slots": 1, + "spells": [ + "{@spell incendiary cloud}", + "{@spell power word stun}" + ] + }, + "9": { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ] + } + }, + "ability": "int" + } + ], + "damageTagsSpell": [ + "B", + "F", + "L", + "N", + "O", + "P", + "S", + "T" + ], + "spellcastingTags": [ + "CW" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Umbraxakar", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 241, + "_copy": { + "name": "Adult Bronze Dragon", + "source": "MM", + "_templates": [ + { + "name": "Legendary Shadow Dragon", + "source": "MM" + } + ] + }, + "alignment": [ + "N", + "E" + ], + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Sunlight Sensitivity" + ], + "damageTags": [ + "B", + "N", + "P", + "S" + ], + "damageTagsLegendary": [], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Undead Bulette", + "source": "WDMM", + "page": 90, + "_copy": { + "name": "Bulette", + "source": "MM" + }, + "type": "undead", + "hp": { + "average": 125, + "formula": "9d10 + 45" + }, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "vulnerable": [ + "radiant" + ], + "conditionImmune": [ + "poisoned" + ], + "hasToken": true + }, + { + "name": "Undead Shambling Mound", + "source": "WDMM", + "page": 142, + "_copy": { + "name": "Shambling Mound", + "source": "MM" + }, + "type": "undead", + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "blinded", + "deafened", + "exhaustion", + "poisoned" + ], + "trait": [ + { + "name": "Necrotic Absorption", + "entries": [ + "Whenever the shambling mound is subjected to necrotic damage, it takes no damage and regains a number of hit points equal to the necrotic damage dealt." + ] + } + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Valtagar Steelshadow", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 271, + "_copy": { + "name": "Archmage", + "source": "MM", + "_templates": [ + { + "name": "Duergar", + "source": "MTF" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Valtagar", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "4": [ + { + "replace": "{@spell banishment}", + "with": "{@spell Otiluke's Resilient Sphere}" + } + ] + } + } + } + }, + "alignment": [ + "L", + "E" + ], + "languages": [ + "Common", + "Dwarvish", + "Infernal", + "Terran", + "Troglodyte", + "Undercommon" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "D", + "I", + "OTH", + "T", + "U" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Vertrand Shadowdusk", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 282, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Vertrand", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "4": [ + { + "replace": "{@spell banishment}", + "with": "{@spell confusion}" + } + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "Abyssal", + "Common", + "Deep Speech", + "Undercommon" + ], + "senseTags": [ + "B" + ], + "languageTags": [ + "AB", + "C", + "DS", + "U" + ], + "hasToken": true + }, + { + "name": "Werebat", + "group": [ + "Lycanthropes" + ], + "source": "WDMM", + "page": 317, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid", + "shapechanger" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 24, + "formula": "7d6" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(climb 30 ft. fly 60 ft. in bat or hybrid form)" + } + }, + "str": 8, + "dex": 17, + "con": 10, + "int": 10, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "languages": [ + "Goblin (can't speak in bat form)" + ], + "cr": "2", + "trait": [ + { + "name": "Shapechanger", + "entries": [ + "The werebat can use its action to polymorph into a Medium bat-humanoid hybrid, or into a Large giant bat, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ] + }, + { + "name": "Echolocation (Bat or Hybrid Form Only)", + "entries": [ + "The werebat has blindsight out to a range of 60 feet as long as it's not {@condition deafened}." + ] + }, + { + "name": "Keen Hearing", + "entries": [ + "The werebat has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ] + }, + { + "name": "Nimble Escape (Humanoid Form Only)", + "entries": [ + "The werebat can take the Disengage or Hide action as a bonus action on each of its turns." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the werebat has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack (Humanoid or Hybrid Form Only)", + "entries": [ + "In humanoid form, the werebat makes two scimitar attacks or two shortbow attacks. In hybrid form, it can make one bite attack and one scimitar attack." + ] + }, + { + "name": "Bite (Bat or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the werebat gains temporary hit points equal to the damage dealt. If the target is a humanoid, it must succeed on a {@dc 10} Constitution saving throw or be cursed with werebat lycanthropy." + ] + }, + { + "name": "Scimitar (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Shortbow (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "scimitar|phb", + "shortbow|phb" + ], + "traitTags": [ + "Keen Senses", + "Shapechanger", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "GO" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wooden Donkey", + "source": "WDMM", + "page": 84, + "_copy": { + "name": "Mule", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "mule", + "with": "donkey", + "flags": "i" + } + } + }, + "type": "construct", + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "senseTags": [ + "B" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Wyllow", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 70, + "_copy": { + "name": "Archdruid", + "source": "VGM", + "_templates": [ + { + "name": "Wood Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archdruid", + "with": "Wyllow", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "N" + ], + "languages": [ + "Common", + "Druidic", + "Elvish" + ], + "traitTags": [ + "Fey Ancestry" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DU", + "E" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Zalthar Shadowdusk", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 286, + "_copy": { + "name": "Death Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the death knight", + "with": "Zalthar", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "4": [ + { + "replace": "{@spell banishment}", + "with": "{@spell locate creature}" + } + ] + } + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Zalthar wields a {@item nine lives stealer} longsword with 5 charges remaining." + ] + } + }, + "action": { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Nine Lives Stealer Longsword", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d8 + 7}) slashing damage, or 12 ({@damage 1d10 + 7}) slashing damage if used with two hands, plus 18 ({@damage 4d8}) necrotic damage." + ] + } + } + } + }, + "languages": [ + "Abyssal", + "Common", + "Deep Speech" + ], + "languageTags": [ + "AB", + "C", + "DS" + ], + "hasToken": true + }, + { + "name": "Zorak Lightdrinker", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 204, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "shapechanger" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "plate armor" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 17, + "wis": 15, + "cha": 18, + "save": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "perception": "+7", + "stealth": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "necrotic", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Common", + "Dwarvish" + ], + "cr": "13", + "trait": [ + { + "name": "Dwarven Resilience", + "entries": [ + "Augrek has advantage on saving throws against poison." + ] + }, + { + "name": "Shapechanger", + "entries": [ + "If Zorak isn't in sunlight or running water, he can use his action to polymorph into a Tiny bat or a Medium cloud of mist, or back into his true form.", + "While in bat form, Zorak can't speak, his walking speed is 5 feet, and he has a flying speed of 30 feet. His statistics, other than his size and speed, are unchanged. Anything he is wearing transforms with it, but nothing he is carrying does. He reverts to his true form if he dies.", + "While in mist form, Zorak can't take any actions, speak, or manipulate objects. He is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and he can't pass through water. He has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage, except the damage he takes from sunlight." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Zorak fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Misty Escape", + "entries": [ + "When he drops to 0 hit points outside his resting place, Zorak transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that he isn't in sunlight or running water. If he can't transform, he is destroyed.", + "While he has 0 hit points in mist form, he can't revert to his vampire form, and he must reach his resting place within 2 hours or be destroyed. Once in his resting place, he reverts to his vampire form. He is then {@condition paralyzed} until he regains at least 1 hit point. After spending 1 hour in his resting place with 0 hit points, he regains 1 hit point." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Zorak regains 20 hit points at the start of his turn if he has at least 1 hit point and isn't in sunlight or running water. If Zorak takes radiant damage or damage from holy water, this trait doesn't function at the start of Zorak's next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Zorak can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "Zorak has the following flaws:", + "{@i Forbiddance.} Zorak can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} Zorak takes 20 acid damage if he ends his turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into Zorak's heart while Zorak is {@condition incapacitated} in his resting place, Zorak is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} Zorak takes 20 radiant damage when he starts his turn in sunlight. While in sunlight, he has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zorak makes two attacks with his {@item dwarven thrower}, only one of which can be a ranged attack." + ] + }, + { + "name": "Dwarven Thrower", + "entries": [ + "{@atk mw,rw} {@hit 12} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage, or 12 ({@damage 1d10 + 7}) bludgeoning damage when used with two hands to make a melee attack. On a ranged attack that hits, the hammer deals an extra {@damage 1d8} bludgeoning damage ({@damage 2d8} if the target is a giant). {@hom}If thrown, the weapon flies back to Zorak's hand after the attack." + ] + }, + { + "name": "Multiattack (Vampire Form Only)", + "entries": [ + "Zorak makes two attacks, only one of which can be a bite attack." + ] + }, + { + "name": "Unarmed Strike (Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, Zorak can grapple the target (escape {@dc 18})." + ] + }, + { + "name": "Bite (Bat or Vampire Form Only)", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by Zorak, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Zorak regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces his hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under Zorak's control." + ] + }, + { + "name": "Charm", + "entries": [ + "Zorak targets one humanoid he can see within 30 feet of it. If the target can see Zorak, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by Zorak. The {@condition charmed} target regards Zorak as a trusted friend to be heeded and protected. Although the target isn't under Zorak's control, it takes Zorak's requests or actions in the most favorable way it can, and it is a willing target for Zorak's bite attack.", + "Each time Zorak or Zorak's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Zorak is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ] + }, + { + "name": "Children of the Night (1/Day)", + "entries": [ + "Zorak magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, Zorak can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of Zorak and obeying his spoken commands. The beasts remain for 1 hour, until Zorak dies, or until Zorak dismisses them as a bonus action." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "Zorak moves up to his speed without provoking opportunity attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "Zorak makes one unarmed strike." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "Zorak makes one bite attack." + ] + } + ], + "legendaryGroup": { + "name": "Vampire", + "source": "MM" + }, + "attachedItems": [ + "dwarven thrower|dmg" + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Shapechanger", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D" + ], + "damageTags": [ + "B", + "N", + "P" + ], + "miscTags": [ + "HPR", + "MW", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true + }, + { + "name": "Zox Clammersham", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 176, + "_copy": { + "name": "Archmage", + "source": "MM", + "_templates": [ + { + "name": "Rock Gnome", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Zox", + "flags": "i" + }, + "_": { + "mode": "replaceSpells", + "spells": { + "4": [ + { + "replace": "{@spell banishment}", + "with": "{@spell confusion}" + } + ] + } + } + } + }, + "languages": [ + "Aquan", + "Auran", + "Common", + "Gnomish", + "Ignan", + "Terran" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AQ", + "AU", + "C", + "G", + "IG", + "T" + ], + "hasToken": true + }, + { + "name": "Zress Orlezziir", + "isNpc": true, + "isNamedCreature": true, + "source": "WDMM", + "page": 136, + "_copy": { + "name": "Drow House Captain", + "source": "MTF", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Zress", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Animatronic Allosaurus", + "source": "KftGV", + "page": 22, + "_copy": { + "name": "Allosaurus", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "allosaurus", + "with": "animatronic allosaurus" + } + } + }, + "type": "construct", + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "poisoned" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Arlo Kettletoe (Levels 1-4)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Arlo Kettletoe", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "halfling" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Arlo Kettletoe (Levels 5-8)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Arlo Kettletoe", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "halfling" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Arlo Kettletoe (Levels 9-11)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Arlo Kettletoe", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "halfling" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Ashen Animated Armor", + "source": "KftGV", + "page": 157, + "_copy": { + "name": "Animated Armor", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Ashen Creature", + "entries": [ + "When the armor drops to 0 hit points, it is reduced to a pile of ash, and any equipment it was wearing or carrying falls to the ground." + ] + } + } + } + }, + "type": "elemental", + "alignment": [ + "L", + "E" + ], + "immune": [ + "fire", + "poison", + "psychic" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ashen Flying Sword", + "source": "KftGV", + "page": 157, + "_copy": { + "name": "Flying Sword", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Ashen Creature", + "entries": [ + "When the sword drops to 0 hit points, it is reduced to a pile of ash, and any equipment it was wearing or carrying falls to the ground." + ] + } + } + } + }, + "type": "elemental", + "alignment": [ + "L", + "E" + ], + "immune": [ + "fire", + "poison", + "psychic" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ashen Knight", + "source": "KftGV", + "page": 158, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "knight", + "with": "ashen knight" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Ashen Creature", + "entries": [ + "When the knight drops to 0 hit points, it is reduced to a pile of ash, and any equipment it was wearing or carrying falls to the ground." + ] + } + } + } + }, + "type": { + "type": "elemental", + "tags": [ + "any race" + ] + }, + "alignment": [ + "L", + "E" + ], + "immune": [ + "fire" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ashen Shambling Mound", + "source": "KftGV", + "page": 158, + "_copy": { + "name": "Shambling Mound", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Ashen Creature", + "entries": [ + "When the shambling mound drops to 0 hit points, it is reduced to a pile of ash, and any equipment it was wearing or carrying falls to the ground." + ] + } + } + } + }, + "type": "elemental", + "alignment": [ + "L", + "E" + ], + "resist": [ + "cold" + ], + "immune": [ + "fire", + "lightning" + ], + "hasToken": true + }, + { + "name": "Ashen Veteran", + "source": "KftGV", + "page": 154, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Ashen Creature", + "entries": [ + "When the veteran drops to 0 hit points, it is reduced to a pile of ash, and any equipment it was wearing or carrying falls to the ground." + ] + } + } + } + }, + "type": "elemental", + "alignment": [ + "L", + "E" + ], + "immune": [ + "fire" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ashen Warhorse", + "source": "KftGV", + "page": 158, + "_copy": { + "name": "Warhorse", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Ashen Creature", + "entries": [ + "When the horse drops to 0 hit points, it is reduced to a pile of ash, and any equipment it was wearing or carrying falls to the ground." + ] + } + } + } + }, + "type": "elemental", + "alignment": [ + "L", + "E" + ], + "immune": [ + "fire" + ], + "hasToken": true + }, + { + "name": "Charmayne Daymore", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 159, + "size": [ + "M" + ], + "type": { + "type": "elemental", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 123, + "formula": "19d8 + 38" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 8, + "dex": 14, + "con": 15, + "int": 20, + "wis": 14, + "cha": 16, + "save": { + "int": "+9", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "arcana": "+9", + "deception": "+7", + "perception": "+6" + }, + "passive": 16, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Ignan" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Charmayne casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}" + ], + "daily": { + "3": [ + "{@spell mage armor}" + ], + "1e": [ + "{@spell dispel magic}", + "{@spell invisibility}", + "{@spell polymorph}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Charmayne fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Charmayne makes three Ashen Burst attacks. She can replace one of these attacks with one use of Spellcasting." + ] + }, + { + "name": "Ashen Burst", + "entries": [ + "{@atk ms,rs} {@hit 9} to hit, reach 5 ft. or range 60 ft., one target. {@h}17 ({@damage 5d6}) fire damage." + ] + }, + { + "name": "Cinder Spite {@recharge 5}", + "entries": [ + "Charmayne creates a magical explosion of fire centered on a point she can see within 120 feet of herself. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 17} Dexterity saving throw, taking 35 ({@damage 10d6}) fire damage on a failed save, or half as much damage on a successful one. A Humanoid reduced to 0 hit points by this damage dies and is transformed into a Tiny charcoal figurine." + ] + } + ], + "reaction": [ + { + "name": "Charmayne can take up to three reactions per round but only one per turn.", + "entries": [] + }, + { + "name": "Elemental Rebuke", + "entries": [ + "In response to being hit by an attack, Charmayne utters a word in Ignan, dealing 10 ({@damage 3d6}) fire damage to the attacker. Charmayne then teleports, along with any equipment she is wearing or carrying, up to 30 feet to an unoccupied space she can see, leaving a harmless cloud of ash and embers in the space she just left." + ] + }, + { + "name": "Fiery Counterspell", + "entries": [ + "Charmayne interrupts a creature she can see within 60 feet of herself that is casting a spell. If the spell is 4th level or lower, it fails and has no effect. If the spell is 5th level or higher, Charmayne makes an Intelligence check ({@dc 10} + the spell's level). On a success, the spell fails and has no effect. Whatever the spell's level, the caster takes 10 ({@damage 3d6}) fire damage if the spell fails." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "IG" + ], + "damageTags": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Clockwork Defender", + "source": "KftGV", + "page": 85, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "5d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 15, + "con": 18, + "int": 3, + "wis": 14, + "cha": 1, + "skill": { + "perception": "+6", + "stealth": "+4" + }, + "passive": 16, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Unusual Nature", + "entries": [ + "The defender doesn't need air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Electrified Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) lightning damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be {@condition grappled} (escape {@dc 13}). A creature {@condition grappled} by the defender takes the damage again at the start of each of the defender's turns. The defender can have only one creature {@condition grappled} in this way at a time, and the defender can't make Electrified Bite attacks while grappling." + ] + } + ], + "bonus": [ + { + "name": "Light Beam", + "entries": [ + "The defender emits bright light from its eyes in a 60-foot cone, or it shuts off this light." + ] + } + ], + "traitTags": [ + "Unusual Nature" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Clockwork Observer", + "source": "KftGV", + "page": 85, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d4 + 2" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 16, + "con": 13, + "int": 3, + "wis": 15, + "cha": 1, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "0", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The observer doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Telepathic Bond", + "entries": [ + "While the observer is within 1 mile of its creator, it can magically convey what it sees to its creator, and the two can communicate telepathically." + ] + }, + { + "name": "Unusual Nature", + "entries": [ + "The observer doesn't need air, food, drink, or sleep." + ] + } + ], + "action": [ + { + "name": "Shriek", + "entries": [ + "The observer emits a mechanical shriek until the start of its next turn or until it drops to 0 hit points. This shriek can be heard within a range of 300 feet." + ] + } + ], + "traitTags": [ + "Flyby", + "Unusual Nature" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Conservatory Student", + "source": "KftGV", + "page": 110, + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "action": { + "mode": "removeArr", + "names": "Rapier" + } + } + }, + "ac": [ + 11 + ], + "skill": { + "performance": "+7" + }, + "reaction": null, + "actionTags": [], + "hasToken": true + }, + { + "name": "Crimson Helmed Horror", + "source": "KftGV", + "page": 152, + "_copy": { + "name": "Helmed Horror", + "source": "MM", + "_mod": { + "trait": [ + { + "mode": "replaceArr", + "replace": "Spell Immunity", + "items": { + "name": "Spell Immunity", + "entries": [ + "The helmed horror is immune to {@spell burning hands}, {@spell fireball}, and {@spell scorching ray}." + ] + } + } + ], + "action": [ + { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Flaming Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) fire damage, or 9 ({@damage 1d10 + 4}) fire damage if used with two hands." + ] + } + } + ] + } + }, + "bonus": [ + { + "name": "Conjure Sword", + "entries": [ + "As a bonus action on its first turn in combat, the helmed horror conjures a longsword-sized blade of fire, which appears in its free hand. This sword disappears in a cloud of smoke when the helmed horror drops to 0 hit points." + ] + } + ], + "tokenCredit": "David Calabrese", + "hasToken": true + }, + { + "name": "Dr. Cassee Dannell", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 12, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "int": 10, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Eldritch Horror Hatchling", + "source": "KftGV", + "page": 24, + "_copy": { + "name": "Ankheg", + "source": "MM", + "_mod": { + "action": [ + { + "mode": "replaceArr", + "replace": "Bite", + "items": { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) poison damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the eldritch horror hatchling can bite only the {@condition grappled} creature and has advantage on attack rolls to do so." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Acid Spray {@recharge}", + "items": { + "name": "Acid Spray {@recharge}", + "entries": [ + "The eldritch horror hatchling spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature {@condition grappled}. Each creature in that line must make a {@dc 13} Dexterity saving throw, taking 10 ({@damage 3d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + } + ] + } + }, + "hasToken": true + }, + { + "name": "Eliphas Adulare", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 188, + "_copy": { + "name": "Werebear", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "the werebear", + "with": "Eliphas", + "flags": "i" + } + ] + } + }, + "int": 18, + "spellcasting": [ + { + "name": "Spellcasting (Humanoid or Hybrid Form Only)", + "type": "spellcasting", + "headerEntries": [ + "Eliphas casts one of the following spells, using Intelligence as the spellcasting ability (save {@dc 15}):" + ], + "will": [ + "{@spell light}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell detect magic}", + "{@spell fog cloud}" + ], + "1e": [ + "{@spell phantasmal force}", + "{@spell shatter}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "intelligence" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Enna Galakiir (Levels 1-4)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Bandit", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the bandit", + "with": "Enna Galakiir", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Enna Galakiir (Levels 5-8)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Enna Galakiir", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Enna Galakiir (Levels 9-11)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Assassin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Enna Galakiir", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Fragment of Krokulmar", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 53, + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 10, + "formula": "3d4 + 3" + }, + "speed": { + "walk": 0 + }, + "str": 4, + "dex": 16, + "con": 12, + "int": 16, + "wis": 16, + "cha": 16, + "skill": { + "arcana": "+7", + "history": "+7", + "persuasion": "+7", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "psychic" + ], + "languages": [ + "Deep Speech", + "telepathy 60 ft." + ], + "cr": "0", + "action": [ + { + "name": "Psionic Revitalization", + "entries": [ + "The fragment touches one creature that has 0 hit points in the fragment's space. The target regains 10 hit points, and each creature within 10 feet of the healed creature takes 3 ({@damage 1d6}) psychic damage." + ] + }, + { + "name": "Squirming Dodge", + "entries": [ + "Until the start of the fragment's next turn, any attack roll made against the fragment has disadvantage, and the fragment makes saving throws with advantage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "Y" + ], + "miscTags": [ + "AOE" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Frody Dartwild", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 105, + "_copy": { + "name": "Zombie", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the zombie", + "with": "Frody", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "int": 10, + "languages": [ + "Common" + ], + "hasToken": true + }, + { + "name": "Gregir Fendelsohn (Levels 1-4)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Bandit", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the bandit", + "with": "Gregir Fendelsohn", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true + }, + { + "name": "Gregir Fendelsohn (Levels 5-8)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Thug", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the thug", + "with": "Gregir Fendelsohn", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true + }, + { + "name": "Gregir Fendelsohn (Levels 9-11)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Gregir Fendelsohn", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true + }, + { + "name": "Headless Body", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 51, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "knight", + "with": "headless body" + } + } + }, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "hasToken": true + }, + { + "name": "Ignatius Inkblot", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 169, + "_copy": { + "name": "Mind Flayer", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "Ignatius Inkblot", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Jalynvyr Nir'Thinn", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 155, + "_copy": { + "name": "Smoke Mephit", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mephit", + "with": "Jalynvyr Nir'Thinn", + "flags": "i" + } + } + }, + "languages": [ + "Common", + "Elvish" + ], + "hasToken": true + }, + { + "name": "Jarazoun", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 200, + "_copy": { + "name": "Efreeti", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the efreeti", + "with": "Jarazoun", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Joster Mareet", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 107, + "_copy": { + "name": "Incubus", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the fiend", + "with": "Joster Mareet", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Juvenile Eldritch Horror", + "source": "KftGV", + "page": 24, + "_copy": { + "name": "Behir", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "behir", + "with": "eldritch horror" + } + } + }, + "int": 18, + "languages": null, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The eldritch horror casts one of the following spells, requiring no components and using Intelligence as the spellcasting ability (save {@dc 14}):" + ], + "daily": { + "1": [ + "{@spell project image}" + ], + "2e": [ + "{@spell blindness/deafness}", + "{@spell blur}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true + }, + { + "name": "Kavoda", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 78, + "_copy": { + "name": "Deep Gnome (Svirfneblin)", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gnome", + "with": "Kavoda", + "flags": "i" + }, + "trait": { + "mode": "prependArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Kavoda carries a {@item Spell Scroll (2nd Level)||spell scroll} of {@spell magic weapon} and a {@item Potion of Hill Giant Strength||potion of giant strength (hill)}." + ] + } + } + } + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 12, + "from": [ + "{@item robes|phb}" + ] + } + ], + "languages": [ + "Common", + "Gnomish", + "Terran", + "Undercommon" + ], + "hasToken": true + }, + { + "name": "King Jhaeros", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 158, + "_copy": { + "name": "Clay Golem", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the golem", + "with": "Jhaeros", + "flags": "i" + }, + "trait": [ + { + "mode": "appendArr", + "items": { + "name": "Ashen Creature", + "entries": [ + "When Jhaeros drops to 0 hit points, he explodes in a harmless cloud of ashes, leaving nothing else behind." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Acid Absorption", + "items": { + "name": "Fire Absorption", + "entries": [ + "Whenever Jhaeros is subjected to fire damage, he takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ] + } + } + ] + } + }, + "int": 10, + "wis": 10, + "cha": 10, + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "languages": [ + "understands Common", + "Draconic", + "Elvish", + "and Ignan but can't speak" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Markos Delphi", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 53, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "warlock" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + 12 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 15, + "con": 12, + "int": 17, + "wis": 13, + "cha": 16, + "save": { + "wis": "+3", + "cha": "+5" + }, + "skill": { + "arcana": "+7", + "history": "+7", + "perception": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "psychic" + ], + "languages": [ + "Celestial", + "Common", + "Deep Speech" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Markos casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "daily": { + "1e": [ + "{@spell arms of Hadar}", + "{@spell charm person}", + "{@spell mage armor}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Markos makes two Ceremonial Blade attacks, two Psychic Orb attacks, or one of each." + ] + }, + { + "name": "Ceremonial Blade", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 3 ({@damage 1d6}) poison damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or become {@condition poisoned} for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Psychic Orb", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}10 ({@damage 2d6 + 3}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Swap Space", + "entries": [ + "Markos targets one Medium or Small creature he can see within 30 feet of himself. The target must succeed on a {@dc 13} Constitution saving throw or it teleports, along with any equipment it is wearing or carrying, exchanging positions with Markos." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE", + "DS" + ], + "damageTags": [ + "I", + "P", + "Y" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Meera Raheer", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 7, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Naevys Tharesso", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 150, + "_copy": { + "name": "Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Naevys Tharesso", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Greatsword", + "items": { + "name": "Flame Tongue Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands. The knight can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until she uses a bonus action to speak the command word again or until she drops or sheathes the sword." + ] + } + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Nixylanna Vidorant", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 130, + "_copy": { + "name": "Assassin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the Assassin", + "with": "Nixylanna Vidorant", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Prisoner 13", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 68, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "dwarf", + "monk" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "mountain tattoo" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 17, + "con": 18, + "int": 16, + "wis": 14, + "cha": 16, + "save": { + "con": "+7", + "wis": "+5" + }, + "skill": { + "athletics": "+5", + "deception": "+9", + "insight": "+5", + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "poison" + ], + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Thieves' cant", + "Undercommon" + ], + "cr": "5", + "trait": [ + { + "name": "Antimagic Susceptibility", + "entries": [ + "In an area of antimagic, Prisoner 13's tattoos and reactions don't function, and she suffers the following modifications to her statistics: her AC becomes 13, she loses her immunity to psychic damage and the charmed condition, and her Tattooed Strike becomes a melee attack that deals 7 ({@damage 1d8 + 3}) bludgeoning damage on a hit." + ] + }, + { + "name": "Mindlink Tattoos", + "entries": [ + "Prisoner 13 has telepathic links with dozens of agents operating throughout the land. The links allow Prisoner 13 to communicate telepathically with each of these agents while they are both on the same plane of existence." + ] + }, + { + "name": "Mountain Tattoo", + "entries": [ + "Prisoner 13's AC includes her Constitution modifier." + ] + }, + { + "name": "Shroud Tattoo", + "entries": [ + "Prisoner 13 can't be targeted by divination spells or any feature that would read her thoughts, and she can't be perceived through magical scrying sensors. She can't be contacted telepathically unless she allows such contact." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Prisoner 13 makes two Tattooed Strike attacks." + ] + }, + { + "name": "Tattooed Strike", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 60 ft., one target. {@h}12 ({@damage 2d8 + 3}) force damage." + ] + }, + { + "name": "Firestorm Tattoo {@recharge 5}", + "entries": [ + "Prisoner 13 magically unleashes flame from the tattoo across her back, filling a 20-foot-radius sphere centered on her. Each other creature in that area must make a {@dc 15} Dexterity saving throw. On a failed save, the creature takes 13 ({@damage 3d8}) fire damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}." + ] + }, + { + "name": "River Tattoo", + "entries": [ + "Prisoner 13 magically ends any effects causing the {@condition grappled} or {@condition restrained} conditions on herself. If she is bound with nonmagical restraints, she slips out of them." + ] + } + ], + "reaction": [ + { + "name": "Readiness", + "entries": [ + "When a creature Prisoner 13 can see within 60 feet of herself ends its turn, Prisoner 13 makes one Tattooed Strike attack or uses River Tattoo. She can then move up to her speed without provoking opportunity attacks." + ] + } + ], + "traitTags": [ + "Antimagic Susceptibility" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "E", + "TC", + "U" + ], + "damageTags": [ + "B", + "F", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rilago", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 147, + "_copy": { + "name": "Ghost", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ghost", + "with": "Rilago", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sabrina Kilgore (Levels 1-4)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Bandit", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the bandit", + "with": "Sabrina Kilgore", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true + }, + { + "name": "Sabrina Kilgore (Levels 5-8)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Thug", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the thug", + "with": "Sabrina Kilgore", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true + }, + { + "name": "Sabrina Kilgore (Levels 9-11)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Sabrina Kilgore", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true + }, + { + "name": "Sythian Skalderang", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 117, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bard", + "tiefling" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "Graz'zt's gift" + ] + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 15, + "con": 13, + "int": 14, + "wis": 11, + "cha": 16, + "save": { + "dex": "+5", + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "deception": "+6", + "performance": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "fire" + ], + "languages": [ + "Abyssal", + "Common" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sythian casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell faerie fire}", + "{@spell unseen servant}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fear of Frogs and Toads", + "entries": [ + "Sythian is {@condition frightened} while he is within 20 feet of a frog or a toad (of any size) that he can see." + ] + }, + { + "name": "Graz'zt's Gift", + "entries": [ + "Sythian's AC includes his Charisma modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Sythian makes two Poisoned Shortsword or Poisoned Dart attacks and uses Whispers of Azzagrat." + ] + }, + { + "name": "Poisoned Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Poisoned Dart", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Whispers of Azzagrat", + "entries": [ + "Each creature in a 15-foot cube originating from Sythian must make a {@dc 14} Wisdom saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) psychic damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ] + } + ], + "reaction": [ + { + "name": "Fiendish Rebuke (3/Day)", + "entries": [ + "Immediately after a creature within 5 feet of Sythian hits him with an attack roll, Sythian forces that creature to make a {@dc 14} Constitution saving throw. The creature takes 14 ({@damage 4d6}) fire damage on a failed saving throw, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "F", + "I", + "P", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Stranger", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 173, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "The Stranger", + "flags": "i" + } + } + }, + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "The Stranger wears an invisible {@item ring of mind shielding} that thwarts magical attempts to read their thoughts. The Stranger also wears {@item dimensional shackles} but is eager to be rid of them. One touch from Omid's mace-key causes the shackles to fall off, freeing the Stranger." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The archmage has advantage on saving throws against spells and other magical effects." + ] + } + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Tiefling Acrobat", + "source": "KftGV", + "page": 37, + "_copy": { + "name": "Commoner", + "source": "MM" + }, + "skill": { + "acrobatics": "+4", + "performance": "+4" + }, + "hasToken": true + }, + { + "name": "Tixie Tockworth", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 85, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d6 + 40" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 13, + "con": 18, + "int": 17, + "wis": 9, + "cha": 10, + "save": { + "int": "+6", + "wis": "+2" + }, + "skill": { + "arcana": "+9", + "perception": "+2" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 12, + "languages": [ + "Common", + "Gnomish", + "Terran", + "Undercommon" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tockworth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell nondetection} (self only)" + ], + "daily": { + "2": [ + "{@spell dimension door}" + ], + "1e": [ + "{@spell blindness/deafness}", + "{@spell blur}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Force Field", + "entries": [ + "Tockworth generates a magical force field around herself. This force field has 15 hit points and regains all its hit points at the start of each of Tockworth's turns, but it ceases to function if Tockworth drops to 0 hit points. Any damage Tockworth takes is subtracted from the force field's hit points first. Each time the force field regains hit points, the following conditions end on Tockworth: {@condition grappled}, {@condition restrained}, and {@condition stunned}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tockworth makes three Shortsword or Lightning Discharge attacks." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) force damage." + ] + }, + { + "name": "Lightning Discharge", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}16 ({@damage 3d10}) lightning damage." + ] + } + ], + "bonus": [ + { + "name": "Scalding Steam {@recharge 5}", + "entries": [ + "Tockworth emits a jet of piping-hot steam in a 15-foot cone. Each creature in that cone must make a {@dc 15} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "G", + "T", + "U" + ], + "damageTags": [ + "F", + "L", + "O", + "P" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tixie's Shield Guardian", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 80, + "_copy": { + "name": "Shield Guardian", + "source": "MM", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Spell Storing" + } + } + }, + "hasToken": true + }, + { + "name": "Torgja Stonecrusher (Levels 1-4)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Bandit", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the bandit", + "with": "Torgja Stonecrusher", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true + }, + { + "name": "Torgja Stonecrusher (Levels 5-8)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Thug", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the thug", + "with": "Torgja Stonecrusher", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true + }, + { + "name": "Torgja Stonecrusher (Levels 9-11)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Torgja Stonecrusher", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "dwarf" + ] + }, + "alignment": [ + "C", + "N" + ], + "hasToken": true + }, + { + "name": "Tosh Starling (Levels 1-4)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Scout", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Tosh Starling", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Tosh Starling (Levels 5-8)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spy", + "with": "Tosh Starling", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Tosh Starling (Levels 9-11)", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 8, + "_copy": { + "name": "Veteran", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the veteran", + "with": "Tosh Starling", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "orc" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true + }, + { + "name": "Zala Morphus", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 47, + "_copy": { + "name": "Nothic", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the nothic", + "with": "Zala Morphus", + "flags": "i" + } + } + }, + "languages": [ + "Common", + "Deep Speech", + "Elvish" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zorhanna Adulare", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 184, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Zorhanna Adulare", + "flags": "i" + } + } + }, + "languages": [ + "Auran", + "Common", + "Draconic", + "Elvish", + "Sylvan" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zorhanna's Simulacrum", + "isNpc": true, + "isNamedCreature": true, + "source": "KftGV", + "page": 184, + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "archmage", + "with": "simulacrum" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Simulacrum", + "entries": [ + "The simulacrum can't regain expended spell slots or use the properties of the shard solitaire necklace. (The shard solitaire is currently attuned to the Far Realm entity trapped inside.) If the simulacrum drops to 0 hit points, it turns to snow and melts away, and the shard solitaire necklace teleports to the safe in Zorhanna's vault tower." + ] + } + } + } + }, + "type": "construct", + "alignment": [ + "N", + "E" + ], + "languages": [ + "Common", + "Deep Speech (when it is angry or frustrated)", + "Draconic", + "Elvish", + "Gnomish", + "Sylvan" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Aerosaur", + "group": [ + "Dinosaurs" + ], + "source": "BGG", + "page": 128, + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 155, + "formula": "10d20 + 50" + }, + "speed": { + "walk": 20, + "fly": 120 + }, + "str": 26, + "dex": 10, + "con": 21, + "int": 3, + "wis": 10, + "cha": 5, + "skill": { + "perception": "+4" + }, + "passive": 14, + "cr": "10", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The aerosaur has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aerosaur makes one Bite attack and one Talons attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}27 ({@damage 3d12 + 8}) piercing damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 18}). Until this grapple ends, the target has the {@condition restrained} condition, and the aerosaur can't Bite another target." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) slashing damage." + ] + }, + { + "name": "Wing Gusts {@recharge 5}", + "entries": [ + "The aerosaur beats its wings, creating bursts of thunderous force. Each creature within 10 feet of the aerosaur must make a {@dc 20} Strength saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) thunder damage, is pushed up to 30 feet horizontally from the aerosaur, and has the {@condition prone} condition. On a successful save, a creature takes half as much damage and is pushed up to 15 feet horizontally from the aerosaur." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Altisaur", + "group": [ + "Dinosaurs" + ], + "source": "BGG", + "page": 129, + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 198, + "formula": "12d20 + 72" + }, + "speed": { + "walk": 40 + }, + "str": 28, + "dex": 6, + "con": 23, + "int": 3, + "wis": 12, + "cha": 7, + "skill": { + "perception": "+11" + }, + "passive": 21, + "cr": "13", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The altisaur has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The altisaur makes one Stomp attack and one Tail attack. The altisaur can't make both attacks against the same target." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}33 ({@damage 7d6 + 9}) bludgeoning damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 22} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}45 ({@damage 8d8 + 9}) bludgeoning damage, and the target is pushed up to 20 feet horizontally from the altisaur." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bag Jelly", + "source": "BGG", + "page": 120, + "size": [ + "M" + ], + "type": "ooze", + "alignment": [ + "U" + ], + "ac": [ + 8 + ], + "hp": { + "average": 42, + "formula": "5d8 + 20" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 13, + "dex": 6, + "con": 19, + "int": 2, + "wis": 7, + "cha": 2, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 8, + "resist": [ + "acid", + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion" + ], + "cr": "1", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The bag jelly can move through a space as narrow as 1 inch without squeezing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bag jelly makes two Pseudopod attacks." + ] + }, + { + "name": "Pseudopod", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) acid damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 11}). Ability checks made to escape this grapple have disadvantage." + ] + } + ], + "traitTags": [ + "Amorphous" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Barrowghast", + "source": "BGG", + "page": 121, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 8, + "con": 20, + "int": 5, + "wis": 9, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "resist": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Giant" + ], + "cr": "7", + "trait": [ + { + "name": "Stench", + "entries": [ + "Any creature that starts its turn within 10 feet of the barrowghast must make a {@dc 16} Constitution saving throw. On a failed save, the creature has the {@condition poisoned} condition for 1 minute. While {@condition poisoned} this way, the creature can't regain hit points. On a successful save, the creature is immune to the Stench of all barrowghasts for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The barrowghast makes two Slam attacks. It can replace one Slam attack with a Life Drain attack." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d12 + 5}) bludgeoning damage." + ] + }, + { + "name": "Life Drain", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}9 ({@damage 1d8 + 5}) necrotic damage, and the target must succeed on a {@dc 16} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A Humanoid slain by this attack immediately rises as a zombie (see the Monster Manual). The zombie acts as an ally of the barrowghast but isn't under its control." + ] + } + ], + "reaction": [ + { + "name": "Noxious Wound", + "entries": [ + "Immediately after the barrowghast takes piercing or slashing damage, poisonous ichor sprays from the wound. Each creature within 5 feet of the barrowghast must make a {@dc 16} Dexterity saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "I", + "N" + ], + "miscTags": [ + "AOE", + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cairnwight", + "source": "BGG", + "page": 122, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 10, + "wis": 12, + "cha": 9, + "save": { + "con": "+9", + "wis": "+5" + }, + "skill": { + "athletics": "+10", + "perception": "+5", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "petrified" + ], + "languages": [ + "Giant" + ], + "cr": "9", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cairnwight makes two Slam attacks or two Rock attacks, and it uses its Petrifying Touch if available." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target must succeed on a {@dc 17} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Petrifying Touch {@recharge 5}", + "entries": [ + "The cairnwight touches one creature it can see within 10 feet of itself. The target must succeed on a {@dc 17} Constitution saving throw or take 26 ({@damage 4d12}) force damage and have the {@condition restrained} condition as it begins to turn to stone. The affected target must repeat the saving throw at the end of its next turn. On a successful save, the effect ends on the target. On a failed save, the target has the {@condition petrified} condition instead of the {@condition restrained} condition." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "petrified", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ceratops", + "group": [ + "Dinosaurs" + ], + "source": "BGG", + "page": 129, + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 139, + "formula": "9d20 + 45" + }, + "speed": { + "walk": 50 + }, + "str": 24, + "dex": 8, + "con": 21, + "int": 4, + "wis": 10, + "cha": 7, + "passive": 10, + "cr": "9", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The ceratops has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ceratops makes one Gore attack and one Stomp attack." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}29 ({@damage 4d10 + 7}) piercing damage. If the ceratops moved at least 20 feet in a straight line toward the target immediately before the hit, the target takes an extra 11 ({@damage 2d10}) piercing damage; if the target is a creature, it also must succeed on a {@dc 19} Strength saving throw or be pushed up to 20 feet from the ceratops and have the {@condition prone} condition." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cinder Hulk", + "source": "BGG", + "page": 123, + "otherSources": [ + { + "source": "GotSF" + } + ], + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 9, + "wis": 14, + "cha": 10, + "save": { + "dex": "+4", + "con": "+8", + "wis": "+5" + }, + "skill": { + "perception": "+5" + }, + "passive": 15, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Giant", + "Ignan" + ], + "cr": "7", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the cinder hulk dies, it leaves behind a cloud of cinders and smoke that fills a 10-foot-radius sphere centered on its space. The sphere is heavily obscured. Any creature that moves into the area for the first time on a turn or starts its turn there must succeed on a {@dc 16} Constitution saving throw or take 10 ({@damage 3d6}) fire damage. The cloud lasts for 1 minute or until it is dispersed by strong wind." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cinder hulk makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage." + ] + }, + { + "name": "Wave of Cinders {@recharge 5}", + "entries": [ + "The cinder hulk emits a wave of smoldering ash from its face, hands, or chest in a 30-foot cone. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 31 ({@damage 7d8}) fire damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, a creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "IG" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cloud Giant Destiny Gambler", + "source": "BGG", + "page": 124, + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "bard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 337, + "formula": "27d12 + 162" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 27, + "dex": 12, + "con": 22, + "int": 19, + "wis": 16, + "cha": 22, + "save": { + "con": "+12", + "int": "+10", + "wis": "+9", + "cha": "+12" + }, + "skill": { + "deception": "+18", + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "truesight 30 ft. (requires cloud rune)" + ], + "passive": 19, + "immune": [ + "thunder" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "19", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell dream} (as an action)", + "{@spell gaseous form}", + "{@spell major image}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Cloud Rune", + "entries": [ + "The giant has a cloud rune inscribed on a mask in its possession. While holding or wearing the mask bearing the rune, the giant has truesight within a range of 30 feet and can use its Thunderous Clap action and Negate Spell reaction.", + "The mask bearing the cloud rune has AC 15; 45 hit points; and immunity to necrotic, poison, and psychic damage. The mask regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a cloud rune on a mask in its possession when it finishes a short or long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes three Flying Staff attacks." + ] + }, + { + "name": "Flying Staff", + "entries": [ + "{@atk mw,rw} {@hit 14} to hit, reach 10 ft. or range 30/90 ft., one target. {@h}18 ({@damage 3d6 + 8}) bludgeoning damage plus 16 ({@damage 3d10}) thunder damage. {@hom}The staff magically returns to the giant's hand immediately after a ranged attack." + ] + }, + { + "name": "Thunderous Clap (Requires Cloud Rune)", + "entries": [ + "The giant magically summons a thundercloud that fills a 30-foot-radius sphere centered on a point the giant can see within 60 feet of itself. The cloud spreads around corners. Each creature in that area must make a {@dc 20} Constitution saving throw as the cloud emits a thunderous boom. On a failed save, a creature takes 52 ({@damage 8d12}) thunder damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only. The thunderclap is audible within 300 feet of the cloud's center point.", + "The cloud's area is heavily obscured. The cloud lingers until the start of the giant's next turn or until a strong wind disperses it." + ] + } + ], + "reaction": [ + { + "name": "Negate Spell (Requires Cloud Rune)", + "entries": [ + "When the giant sees a creature within 60 feet of itself casting a spell, the giant tries to interrupt it. If the creature is casting a spell using a spell slot of 3rd level or lower, the spell fails and has no effect. If the creature is casting a spell of 4th level or higher, it must succeed on a {@dc 18} Intelligence saving throw, or the spell fails and has no effect." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "T" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "intelligence" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cloud Giant of Evil Air", + "source": "BGG", + "page": 125, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 27, + "dex": 10, + "con": 22, + "int": 12, + "wis": 16, + "cha": 19, + "save": { + "con": "+10", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "insight": "+7", + "perception": "+7", + "stealth": "+4" + }, + "passive": 17, + "languages": [ + "Auran", + "Common", + "Giant" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "daily": { + "1": [ + "{@spell gaseous form}" + ], + "2": [ + "{@spell telekinesis}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Flyby", + "entries": [ + "The giant doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Scimitar attacks and one Storm Boomerang attack." + ] + }, + { + "name": "Scimitar", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 8}) slashing damage." + ] + }, + { + "name": "Storm Boomerang", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}15 ({@damage 3d4 + 8}) bludgeoning damage plus 7 ({@damage 2d6}) thunder damage, and the target must succeed on a {@dc 16} Constitution saving throw or have the {@condition stunned} condition until the end of its next turn. {@hom}The boomerang magically returns to the giant's hand immediately after the attack." + ] + } + ], + "attachedItems": [ + "scimitar|phb" + ], + "traitTags": [ + "Flyby" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C", + "GI" + ], + "damageTags": [ + "B", + "S", + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cradle of the Cloud Scion", + "source": "BGG", + "page": 166, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 624, + "formula": "32d20 + 288" + }, + "speed": { + "walk": 0, + "fly": { + "number": 90, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 29, + "dex": 21, + "con": 28, + "int": 14, + "wis": 22, + "cha": 19, + "save": { + "int": "+10", + "cha": "+12" + }, + "passive": 16, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "thunder" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "26", + "trait": [ + { + "name": "Awakening of the Scion", + "entries": [ + "The cradle is a container for the {@creature scion of Memnor|BGG}. When the cradle drops to 0 hit points, its body dissipates into cloud wisps. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ] + }, + { + "name": "Flyby", + "entries": [ + "The cradle doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The cradle deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cradle makes three Slam or Wind Javelin attacks in any combination." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}31 ({@damage 4d10 + 9}) bludgeoning damage plus 19 ({@damage 3d12}) thunder damage." + ] + }, + { + "name": "Wind Javelin", + "entries": [ + "{@atk rw} {@hit 17} to hit, range 120 ft., one target. {@h}27 ({@damage 4d8 + 9}) bludgeoning damage plus 10 ({@damage 3d6}) thunder damage, and the target must succeed on a {@dc 25} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Vortex {@recharge 5}", + "entries": [ + "The cradle conjures a vortex of wind at a point it can see within 90 feet of itself. The wind vortex is a 30-foot-radius, 100-foot-high cylinder centered on that point. Each creature other than the cradle in that area must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 71 ({@damage 11d12}) bludgeoning damage and has the {@condition restrained} condition within the vortex. On a successful save, a creature takes half as much damage and is pushed to the nearest unoccupied space outside the cylinder. The vortex lasts until the start of the cradle's next turn. A creature with the {@condition restrained} condition falls {@condition prone} when the vortex ends.", + "A creature with the {@condition restrained} condition can use its action to try to escape the vortex. The creature makes a {@dc 19} Strength ({@skill Athletics}) or Dexterity ({@skill Acrobatics}) check. On a successful check, the creature escapes and moves {@dice 3d6 \u00d7 10} feet away from the vortex in a random direction." + ] + } + ], + "reaction": [ + { + "name": "Thunderclap", + "entries": [ + "Immediately after taking damage, the cradle unleashes a thunderclap in a 30-foot-radius sphere centered on itself. All other creatures in that area must succeed on a {@dc 25} Constitution saving throw or take 18 ({@damage 4d8}) thunder damage and have the {@condition deafened} condition for 1 minute." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Memnor", + "source": "BGG" + }, + "traitTags": [ + "Flyby", + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "T" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cradle of the Fire Scion", + "source": "BGG", + "page": 172, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 555, + "formula": "30d20 + 240" + }, + "speed": { + "walk": 40 + }, + "str": 28, + "dex": 12, + "con": 27, + "int": 12, + "wis": 20, + "cha": 17, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "petrified", + "poisoned" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "25", + "trait": [ + { + "name": "Awakening of the Scion", + "entries": [ + "The cradle is a container for the {@creature scion of Surtur|BGG}. When the cradle drops to 0 hit points, its body hardens and crumbles to ash. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The cradle deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cradle makes three Slam or Hurl Lava attacks in any combination." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}31 ({@damage 4d10 + 9}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage." + ] + }, + { + "name": "Hurl Lava", + "entries": [ + "{@atk rw} {@hit 17} to hit, range 120 ft., one target. {@h}27 ({@damage 4d8 + 9}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature within 5 feet of the fire takes an action to douse the fire, the target takes 10 ({@damage 3d6}) fire damage at the start of each of its turns." + ] + }, + { + "name": "Erupting Breath {@recharge 5}", + "entries": [ + "The cradle exhales flames and volcanic gases in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw. On a failed save, a creature takes 55 ({@damage 10d10}) fire damage and has the {@condition poisoned} condition for 1 minute. On a successful save, a creature takes half as much damage only.", + "A creature {@condition poisoned} in this way can make a {@dc 24} Constitution saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Lava Geyser", + "entries": [ + "The cradle causes lava to erupt from a point on the ground it can see within 120 feet of itself. Each creature in a 20-foot-radius, 50-foot-high cylinder centered on that point must succeed on a {@dc 21} Dexterity saving throw or take 14 ({@damage 4d6}) fire damage." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Surtur", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cradle of the Frost Scion", + "source": "BGG", + "page": 174, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 499, + "formula": "27d20 + 216" + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "str": 27, + "dex": 14, + "con": 26, + "int": 11, + "wis": 19, + "cha": 16, + "save": { + "wis": "+11", + "cha": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "24", + "trait": [ + { + "name": "Awakening of the Scion", + "entries": [ + "The cradle is a container for the {@creature scion of Thrym|BGG}. When the cradle drops to 0 hit points, its body shatters into shards of ice. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The cradle deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cradle makes two Slam or Hurl Icicle attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage plus 11 ({@damage 2d10}) cold damage." + ] + }, + { + "name": "Hurl Icicle", + "entries": [ + "{@atk rw} {@hit 15} to hit, range 120 ft., one target. {@h}26 ({@damage 4d8 + 8}) piercing damage plus 9 ({@damage 2d8}) cold damage, and the target must succeed on a {@dc 23} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Freezing Breath {@recharge 5}", + "entries": [ + "The cradle exhales a blast of frost in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 52 ({@damage 8d12}) cold damage, and its speed is reduced to 0 until the end of its next turn. On a successful save, a creature takes half as much damage only. If this damage would reduce the target to 0 hit points, the target drops to 1 hit point instead and has the {@condition petrified} condition, turning into a frozen statue.", + "If the statue takes bludgeoning damage, it shatters, killing the frozen creature. If the statue would take fire damage, it instead takes no damage and thaws, ending the petrification." + ] + } + ], + "bonus": [ + { + "name": "Chilling Mist", + "entries": [ + "The cradle magically conjures a cloud of chilling mist that fills a 30-foot-radius sphere centered on a point it can see within 90 feet of itself. The mist spreads around corners. Each creature in that area must succeed on a {@dc 19} Constitution saving throw or take 28 ({@damage 8d6}) cold damage and be unable to use reactions until the start of its next turn. The mist vanishes at the end of the cradle's turn." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Thrym", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "C", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cradle of the Hill Scion", + "source": "BGG", + "page": 164, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 402, + "formula": "23d20 + 161" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 10, + "con": 24, + "int": 9, + "wis": 16, + "cha": 10, + "save": { + "wis": "+10", + "cha": "+7" + }, + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "22", + "trait": [ + { + "name": "Awakening of the Scion", + "entries": [ + "The cradle is a container for the {@creature scion of Grolantor|BGG}. When the cradle drops to 0 hit points, its body crumbles to dirt and moss. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The cradle deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cradle makes three Slam or Spit Rock attacks in any combination and one Grasping Root attack." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}33 ({@damage 4d12 + 7}) bludgeoning damage." + ] + }, + { + "name": "Spit Rock", + "entries": [ + "{@atk rw} {@hit 14} to hit, range 120 ft., one target. {@h}25 ({@damage 4d8 + 7}) bludgeoning damage, and the target must succeed on a {@dc 22} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Grasping Root", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 30 ft., one creature not {@condition grappled} by the cradle. {@h}the target has the {@condition grappled} condition (escape {@dc 17}). Until the grapple ends, the target takes 29 ({@damage 4d10 + 7}) bludgeoning damage at the start of each of its turns. The root has AC 19 and can be severed by dealing 15 or more slashing damage to it on one attack. Cutting the root doesn't hurt the cradle but ends the grapple." + ] + }, + { + "name": "Rolling Hills {@recharge}", + "entries": [ + "The cradle magically creates a wave of dirt that extends from a point on the ground within 120 feet of itself. The wave is up to 30 feet long, up to 30 feet tall, and up to 30 feet wide. Each creature in the wave must make a {@dc 22} Strength saving throw. On a failed save, a creature takes 58 ({@damage 9d12}) bludgeoning damage, has the {@condition prone} condition, and is buried under dirt. On a successful save, a creature takes half as much damage only.", + "A buried creature has the {@condition restrained} condition, has {@quickref Cover||3||total cover}, and can't breathe. As an action, a creature buried in this way, or another creature within 5 feet of it that isn't buried, can make a {@dc 17} Strength ({@skill Athletics}) check. On a successful check, the buried creature no longer has the {@condition prone} or {@condition restrained} conditions." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Grolantor", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cradle of the Stone Scion", + "source": "BGG", + "page": 168, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 455, + "formula": "26d20 + 182" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 15, + "con": 24, + "int": 11, + "wis": 18, + "cha": 10, + "save": { + "wis": "+11", + "cha": "+7" + }, + "senses": [ + "tremorsense 120 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "23", + "trait": [ + { + "name": "Awakening of the Scion", + "entries": [ + "The cradle is a container for the {@creature scion of Skoraeus|BGG}. When the cradle drops to 0 hit points, its body crumbles to dust. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The cradle deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cradle makes two Slam or Spit Rock attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + }, + { + "name": "Spit Rock", + "entries": [ + "{@atk rw} {@hit 15} to hit, range 120 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage, and the target must succeed on a {@dc 23} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Shattering Roar {@recharge 5}", + "entries": [ + "The cradle lets out a painfully load roar. Each creature within 60 feet of the cradle must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) thunder damage and has the {@condition incapacitated} condition until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Crystal Flare", + "entries": [ + "The cradle causes the crystals on its body to flare with light. Each creature within 30 feet of the cradle must succeed on a {@dc 22} Constitution saving throw or take 21 ({@damage 6d6}) radiant damage and have the {@condition blinded} condition until the end of the cradle's next turn." + ] + }, + { + "name": "Stone Spikes", + "entries": [ + "The cradle causes the ground in a 20-foot square within 90 feet of itself to sprout crystal spikes until the start of its next turn. The area becomes difficult terrain for the duration. A creature takes 10 ({@damage 3d6}) piercing damage for each 5 feet it moves on this terrain." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Skoraeus", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "P", + "R", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "blinded", + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cradle of the Storm Scion", + "source": "BGG", + "page": 170, + "size": [ + "G" + ], + "type": "elemental", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 682, + "formula": "35d20 + 315" + }, + "speed": { + "walk": 40, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "swim": 60, + "canHover": true + }, + "str": 30, + "dex": 14, + "con": 29, + "int": 16, + "wis": 23, + "cha": 18, + "passive": 16, + "resist": [ + "cold", + "fire", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "27", + "trait": [ + { + "name": "Awakening of the Scion", + "entries": [ + "The cradle is a container for the {@creature scion of Stronmaus|BGG}. When the cradle drops to 0 hit points, its body bursts into light. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The cradle deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cradle makes three Slam or Spit Hailstone attacks in any combination." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}36 ({@damage 4d12 + 10}) bludgeoning damage plus 19 ({@damage 3d12}) lightning damage." + ] + }, + { + "name": "Spit Hailstone", + "entries": [ + "{@atk rw} {@hit 18} to hit, range 120 ft., one target. {@h}32 ({@damage 4d10 + 10}) bludgeoning damage plus 14 ({@damage 4d6}) cold damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Lightning Barrage {@recharge 5}", + "entries": [ + "The cradle hurls multiple magical lightning bolts at up to two creatures it can see within 500 feet of itself. Each target must make a {@dc 22} Dexterity saving throw. On a failed save, the target takes 71 ({@damage 11d12}) lightning damage and has the {@condition stunned} condition until the end of its next turn. On a successful save, the target takes half as much damage only." + ] + } + ], + "reaction": [ + { + "name": "Booming Step", + "entries": [ + "Immediately after taking damage, the cradle cracks with thunder and then magically teleports up to 60 feet to an unoccupied space it can see. Each creature within 10 feet of the space the cradle left must make a {@dc 22} Constitution saving throw, taking 14 ({@damage 4d6}) thunder damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Stronmaus", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "C", + "L", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Death Giant Reaper", + "source": "BGG", + "page": 126, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 40 + }, + "str": 27, + "dex": 14, + "con": 20, + "int": 18, + "wis": 16, + "cha": 16, + "save": { + "con": "+9", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "arcana": "+8", + "history": "+8", + "perception": "+7", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "immune": [ + "necrotic" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Giant" + ], + "cr": "12", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Scythe or Soul Bolt attacks." + ] + }, + { + "name": "Scythe", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage plus 11 ({@damage 2d10}) necrotic damage." + ] + }, + { + "name": "Soul Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}26 ({@damage 4d10 + 4}) necrotic damage. If the target has the {@condition frightened} condition, the giant gains temporary hit points equal to the damage dealt." + ] + } + ], + "bonus": [ + { + "name": "Frightening Teleport {@recharge 4}", + "entries": [ + "The giant magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. Each creature within 10 feet of the location the giant left must succeed on a {@dc 16} Wisdom saving throw or have the {@condition frightened} condition until the end of that creature's next turn." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Death Giant Shrouded One", + "source": "BGG", + "page": 127, + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "speed": { + "walk": 40 + }, + "str": 27, + "dex": 14, + "con": 20, + "int": 23, + "wis": 16, + "cha": 16, + "save": { + "con": "+10", + "int": "+11", + "wis": "+8", + "cha": "+8" + }, + "skill": { + "arcana": "+11", + "perception": "+8", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "immune": [ + "necrotic" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell detect magic}", + "{@spell mage armor}" + ], + "daily": { + "3e": [ + "{@spell speak with dead}", + "{@spell Tenser's floating disk}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Death Rune", + "entries": [ + "The giant has a death rune inscribed on a giant's skull in its possession. While holding or wearing the skull bearing the rune, the giant can use its Reaping Scythe action and Shroud of Souls bonus action.", + "The skull bearing the death rune has AC 18; 35 hit points; and immunity to necrotic, poison, and psychic damage. The skull regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a death rune on another skull in its possession when it finishes a short or long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes three Soul Burst attacks. Alternatively, if the giant has its death rune, it can make three Reaping Scythe attacks." + ] + }, + { + "name": "Soul Burst", + "entries": [ + "{@atk ms,rs} {@hit 11} to hit, reach 10 ft. or range 120 ft., one target. {@h}28 ({@damage 4d10 + 6}) necrotic damage. If the target has the {@condition frightened} condition, the giant gains temporary hit points equal to the damage dealt." + ] + }, + { + "name": "Reaping Scythe (Requires Death Rune)", + "entries": [ + "{@atk ms} {@hit 11} to hit, reach 15 ft., one creature. {@h}38 ({@damage 7d10}) necrotic damage, and the target can't regain hit points until the end of its next turn. The target dies if it is reduced to 0 hit points by this attack." + ] + } + ], + "bonus": [ + { + "name": "Frightening Teleport {@recharge 4}", + "entries": [ + "The giant magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. Each creature within 10 feet of the location the giant left must succeed on a {@dc 19} Wisdom saving throw or have the {@condition frightened} condition until the end of that creature's next turn." + ] + }, + { + "name": "Shroud of Souls (Requires Death Rune)", + "entries": [ + "The giant shrouds itself in a torrent of souls. While the giant is shrouded, each creature that starts its turn within 5 feet of the giant must succeed on a {@dc 19} Wisdom saving throw or have disadvantage on saving throws until the end of that creature's next turn. The shroud disappears after 1 minute, when the giant dies, when the giant uses this bonus action again, or when the giant's death rune is destroyed." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dust Hulk", + "source": "BGG", + "page": 131, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 15, + "dex": 19, + "con": 16, + "int": 10, + "wis": 12, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "restrained" + ], + "languages": [ + "Giant", + "Terran" + ], + "cr": "5", + "trait": [ + { + "name": "Air Form", + "entries": [ + "The dust hulk can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch without squeezing." + ] + }, + { + "name": "Death Burst", + "entries": [ + "When the dust hulk dies, it explodes in a burst of dust that fills a 10-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 14} Constitution saving throw or have the {@condition blinded} condition for 1 minute. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dust hulk makes three Slam attacks. It can replace one of these attacks with Stinging Dust." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Stinging Dust", + "entries": [ + "One creature of the dust hulk's choice inside its space must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 10 ({@damage 3d6}) bludgeoning damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, the creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "T" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Echo of Demogorgon", + "source": "BGG", + "page": 132, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 10, + "con": 17, + "int": 10, + "wis": 12, + "cha": 14, + "save": { + "str": "+9", + "cha": "+5" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Abyssal", + "Giant", + "Orc" + ], + "cr": "6", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The echo has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Wakeful", + "entries": [ + "When one of the echo's heads is asleep, its other head is awake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The echo makes two Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Discordant Screams", + "entries": [ + "The echo directs its frenzied howls at one creature it can see within 60 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or suffer one of the following effects of the echo's choice:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Confused Reaction", + "entries": [ + "The target must use its reaction to make a melee attack against another creature of the echo's choice that the echo can see." + ] + }, + { + "type": "item", + "name": "Psychic Torment", + "entries": [ + "The target takes 13 ({@damage 2d12}) psychic damage." + ] + } + ] + } + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "AB", + "GI", + "O" + ], + "damageTags": [ + "B", + "N", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ettin Ceremorph", + "source": "BGG", + "page": 133, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 14, + "con": 18, + "int": 18, + "wis": 15, + "cha": 14, + "save": { + "int": "+7", + "wis": "+5" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened", + "stunned", + "unconscious" + ], + "languages": [ + "Deep Speech", + "Giant", + "telepathy 60 ft.", + "Undercommon" + ], + "cr": "8", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The ceremorph has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ceremorph makes one Slam attack and one Tentacles attack. The ceremorph can replace one of the attacks with a Mind Bolt attack, if available." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Large or smaller, it has the {@condition grappled} condition (escape {@dc 14}) and must succeed on a {@dc 15} Intelligence saving throw or have the {@condition stunned} condition until this grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} Humanoid {@condition grappled} by the ceremorph. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ceremorph kills the target by extracting and devouring its brain." + ] + }, + { + "name": "Mind Bolt (3/Day)", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one creature. {@h}17 ({@damage 2d12 + 4}) psychic damage, and the target must succeed on a {@dc 15} Intelligence saving throw or have the {@condition stunned} condition until the end of its next turn." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "GI", + "TP", + "U" + ], + "damageTags": [ + "B", + "P", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fensir Devourer", + "source": "BGG", + "page": 135, + "size": [ + "H" + ], + "type": "celestial", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 10, + "con": 21, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+8", + "survival": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "languages": [ + "Common", + "Giant" + ], + "cr": "8", + "trait": [ + { + "name": "Death Curse", + "entries": [ + "When the fensir starts its turn with 0 hit points and doesn't regenerate, it releases a curse on those around it. Each creature within 30 feet of the fensir when it dies must succeed on a {@dc 13} Charisma saving throw or be cursed for the next 24 hours.", + "While cursed in this way, an affected creature gains no benefit from finishing a short or long rest. At the end of every hour, the creature must succeed on a {@dc 13} Charisma saving throw or take 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The fensir regains 10 hit points at the start of its turn if it isn't in sunlight. If the fensir takes acid or fire damage, this trait doesn't function at the start of the fensir's next turn. The fensir dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "When the fensir starts its turn in sunlight, it must succeed on a {@dc 15} Constitution saving throw or have the {@condition petrified} condition until the fensir is no longer in sunlight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fensir makes two attacks, using Rend, Boulder, or a combination of them." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage." + ] + }, + { + "name": "Boulder", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}18 ({@damage 2d12 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition. After the fensir throws the boulder, roll a {@dice d6}; on a roll of 4 or lower, the fensir has no more boulders to throw." + ] + } + ], + "traitTags": [ + "Regeneration", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "CUR", + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fensir Skirmisher", + "source": "BGG", + "page": 135, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 15, + "con": 20, + "int": 14, + "wis": 11, + "cha": 12, + "save": { + "int": "+5", + "wis": "+3" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "Common", + "Giant" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The fensir casts one of the following spells, using Intelligence as the spellcasting ability:" + ], + "daily": { + "1e": [ + "{@spell create or destroy water}", + "{@spell detect magic}", + "{@spell pass without trace}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The fensir regains 10 hit points at the start of its turn if it isn't in sunlight. If the fensir takes acid or fire damage, this trait doesn't function at the start of the fensir's next turn. The fensir dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "When the fensir starts its turn in sunlight, it must succeed on a {@dc 15} Constitution saving throw or have the {@condition petrified} condition until the fensir is no longer in sunlight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fensir makes three Battleaxe attacks or two Magic Stone attacks." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Magic Stone", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}15 ({@damage 2d12 + 2}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 13} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Mud to Stone {@recharge}", + "entries": [ + "The fensir lobs a magical mass of mud that splashes all creatures in a 30-foot-radius sphere centered on a point the fensir can see within 60 feet of itself. Each non-fensir creature in that area must succeed on a {@dc 13} Dexterity saving throw or take 13 ({@damage 3d8}) bludgeoning damage and have the {@condition restrained} condition as the mud begins to turn to stone. An affected creature must repeat the saving throw at the end of its next turn. On a successful save, the effect ends on the creature. On a failed save, the creature has the {@condition petrified} condition for 24 hours." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "traitTags": [ + "Regeneration", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "petrified" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Firbolg Primeval Warden", + "source": "BGG", + "page": 136, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "druid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item hide armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 12, + "wis": 16, + "cha": 11, + "save": { + "int": "+3", + "wis": "+5" + }, + "skill": { + "medicine": "+5", + "nature": "+3", + "perception": "+7" + }, + "passive": 17, + "languages": [ + "Common", + "Druidic", + "Giant" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The firbolg casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell entangle}", + "{@spell speak with animals}", + "{@spell speak with plants}" + ], + "daily": { + "1e": [ + "{@spell commune with nature} (as an action)", + "{@spell detect magic}", + "{@spell disguise self}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The firbolg makes two Spear or Fire Lance attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 9 ({@damage 2d8}) fire damage." + ] + }, + { + "name": "Fire Lance", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) fire damage." + ] + } + ], + "bonus": [ + { + "name": "Hidden Step (2/Day)", + "entries": [ + "The firbolg magically turns {@condition invisible} until the start of its next turn, until it makes an attack roll, or until it forces someone to make a saving throw." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU", + "GI" + ], + "damageTags": [ + "F", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "invisible" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Firbolg Wanderer", + "source": "BGG", + "page": 137, + "otherSources": [ + { + "source": "GotSF" + } + ], + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "cleric" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 14, + "wis": 17, + "cha": 16, + "save": { + "dex": "+5", + "cha": "+6" + }, + "skill": { + "perception": "+6", + "persuasion": "+6", + "stealth": "+5" + }, + "passive": 16, + "languages": [ + "Common", + "Giant" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The firbolg casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell Tasha's hideous laughter}" + ], + "daily": { + "1e": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell dispel magic}", + "{@spell polymorph}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The firbolg makes two attacks using Longsword, Bewitching Bolt, or a combination of them." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands, plus 9 ({@damage 2d8}) psychic damage." + ] + }, + { + "name": "Bewitching Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}10 ({@damage 2d6 + 3}) psychic damage, and the target must succeed on a {@dc 14} Charisma saving throw or have the {@condition charmed} condition until the start of the target's next turn." + ] + } + ], + "bonus": [ + { + "name": "Duplicitous Movement (1/Day)", + "entries": [ + "The firbolg projects an illusory duplicate of itself in an unoccupied space it can see within 30 feet of itself. The firbolg can then swap places with the illusion. The illusion vanishes after 1 minute, if the firbolg is {@condition incapacitated}, or if the illusion is more than 120 feet from the firbolg.", + "As a bonus action on later turns, the firbolg can move the illusion up to 30 feet and can then swap places with it." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Giant Forgecaller", + "source": "BGG", + "page": 138, + "otherSources": [ + { + "source": "GotSF" + } + ], + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "cleric" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 312, + "formula": "25d12 + 150" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 25, + "dex": 11, + "con": 23, + "int": 16, + "wis": 21, + "cha": 18, + "save": { + "dex": "+6", + "int": "+9", + "wis": "+11" + }, + "skill": { + "athletics": "+13", + "perception": "+11" + }, + "passive": 21, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "18", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Fire Rune", + "entries": [ + "The giant has a fire rune inscribed on a medallion or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Magma Wave action and Furnace Armor bonus action.", + "The object bearing the rune has AC 15; 40 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a fire rune on an object in its possession when it finishes a short or long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes three Forge Hammer attacks or two Heated Rock attacks." + ] + }, + { + "name": "Forge Hammer", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}24 ({@damage 5d6 + 7}) bludgeoning damage. {@hom}The giant can cause the hammer to emit a burst of heat in a 30-foot-radius sphere centered on the target. Metal objects in that area glow red-hot until the start of the giant's next turn. Any creature in physical contact with a heated object at the start of its turn must make a {@dc 19} Constitution saving throw. On a failed save, the creature takes 10 ({@damage 3d6}) fire damage and has disadvantage on attack rolls until the start of its next turn unless it has immunity to fire damage. The hammer can emit heat in this way only once per turn." + ] + }, + { + "name": "Heated Rock", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage plus 19 ({@damage 3d12}) fire damage. If the target is a Large or smaller creature, it must succeed on a {@dc 21} Strength saving throw or have the {@condition prone} condition. After the giant throws the rock, roll a {@dice d6}; on a roll of 3 or lower, the giant has no more rocks to throw." + ] + }, + { + "name": "Magma Wave (Requires Fire Rune)", + "entries": [ + "The giant emits a wave of magma from its fire rune in a 30-foot cone. Each creature in that area must make a {@dc 19} Dexterity saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) fire damage and has the {@condition restrained} condition. As an action, a creature can make a {@dc 19} Strength ({@skill Athletics}) check, freeing itself or a creature within its reach from the rock on a success. The rock restraining each creature has AC 17; 20 hit points; and immunity to fire, poison, and psychic damage. On a successful save, a creature takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Furnace Armor (Requires Fire Rune)", + "entries": [ + "The giant causes smoke and cinders to billow from its armor, filling a 30-foot-radius sphere centered on the giant. While the armor is billowing smoke, the giant has {@quickref Cover||3||half cover}. The armor stops billowing smoke after 1 minute, when the giant dies, when the giant uses a bonus action to end the effect, or when the giant's fire rune is destroyed." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Giant of Evil Fire", + "source": "BGG", + "page": 139, + "otherSources": [ + { + "source": "GotSF" + }, + { + "source": "HFStCM" + } + ], + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 150, + "formula": "12d12 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 25, + "dex": 9, + "con": 23, + "int": 10, + "wis": 19, + "cha": 14, + "save": { + "con": "+10", + "wis": "+8", + "cha": "+6" + }, + "skill": { + "athletics": "+11", + "perception": "+8" + }, + "passive": 18, + "immune": [ + "fire" + ], + "languages": [ + "Common", + "Giant", + "Ignan" + ], + "cr": "10", + "trait": [ + { + "name": "Shrapnel Explosion", + "entries": [ + "When the giant drops to 0 hit points, its armor explodes, destroying the giant's body and scattering the armor as shrapnel. Creatures within 10 feet of the giant when its armor explodes must make a {@dc 18} Dexterity saving throw, taking 21 ({@damage 6d6}) piercing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Searing Scepter attacks or two Bolt of Imix attacks." + ] + }, + { + "name": "Searing Scepter", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage plus 9 ({@damage 2d8}) fire damage, and the target is magically branded. While branded in this way, the target becomes visible if it's {@condition invisible}, can't become {@condition invisible}, and sheds dim light in a 5-foot radius. The brand disappears after 24 hours, or it can be removed from a creature or an object by any spell that ends a curse." + ] + }, + { + "name": "Bolt of Imix", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) fire damage, and the target must succeed on a {@dc 16} Wisdom saving throw or have the {@condition frightened} condition until the end of the target's next turn." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "IG" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "AOE", + "CUR", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fire Hellion", + "source": "BGG", + "page": 140, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 175, + "formula": "14d12 + 84" + }, + "speed": { + "walk": 30 + }, + "str": 25, + "dex": 10, + "con": 23, + "int": 16, + "wis": 14, + "cha": 21, + "save": { + "wis": "+6", + "cha": "+9" + }, + "skill": { + "arcana": "+7", + "athletics": "+11", + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Giant", + "Infernal" + ], + "cr": "11", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The hellion has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Soul Taker", + "entries": [ + "A Giant or a Humanoid that is reduced to 0 hit points by the hellion dies, and its soul rises as a lemure (see the Monster Manual) on Avernus, one of the Nine Hells, in {@dice 1d4} hours. If the creature isn't revived before then, it can be restored to life only by a {@spell wish} spell or by killing the lemure and casting true resurrection on the creature's original body." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hellion makes two Morningstar attacks." + ] + }, + { + "name": "Morningstar", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) piercing damage plus 11 ({@damage 2d10}) fire damage. If the target is a creature, it can't regain hit points until the start of the hellion's next turn." + ] + }, + { + "name": "Infernal Orb", + "entries": [ + "The hellion hurls a magical ball of fire that explodes in a 20-foot-radius sphere centered on a point the hellion can see within 120 feet of itself. The sphere spreads around corners. Each creature in that area must make a {@dc 17} Dexterity saving throw. A creature takes 18 ({@damage 4d8}) fire damage and 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "attachedItems": [ + "morningstar|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "I" + ], + "damageTags": [ + "F", + "N", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Firegaunt", + "source": "BGG", + "page": 137, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "damaged plate" + ] + } + ], + "hp": { + "average": 175, + "formula": "14d12 + 84" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 7, + "con": 23, + "int": 10, + "wis": 14, + "cha": 13, + "save": { + "dex": "+2", + "con": "+10", + "cha": "+5" + }, + "skill": { + "athletics": "+11", + "perception": "+6" + }, + "passive": 16, + "resist": [ + "necrotic" + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "petrified", + "poisoned" + ], + "languages": [ + "Giant" + ], + "cr": "11", + "trait": [ + { + "name": "Fire Blood", + "entries": [ + "Whenever a creature within 5 feet of the firegaunt hits the firegaunt with a melee attack that deals piercing or slashing damage, that creature takes 5 ({@damage 1d10}) fire damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The firegaunt makes two Heated Maul attacks." + ] + }, + { + "name": "Heated Maul", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage. The firegaunt can cause the maul to erupt with crimson flames, and the target must succeed on a {@dc 18} Dexterity saving throw or take 10 ({@damage 3d6}) fire damage and 10 ({@damage 3d6}) necrotic damage. The maul can erupt with flames in this way only once per turn." + ] + }, + { + "name": "Crimson Rays {@recharge 5}", + "entries": [ + "The firegaunt emits beams of fire from its eyes, mouth, and wounds in a 30-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 31 ({@damage 7d8}) fire damage on a failed save, or half as much damage on a successful one. On a success or failure, that creature catches fire. Until the burning creature or another creature that can reach it takes an action to extinguish the fire, the burning creature can't regain hit points and takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "F", + "N" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flesh Colossus", + "source": "BGG", + "page": 141, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 280, + "formula": "16d20 + 112" + }, + "speed": { + "walk": 60 + }, + "str": 24, + "dex": 9, + "con": 24, + "int": 6, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "lightning", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Giant but can't speak" + ], + "cr": "20", + "trait": [ + { + "name": "Berserk", + "entries": [ + "If the core inside the colossus is destroyed, the colossus goes berserk. On each of its turns while berserk, the colossus attacks the nearest creature it can see. If no creature is near enough to move to and attack, the colossus attacks an object. Once the colossus goes berserk, it remains berserk until it is destroyed." + ] + }, + { + "name": "Immutable Form", + "entries": [ + "The colossus is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The colossus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The colossus deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The colossus makes two Fist attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 13} to hit (with advantage if the colossus is berserk), reach 20 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage. If the target is a Large or smaller creature, it is pulled up to 15 feet toward the colossus, it has the {@condition grappled} condition (escape {@dc 17}), and it has the {@condition restrained} condition until this grapple ends. The colossus can have up to two creatures {@condition grappled} this way at a time." + ] + }, + { + "name": "Elemental Breath {@recharge 5}", + "entries": [ + "The colossus exhales a cloud swirling with elemental energy in a 90-foot cone. Each creature in that area must make a {@dc 21} Dexterity saving throw. On a failed save, a creature takes 40 ({@damage 9d8}) damage of a type of the colossus's choosing: acid, cold, fire, or lightning. On a successful save, a creature takes half as much damage.", + "At the same time as the colossus releases this exhalation, creatures inside the colossus's chest cavity take 40 ({@damage 9d8}) force damage from churning elemental energy." + ] + } + ], + "bonus": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one Large or smaller creature {@condition grappled} by the colossus. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage, and the creature is swallowed. A swallowed creature has the {@condition restrained} condition, has {@quickref Cover||3||total cover} against attacks and other effects outside the colossus, and takes 10 ({@damage 3d6}) force damage at the start of each of the colossus's turns.", + "The colossus's chest cavity can hold up to two creatures at a time. Inside its chest cavity is its core, which is a Large object with AC 16 that is immune to lightning, poison, and psychic damage. It has 140 hit points and sheds dim light in a 10-foot radius. If the core is destroyed, the colossus regurgitates all swallowed creatures, each of which falls in a space within 10 feet of the colossus and has the {@condition prone} condition, and the colossus can no longer swallow a creature. If the colossus dies, any swallowed creature no longer has the {@condition restrained} condition and can escape from the corpse using 10 feet of movement, exiting with the {@condition prone} condition." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "CS", + "GI" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fomorian Deep Crawler", + "source": "BGG", + "page": 142, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 184, + "formula": "16d12 + 80" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 23, + "dex": 15, + "con": 20, + "int": 9, + "wis": 17, + "cha": 6, + "skill": { + "perception": "+7", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "languages": [ + "Giant", + "Undercommon" + ], + "cr": "10", + "trait": [ + { + "name": "Contortionist", + "entries": [ + "The fomorian can enter a space large enough for a Large creature without squeezing." + ] + }, + { + "name": "Crawling Stance", + "entries": [ + "While the fomorian has the {@condition prone} condition, crawling does not cost it extra movement. In addition, the {@condition prone} condition does not grant advantage on attack rolls against the fomorian." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The fomorian can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fomorian makes two Slam attacks and uses Crawling Hex if it is available." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ] + }, + { + "name": "Crawling Hex {@recharge 4}", + "entries": [ + "The fomorian targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 15} Wisdom saving throw or take 31 ({@damage 7d8}) psychic damage, have the {@condition prone} condition, and become cursed for 1 hour. While cursed this way, the target can't stand up and end the {@condition prone} condition on itself." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "U" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "CUR", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fomorian Noble", + "source": "BGG", + "page": 143, + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 253, + "formula": "22d12 + 110" + }, + "speed": { + "walk": 30 + }, + "str": 23, + "dex": 18, + "con": 20, + "int": 19, + "wis": 14, + "cha": 16, + "save": { + "int": "+9", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "arcana": "+14", + "perception": "+7", + "stealth": "+9" + }, + "passive": 17, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Giant plus any three languages" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The fomorian casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell chain lightning}", + "{@spell cone of cold} (6th-level version)", + "{@spell fireball} (6th-level version)", + "{@spell fly}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fomorian makes three Rod attacks." + ] + }, + { + "name": "Rod", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 11 ({@damage 2d10}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Beguiling Presence", + "entries": [ + "The fomorian targets a creature it can see within 60 feet of itself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition for 1 minute. An affected target can repeat the saving throw at the end of each of its turns and whenever it takes damage, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target becomes immune to all fomorians' Beguiling Presence for the next 24 hours." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "X" + ], + "damageTags": [ + "B", + "O" + ], + "damageTagsSpell": [ + "C", + "F", + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fomorian Warlock of the Dark", + "source": "BGG", + "page": 144, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 23, + "dex": 13, + "con": 20, + "int": 9, + "wis": 14, + "cha": 18, + "save": { + "wis": "+6", + "cha": "+8" + }, + "skill": { + "arcana": "+3", + "perception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Giant", + "Undercommon" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The fomorian casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell levitate}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell detect thoughts}", + "{@spell suggestion}", + "{@spell telekinesis}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Blood Rune", + "entries": [ + "The fomorian has a blood rune inscribed on an effigy or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Corrupting Hex action and Poisoning Rebuke reaction.", + "The object bearing the blood rune has AC 15; 30 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the fomorian dies. If the rune is destroyed, the fomorian can inscribe a blood rune on an object in its possession when it finishes a short or long rest." + ] + }, + { + "name": "Devil's Sight", + "entries": [ + "Magical darkness doesn't impede the fomorian's darkvision." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the fomorian fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fomorian makes three Greatclub attacks. If the fomorian has its blood rune, it can replace one of these attacks with a use of Corrupting Hex." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Corrupting Hex (Requires Blood Rune)", + "entries": [ + "The fomorian targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 16} Charisma saving throw or take 27 ({@damage 6d8}) necrotic damage and become cursed for 24 hours. While cursed this way, the target's speed is reduced by half, and if it tries to cast a spell, it must first succeed on a {@dc 16} Intelligence check or the spell fails and is wasted." + ] + }, + { + "name": "Eldritch Burst", + "entries": [ + "Magical energy explodes in a 20-foot-radius sphere centered on a point the fomorian can see within 120 feet of itself. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 32 ({@damage 5d12}) force damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Creeping Gloom {@recharge}", + "entries": [ + "The fomorian momentarily conjures grasping darkness in a 30-foot-radius sphere centered on a point it can see within 120 feet of itself. Each creature in that area must succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) necrotic damage and have the {@condition blinded} condition until the end of its next turn." + ] + } + ], + "reaction": [ + { + "name": "Poisoning Rebuke (Requires Blood Rune)", + "entries": [ + "In response to being damaged by a creature the fomorian can see within 60 feet of itself, the fomorian forces that creature to make a {@dc 16} Constitution saving throw; on a failed save, the creature has the {@condition poisoned} condition until the end of its next turn." + ] + } + ], + "attachedItems": [ + "greatclub|phb" + ], + "traitTags": [ + "Devil's Sight", + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "U" + ], + "damageTags": [ + "B", + "N", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "CUR", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "poisoned", + "prone" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Giant Ice Shaper", + "source": "BGG", + "page": 145, + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "cleric" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|PHB}" + ] + } + ], + "hp": { + "average": 310, + "formula": "27d12 + 135" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 11, + "wis": 19, + "cha": 16, + "save": { + "str": "+12", + "con": "+11", + "wis": "+10", + "cha": "+9" + }, + "skill": { + "athletics": "+12", + "perception": "+10" + }, + "passive": 20, + "immune": [ + "cold" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "17", + "trait": [ + { + "name": "Frost Rune", + "entries": [ + "The giant has a frost rune inscribed on a chunk of ice or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Ice Wolves action and Ice Armor reaction.", + "The object bearing the rune has AC 16; 40 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a frost rune on an object in its possession when it finishes a short or long rest." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes three attacks using Greataxe, Freezing Ray, or a combination of them." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) slashing damage plus 9 ({@damage 2d8}) cold damage." + ] + }, + { + "name": "Freezing Ray", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) cold damage, and the target must make a {@dc 18} Constitution saving throw. On a failed save, the target has the {@condition restrained} condition until the end of its next turn. On a successful save, the target's speed is reduced by 10 feet until the end of its next turn." + ] + }, + { + "name": "Ice Wolves (Requires Frost Rune)", + "entries": [ + "The giant magically summons {@dice 1d4} wolves made of ice (use the {@creature winter wolf} stat block in the Monster Manual to represent them, but they are Elementals instead of Monstrosities). The wolves appear in unoccupied spaces the giant can see within 30 feet of itself. The wolves take their turn immediately after the giant on the same initiative count, and they obey the giant's commands. The wolves gain a +6 bonus to their attack and damage rolls while they are within 30 feet of the giant. The wolves disappear after 1 minute, when the giant dies, or when the giant uses this action again." + ] + } + ], + "reaction": [ + { + "name": "Ice Armor (Requires Frost Rune)", + "entries": [ + "When a creature the giant can see makes an attack roll against it, the giant can form a coat of ice around itself, granting it a +6 bonus to its AC against that attack. After the attack hits or misses, the ice shatters, and each creature within 5 feet of the giant must succeed on a {@dc 18} Dexterity saving throw or take 13 ({@damage 3d8}) cold damage." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "C", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Giant of Evil Water", + "source": "BGG", + "page": 146, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item scale mail|PHB}" + ] + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75" + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "str": 23, + "dex": 16, + "con": 21, + "int": 9, + "wis": 14, + "cha": 12, + "save": { + "dex": "+7", + "con": "+9", + "wis": "+6" + }, + "skill": { + "athletics": "+10", + "perception": "+6" + }, + "passive": 16, + "immune": [ + "cold" + ], + "languages": [ + "Aquan", + "Common", + "Giant" + ], + "cr": "11", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The giant can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Battleaxe attacks and one Harpoon attack." + ] + }, + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) slashing damage, or 22 ({@damage 3d10 + 6}) slashing damage if used with two hands, plus 7 ({@damage 2d6}) cold damage." + ] + }, + { + "name": "Harpoon", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 50/200 ft., one creature. {@h}14 ({@damage 2d10 + 3}) piercing damage, and the target has the {@condition grappled} condition (escape {@dc 16}). While the target is {@condition grappled} this way, its speed isn't reduced, but it can't move farther from the giant. The target takes 5 ({@damage 1d10}) slashing damage if it escapes from the grapple or if it tries and fails. The giant can grapple only one target at a time with its harpoon." + ] + } + ], + "bonus": [ + { + "name": "Reel In", + "entries": [ + "The giant pulls the target {@condition grappled} by its Harpoon up to 20 feet toward itself." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "traitTags": [ + "Amphibious" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C", + "GI" + ], + "damageTags": [ + "C", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frostmourn", + "source": "BGG", + "page": 147, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 9, + "con": 21, + "int": 9, + "wis": 11, + "cha": 18, + "save": { + "con": "+9", + "wis": "+4" + }, + "skill": { + "athletics": "+10", + "perception": "+4" + }, + "passive": 14, + "immune": [ + "cold", + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Giant" + ], + "cr": "10", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The frostmourn makes one Freezing Touch attack and one Icy Axe attack. It can replace one of these attacks with a Polar Ray attack." + ] + }, + { + "name": "Freezing Touch", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}18 ({@damage 4d8}) cold damage plus 18 ({@damage 4d8}) necrotic damage. If this damage would reduce the target to 0 hit points, the target drops to 1 hit point instead and has the {@condition petrified} condition, turning into a frozen statue.", + "If the statue takes bludgeoning damage, it shatters, killing the frozen creature. If the statue would take fire damage, it instead takes no damage and thaws, ending the petrification." + ] + }, + { + "name": "Icy Axe", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) slashing damage plus 7 ({@damage 2d6}) cold damage." + ] + }, + { + "name": "Polar Ray", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}31 ({@damage 5d10 + 4}) cold damage, and the target's speed is reduced by 10 feet until the end of its next turn." + ] + } + ], + "reaction": [ + { + "name": "Blizzard Escape", + "entries": [ + "Immediately after a creature the frostmourn can see hits it with an attack roll, the frostmourn momentarily dissolves into a blizzard, reducing the damage to itself by half. The frostmourn can then magically teleport to an unoccupied space it can see within 30 feet of itself." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "C", + "N", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fury of Kostchtchie", + "source": "BGG", + "page": 148, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 10, + "con": 25, + "int": 10, + "wis": 12, + "cha": 11, + "save": { + "con": "+12", + "wis": "+6" + }, + "skill": { + "athletics": "+13", + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "fire", + "lightning", + "poison" + ], + "immune": [ + "cold" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Giant" + ], + "cr": "14", + "trait": [ + { + "name": "Chilling Aura", + "entries": [ + "A creature that starts its turn within 10 feet of the fury must succeed on a {@dc 20} Constitution saving throw or take 11 ({@damage 2d10}) cold damage." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The fury has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fury makes two Fist or Rock attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage, or 17 ({@damage 5d6}) cold damage if the target took damage from the fury's Chilling Aura since the end of the fury's last turn." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Charge", + "entries": [ + "The fury can move up to its speed toward an enemy it can see." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "GI" + ], + "damageTags": [ + "B", + "C" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gargantua", + "source": "BGG", + "page": 149, + "size": [ + "G" + ], + "type": "aberration", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 388, + "formula": "21d20 + 168" + }, + "speed": { + "walk": 60 + }, + "str": 27, + "dex": 10, + "con": 26, + "int": 9, + "wis": 16, + "cha": 18, + "save": { + "dex": "+7", + "int": "+6", + "wis": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "force", + "psychic" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Giant" + ], + "cr": "21", + "trait": [ + { + "name": "Weird Aura", + "entries": [ + "At the start of each of the gargantua's turns, each creature of the gargantua's choice within 30 feet of it must make a {@dc 19} Wisdom saving throw. On a failed save, a target sees the gargantua as a manifestation of the target's worst fears; it takes 17 ({@damage 5d6}) psychic damage and has the {@condition frightened} condition until the start of the target's next turn. On a successful save, a target is immune to this gargantua's Weird Aura for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gargantua makes two Slam or Rock attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}27 ({@damage 3d12 + 8}) bludgeoning damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 15} to hit, range 120/480 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Baleful Hex", + "entries": [ + "The gargantua curses one creature it can see within 120 feet of itself. The target must succeed on a {@dc 19} Wisdom saving throw or have the {@condition incapacitated} condition until the end of its next turn." + ] + }, + { + "name": "Teleport", + "entries": [ + "The gargantua teleports, along with any equipment it is wearing or carrying, to an unoccupied space that it can see within 120 feet of itself." + ] + } + ], + "reaction": [ + { + "name": "Flick", + "entries": [ + "Immediately after the gargantua takes damage from a Large or smaller creature it can see within 20 feet of itself, it attempts to flick the creature away. The target must succeed on a {@dc 23} Strength saving throw, or the target takes 18 ({@damage 3d6 + 8}) bludgeoning damage, is pushed horizontally up to 100 feet away from the gargantua, and has the {@condition prone} condition." + ] + }, + { + "name": "Spell Mimicry (1/Day)", + "entries": [ + "Immediately after a creature the gargantua can see casts a spell of 5th level or lower, the gargantua tries to copy the spell. That creature must succeed on a {@dc 19} Charisma saving throw, or the gargantua immediately casts the same spell at the same level ({@hit 11} to hit with spell attacks, spell save {@dc 19}), requiring no material components and choosing the spell's targets." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "frightened", + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "charisma", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Child", + "source": "BGG", + "page": 34, + "size": [ + "M" + ], + "type": "giant", + "alignment": [ + "A" + ], + "ac": [ + 10 + ], + "hp": { + "average": 4, + "formula": "1d8" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 10, + "int": 10, + "wis": 10, + "cha": 10, + "passive": 10, + "languages": [ + "Giant" + ], + "cr": "0", + "action": [ + { + "name": "Club", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "attachedItems": [ + "club|phb" + ], + "languageTags": [ + "GI" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Giant Goose", + "source": "BGG", + "page": 150, + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 60, + "formula": "8d10 + 16" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 14, + "dex": 16, + "con": 15, + "int": 6, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "understands Giant and Sylvan but can't speak" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The goose makes one Beak attack and two Wing attacks." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Wing", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage, and the target must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Thunderous Honk {@recharge 5}", + "entries": [ + "The goose honks with ear-splitting volume. Each other creature within 30 feet of the goose must make a {@dc 12} Constitution saving throw. On a failed save, a creature takes 16 ({@damage 3d10}) thunder damage and has the {@condition deafened} condition until the start of the goose's next turn. On a successful save, a creature takes half as much damage only. The honk can be heard within 300 feet." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "GI", + "S" + ], + "damageTags": [ + "B", + "T" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "deafened", + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Lynx", + "source": "BGG", + "page": 151, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 14 + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 14, + "dex": 18, + "con": 13, + "int": 12, + "wis": 14, + "cha": 10, + "skill": { + "perception": "+6", + "stealth": "+6" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 16, + "resist": [ + "cold" + ], + "languages": [ + "Giant", + "Sylvan" + ], + "cr": "1/2", + "trait": [ + { + "name": "Lynx's Sight (1/Day)", + "entries": [ + "The lynx can cast {@spell clairvoyance}, requiring no spell components and using Wisdom as the spellcasting ability." + ] + }, + { + "name": "Woodland Camouflage", + "entries": [ + "The lynx has advantage on Dexterity ({@skill Stealth}) checks made to hide in undergrowth or snowy terrain." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage. If the lynx moved at least 20 feet straight toward the target immediately before the hit, the target must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition. If the target has the {@condition prone} condition, the lynx can make another Claws attack against it as a bonus action." + ] + } + ], + "traitTags": [ + "Camouflage" + ], + "senseTags": [ + "U" + ], + "languageTags": [ + "GI", + "S" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Ox", + "source": "BGG", + "page": 152, + "size": [ + "H" + ], + "type": "fey", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 10, + "con": 19, + "int": 4, + "wis": 11, + "cha": 9, + "passive": 10, + "languages": [ + "understands Giant and Sylvan but can't speak" + ], + "cr": "3", + "trait": [ + { + "name": "Beast of Burden", + "entries": [ + "The ox is considered to be one size larger for the purpose of determining its carrying capacity." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage. If the ox moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage, and it must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "traitTags": [ + "Beast of Burden" + ], + "languageTags": [ + "CS", + "GI", + "S" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Ram", + "source": "BGG", + "page": 153, + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 28, + "formula": "3d10 + 12" + }, + "speed": { + "walk": 50 + }, + "str": 19, + "dex": 12, + "con": 18, + "int": 3, + "wis": 14, + "cha": 10, + "passive": 12, + "resist": [ + "cold", + "fire", + "lightning" + ], + "cr": "1", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The ram has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage plus 3 ({@damage 1d6}) force damage. If the ram moved at least 20 feet straight toward the target immediately before the hit, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Force Bolt", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 30 ft., one target. {@h}7 ({@damage 2d6}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Absorbent Fleece {@recharge}", + "entries": [ + "Immediately after the ram succeeds on a saving throw against a spell or a spell's attack misses it, the ram can make one Force Bolt attack." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Giant Tick", + "source": "BGG", + "page": 153, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 16, + "int": 2, + "wis": 10, + "cha": 2, + "passive": 10, + "cr": "2", + "action": [ + { + "name": "Proboscis", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage, and the tick attaches to the target. While attached, the tick can't make Proboscis attacks. The tick can detach itself by spending 5 feet of its movement. As an action, a creature within reach of the tick can try to detach the tick, doing so with a successful {@dc 13} Strength check." + ] + }, + { + "name": "Blood Drain", + "entries": [ + "The tick deals 10 ({@damage 2d6 + 3}) necrotic damage to one creature it is physically attached to, provided that creature isn't a Construct or an Undead, or 17 ({@damage 4d6 + 3}) necrotic damage if the creature is a Giant. The tick regains hit points equal to the damage dealt." + ] + } + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gigant", + "source": "BGG", + "page": 154, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 325, + "formula": "21d20 + 105" + }, + "speed": { + "walk": 50, + "burrow": 50, + "fly": 80 + }, + "str": 24, + "dex": 14, + "con": 21, + "int": 3, + "wis": 14, + "cha": 11, + "save": { + "dex": "+8", + "wis": "+8" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 18, + "cr": "20", + "trait": [ + { + "name": "Spell-Resistant Carapace", + "entries": [ + "The gigant has advantage on saving throws against spells, and any creature that makes a spell attack against the gigant has disadvantage on the attack roll." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gigant makes one Mandibles attack and two Talons attacks." + ] + }, + { + "name": "Mandibles", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one creature. {@h}21 ({@damage 4d6 + 7}) slashing damage, and the target has the {@condition grappled} condition (escape {@dc 17}). Until the grapple ends, the target takes 21 ({@damage 4d6 + 7}) slashing damage at the start of each of the gigant's turns. While the gigant is grappling a target, it can't use Mandibles against other targets." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}17 ({@damage 3d6 + 7}) slashing damage, and the target is pulled 10 feet straight toward the gigant." + ] + }, + { + "name": "Scale Dust {@recharge 5}", + "entries": [ + "The gigant releases magical dust from its wings in a 30-foot cube. Each creature in that area must make a {@dc 19} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one. On a success or failure, the creature has the {@condition poisoned} condition for 1 hour. While {@condition poisoned} this way, the creature can't regain hit points." + ] + } + ], + "bonus": [ + { + "name": "Drone", + "entries": [ + "The gigant produces a horrid droning sound by rapidly beating its wings. Each creature within 10 feet of the gigant must succeed on a {@dc 19} Constitution saving throw or take 10 ({@damage 3d6}) thunder damage and have the {@condition incapacitated} condition until the end of its next turn. The gigant can then fly up to half its flying speed." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "S", + "T" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goliath Giant-Kin", + "source": "BGG", + "page": 155, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item half plate armor|PHB|half plate}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 10, + "wis": 12, + "cha": 12, + "skill": { + "athletics": "+6", + "perception": "+3", + "survival": "+3" + }, + "passive": 13, + "resist": [ + "cold" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "3", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The goliath makes two Spear attacks." + ] + }, + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "bonus": [ + { + "name": "Giant's Strikes {@recharge 5}", + "entries": [ + "Until the end of its turn, the goliath's melee attacks each deal an extra 7 ({@damage 2d6}) damage of a type determined by the goliath's giant community: cold (frost giant), fire (fire giant), force (stone giant), lightning (storm giant), piercing (hill giant), or thunder (cloud giant)." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grinning Cat", + "source": "BGG", + "page": 156, + "size": [ + "L" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 45, + "formula": "7d10 + 7" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 14, + "dex": 15, + "con": 13, + "int": 15, + "wis": 14, + "cha": 16, + "skill": { + "perception": "+4", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "1", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The grinning cat has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage. If the grinning cat was {@condition invisible} before it attacked, the target must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition. If the target has the {@condition prone} condition, the cat can make a Bite attack against it as a bonus action." + ] + }, + { + "name": "Fade Away", + "entries": [ + "The grinning cat magically becomes {@condition invisible} for 1 hour or until it attacks, gradually fading away over the course of its turn. It can choose to leave part of its body visible, such as its tail, its head, or its grinning mouth. Any equipment the cat wears or carries is {@condition invisible} with it." + ] + } + ], + "bonus": [ + { + "name": "Fade Back", + "entries": [ + "The grinning cat becomes visible or makes part of its body visible. Any equipment the cat wears or carries on a visible part of its body also becomes visible." + ] + }, + { + "name": "Grinning Step", + "entries": [ + "The grinning cat teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "invisible", + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hill Giant Avalancher", + "source": "BGG", + "page": 157, + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "druid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 220, + "formula": "21d12 + 84" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 8, + "con": 19, + "int": 9, + "wis": 18, + "cha": 10, + "save": { + "str": "+9", + "con": "+8", + "wis": "+8" + }, + "skill": { + "nature": "+7", + "perception": "+8" + }, + "passive": 18, + "languages": [ + "Common", + "Giant" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell druidcraft}", + "{@spell guidance}" + ], + "daily": { + "1e": [ + "{@spell stone shape}", + "{@spell wall of stone}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Hill Rune", + "entries": [ + "The giant has a hill rune inscribed on a rock or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Stone Avalanche action and Hill Rebuff reaction.", + "The object bearing the rune has AC 15; 20 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a hill rune on an object in its possession when it finishes a short or long rest." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes one Greatclub attack and uses Stone Bolas." + ] + }, + { + "name": "Greatclub", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 9 ({@damage 2d8}) thunder damage." + ] + }, + { + "name": "Stone Bolas", + "entries": [ + "The giant conjures three stone balls connected by lines of magical force and throws them at one creature it can see within 60 feet of itself. The target must make a {@dc 16} Dexterity saving throw. On a failed save, the target has the {@condition restrained} condition until the start of the giant's next turn, and the stones erupt in a burst of thunderous energy that deals 14 ({@damage 4d6}) thunder damage to the target and each creature within 10 feet of the target. On a successful save, the stones vanish without erupting." + ] + }, + { + "name": "Stone Avalanche (Requires Hill Rune)", + "entries": [ + "The giant conjures a hail of rocks in a 20-foot-radius, 40-foot-high cylinder centered on a point on the ground it can see within 120 feet of itself. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 28 ({@damage 8d6}) bludgeoning damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only.", + "The rocks turn the ground in that area into difficult terrain until the start of the giant's next turn, when the rocks vanish." + ] + } + ], + "reaction": [ + { + "name": "Hill Rebuff (Requires Hill Rune)", + "entries": [ + "Immediately after the giant takes damage from a creature it can see within 10 feet of itself, that creature must succeed on a {@dc 16} Constitution saving throw or take 10 ({@damage 3d6}) force damage and be pushed horizontally 10 feet away from the giant." + ] + } + ], + "attachedItems": [ + "greatclub|phb" + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "O", + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lightning Hulk", + "source": "BGG", + "page": 158, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 15 + ], + "hp": { + "average": 102, + "formula": "12d10 + 36" + }, + "speed": { + "walk": 0, + "fly": { + "number": 90, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 21, + "con": 16, + "int": 14, + "wis": 14, + "cha": 15, + "save": { + "dex": "+9", + "con": "+7", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "perception": "+6" + }, + "passive": 16, + "resist": [ + "cold", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Auran", + "Giant" + ], + "cr": "9", + "trait": [ + { + "name": "Illumination", + "entries": [ + "The lightning hulk sheds bright light in a 20-foot radius and dim light for an additional 20 feet." + ] + }, + { + "name": "Lightning Form", + "entries": [ + "The lightning hulk can enter a hostile creature's space and stop there. The first time the lightning hulk enters a creature's space on a turn, or if it begins its turn in a creature's space, that creature takes 7 ({@damage 2d6}) lightning damage. The hulk can also move through a space as narrow as 1 inch without squeezing. A creature that touches the lightning hulk or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) lightning damage." + ] + } + ], + "action": [ + { + "name": "Arc Lightning", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 10 ft. or range 60 ft., one target. {@h}18 ({@damage 4d8}) lightning damage. If the target is a creature, it can't take reactions until the start of its next turn, and lightning jumps from the target to another creature of the lightning hulk's choice that it can see within 30 feet of the target. The second creature must succeed on a {@dc 18} Dexterity saving throw or take 18 ({@damage 4d8}) lightning damage." + ] + } + ], + "traitTags": [ + "Illumination" + ], + "languageTags": [ + "AU", + "GI" + ], + "damageTags": [ + "L" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maw of Yeenoghu", + "source": "BGG", + "page": 159, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 8, + "wis": 14, + "cha": 10, + "save": { + "con": "+9", + "cha": "+4" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "Abyssal", + "Giant" + ], + "cr": "10", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The maw has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The maw makes two Bite or Fang Fling attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d12 + 6}) piercing damage." + ] + }, + { + "name": "Fang Fling", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 30/90 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage." + ] + }, + { + "name": "Gorging Charge {@recharge 5}", + "entries": [ + "The maw moves up to its speed without provoking opportunity attacks and can move through the spaces of Large or smaller creatures. Each time the maw enters a creature's space for the first time during this move, that creature must succeed on a {@dc 18} Strength saving throw or take 25 ({@damage 3d12 + 6}) piercing damage and have the {@condition grappled} condition (escape {@dc 16}); if a creature is already {@condition grappled} this way, it has the {@condition prone} condition. Until this grapple ends, the target has the {@condition restrained} condition. The maw can have only one creature {@condition grappled} in this way at a time." + ] + } + ], + "reaction": [ + { + "name": "Fanged Rebuke", + "entries": [ + "In response to taking damage, the maw makes one Bite attack against a random creature within 10 feet of itself. If no creature is within reach, the maw can make two Fang Fling attacks." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "GI" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mist Hulk", + "source": "BGG", + "page": 160, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 15 + ], + "hp": { + "average": 94, + "formula": "9d10 + 45" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 21, + "con": 20, + "int": 11, + "wis": 13, + "cha": 16, + "save": { + "con": "+8", + "wis": "+4", + "cha": "+6" + }, + "skill": { + "perception": "+4", + "stealth": "+8" + }, + "passive": 14, + "resist": [ + "thunder" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "poisoned", + "restrained" + ], + "languages": [ + "Auran", + "Giant" + ], + "cr": "6", + "trait": [ + { + "name": "Air Form", + "entries": [ + "The mist hulk can enter another creature's space and stop there. It can move through a space as narrow as 1 inch without squeezing." + ] + }, + { + "name": "Death Burst", + "entries": [ + "When the mist hulk dies, it bursts in a wave of water. Each creature within 10 feet of it must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 11 ({@damage 2d10}) bludgeoning damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mist hulk makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) cold damage." + ] + }, + { + "name": "Hideous Wailing {@recharge 5}", + "entries": [ + "The mist hulk releases a wail infused with magical anguish. Each creature within 30 feet of it must make a {@dc 14} Wisdom saving throw. A creature in the mist hulk's space has disadvantage on the saving throw. On a failed save, a creature takes 14 ({@damage 4d6}) psychic damage and has the {@condition incapacitated} condition for 1 minute. The affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "GI" + ], + "damageTags": [ + "B", + "C", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mud Hulk", + "source": "BGG", + "page": 161, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 8, + "con": 16, + "int": 5, + "wis": 9, + "cha": 6, + "passive": 9, + "resist": [ + "acid" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed" + ], + "languages": [ + "Giant", + "Terran" + ], + "cr": "3", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The mud hulk can move through a space as narrow as 1 inch without squeezing." + ] + }, + { + "name": "Sticky Mud", + "entries": [ + "The ground within 15 feet of the mud hulk is difficult terrain for other creatures." + ] + } + ], + "action": [ + { + "name": "Enveloping Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be pulled into the mud hulk's space and be engulfed by the mud hulk. While engulfed, the target can't breathe, has the {@condition restrained} condition, and takes 6 ({@damage 1d12}) acid damage at the start of each of its turns. When the mud hulk moves, the engulfed target moves with it. The mud hulk can have only one target engulfed at a time. While a creature is engulfed, the mud hulk can't use its Amorphous trait.", + "An engulfed target can repeat the saving throw at the end of each of its turns. On a successful save, the target escapes and enters the nearest unoccupied space." + ] + }, + { + "name": "Mud Splash", + "entries": [ + "The mud hulk lobs a mass of mud that splashes in a 10-foot-radius sphere centered on a point within 30 feet of the mud hulk. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 10 ({@damage 2d6 + 3}) bludgeoning damage on a failed save, or half as much damage on a successful one. The affected area is difficult terrain until the start of the mud hulk's next turn." + ] + } + ], + "traitTags": [ + "Amorphous" + ], + "languageTags": [ + "GI", + "T" + ], + "damageTags": [ + "A", + "B" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Regisaur", + "group": [ + "Dinosaurs" + ], + "source": "BGG", + "page": 130, + "size": [ + "G" + ], + "type": { + "type": "monstrosity", + "tags": [ + "dinosaur" + ] + }, + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 181, + "formula": "11d20 + 66" + }, + "speed": { + "walk": 40 + }, + "str": 27, + "dex": 8, + "con": 23, + "int": 4, + "wis": 12, + "cha": 6, + "passive": 11, + "cr": "14", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The regisaur has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The regisaur makes one Bite attack and one Tail attack. The regisaur can't target the same creature with both attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}47 ({@damage 6d12 + 8}) piercing damage, and the target has the {@condition grappled} condition (escape {@dc 18}). Until this grapple ends, the target has the {@condition restrained} condition, and the regisaur can't Bite another target." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}26 ({@damage 4d8 + 8}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Swallow", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one Huge or smaller creature {@condition grappled} by the regisaur. {@h}The regisaur swallows the target, and the grapple ends. A swallowed creature has the {@condition blinded} and {@condition restrained} conditions, it has {@quickref Cover||3||total cover} against attacks and other effects outside the regisaur, and it takes 7 ({@damage 2d6}) acid damage at the start of each of its turns. The regisaur can have up to two creatures swallowed at a time.", + "If the regisaur takes 25 damage or more on a single turn from a swallowed creature, the regisaur must succeed on a {@dc 16} Constitution saving throw at the end of that turn or regurgitate the creature, which falls in a space within 5 feet of the regisaur and has the {@condition prone} condition; the creature no longer has the {@condition blinded} and {@condition restrained} conditions." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rime Hulk", + "source": "BGG", + "page": 162, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "9d10 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 18, + "int": 8, + "wis": 9, + "cha": 6, + "passive": 9, + "immune": [ + "cold", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Aquan", + "Giant" + ], + "cr": "5", + "trait": [ + { + "name": "Death Burst", + "entries": [ + "When the rime hulk dies, it explodes in a 10-foot-radius sphere of frigid air and frost centered on itself. Each creature in that area must succeed on a {@dc 15} Constitution saving throw or take 10 ({@damage 3d6}) cold damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The rime hulk makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage plus 9 ({@damage 2d8}) cold damage." + ] + }, + { + "name": "Trail of Frost {@recharge 5}", + "entries": [ + "The rime hulk moves up to its speed without provoking opportunity attacks and can move through the space of any Medium or smaller creature. Each time the rime hulk enters another creature's space for the first time during this move, that creature must make a {@dc 15} Constitution saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) cold damage, and its speed is reduced by 10 feet until the start of the rime hulk's next turn. On a successful save, the creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Death Burst" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "GI" + ], + "damageTags": [ + "B", + "C" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Runic Colossus", + "source": "BGG", + "page": 163, + "size": [ + "G" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 315, + "formula": "18d20 + 126" + }, + "speed": { + "walk": 60 + }, + "str": 25, + "dex": 9, + "con": 24, + "int": 3, + "wis": 11, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "resist": [ + "acid", + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Giant but can't speak" + ], + "cr": "21", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The colossus is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The colossus has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The colossus deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The colossus makes two Slam attacks and then uses Stomp." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}26 ({@damage 3d12 + 7}) bludgeoning damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 22} Dexterity saving throw or have the {@condition prone} condition. Until the colossus uses its Stomp again or moves, the creature has the {@condition restrained} condition. The {@condition restrained} creature or another creature within 5 feet of it can use its action to make a {@dc 22} Strength check. On a successful check, the affected creature relocates to an unoccupied space of its choice within 5 feet of the colossus and is no longer {@condition restrained}." + ] + }, + { + "name": "Arcane Beam {@recharge 5}", + "entries": [ + "The colossus fires a beam of magical force from its chest, hands, or head in a 150-foot line that is 10 feet wide. Each creature in that area must make a {@dc 22} Dexterity saving throw, taking 58 ({@damage 9d12}) force damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "reaction": [ + { + "name": "Spell Reflection (2/Day)", + "entries": [ + "{@atk rs} {@hit 14} to hit, range 120 ft., one creature casting a spell of 5th level or lower. {@h}26 ({@damage 4d12}) force damage, and the target must succeed on a {@dc 15} Intelligence saving throw or the spell fails and has no effect." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "GI" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity", + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scion of Grolantor", + "source": "BGG", + "page": 165, + "otherSources": [ + { + "source": "HFStCM" + } + ], + "size": [ + "G" + ], + "type": { + "type": "giant", + "tags": [ + "titan" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 402, + "formula": "23d20 + 161" + }, + "speed": { + "walk": 60 + }, + "str": 27, + "dex": 14, + "con": 25, + "int": 15, + "wis": 21, + "cha": 18, + "save": { + "wis": "+12", + "cha": "+11" + }, + "skill": { + "perception": "+12" + }, + "passive": 22, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "poisoned" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "22", + "trait": [ + { + "name": "Legendary Resistance (6/Day)", + "entries": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The scion has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The scion deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scion makes one Great Tree Club attack and two Slam attacks, or it makes three Boulder attacks." + ] + }, + { + "name": "Great Tree Club", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Strength saving throw or be pushed horizontally up to 100 feet straight away from the scion and have the {@condition prone} condition." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}26 ({@damage 4d8 + 8}) force damage." + ] + }, + { + "name": "Boulder", + "entries": [ + "{@atk rw} {@hit 15} to hit, range 120/480 ft., one target. {@h}27 ({@damage 3d12 + 8}) bludgeoning damage." + ] + }, + { + "name": "Inhale {@recharge 5}", + "entries": [ + "The scion inhales a vortex of air in a 120-foot line that is 15 feet wide. Each creature in that area that is Huge or smaller must succeed on a {@dc 23} Strength saving throw or be pulled up to 120 feet straight toward the scion and be swallowed. A swallowed creature has the {@condition restrained} condition, has {@quickref Cover||3||total cover} against attacks and other effects outside the scion, and takes 24 ({@damage 7d6}) force damage at the start of each of the scion's turns.", + "The scion's stomach can hold up to two creatures at a time. If the scion takes 60 damage or more on a single turn from a creature inside it, the scion must succeed on a {@dc 17} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which falls in a space within 10 feet of the scion and has the {@condition prone} condition. If the scion dies, any swallowed creature no longer has the {@condition restrained} condition and can escape from the corpse using 15 feet of movement, exiting with the {@condition prone} condition." + ] + } + ], + "bonus": [ + { + "name": "Earth-Shaking Movement", + "entries": [ + "The scion moves up to its speed and then sends a shock wave through the ground in a 60-foot-radius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 23} Constitution saving throw or lose {@status concentration}." + ] + } + ], + "reaction": [ + { + "name": "Feed", + "entries": [ + "Immediately after taking damage, if it has at least one creature swallowed, the scion deals 10 ({@damage 3d6}) force damage to each swallowed creature and regains 10 hit points." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Grolantor", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scion of Memnor", + "source": "BGG", + "page": 167, + "size": [ + "G" + ], + "type": { + "type": "giant", + "tags": [ + "titan" + ] + }, + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 656, + "formula": "32d20 + 320" + }, + "speed": { + "walk": 60, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 30, + "dex": 18, + "con": 30, + "int": 24, + "wis": 22, + "cha": 26, + "save": { + "dex": "+12", + "cha": "+16" + }, + "skill": { + "arcana": "+15", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "thunder" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "26", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The scion doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Legendary Resistance (6/Day)", + "entries": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The scion has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The scion deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scion makes one attack using Cloud Morningstar or Wind Javelin, as well as two Slam attacks." + ] + }, + { + "name": "Cloud Morningstar", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 30 ft., one target. {@h}32 ({@damage 4d10 + 10}) force damage plus 22 ({@damage 4d10}) thunder damage." + ] + }, + { + "name": "Wind Javelin", + "entries": [ + "{@atk rw} {@hit 18} to hit, range 120/480 ft., one target. {@h}42 ({@damage 5d12 + 10}) thunder damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) force damage." + ] + }, + { + "name": "Thunderous Vortex {@recharge 5}", + "entries": [ + "The scion magically creates a vortex of wind in a 60-foot-radius sphere centered on a point it can see within 120 feet of itself. Each creature in the sphere must succeed on a {@dc 24} Strength saving throw or be pulled straight toward the sphere's center, ending in an unoccupied space as close as possible to the center. Then a burst of thunder erupts in a 30-foot-radius sphere centered on the same point. Each creature in that area takes 52 ({@damage 8d12}) thunder damage and must succeed on a {@dc 24} Constitution saving throw or have the {@condition stunned} condition until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Fog of Deception", + "entries": [ + "The scion conjures a magical cloud that fills a 30-foot-radius sphere centered on a point it can see within 90 feet of itself. Each creature in that area must make a {@dc 24} Wisdom saving throw. On a failed save, a creature has the {@condition charmed} condition until the end of its next turn. While it has the {@condition charmed} condition, the creature must use its action to make a melee attack against a creature other than itself of the scion's choice. If no creature is within its reach, the affected creature makes a ranged attack against a creature of the scion's choice, throwing its weapon if necessary. On a successful save, a creature is immune to the scion's Fog of {@skill Deception} for the next 24 hours." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Memnor", + "source": "BGG" + }, + "traitTags": [ + "Flyby", + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "O", + "T" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scion of Skoraeus", + "source": "BGG", + "page": 169, + "size": [ + "G" + ], + "type": { + "type": "giant", + "tags": [ + "titan" + ] + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192" + }, + "speed": { + "walk": 60 + }, + "str": 29, + "dex": 20, + "con": 26, + "int": 19, + "wis": 24, + "cha": 14, + "save": { + "dex": "+12", + "wis": "+14" + }, + "skill": { + "acrobatics": "+12", + "perception": "+14" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 24, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "petrified" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "23", + "trait": [ + { + "name": "Legendary Resistance (6/Day)", + "entries": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The scion has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The scion deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scion makes one Crystal Club attack and two Slam attacks, then uses Entombing Grasp if available. Alternatively, the scion makes two Runic Boulder attacks." + ] + }, + { + "name": "Crystal Club", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 30 ft., one target. {@h}35 ({@damage 4d12 + 9}) bludgeoning damage. {@hom}The scion can cause the club to flare with bright light, and the target must succeed on a {@dc 22} Constitution saving throw or take 18 ({@damage 4d8}) radiant damage and have the {@condition blinded} condition until the start of the scion's next turn." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}31 ({@damage 4d10 + 9}) force damage." + ] + }, + { + "name": "Runic Boulder", + "entries": [ + "{@atk rw} {@hit 16} to hit, range 120/480 ft., one target. {@h}27 ({@damage 4d8 + 9}) bludgeoning damage. {@hom}The boulder explodes. The target and each creature within 30 feet of it must make a {@dc 22} Dexterity saving throw. On a failed save, a creature takes 19 ({@damage 3d12}) force damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ] + }, + { + "name": "Entombing Grasp {@recharge}", + "entries": [ + "The scion wreathes its hand in petrifying magic and touches one Huge or smaller creature it can see within 20 feet of itself. The target must succeed on a {@dc 24} Dexterity saving throw or take 28 ({@damage 8d6}) force damage and have the {@condition grappled} condition (escape {@dc 19}). At the start of the scion's next turn, if the target is still {@condition grappled}, the target has the {@condition petrified} condition." + ] + } + ], + "bonus": [ + { + "name": "Earth-Shaking Movement", + "entries": [ + "The scion moves up to its speed and then sends a shock wave through the ground in a 60-footradius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 24} Constitution saving throw or lose {@status concentration}." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Skoraeus", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "O", + "R" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "blinded", + "grappled", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scion of Stronmaus", + "source": "BGG", + "page": 171, + "size": [ + "G" + ], + "type": { + "type": "giant", + "tags": [ + "titan" + ] + }, + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 656, + "formula": "32d20 + 320" + }, + "speed": { + "walk": 60, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "swim": 80, + "canHover": true + }, + "str": 30, + "dex": 20, + "con": 30, + "int": 26, + "wis": 28, + "cha": 24, + "save": { + "dex": "+13", + "int": "+16" + }, + "skill": { + "arcana": "+16", + "history": "+16", + "perception": "+17" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 27, + "resist": [ + "cold", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "prone" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "27", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The scion doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Legendary Resistance (6/Day)", + "entries": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The scion has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The scion deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scion makes one attack using Lightning Sword or Hailstone, as well as two Slam attacks." + ] + }, + { + "name": "Lightning Sword", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 30 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage plus 22 ({@damage 4d10}) lightning damage." + ] + }, + { + "name": "Hailstone", + "entries": [ + "{@atk rw} {@hit 18} to hit, range 120/480 ft., one target. {@h}32 ({@damage 4d10 + 10}) bludgeoning damage plus 18 ({@damage 4d8}) cold damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Vengeful Storm {@recharge}", + "entries": [ + "The scion conjures a churning storm cloud in a 30-foot-radius, 10-foot-tall cylinder centered on a point within 120 feet of itself. The cloud's area is heavily obscured. The cloud lasts for 1 minute, until the scion dies, or when the scion uses this bonus action again.", + "When the cloud appears, and as a bonus action on later turns, the scion can move the cloud up to 30 feet and cause one of the following effects in a 30-foot-radius, 120-foot-high cylinder directly below it; the scion can't choose the same effect two rounds in a row:" + ] + }, + { + "name": "Acid Rain", + "entries": [ + "The cloud rains acid. Each creature in the cylinder must succeed on a {@dc 25} Constitution saving throw or be covered in acid for 1 minute or until a creature uses its action to remove the acid from itself or another creature. A creature covered in the acid takes 26 ({@damage 4d12}) acid damage at the start of each of its turns." + ] + }, + { + "name": "Freezing Storm", + "entries": [ + "Shards of ice pelt down, and freezing wind fills the area. Each creature in the cylinder must succeed on a {@dc 25} Dexterity saving throw or take 28 ({@damage 8d6}) cold damage and be hindered by ice formations for 1 minute or until it or another creature within reach of it uses an action to break away the ice. A creature hindered by ice has its speed reduced to 0." + ] + }, + { + "name": "Lightning Bolts", + "entries": [ + "Bolts of lightning strike down. Each creature in the cylinder must succeed on {@dc 25} Dexterity saving throw or take 18 ({@damage 4d8}) lightning damage and have the {@condition stunned} condition until the end of its next turn." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Stronmaus", + "source": "BGG" + }, + "traitTags": [ + "Flyby", + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "A", + "B", + "C", + "L", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scion of Surtur", + "source": "BGG", + "page": 173, + "size": [ + "G" + ], + "type": { + "type": "giant", + "tags": [ + "titan" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252" + }, + "speed": { + "walk": 60 + }, + "str": 30, + "dex": 17, + "con": 28, + "int": 21, + "wis": 24, + "cha": 20, + "save": { + "dex": "+11", + "cha": "+13" + }, + "skill": { + "athletics": "+18", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "25", + "trait": [ + { + "name": "Legendary Resistance (6/Day)", + "entries": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The scion has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The scion deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scion makes one attack using Lava Blade or Lava Ball, as well as two Slam attacks." + ] + }, + { + "name": "Lava Blade", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 30 ft., one target. {@h}32 ({@damage 4d10 + 10}) slashing damage plus 18 ({@damage 4d8}) fire damage." + ] + }, + { + "name": "Lava Ball", + "entries": [ + "{@atk rw} {@hit 18} to hit, range 120/480 ft., one target. {@h}29 ({@damage 3d12 + 10}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) force damage." + ] + }, + { + "name": "Lava Wave {@recharge 5}", + "entries": [ + "The scion emits a wave of lava from its blade, hands, or mouth in a 90-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 60 ({@damage 11d10}) fire damage and has the {@condition restrained} condition from being embedded in hardening rock. A creature can make a {@dc 25} Strength ({@skill Athletics}) check as an action, freeing itself or a creature within reach from the rock on a success. The rock has AC 17 and 40 hit points, and it is immune to fire, poison, and psychic damage. On a successful save, a creature takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Earth-Shaking Movement", + "entries": [ + "The scion moves up to its speed and then sends a shock wave through the ground in a 60-foot-radius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 26} Constitution saving throw or lose {@status concentration}." + ] + }, + { + "name": "Incendiary Smoke", + "entries": [ + "The scion causes smoke and white-hot embers to billow from its skin, filling a 30-foot-radius sphere centered on itself that moves with it. While the scion's skin billows smoke, ranged attacks against the scion are made with disadvantage. A creature that moves into the smoke for the first time on a turn or starts its turn there must succeed on a {@dc 25} Constitution saving throw or take 14 ({@damage 4d6}) fire damage. The scion's skin stops billowing smoke after 1 minute, when the scion dies, or when the scion uses this bonus action to stop the smoke." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Surtur", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "F", + "O", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Scion of Thrym", + "source": "BGG", + "page": 175, + "size": [ + "G" + ], + "type": { + "type": "giant", + "tags": [ + "titan" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 499, + "formula": "27d20 + 216" + }, + "speed": { + "walk": 60 + }, + "str": 30, + "dex": 16, + "con": 27, + "int": 17, + "wis": 20, + "cha": 21, + "save": { + "wis": "+12", + "cha": "+12" + }, + "skill": { + "athletics": "+17", + "perception": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "resist": [ + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified" + ], + "languages": [ + "Giant", + "Primordial" + ], + "cr": "24", + "trait": [ + { + "name": "Legendary Resistance (6/Day)", + "entries": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The scion has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The scion deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scion makes one Ice Axe and two Slam attacks, or it makes two Glacier Throw attacks." + ] + }, + { + "name": "Ice Axe", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 30 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage plus 18 ({@damage 4d8}) cold damage." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}32 ({@damage 4d10 + 10}) force damage." + ] + }, + { + "name": "Glacier Throw", + "entries": [ + "{@atk rw} {@hit 17} to hit, range 120/480 ft., one target. {@h}36 ({@damage 4d12 + 10}) bludgeoning damage plus 14 ({@damage 4d6}) cold damage, and the target must succeed on a {@dc 25} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Glacial Upheaval {@recharge 5}", + "entries": [ + "The scion digs its hands into the ground at a point it can see within 30 feet of itself and launches a magically conjured mass of ice into the air. Each creature other than the scion in a 30-foot-radius, 100-foot-high cylinder centered on that point must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) bludgeoning damage plus 19 ({@damage 3d12}) cold damage and is pushed vertically to the top of the cylinder, at which point the creature falls. On a successful save, a creature takes half as much damage and is pushed to the nearest unoccupied space outside the cylinder with no additional effects.", + "At the start of the scion's next turn, a mass of ice plummets to the ground on a point the scion can see within 60 feet of the point the scion dug its hands into. Each creature in a 30-foot-radius, 100-foot-high cylinder centered on that point must succeed on a {@dc 25} Dexterity saving throw or take 18 ({@damage 4d8}) bludgeoning damage plus 18 ({@damage 4d8}) cold damage." + ] + } + ], + "bonus": [ + { + "name": "Earth-Shaking Movement", + "entries": [ + "The scion moves up to its speed and sends a shock wave through the ground in a 60-foot-radius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 25} Constitution saving throw or lose {@status concentration}." + ] + } + ], + "legendaryGroup": { + "name": "Scion of Thrym", + "source": "BGG" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "P" + ], + "damageTags": [ + "B", + "C", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spectral Cloud", + "source": "BGG", + "page": 176, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 11 + ], + "hp": { + "average": 189, + "formula": "18d12 + 72" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 24, + "dex": 12, + "con": 18, + "int": 12, + "wis": 17, + "cha": 16, + "save": { + "dex": "+6", + "cha": "+8" + }, + "skill": { + "perception": "+8" + }, + "passive": 18, + "resist": [ + "cold", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "thunder" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "13", + "trait": [ + { + "name": "Blurred Form", + "entries": [ + "Attack rolls against the spectral cloud are made with disadvantage unless the attacker is within 15 feet of the spectral cloud or the spectral cloud is {@condition incapacitated}." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The spectral cloud can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spectral cloud makes two Spectral Touch attacks." + ] + }, + { + "name": "Spectral Touch", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) force damage plus 10 ({@damage 3d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 20} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0.", + "A Humanoid slain by this attack immediately rises as a miniature spectral cloud (use the {@creature specter} stat block in the Monster Manual). The miniature spectral cloud acts as an ally of its creator but isn't under its control." + ] + }, + { + "name": "Chilling Winds {@recharge 5}", + "entries": [ + "The spectral cloud emits intensely cold wind in a 60-foot line that is 10 feet wide. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) cold damage and has the {@condition incapacitated} condition for 1 minute. The affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, a creature takes half as much damage only.", + "If a creature's saving throw is successful or the effect ends for it, that creature is immune to this spectral cloud's Chilling Winds for the next 24 hours." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "C", + "N", + "O" + ], + "miscTags": [ + "AOE", + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spotted Lion", + "source": "BGG", + "page": 177, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21" + }, + "speed": { + "walk": 60 + }, + "str": 23, + "dex": 14, + "con": 17, + "int": 5, + "wis": 13, + "cha": 10, + "skill": { + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "cr": "3", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The lion has advantage on an attack roll against a creature if at least one of the lion's allies is within 5 feet of the target and the ally doesn't have the {@condition incapacitated} condition." + ] + } + ], + "action": [ + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage. If the lion moved at least 20 feet straight toward the target immediately before the hit, the target must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition. If the target has the {@condition prone} condition, the lion can make another Rend attack against it as a bonus action." + ] + } + ], + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stalker of Baphomet", + "source": "BGG", + "page": 178, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 40 + }, + "str": 25, + "dex": 17, + "con": 22, + "int": 13, + "wis": 16, + "cha": 12, + "save": { + "dex": "+7", + "wis": "+7" + }, + "skill": { + "athletics": "+15", + "perception": "+7", + "stealth": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Abyssal", + "Giant" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The stalker casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "daily": { + "1e": [ + "{@spell meld into stone}", + "{@spell stone shape}", + "{@spell wall of stone}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Labyrinthine Recall", + "entries": [ + "The stalker can perfectly recall any path it has traveled." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The stalker has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The stalker makes two Glaive attacks or two Rock attacks." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) slashing damage plus 9 ({@damage 2d8}) force damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Strength saving throw or have the {@condition prone} condition. After the stalker throws the rock, roll a {@dice d6}; on a roll of 3 or lower, the stalker has no more rocks to throw." + ] + }, + { + "name": "Erupting Horns {@recharge 5}", + "entries": [ + "The stalker causes the earth to churn at a point on the ground it can see within 60 feet of itself. Six horn-shaped stones erupt in a 30-foot-radius, 30-foot-high cylinder centered on that point and then crumble to dust.", + "Each creature in that area must make a {@dc 15} Dexterity saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) piercing damage and is pushed up to 30 feet upward and then falls. On a successful save, a creature takes half as much damage only." + ] + } + ], + "attachedItems": [ + "glaive|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "GI" + ], + "damageTags": [ + "B", + "O", + "P", + "S" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflictSpell": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Giant of Evil Earth", + "source": "BGG", + "page": 179, + "size": [ + "H" + ], + "type": "giant", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 137, + "formula": "11d12 + 66" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 13, + "con": 22, + "int": 10, + "wis": 12, + "cha": 9, + "save": { + "str": "+10", + "con": "+10" + }, + "skill": { + "athletics": "+14", + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "languages": [ + "Common", + "Giant", + "Terran" + ], + "cr": "9", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes two Thundering Stone Club or Boulder attacks in any combination." + ] + }, + { + "name": "Thundering Stone Club", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage. The giant can cause the club to emit a burst of thunderous energy that deals 10 ({@damage 3d6}) thunder damage to each creature, other than the giant, within 30 feet of the target. The club can emit a burst this way only once per turn." + ] + }, + { + "name": "Boulder", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition. After the giant throws the boulder, roll a {@dice d6}; on a roll of 3 or lower, the giant has no more boulders to throw." + ] + } + ], + "reaction": [ + { + "name": "Unyielding", + "entries": [ + "In response to failing a saving throw to avoid being moved, having the {@condition prone} condition, or both, the giant succeeds instead." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "T" + ], + "damageTags": [ + "B", + "T" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Stone Giant Rockspeaker", + "source": "BGG", + "page": 180, + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 276, + "formula": "24d12 + 120" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 15, + "con": 20, + "int": 19, + "wis": 14, + "cha": 10, + "save": { + "dex": "+7", + "con": "+10", + "int": "+9", + "wis": "+7" + }, + "skill": { + "athletics": "+16", + "history": "+9", + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "languages": [ + "Common", + "Giant", + "Terran" + ], + "cr": "16", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Stone Rune", + "entries": [ + "The giant has a stone rune inscribed on a mineral object in its possession. While holding or wearing the object bearing the rune, the giant can use its Prismatic Rays action.", + "The object bearing the rune has AC 18; 30 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a stone rune on an object in its possession when it finishes a short or long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes three Prism Staff attacks." + ] + }, + { + "name": "Prism Staff", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 13 ({@damage 3d8}) radiant damage." + ] + }, + { + "name": "Exploding Geode", + "entries": [ + "The giant throws a geode at a point within 60 feet of itself, and the geode explodes in a dazzling flash. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 13 ({@damage 3d8}) piercing damage plus 13 ({@damage 3d8}) radiant damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, a creature takes half as much damage only. After the giant throws the geode, roll a {@dice d6}; on a roll of 4 or lower, the giant has no more geodes to throw." + ] + }, + { + "name": "Prismatic Rays (Requires Stone Rune)", + "entries": [ + "The giant's stone rune emits beams of light that form a 60-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw. For each creature in that area, roll a {@dice d6} to determine what ray affects it:" + ] + }, + { + "name": "1-2: Blazing Red", + "entries": [ + "On a failed save, the creature takes 35 ({@damage 10d6}) radiant damage and has the {@condition blinded} condition until the end of the giant's next turn. On a successful save, the creature takes half as much damage only." + ] + }, + { + "name": "3-4: Dreadful Blue", + "entries": [ + "On a failed save, the creature takes 35 ({@damage 10d6}) necrotic damage and has the {@condition frightened} condition until the end of the giant's next turn. On a successful save, the creature takes half as much damage only." + ] + }, + { + "name": "5-6: Sapping Green", + "entries": [ + "On a failed save, the creature takes 35 ({@damage 10d6}) force damage and has the {@condition incapacitated} condition until the end of the giant's next turn. On a successful save, the creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "T" + ], + "damageTags": [ + "B", + "N", + "O", + "P", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "frightened", + "incapacitated" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Storm Crab", + "source": "BGG", + "page": 181, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 155, + "formula": "10d20 + 50" + }, + "speed": { + "walk": 40, + "swim": 60 + }, + "str": 23, + "dex": 10, + "con": 21, + "int": 5, + "wis": 14, + "cha": 9, + "save": { + "str": "+10", + "con": "+9" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 16, + "resist": [ + "cold", + "fire", + "lightning" + ], + "languages": [ + "understands Giant but can't speak" + ], + "cr": "11", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The crab can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The crab makes two Claw attacks and one Stinger attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 16}). The crab has four claws, each of which can grapple one target." + ] + }, + { + "name": "Stinger", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one creature. {@h}22 ({@damage 3d10 + 6}) piercing damage, and the target must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} and {@condition paralyzed} conditions for 1 minute. The affected creature can repeat the saving throw at the end of each of its turns, ending both the {@condition poisoned} and {@condition paralyzed} conditions on itself on a success." + ] + }, + { + "name": "Water Jet {@recharge 5}", + "entries": [ + "The crab exhales water in a 150-foot line that is 10 feet wide. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 27 ({@damage 6d8}) bludgeoning damage, is pushed up to 30 feet from the crab, and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "GI" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed", + "poisoned", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Storm Giant Tempest Caller", + "source": "BGG", + "page": 182, + "size": [ + "H" + ], + "type": { + "type": "giant", + "tags": [ + "sorcerer" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 310, + "formula": "27d12 + 135" + }, + "speed": { + "walk": 50, + "fly": { + "number": 50, + "condition": "(hover)" + }, + "swim": 50, + "canHover": true + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 29, + "dex": 14, + "con": 20, + "int": 21, + "wis": 18, + "cha": 25, + "save": { + "str": "+15", + "con": "+11", + "wis": "+10", + "cha": "+13" + }, + "skill": { + "arcana": "+17", + "athletics": "+15", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "resist": [ + "cold" + ], + "immune": [ + "lightning", + "thunder" + ], + "languages": [ + "Common", + "Giant", + "Primordial" + ], + "cr": "20", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}, {@hit 13} to hit with spell attacks):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "daily": { + "1e": [ + "{@spell control water}", + "{@spell control weather} (as an action)", + "{@spell dispel magic}", + "{@spell plane shift}", + "{@spell sending}", + "{@spell time stop}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Alert", + "entries": [ + "The giant can't be surprised, and it has advantage on initiative rolls." + ] + }, + { + "name": "Amphibious", + "entries": [ + "The giant can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Scrying (Requires Storm Rune)", + "entries": [ + "The giant can use its crystal ball to cast the {@spell scrying} spell (save {@dc 17})." + ] + }, + { + "name": "Storm Rune", + "entries": [ + "The giant has a storm rune inscribed on a crystal ball. While the object bearing the rune is embedded in its body, the giant can use its Tempest Call action and its Scrying trait.", + "The object bearing the storm rune has AC 17; 50 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a storm rune on another crystal ball in its possession when it finishes a short or long rest." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The giant makes three Lightning Blade or Lightning Lance attacks." + ] + }, + { + "name": "Lightning Blade", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) slashing damage plus 16 ({@damage 3d10}) lightning damage." + ] + }, + { + "name": "Lightning Lance", + "entries": [ + "{@atk rs} {@hit 13} to hit, range 500 ft., one target. {@h}39 ({@damage 5d12 + 7}) lightning damage." + ] + }, + { + "name": "Tempest Call (Requires Storm Rune)", + "entries": [ + "The giant creates an elemental vortex that fills a 60-foot-radius sphere centered on itself. Each creature in that area other than the giant must make a {@dc 21} Dexterity saving throw. On a failed save, a creature takes 43 ({@damage 8d8 + 7}) damage of a type of the giant's choosing: cold, lightning, or thunder. On a successful save, a creature takes half as much damage." + ] + } + ], + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI", + "P" + ], + "damageTags": [ + "L", + "S" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Storm Herald", + "source": "BGG", + "page": 183, + "size": [ + "H" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 287, + "formula": "23d12 + 138" + }, + "speed": { + "walk": 50, + "swim": 100 + }, + "str": 27, + "dex": 14, + "con": 22, + "int": 24, + "wis": 18, + "cha": 18, + "save": { + "wis": "+10", + "cha": "+10" + }, + "skill": { + "arcana": "+13", + "deception": "+10", + "perception": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + "cold", + "psychic" + ], + "immune": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Giant", + "telepathy 120 ft." + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The herald casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1e": [ + "{@spell control water}", + "{@spell control weather} (as an action)", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The herald can breathe air and water." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The herald has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The herald makes one Claw attack, one Tentacles attack, and one Trident attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 8}) slashing damage." + ] + }, + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 18}). It also has the {@condition restrained} condition and takes 16 ({@damage 3d10}) psychic damage at the start of each of its turns until this grapple ends. The herald can have only one creature {@condition grappled} this way at a time." + ] + }, + { + "name": "Trident", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 8}) piercing damage or 21 ({@damage 3d8 + 8}) piercing damage if used with two hands, plus 13 ({@damage 3d8}) lightning damage." + ] + }, + { + "name": "Psychic Wave {@recharge}", + "entries": [ + "The herald unleashes a blast of psionic energy into the minds of up to three creatures it can see within 90 feet of itself. Each target must make a {@dc 21} Intelligence saving throw. On a failed save, a target takes 23 ({@damage 3d10 + 7}) psychic damage and has the {@condition stunned} condition for 1 minute. On a successful save, a target takes half as much damage only. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If a creature is reduced to 0 hit points by this psychic damage, it dies and its head explodes if it has one." + ] + } + ], + "attachedItems": [ + "trident|phb" + ], + "traitTags": [ + "Amphibious", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "C", + "GI", + "TP" + ], + "damageTags": [ + "B", + "L", + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "B" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tempest Spirit", + "source": "BGG", + "page": 184, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 195, + "formula": "17d12 + 85" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 24, + "dex": 14, + "con": 20, + "int": 16, + "wis": 18, + "cha": 19, + "save": { + "con": "+10", + "int": "+8", + "wis": "+9", + "cha": "+9" + }, + "skill": { + "arcana": "+8", + "perception": "+9" + }, + "passive": 19, + "resist": [ + "cold", + "necrotic", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Giant" + ], + "cr": "15", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The spirit can move through other creatures and objects as if they were difficult terrain. The spirit takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the spirit fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes two Lightning Fist or Hailstone attacks in any combination." + ] + }, + { + "name": "Lightning Fist", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}25 ({@damage 4d8 + 7}) lightning damage." + ] + }, + { + "name": "Hailstone", + "entries": [ + "{@atk rw} {@hit 12} to hit, range 90/180 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage plus 7 ({@damage 2d6}) cold damage." + ] + }, + { + "name": "Death Bolt {@recharge 5}", + "entries": [ + "The spirit hurls a magical lightning bolt in a 120-foot line that is 10 feet wide. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage plus 16 ({@damage 3d10}) necrotic damage on a failed save, or half as much damage on a successful one. On a success or failure, an affected creature's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the creature finishes a long rest. The creature dies if its hit point maximum is reduced to 0." + ] + } + ], + "bonus": [ + { + "name": "Hailstorm {@recharge 4}", + "entries": [ + "The spirit conjures a hailstorm in a 20-foot-radius, 40-foot-high cylinder centered on a point it can see within 120 feet of itself. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 10 ({@damage 3d6}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GI" + ], + "damageTags": [ + "B", + "C", + "L", + "N", + "O" + ], + "miscTags": [ + "AOE", + "HPR", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Titanothere", + "source": "BGG", + "page": 185, + "size": [ + "H" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "13d12 + 52" + }, + "speed": { + "walk": 50 + }, + "str": 25, + "dex": 10, + "con": 19, + "int": 2, + "wis": 12, + "cha": 6, + "passive": 11, + "cr": "5", + "trait": [ + { + "name": "Beast of Burden", + "entries": [ + "The titanothere is considered to be one size larger for the purpose of determining its carrying capacity." + ] + } + ], + "action": [ + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage. If the titanothere moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 13 ({@damage 3d8}) bludgeoning damage, and the target must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition if it is a creature." + ] + } + ], + "traitTags": [ + "Beast of Burden" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Troll Amalgam", + "source": "BGG", + "page": 186, + "size": [ + "G" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 217, + "formula": "14d20 + 70" + }, + "speed": { + "walk": 60, + "climb": 60 + }, + "str": 25, + "dex": 14, + "con": 21, + "int": 9, + "wis": 16, + "cha": 5, + "save": { + "con": "+11", + "wis": "+9" + }, + "skill": { + "perception": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "resist": [ + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Giant", + "Undercommon" + ], + "cr": "17", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the amalgam fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The amalgam has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The amalgam regains 15 hit points at the start of its turn. If the amalgam takes acid or fire damage, it regains only 5 hit points at the start of its next turn. The amalgam dies only if it takes 20 or more acid or fire damage while it has 0 hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The amalgam makes three Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}25 ({@damage 4d8 + 7}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Fling Limb (3/Day)", + "entries": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage. If the limb hits a Medium or smaller creature, that creature has the {@condition grappled} condition (escape {@dc 17}). The limb has the statistics of a troll amalgam, except for the following: it is Medium, it has 45 hit points, its speed is 30 ft., it doesn't have a challenge rating or Legendary Resistance, and the only action it can take is the Attack action, which it can use only to grapple.", + "Until this grapple ends, the target has the {@condition restrained} condition and takes 25 ({@damage 4d8 + 7}) slashing damage at the start of each of its turns. If the limb is not destroyed within 24 hours of being flung, roll a {@dice d12}; on a roll of 12, the limb regenerates into a troll (see the Monster Manual). Otherwise, the limb withers away." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "U" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Troll Mutate", + "source": "BGG", + "page": 187, + "size": [ + "L" + ], + "type": "giant", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(winged form only)" + } + }, + "str": 19, + "dex": 13, + "con": 18, + "int": 17, + "wis": 9, + "cha": 12, + "save": { + "con": "+7", + "int": "+6" + }, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 15, + "languages": [ + "Giant", + "telepathy 60 ft." + ], + "cr": "7", + "trait": [ + { + "name": "Mutation", + "entries": [ + "When the troll mutate is created, it gains one of four possible body mutations at random: 1, Elastic Body; 2, Psionic Mirror; 3, Spell Scarred; or 4, Winged Form. This mutation determines certain traits in this stat block." + ] + }, + { + "name": "Amorphous (Elastic Body Only)", + "entries": [ + "The mutate can move through a space as narrow as 1 inch without squeezing." + ] + }, + { + "name": "Magic Resistance (Spell Scarred Only)", + "entries": [ + "The mutate has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Psychic Rebuke (Psionic Mirror Only)", + "entries": [ + "If the mutate takes psychic damage, each creature within 20 feet of it takes that damage as well." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The mutate regains 10 hit points at the start of its turn. If the mutate takes acid or fire damage, this trait doesn't function at the start of the mutate's next turn. The mutate dies only if it starts its turn with 0 hit points and doesn't regenerate. If the mutate starts its turn with 0 hit points and regenerates, it randomly gains a mutation it doesn't already have (up to a maximum of four mutations)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mutate makes two Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft. (or 15 ft. if the mutate has the Elastic Body mutation), one target. {@h}15 ({@damage 2d10 + 4}) slashing damage plus 9 ({@damage 2d8}) force damage." + ] + }, + { + "name": "Psychic Burst {@recharge 5}", + "entries": [ + "The mutate unleashes a wave of psychic energy. Each creature within 30 feet of the mutate must make a {@dc 14} Intelligence saving throw, taking 28 ({@damage 8d6}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Amorphous", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "GI", + "TP" + ], + "damageTags": [ + "O", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aberrant Zealot", + "source": "PaBTSO", + "page": 203, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB}" + ] + } + ], + "hp": { + "average": 93, + "formula": "17d8 + 17" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 18, + "con": 12, + "int": 13, + "wis": 8, + "cha": 19, + "save": { + "dex": "+7", + "cha": "+7" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 60 ft.", + "truesight 10 ft." + ], + "passive": 15, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "grappled", + "restrained" + ], + "languages": [ + "Common", + "Deep Speech" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The zealot casts one of the following spells, requiring no components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell arcane gate}", + "{@spell hunger of Hadar}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aberrant Form", + "entries": [ + "The zealot exudes the chaos of the Far Realm. Any non-Aberration creature that starts its turn within 5 feet of the zealot must succeed on a {@dc 15} Wisdom saving throw or take 7 ({@damage 2d6}) psychic damage." + ] + }, + { + "name": "Weirdly Pliable", + "entries": [ + "The zealot, along with any equipment it is wearing or carrying, is unnaturally flexible. The zealot can move through any space as narrow as 1 inch without squeezing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zealot makes one Psychic Rend attack and two Shortsword attacks." + ] + }, + { + "name": "Psychic Rend", + "entries": [ + "{@atk ms,rs} {@hit 7} to hit, reach 15 ft. or range 120 ft., one target. {@h}14 ({@damage 3d6 + 4}) psychic damage, and the target must succeed on a {@dc 15} Wisdom saving throw or have the {@condition stunned} condition until the start of the zealot's next turn." + ] + }, + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 7 ({@damage 2d6}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Void Warp {@recharge 5}", + "entries": [ + "The zealot teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself, leaving a churning void in the space it left. Immediately after it teleports, each creature within 30 feet of the void other than the zealot must make a {@dc 15} Strength saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) force damage and is pulled to the unoccupied space closest to the void. On a successful save, the creature takes half as much damage only. The void then disappears." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "senseTags": [ + "D", + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS" + ], + "damageTags": [ + "O", + "P", + "Y" + ], + "damageTagsSpell": [ + "A", + "C" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "blinded" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aberrant Zealot (Tentacled)", + "source": "PaBTSO", + "page": 181, + "_copy": { + "name": "Aberrant Zealot", + "source": "PaBTSO", + "_mod": { + "action": { + "mode": "appendArr", + "items": { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The zealot magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and have the {@condition stunned} condition for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the {@condition stunned} condition on itself on a success." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Ash Zombie", + "source": "PaBTSO", + "page": 52, + "_copy": { + "name": "Zombie", + "source": "MM", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Ash Cloud", + "entries": [ + "When the zombie dies, it leaves a cloud of ash that lasts for 5 minutes but does not obscure vision." + ] + } + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Brain Breaker", + "source": "PaBTSO", + "page": 199, + "_copy": { + "name": "Infected Elder Brain", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "elder brain", + "with": "brain breaker" + } + } + }, + "ac": [ + { + "ac": 14, + "from": [ + "{@item ring mail|PHB}" + ] + } + ], + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "cr": "12", + "hasToken": true, + "hasFluff": true + }, + { + "name": "Chishinix", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 194, + "_copy": { + "name": "Mind Flayer Clairvoyant", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "Chishinix", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Severed Head", + "entries": [ + "Chishinix is always accompanied by a {@creature Chishinix' Head|PaBTSO|severed head}." + ] + } + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Chishinix' Head", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 194, + "_copy": { + "name": "Encephalon Gemmule", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "gemmule", + "with": "head" + }, + "trait": { + "mode": "removeArr", + "names": "Encephalon Progeny" + } + } + }, + "speed": { + "walk": 10 + }, + "hasToken": true + }, + { + "name": "Cloaker Mutate", + "source": "PaBTSO", + "page": 212, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 143, + "formula": "22d10 + 22" + }, + "speed": { + "walk": 10, + "fly": 30 + }, + "str": 19, + "dex": 15, + "con": 12, + "int": 18, + "wis": 13, + "cha": 11, + "skill": { + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "necrotic", + "poison", + "psychic" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Deep Speech", + "telepathy 60 ft.", + "Undercommon" + ], + "cr": "10", + "trait": [ + { + "name": "Avoidance", + "entries": [ + "If the mutate is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ] + }, + { + "name": "Light Sensitivity", + "entries": [ + "While in bright light, the mutate has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mutate makes one Corpse Swipe attack and two Tail attacks, or it makes four Tail attacks." + ] + }, + { + "name": "Corpse Swipe", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d10 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature can't regain hit points." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Phantasmal Duplicates", + "entries": [ + "The mutate magically projects up to four illusory copies of itself. These duplicates make it difficult to ascertain the mutate's true location and last until the end of the mutate's next turn. While the copies exist, attack rolls against the mutate are made with disadvantage." + ] + }, + { + "name": "Psychic Moan {@recharge}", + "entries": [ + "The mutate lets out a moan charged with psychic energy. Each creature within 60 feet of the mutate that isn't an Aberration must succeed on a {@dc 16} Wisdom saving throw or take 17 ({@damage 5d6}) psychic damage and have the {@condition frightened} condition until the end of the mutate's next turn." + ] + } + ], + "traitTags": [ + "Light Sensitivity" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "B", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dwarf Skeleton", + "source": "PaBTSO", + "page": 123, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8" + }, + "speed": { + "walk": 25 + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 6, + "wis": 8, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "cr": "1/2", + "trait": [ + { + "name": "Sure-Footed", + "entries": [ + "The skeleton has advantage on Strength and Dexterity saving throws made against effects that make it have the {@condition prone} condition." + ] + } + ], + "action": [ + { + "name": "Battleaxe", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ] + } + ], + "attachedItems": [ + "battleaxe|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Encephalon Cluster", + "source": "PaBTSO", + "page": 205, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "17d10 + 17" + }, + "speed": { + "walk": 20 + }, + "str": 23, + "dex": 10, + "con": 13, + "int": 5, + "wis": 17, + "cha": 7, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 13, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "blinded" + ], + "cr": "10", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the cluster fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The cluster has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cluster makes two Slam attacks. It can replace one of these attacks with Spawn Progeny if available." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) bludgeoning damage plus 10 ({@damage 3d6}) psychic damage, and if the target is a creature, the target must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition. If this attack reduces the target to 0 hit points, the target immediately dies and is consumed by the cluster." + ] + }, + { + "name": "Spawn Progeny (Recharges after a Short or Long Rest)", + "entries": [ + "The cluster bulges and spews {@dice 1d4} mature eggs. Each egg lands in an unoccupied space of the cluster's choice within 30 feet of itself and immediately transforms into an {@creature encephalon gemmule|PaBTSO}. The gemmules obey the cluster's commands and take their turns immediately after it." + ] + } + ], + "reaction": [ + { + "name": "Aggressive Hunger", + "entries": [ + "Immediately after being hit by an attack, the cluster moves up to its speed toward the attacker. This movement doesn't provoke opportunity attacks. If the cluster ends this movement within 5 feet of the attacker, it then makes one Slam attack against that attacker." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Encephalon Gemmule", + "source": "PaBTSO", + "page": 206, + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 54, + "formula": "12d4 + 24" + }, + "speed": { + "walk": 40 + }, + "str": 1, + "dex": 18, + "con": 14, + "int": 5, + "wis": 12, + "cha": 7, + "senses": [ + "blindsight 30 ft. (can't see beyond this radius)" + ], + "passive": 11, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "blinded" + ], + "cr": "3", + "trait": [ + { + "name": "Encephalon Progeny", + "entries": [ + "The gemmule matures into an encephalon cluster if not killed within 30 ({@dice 4d12 + 4}) days of its creation." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The gemmule has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Psychic Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d10}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Leech", + "entries": [ + "The gemmule targets one creature within 5 feet of itself and forces the target to make a {@dc 14} Dexterity saving throw. On a failed save, the gemmule enters the target's space and attaches to the target. While the gemmule is attached, the target takes 7 ({@damage 3d4}) piercing damage at the start of each of its turns, and the gemmule can't use Leech again until it detaches. It can detach itself by spending 5 feet of its movement. As an action, the target or a creature within 5 feet of the target can detach the gemmule by succeeding on a {@dc 15} Strength check." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Feral Ashenwight", + "source": "PaBTSO", + "page": 204, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 25 + }, + "str": 19, + "dex": 13, + "con": 15, + "int": 4, + "wis": 14, + "cha": 6, + "save": { + "str": "+7", + "con": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ashenwight makes two Necrotic Shard attacks." + ] + }, + { + "name": "Necrotic Shard", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d6 + 4}) necrotic damage. If the target is a creature, it has disadvantage on the next attack roll it makes before the end of its next turn." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "N" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fiendish Auger", + "source": "PaBTSO", + "page": 206, + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "9d12 + 27" + }, + "speed": { + "walk": 40, + "burrow": 30 + }, + "str": 23, + "dex": 10, + "con": 17, + "int": 6, + "wis": 12, + "cha": 5, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 11, + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "unconscious" + ], + "cr": "5", + "trait": [ + { + "name": "Siege Monster", + "entries": [ + "The auger deals double damage to objects and structures." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The auger can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Flaming Drill", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 7 ({@damage 2d6}) fire damage. If the auger moves at least 20 feet in a straight line toward the target immediately before the hit, the target takes an additional 11 ({@damage 2d10}) piercing damage, and if the target is a creature, it must succeed on a {@dc 17} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "bonus": [ + { + "name": "Burst of Heat {@recharge 5}", + "entries": [ + "The auger releases an intense burst of heat in a 30-foot-radius sphere centered on itself. This heat spreads around corners. Each creature in this area must make a {@dc 17} Constitution saving throw, taking 13 ({@damage 3d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Siege Monster", + "Tunneler" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Flesh Meld", + "source": "PaBTSO", + "page": 207, + "size": [ + "H" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 95, + "formula": "10d12 + 30" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 21, + "dex": 14, + "con": 17, + "int": 7, + "wis": 13, + "cha": 5, + "save": { + "str": "+8", + "dex": "+5" + }, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 11, + "conditionImmune": [ + "blinded", + "prone" + ], + "languages": [ + "understands all but can't speak" + ], + "cr": "7", + "trait": [ + { + "name": "Amorphous", + "entries": [ + "The flesh meld can move through a space as narrow as 1 inch without squeezing." + ] + }, + { + "name": "Aura of Death", + "entries": [ + "At the start of each of the flesh meld's turns, each creature within 5 feet of it must succeed on a {@dc 15} Constitution saving throw or take 3 ({@damage 1d6}) necrotic damage and have the {@condition poisoned} condition until the start of the flesh meld's next turn." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The flesh meld has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The flesh meld can climb difficult surfaces, including ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The flesh meld makes two Bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 30 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage, and if the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}) and is pulled up to 15 feet toward the flesh meld." + ] + } + ], + "bonus": [ + { + "name": "Consume Creature", + "entries": [ + "The flesh meld targets one Large or smaller creature within 5 feet of itself that it's grappling. The target must succeed on a {@dc 15} Dexterity saving throw or be swallowed by the flesh meld. The flesh meld can have one creature swallowed at a time.", + "A swallowed creature no longer has the {@condition grappled} condition. While swallowed, it has the {@condition blinded} and {@condition restrained} conditions, has {@quickref Cover||3||total cover} against attacks and other effects outside the flesh meld, and takes 10 ({@damage 3d6}) necrotic damage at the start of each of the flesh meld's turns. If this damage reduces a swallowed creature to 0 hit points, the creature dies, and the flesh meld consumes its body.", + "If the flesh meld takes 30 damage or more on a single turn from the swallowed creature, the flesh meld must succeed on a {@dc 15} Constitution saving throw at the end of that turn or regurgitate the creature, which falls with the {@condition prone} condition in a space within 5 feet of the flesh meld. If the flesh meld dies, the swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting with the {@condition prone} condition." + ] + } + ], + "traitTags": [ + "Amorphous", + "Magic Resistance", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goblin Boss Archer", + "source": "PaBTSO", + "page": 60, + "_copy": { + "name": "Goblin Boss", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Javelin", + "items": { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80 ft./320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Goblin Psi Brawler", + "source": "PaBTSO", + "page": 215, + "size": [ + "S" + ], + "type": { + "type": "aberration", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB}" + ] + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 17, + "con": 12, + "int": 16, + "wis": 15, + "cha": 10, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "psychic" + ], + "languages": [ + "Common", + "Goblin", + "telepathy 30 ft." + ], + "cr": "2", + "trait": [ + { + "name": "Mental Burst", + "entries": [ + "When the goblin dies, its pent-up mental energy explodes in a psychic blast. Each creature within 5 feet of it must succeed on a {@dc 13} Intelligence saving throw or take 5 ({@damage 2d4}) psychic damage." + ] + }, + { + "name": "Mental Fortitude", + "entries": [ + "The goblin has advantage on saving throws against effects that would make it have the {@condition charmed} or {@condition frightened} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The goblin makes two Unarmed Strike attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "The goblin takes the Disengage or Hide action." + ] + }, + { + "name": "Telekinetic Shove", + "entries": [ + "The goblin targets one creature it can see within 30 feet of itself with a thrust of telekinetic force. The target must succeed on a {@dc 13} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO", + "TP" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "intelligence", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Goblin Psi Commander", + "source": "PaBTSO", + "page": 216, + "size": [ + "S" + ], + "type": { + "type": "aberration", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB}" + ] + } + ], + "hp": { + "average": 58, + "formula": "13d6 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 19, + "con": 13, + "int": 17, + "wis": 15, + "cha": 10, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "psychic" + ], + "languages": [ + "Common", + "Goblin", + "telepathy 60 ft." + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The goblin casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell dissonant whispers}", + "{@spell telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Mental Burst", + "entries": [ + "When the goblin dies, its pent-up mental energy explodes in a psychic blast. Each creature within 5 feet of it must succeed on a {@dc 13} Intelligence saving throw or take 10 ({@damage 4d4}) psychic damage." + ] + }, + { + "name": "Mental Fortitude", + "entries": [ + "The goblin has advantage on saving throws against effects that would make it have the {@condition charmed} or {@condition frightened} conditions." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The goblin makes three Psychic Blade attacks." + ] + }, + { + "name": "Psychic Blade", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 60 ft., one creature. {@h}11 ({@damage 2d6 + 4}) psychic damage, and the target must subtract {@dice 1d4} from the next attack roll or saving throw it makes before the end of the goblin's next turn." + ] + }, + { + "name": "Synaptic Rend {@recharge 5}", + "entries": [ + "The goblin unleashes a 30-foot-radius sphere of psychic energy, centered on a point the goblin can see within 60 feet of itself. Each creature in that area must make a {@dc 13} Intelligence saving throw. On a failed save, a creature takes 14 ({@damage 4d6}) psychic damage and has the {@condition incapacitated} condition until the end of the goblin's next turn. On a successful save, a creature takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "The goblin takes the Disengage or Hide action." + ] + } + ], + "reaction": [ + { + "name": "Psionic Shield", + "entries": [ + "When the goblin or one of its allies within 15 feet of it is hit by an attack roll, the goblin conjures a shield of force. The target of the attack gains a +3 bonus to its AC against the triggering attack roll, potentially causing it to miss." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO", + "TP" + ], + "damageTags": [ + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grandlejaw", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 121, + "_copy": { + "name": "Hydra", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the hydra", + "with": "Grandlejaw", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Grell Psychic", + "source": "PaBTSO", + "page": 145, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12" + }, + "speed": { + "walk": 10, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 17, + "dex": 14, + "con": 13, + "int": 12, + "wis": 11, + "cha": 14, + "skill": { + "perception": "+4", + "stealth": "+6" + }, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 14, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "blinded", + "prone" + ], + "languages": [ + "Deep Speech", + "Grell" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The grell psychic casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell mage armor}", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1e": [ + "{@spell confusion}", + "{@spell fear}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The grell psychic makes one Tentacle attack and one Beak attack." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d4 + 3}) piercing damage." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While the target is {@condition poisoned}, it also has the {@condition paralyzed} condition. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The target also has the {@condition grappled} condition (escape {@dc 16}). While grappling the target, the grell can't make Tentacle attacks against other targets. When the grell moves, any Medium or smaller target it is grappling moves with it." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "OTH" + ], + "damageTags": [ + "P" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gundren Rockseeker", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 10, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gwyn Oresong", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 8, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Gwyn", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Hashutu", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 194, + "_copy": { + "name": "Mind Flayer Clairvoyant", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "Hashutu", + "flags": "i" + } + } + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft.", + "truesight 15 ft." + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Hjoldak Hollowhelm", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 93, + "_copy": { + "name": "Psionic Ashenwight", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ashenwight", + "with": "Hjoldak", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Honna", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 110, + "_copy": { + "name": "Medusa", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the medusa", + "with": "Honna", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Humanoid Mutate", + "source": "PaBTSO", + "page": 212, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "A" + ], + "ac": [ + 14 + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 12, + "dex": 18, + "con": 14, + "int": 11, + "wis": 13, + "cha": 15, + "skill": { + "perception": "+3", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "telepathy 60 ft." + ], + "cr": "4", + "trait": [ + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the mutate has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mutate makes two Unarmed Strike or Nightmare Blast attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Nightmare Blast", + "entries": [ + "{@atk rw} {@hit 6} to hit, range 60 ft., one creature. {@h}7 ({@damage 2d6}) psychic damage, and the target must succeed on a {@dc 12} Wisdom saving throw or have the {@condition frightened} condition until the start of the mutate's next turn." + ] + } + ], + "reaction": [ + { + "name": "Defensive Flight", + "entries": [ + "Immediately after taking damage, the mutate flies up to its speed. This movement doesn't provoke opportunity attacks." + ] + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TP" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Iarno \"Glasstaff\" Albrek", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 43, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "wizard" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 16, + "condition": "with {@spell mage armor} and {@item staff of defense|PaBTSO}", + "braces": true + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 11, + "int": 17, + "wis": 12, + "cha": 11, + "save": { + "int": "+5", + "wis": "+3" + }, + "skill": { + "arcana": "+5", + "history": "+5" + }, + "passive": 11, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Glasstaff casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell light}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell hold person}", + "{@spell magic missile}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Glasstaff wields a {@item staff of defense|PaBTSO} (see appendix B). With the staff in hand, he can use an action to cast the {@spell mage armor} spell and use his reaction to cast the {@spell shield} spell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Glasstaff makes two Shocking Burst attacks." + ] + }, + { + "name": "Shocking Burst", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}6 ({@damage 1d6 + 3}) lightning damage." + ] + } + ], + "bonus": [ + { + "name": "Teleport (2/Day)", + "entries": [ + "Glasstaff magically teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR", + "E" + ], + "damageTags": [ + "L" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "charmed", + "paralyzed" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Infected Elder Brain", + "source": "PaBTSO", + "page": 159, + "size": [ + "L" + ], + "type": { + "type": "aberration", + "tags": [ + "mind flayer" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 5, + "swim": 10 + }, + "str": 15, + "dex": 10, + "con": 20, + "int": 21, + "wis": 19, + "cha": 20, + "save": { + "int": "+9", + "wis": "+8", + "cha": "+9" + }, + "skill": { + "arcana": "+9", + "insight": "+12" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 14, + "languages": [ + "telepathy 1 mile; understands Common", + "Deep Speech", + "and Undercommon but can't speak" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The elder brain casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The elder brain is aware of creatures within 1 mile of itself that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The elder brain has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Telepathic Hub", + "entries": [ + "The elder brain can use its telepathy to initiate and maintain telepathic conversations with up to ten creatures at a time. The elder brain can let those creatures telepathically hear each other while connected in this way." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The elder brain makes two Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 30 ft., one target. {@h}15 ({@damage 3d8 + 2}) bludgeoning damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}) and takes 9 ({@damage 1d8 + 5}) psychic damage at the start of each of its turns until the grapple ends. The elder brain can have up to four targets {@condition grappled} at a time." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "Creatures of the elder brain's choice within 60 feet of itself must succeed on a {@dc 17} Intelligence saving throw or take 32 ({@damage 5d10 + 5}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Psychic Link", + "entries": [ + "The elder brain targets one creature with the {@condition incapacitated} condition that the elder brain senses with its Creature Sense trait and establishes a psychic link with the target. Until the link ends, the elder brain can perceive everything the target senses. The target becomes aware that something is linked to its mind once it no longer has the {@condition incapacitated} condition, and the elder brain can terminate the link at any time (no action required). The target can use an action on its turn to attempt to break the link, doing so with a successful {@dc 17} Charisma check. If the target breaks the link this way, the target takes 10 ({@damage 3d6}) psychic damage. The link also ends if the target and the elder brain are more than 1 mile apart. The elder brain can form psychic links with up to ten creatures at a time." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "C", + "CS", + "DS", + "TP", + "U" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Infected Townsperson", + "source": "PaBTSO", + "page": 139, + "_copy": { + "name": "Berserker", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "berserker", + "with": "townsperson" + }, + "action": { + "mode": "replaceArr", + "replace": "Greataxe", + "items": { + "name": "Psychic Slam", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) psychic damage." + ] + } + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Intellect Snare", + "source": "PaBTSO", + "page": 208, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 14 + ], + "hp": { + "average": 99, + "formula": "18d6 + 36" + }, + "speed": { + "walk": 0, + "fly": { + "number": 45, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 13, + "dex": 18, + "con": 15, + "int": 23, + "wis": 17, + "cha": 11, + "save": { + "int": "+9", + "wis": "+6", + "cha": "+3" + }, + "senses": [ + "blindsight 120 ft. (can't see beyond this radius)" + ], + "passive": 13, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "prone" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "8", + "trait": [ + { + "name": "Cacophony of Minds", + "entries": [ + "Any creature that starts its turn within 30 feet of the intellect snare must succeed on a {@dc 17} Wisdom saving throw or have the {@condition incapacitated} condition for 1 minute. An {@condition incapacitated} creature can repeat the saving throw at the start of each of its turns, ending the effect on itself on a success. A creature that succeeds on the saving throw is immune to this intellect snare's Cacophony of Minds for 24 hours." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The intellect snare has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The intellect snare makes two Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d8 + 6}) force damage, and if the target is a Medium or smaller creature, the target has the {@condition grappled} condition (escape {@dc 17})." + ] + } + ], + "bonus": [ + { + "name": "Siphon Thoughts", + "entries": [ + "The intellect snare targets one creature it is grappling. The target must make a {@dc 17} Intelligence saving throw, taking 21 ({@damage 6d6}) psychic damage on a failed save, or half as much damage on a successful one. The intellect snare then regains a number of hit points equal to the amount of damage taken." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "O", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kellikilli", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 121, + "_copy": { + "name": "Water Weird", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the water weird", + "with": "Kellikilli", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Lowarnizel", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 181, + "size": [ + "L" + ], + "type": { + "type": "dragon", + "tags": [ + "young gem" + ] + }, + "alignment": [ + "N" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "swim": 40, + "canHover": true + }, + "str": 21, + "dex": 12, + "con": 21, + "int": 18, + "wis": 15, + "cha": 19, + "save": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "arcana": "+12", + "perception": "+10", + "persuasion": "+8", + "stealth": "+5" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "resist": [ + "force", + "psychic" + ], + "conditionImmune": [ + "frightened", + "prone" + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "Lowarnizel casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell haste}", + "{@spell protection from evil and good}", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "Lowarnizel can breathe both air and water." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Lowarnizel makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) force damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ] + }, + { + "name": "Singularity Breath {@recharge 5}", + "entries": [ + "Lowarnizel creates a shining bead of gravitational force, then releases the energy in a 30-foot cone. Each creature in that area must make a {@dc 17} Strength saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, a creature takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "Lowarnizel magically transforms into any creature that is Medium or Small, while retaining his game statistics (other than his size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DR", + "TP" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Malinia", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 115, + "_copy": { + "name": "Humanoid Mutate", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mutate", + "with": "Malinia", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Mind Flayer Clairvoyant", + "source": "PaBTSO", + "page": 209, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 156, + "formula": "24d8 + 48" + }, + "speed": { + "walk": 30, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 11, + "dex": 12, + "con": 15, + "int": 21, + "wis": 17, + "cha": 18, + "save": { + "int": "+9", + "wis": "+7", + "cha": "+8" + }, + "skill": { + "arcana": "+9", + "insight": "+7", + "perception": "+7", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 15 ft." + ], + "passive": 17, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "frightened" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The mind flayer casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1": [ + "{@spell plane shift} (self only)" + ], + "3e": [ + "{@spell clairvoyance} (as an action)", + "{@spell dispel magic}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the mind flayer fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mind flayer makes two Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}21 ({@damage 3d10 + 5}) psychic damage. If the target is Medium or smaller, it has the {@condition grappled} condition (escape {@dc 17}) and must succeed on a {@dc 17} Intelligence saving throw or have the {@condition incapacitated} condition until the grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition incapacitated} Humanoid {@condition grappled} by the mind flayer. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills it by extracting and devouring its brain." + ] + }, + { + "name": "Unleash Void {@recharge 5}", + "entries": [ + "The mind flayer opens a rift into the Far Realm, centered on a point the mind flayer can see within 60 feet of itself, and a tentacle lashes across creatures near the rift. Each creature other than mind flayers within 30 feet of the rift must make a {@dc 17} Intelligence saving throw, after which the tentacle disappears and the rift closes. On a failed save, a creature takes 18 ({@damage 4d8}) cold damage from the rift plus 18 ({@damage 4d8}) psychic damage from the tentacle and has the {@condition stunned} condition for 1 minute. On a successful save, a creature takes half as much damage only. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "reaction": [ + { + "name": "Warp Reality", + "entries": [ + "When hit by an attack roll, the mind flayer gains a +4 bonus to its AC against that attack roll, potentially causing it to miss. Then the mind flayer, along with any equipment it is wearing or carrying, magically teleports up to 60 feet to an unoccupied space it can see." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "C", + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "incapacitated", + "stunned" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mind Flayer Nothic", + "source": "PaBTSO", + "page": 155, + "_copy": { + "name": "Nothic", + "source": "MM", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Rotting Gaze", + "items": { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "The nothic magically emits psychic energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 12} Intelligence saving throw or take 10 ({@damage 2d8 + 1}) psychic damage and have the {@condition stunned} condition until the end of its next turn." + ] + } + } + } + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Mind Flayer Prophet", + "source": "PaBTSO", + "page": 210, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 30 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 15, + "dex": 14, + "con": 14, + "int": 20, + "wis": 17, + "cha": 17, + "save": { + "int": "+8", + "wis": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+8", + "insight": "+6", + "perception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The mind flayer casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)", + "{@spell true seeing}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Awareness", + "entries": [ + "The mind flayer has advantage on initiative rolls and can't be surprised as long as it doesn't have the {@condition incapacitated} condition." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Tentacles", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) psychic damage. If the target is Medium or smaller, it has the {@condition grappled} condition (escape {@dc 16}) and must succeed on a {@dc 16} Intelligence saving throw or have the {@condition stunned} condition until the grapple ends." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one Humanoid {@condition grappled} by the mind flayer. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills it by extracting and devouring its brain." + ] + }, + { + "name": "Mind Whip {@recharge 5}", + "entries": [ + "The mind flayer lashes out with psychic energy, targeting up to two creatures it can see within 60 feet of itself. Each target must succeed on a {@dc 16} Intelligence saving throw or take 23 ({@damage 4d8 + 5}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mormesk the Wraith", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 70, + "_copy": { + "name": "Wraith", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wraith", + "with": "Mormesk", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nellik", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 193, + "_copy": { + "name": "Nycaloth", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the nycaloth", + "with": "Nellik", + "flags": "i" + }, + "action": { + "mode": "replaceArr", + "replace": "Greataxe", + "items": { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}19 ({@damage 2d12 + 6}) slashing damage; if the target is an Aberration, it takes an additional 6 ({@damage 1d12}) slashing damage, and if it is grappling a creature, it must succeed on a {@dc 15} Strength saving throw or its grapple ends." + ] + } + } + } + }, + "hasToken": true + }, + { + "name": "Nezznar the Spider", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 74, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf", + "wizard" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "6d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 13, + "con": 10, + "int": 16, + "wis": 14, + "cha": 13, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "arcana": "+5", + "perception": "+4", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Elvish", + "Undercommon" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Nezznar casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13} unless otherwise noted):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell spider climb} (from spider staff)", + "{@spell web} (from spider staff; save {@dc 15})" + ], + "daily": { + "1e": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell invisibility}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell suggestion}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Special Equipment", + "entries": [ + "Nezznar has a fully charged {@item spider staff|lmop} (see appendix B)." + ] + }, + { + "name": "Fey Ancestry", + "entries": [ + "Nezznar has advantage on saving throws to avoid or end the {@condition charmed} condition on himself, and magic can't put him to sleep." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "Nezznar has disadvantage on attack rolls while he or his target is in sunlight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Nezznar makes two Poison Blast attacks." + ] + }, + { + "name": "Poison Blast", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one creature. {@h}9 ({@damage 2d8}) poison damage." + ] + } + ], + "traitTags": [ + "Fey Ancestry", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E", + "U" + ], + "damageTags": [ + "I" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "invisible", + "restrained" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nundro Rockseeker", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 73, + "_copy": { + "name": "Commoner", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ] + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Nythalyn Henlifel", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 114, + "_copy": { + "name": "Drow Elite Warrior", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Nythalyn", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Oculorb", + "source": "PaBTSO", + "page": 214, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 13, + "dex": 10, + "con": 17, + "int": 14, + "wis": 15, + "cha": 19, + "save": { + "int": "+6", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "investigation": "+6", + "perception": "+10" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 20, + "conditionImmune": [ + "blinded", + "prone" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "9", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The oculorb has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Watchful Eyes", + "entries": [ + "The oculorb has advantage on initiative rolls and can't be surprised." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The oculorb makes two Dreadful Contact attacks or four Eye Beam attacks." + ] + }, + { + "name": "Dreadful Contact", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}14 ({@damage 3d6 + 4}) psychic damage, or 25 ({@damage 6d6 + 4}) psychic damage if the target has the {@condition frightened} condition." + ] + }, + { + "name": "Eye Beam", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}14 ({@damage 3d6 + 4}) psychic damage." + ] + }, + { + "name": "Antipathic Flood {@recharge 5}", + "entries": [ + "The oculorb releases a wave of negative emotions, choosing one of the following options:" + ] + }, + { + "name": "Weeping Eyes", + "entries": [ + "The oculorb weeps, releasing a wave of crushing despair. Each creature within 30 feet of the oculorb must make a {@dc 16} Constitution saving throw. On a failed save, a creature's speed is reduced to 0 feet until the end of the oculorb's next turn, and if the creature was {@status concentration||concentrating}, its {@status concentration} is broken." + ] + }, + { + "name": "Withering Glare", + "entries": [ + "The oculorb's eyes unleash furious scarlet energy in a 60-foot cone. Each creature in that area must make a {@dc 16} Wisdom saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) necrotic damage and has the {@condition frightened} condition for 1 minute. On a successful save, a creature takes half as much damage and isn't {@condition frightened}. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save." + ] + } + ], + "reaction": [ + { + "name": "Obsessive Rebuke", + "entries": [ + "When the oculorb is damaged by a creature it can see within 60 feet of itself, it forces the creature to make a {@dc 16} Wisdom saving throw. The creature takes 10 ({@damage 3d6}) psychic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "N", + "Y" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ontharyx", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 115, + "_copy": { + "name": "Humanoid Mutate", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mutate", + "with": "Ontharyx", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Oshundo the Alhoon", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 153, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "mind flayer", + "wizard" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30, + "fly": { + "number": 15, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 11, + "dex": 12, + "con": 16, + "int": 19, + "wis": 17, + "cha": 17, + "save": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "skill": { + "arcana": "+8", + "history": "+8", + "insight": "+7", + "perception": "+7", + "stealth": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "lightning", + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Oshundo casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell dominate monster}", + "{@spell globe of invulnerability}", + "{@spell invisibility}", + "{@spell modify memory}", + "{@spell plane shift} (self only)", + "{@spell wall of force}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "Oshundo has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Oshundo makes two Chilling Grasp or Arcane Bolt attacks." + ] + }, + { + "name": "Chilling Grasp", + "entries": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) cold damage, and Oshundo regains 14 hit points if the target is a creature." + ] + }, + { + "name": "Arcane Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) force damage." + ] + }, + { + "name": "Thundering Blast {@recharge 5}", + "entries": [ + "Oshundo emits a wave of domineering energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) thunder damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "reaction": [ + { + "name": "Negate Spell (3/Day)", + "entries": [ + "Oshundo targets one creature it can perceive within 60 feet of itself that is casting a spell. If the spell is 3rd level or lower, the spell fails, but any spell slots or charges aren't wasted." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "TP", + "U" + ], + "damageTags": [ + "C", + "O", + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Otyugh Mutate", + "source": "PaBTSO", + "page": 213, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 76, + "formula": "8d10 + 32" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 11, + "con": 18, + "int": 10, + "wis": 15, + "cha": 6, + "save": { + "str": "+7", + "con": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Otyugh", + "telepathy 120 ft." + ], + "cr": "6", + "trait": [ + { + "name": "Virulent Breath", + "entries": [ + "Noxious gas from the mutate's digestion of previous meals spews from its mouth. At the start of the mutate's turn, each creature within 5 feet of it must succeed on a {@dc 15} Constitution saving throw or take 3 ({@damage 1d6}) poison damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mutate makes two Bite or Tentacle attacks. It can replace one of these attacks with Chitin Slam." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or have the {@condition poisoned} condition. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 ({@dice 1d10}) on a failure. On a successful save, the target is no longer {@condition poisoned}. The target dies if its hit point maximum is reduced to 0. This reduction to the target's hit point maximum lasts until it no longer has the {@condition poisoned} condition." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}) and the {@condition restrained} condition until this grapple ends. The mutate has two tentacles that can grapple one target each." + ] + }, + { + "name": "Chitin Slam", + "entries": [ + "The mutate targets one creature it is grappling, slamming the creature against its chitinous plating. The creature must succeed on a {@dc 15} Constitution saving throw or take 16 ({@damage 3d10}) bludgeoning damage and have the {@condition stunned} condition until the end of the mutate's next turn." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "B", + "I", + "P" + ], + "miscTags": [ + "AOE", + "HPR", + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Psionic Ashenwight", + "source": "PaBTSO", + "page": 204, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 25 + }, + "str": 19, + "dex": 13, + "con": 15, + "int": 17, + "wis": 14, + "cha": 6, + "save": { + "str": "+7", + "con": "+5", + "int": "+6", + "wis": "+5" + }, + "passive": 12, + "resist": [ + "necrotic", + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "telepathy 120 ft.", + "understands the languages it knew in life but can't speak" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The ashenwight casts one of the following spells, requiring no spellcasting components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1": [ + "{@spell calm emotions}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ashenwight makes two Necrotic Shard attacks. It also uses Psionic Crown if available." + ] + }, + { + "name": "Necrotic Shard", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. If the target is a creature, it has disadvantage on the next attack roll it makes before the end of its next turn." + ] + }, + { + "name": "Psionic Crown {@recharge 5}", + "entries": [ + "The ashenwight wreathes the head of a creature it can see within 60 feet of itself with a crown of jagged, spectral crystals. The target must succeed on a {@dc 14} Wisdom saving throw or have the {@condition charmed} condition for 1 minute. While {@condition charmed} in this way, the target's thoughts are sluggish; it can't take reactions, its speed is halved, and it takes 9 ({@damage 2d8}) psychic damage at the start of each of its turns. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF", + "TP" + ], + "damageTags": [ + "N", + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Psionic Shambling Mound", + "source": "PaBTSO", + "page": 108, + "_copy": { + "name": "Shambling Mound", + "source": "MM" + }, + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The shambling mound casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 8}):" + ], + "will": [ + "{@spell minor illusion}" + ], + "daily": { + "1": [ + "{@spell charm person} (already cast)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "spellcastingTags": [ + "P" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true + }, + { + "name": "Qunbraxel", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 135, + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "mind flayer", + "warlock" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 17, + "int": 19, + "wis": 15, + "cha": 19, + "save": { + "int": "+8", + "wis": "+6", + "cha": "+8" + }, + "skill": { + "arcana": "+8", + "insight": "+6", + "perception": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "languages": [ + "Deep Speech", + "telepathy 60 ft.", + "Undercommon" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "Qunbraxel casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell levitate}", + "{@spell mage armor} (self only)", + "{@spell mage hand} (the hand is invisible)", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell confusion}", + "{@spell sending}", + "{@spell telekinesis}" + ], + "1e": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "Qunbraxel has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Qunbraxel makes two Eldritch Bolt attacks, or one Eldritch Bolt attack and one Tentacle attack." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it has the {@condition grappled} condition (escape {@dc 16}) and must succeed on a {@dc 16} Intelligence saving throw or have the {@condition stunned} condition until the grapple ends." + ] + }, + { + "name": "Eldritch Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) force damage." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one Humanoid with the {@condition stunned} condition who is {@condition grappled} by Qunbraxel. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, Qunbraxel kills it by extracting and devouring its brain." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "Qunbraxel magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 26 ({@damage 5d8 + 4}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "DS", + "TP", + "U" + ], + "damageTags": [ + "O", + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "charmed", + "restrained" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Redbrand Ruffian", + "source": "PaBTSO", + "page": 216, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 11, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 10, + "con": 12, + "int": 9, + "wis": 9, + "cha": 11, + "skill": { + "intimidation": "+2" + }, + "passive": 9, + "languages": [ + "Common" + ], + "cr": "1/2", + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "attachedItems": [ + "shortsword|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Refraction of Ilvaash", + "source": "PaBTSO", + "page": 197, + "size": [ + "H" + ], + "type": { + "type": "aberration", + "tags": [ + "mind flayer" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 199, + "formula": "21d12 + 63" + }, + "speed": { + "walk": 10, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "swim": 10, + "canHover": true + }, + "str": 17, + "dex": 10, + "con": 17, + "int": 23, + "wis": 20, + "cha": 22, + "save": { + "int": "+11", + "wis": "+10" + }, + "skill": { + "arcana": "+11", + "insight": "+15", + "intimidation": "+11", + "persuasion": "+11" + }, + "senses": [ + "blindsight 120 ft." + ], + "passive": 15, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 100 miles", + "Undercommon" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The refraction casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "daily": { + "3e": [ + "{@spell dispel magic}", + "{@spell modify memory}" + ], + "1e": [ + "{@spell feeblemind}", + "{@spell plane shift} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Creature Sense", + "entries": [ + "The refraction is aware of creatures within 100 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The refraction can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the refraction fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The refraction has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The refraction makes two Dissonant Claw attacks." + ] + }, + { + "name": "Dissonant Claw", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft. or range 120 ft., one creature. {@h}25 ({@damage 3d12 + 6}) psychic damage. If the target is a creature {@status concentration||concentrating} on a spell, its {@status concentration} is broken." + ] + }, + { + "name": "Mind Blast {@recharge 5}", + "entries": [ + "Creatures of the refraction's choice within 60 feet of it must succeed on a {@dc 19} Intelligence saving throw or take 33 ({@damage 5d10 + 6}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Teleport", + "entries": [ + "The refraction teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied place that it can see." + ] + } + ], + "legendary": [ + { + "name": "Mindbreaker", + "entries": [ + "The refraction targets a creature within 120 feet of itself and disrupts its mental processes, causing the target to have disadvantage on all ability checks, attack rolls, and saving throws until the end of the target's next turn." + ] + }, + { + "name": "Projected Claw (Costs 2 Actions)", + "entries": [ + "The refraction makes one Dissonant Claw attack." + ] + } + ], + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "C", + "DS", + "TP", + "U" + ], + "damageTags": [ + "O", + "Y" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rivibiddel", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 122, + "_copy": { + "name": "Deep Gnome (Svirfneblin)", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the gnome", + "with": "Rivibiddel", + "flags": "i" + } + } + }, + "speed": { + "walk": 15 + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Ruxithid the Chosen", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 99, + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item chain shirt|phb}" + ] + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 14, + "dex": 19, + "con": 12, + "int": 18, + "wis": 15, + "cha": 12, + "save": { + "int": "+7", + "wis": "+5" + }, + "skill": { + "insight": "+5", + "perception": "+5", + "stealth": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "psychic" + ], + "languages": [ + "Common", + "Goblin", + "telepathy 60 ft." + ], + "cr": "5", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "When Ruxithid fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Mental Fortitude", + "entries": [ + "Ruxithid has advantage on saving throws against the {@condition charmed} and {@condition frightened} conditions." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Ruxithid makes two Psi-Charged Scimitar attacks." + ] + }, + { + "name": "Psi-Charged Scimitar", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 7 ({@damage 2d6}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Brain Tendrils {@recharge 5}", + "entries": [ + "Ruxithid unleashes a flurry of crystalline psychic tendrils from his brain, targeting one creature that he can see within 30 feet of himself. The target must succeed on a {@dc 15} Dexterity saving throw or take 9 ({@damage 2d8}) psychic damage and have the {@condition stunned} condition until the start of Ruxithid's next turn." + ] + }, + { + "name": "Combat Command", + "entries": [ + "Ruxithid commands one allied creature he can see within 60 feet of himself to strike. The creature can immediately use its reaction to make one melee weapon attack against a target within its reach." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO", + "TP" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shalfi Lewin", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 174, + "_copy": { + "name": "Aberrant Zealot", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the zealot", + "with": "Shalfi", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Sildar Hallwinter", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 22, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|PHB}" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 10, + "con": 12, + "int": 10, + "wis": 11, + "cha": 10, + "save": { + "str": "+3", + "con": "+3" + }, + "skill": { + "perception": "+2" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Sildar makes two Longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "When an attacker Sildar can see would hit him with a melee attack, he can roll a {@dice d6} and add the number rolled to his AC against the triggering attack, provided he's wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "heavy crossbow|phb", + "longsword|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Varakkta", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 174, + "_copy": { + "name": "Githyanki Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the githyanki", + "with": "Varakkta", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Voalsh", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 194, + "_copy": { + "name": "Mind Flayer Clairvoyant", + "source": "PaBTSO", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mind flayer", + "with": "Voalsh", + "flags": "i" + } + } + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "conditionImmune": [ + "blinded", + "charmed", + "frightened", + "prone" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Yanthdel Henlifel", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 114, + "_copy": { + "name": "Drow Elite Warrior", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Yanthdel", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zeond", + "isNpc": true, + "isNamedCreature": true, + "source": "PaBTSO", + "page": 43, + "_copy": { + "name": "Quasit", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the quasit", + "with": "Zeond", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Adult Time Dragon", + "source": "MPP", + "page": 50, + "otherSources": [ + { + "source": "ToFW" + } + ], + "size": [ + "H" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 250, + "formula": "20d12 + 120" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 25, + "dex": 14, + "con": 23, + "int": 23, + "wis": 16, + "cha": 20, + "save": { + "dex": "+8", + "con": "+12", + "wis": "+9", + "cha": "+11" + }, + "skill": { + "arcana": "+12", + "history": "+18", + "perception": "+15", + "stealth": "+14" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 25, + "languages": [ + "all" + ], + "cr": { + "cr": "18", + "lair": "19" + }, + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 7 ({@damage 2d6}) force damage." + ] + }, + { + "name": "Time Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of shimmering light in a 60-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage, and it has the {@condition poisoned} condition. On a successful save, a creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on three of these saves." + ] + } + ], + "reactionHeader": [ + "The dragon can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Reactive Rend", + "entries": [ + "After using Legendary Resistance or in response to being hit by an attack roll, the dragon makes one Rend attack." + ] + }, + { + "name": "Slow Time", + "entries": [ + "Immediately after a creature the dragon can see ends its turn, the dragon targets a creature it can see within 60 feet of itself that is weakened by its Time Breath. Until the weakened effect ends on the target, its speed becomes 0, and its speed can't increase." + ] + }, + { + "name": "Time Slip", + "entries": [ + "The dragon halves the damage it takes from an attack made against it, provided it can see the attacker. The dragon can then immediately teleport, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "legendaryGroup": { + "name": "Time Dragon", + "source": "MPP" + }, + "dragonAge": "adult", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ancient Time Dragon", + "source": "MPP", + "page": 48, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "G" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 22, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 536, + "formula": "29d20 + 232" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 28, + "dex": 14, + "con": 26, + "int": 27, + "wis": 18, + "cha": 23, + "save": { + "dex": "+10", + "con": "+16", + "wis": "+12", + "cha": "+14" + }, + "skill": { + "arcana": "+16", + "history": "+24", + "perception": "+20", + "stealth": "+18" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 30, + "languages": [ + "all" + ], + "cr": { + "cr": "26", + "lair": "27" + }, + "trait": [ + { + "name": "Cycle of Rebirth", + "entries": [ + "If the dragon dies, its soul coalesces into a steely egg and teleports to a random plane of existence. The egg is immune to all damage and hatches into a time dragon wyrmling after {@dice 1d100} years. The dragon retains all memories and knowledge it gained in its previous life." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}22 ({@damage 3d8 + 9}) slashing damage plus 10 ({@damage 3d6}) force damage." + ] + }, + { + "name": "Time Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of shimmering light in a 90-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 24} Constitution saving throw. On a failed save, a creature takes 52 ({@damage 8d12}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage, it has the {@condition poisoned} condition, and other creatures have resistance to all damage it deals. On a successful save, the creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on three of these saves." + ] + }, + { + "name": "Time Gate (1/Day)", + "entries": [ + "The dragon conjures a 20-foot-diameter, circular portal in the space between its horns or in an unoccupied space it can see within 30 feet of itself. The portal links to a precise location on any plane of existence at a point in time up to 8,000 years from the present, whether past or future. The portal lasts for 24 hours or until the dragon's {@status concentration} ends (as if {@status concentration||concentrating} on a spell). The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is transported to the destination, appearing in the unoccupied space nearest to the portal. Deities and other planar rulers can prevent portals created by the dragon from opening in the rulers' presence or anywhere within their domains." + ] + } + ], + "reactionHeader": [ + "The dragon can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Reactive Rend", + "entries": [ + "After using Legendary Resistance or in response to being hit by an attack roll, the dragon makes one Rend attack." + ] + }, + { + "name": "Slow Time", + "entries": [ + "Immediately after a creature the dragon can see ends its turn, the dragon targets a creature it can see within 90 feet of itself that is weakened by its Time Breath. Until the weakened effect ends on the target, its speed becomes 0, and its speed can't increase." + ] + }, + { + "name": "Time Slip", + "entries": [ + "The dragon halves the damage it takes from an attack made against it, provided it can see the attacker. The dragon can then immediately teleport, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ] + } + ], + "legendaryGroup": { + "name": "Time Dragon", + "source": "MPP" + }, + "dragonAge": "ancient", + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Athar Null", + "source": "MPP", + "page": 53, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 16, + "con": 14, + "int": 15, + "wis": 14, + "cha": 10, + "save": { + "dex": "+6", + "wis": "+5" + }, + "skill": { + "investigation": "+8", + "perception": "+5", + "stealth": "+6" + }, + "passive": 15, + "languages": [ + "Common plus two more languages" + ], + "cr": "5", + "trait": [ + { + "name": "Avoidance", + "entries": [ + "If the null is subjected to an effect that allows it to make a saving throw to take half as much damage, it instead takes no damage if it succeeds on the saving throw, and half as much damage if it fails." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The null makes two Force Dagger attacks." + ] + }, + { + "name": "Force Dagger", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 13 ({@damage 3d8}) force damage. {@hom}The dagger magically returns to the null's hand immediately after a ranged attack." + ] + } + ], + "bonus": [ + { + "name": "Defier's Whim", + "entries": [ + "The null takes the Dash, Disengage, or Use an Object action." + ] + } + ], + "reaction": [ + { + "name": "Nullify Spell (3/Day)", + "entries": [ + "The null utters a magical word of cancelation to interrupt a creature it can see that is casting a spell. If the spell is 3rd level or lower, it fails and has no effect. If the spell is 4th level or higher, the null makes an Intelligence check ({@dc 10} + the spell's level). On a successful check, the spell fails and has no effect." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aurumach Rilmani", + "source": "MPP", + "page": 43, + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 285, + "formula": "30d10 + 120" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 20, + "dex": 21, + "con": 18, + "int": 21, + "wis": 18, + "cha": 16, + "save": { + "dex": "+11", + "int": "+11" + }, + "skill": { + "arcana": "+11", + "history": "+11", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "resist": [ + "psychic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The aurumach casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "daily": { + "1e": [ + "{@spell fly}", + "{@spell geas} (as an action)", + "{@spell slow}", + "{@spell suggestion}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The aurumach makes three Manifested Blade or Gleaming Ray attacks." + ] + }, + { + "name": "Manifested Blade", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}23 ({@damage 4d8 + 5}) force damage." + ] + }, + { + "name": "Gleaming Ray", + "entries": [ + "{@atk rs} {@hit 11} to hit, range 120 ft., one target. {@h}24 ({@damage 3d12 + 5}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Aura of Blades", + "entries": [ + "The aurumach manifests a spectral, golden aura of blades around itself. While this aura is manifested, each creature that starts its turn within 10 feet of the aurumach must make a {@dc 19} Dexterity saving throw, taking 16 ({@damage 3d10}) force damage on a failed save, or half as much damage on a successful one. The aura disappears after 1 minute, when the aurumach has the {@condition incapacitated} condition or dies, or when the aurumach uses a bonus action to end it." + ] + }, + { + "name": "Invoke Weakness {@recharge 5}", + "entries": [ + "The aurumach attempts to use its magic to weaken the defenses of a creature it can see within 120 feet of itself. The target must succeed on a {@dc 19} Wisdom saving throw or become cursed until the end of the aurumach's next turn. The next time the aurumach hits the cursed target with a Manifested Blade or Gleaming Ray attack, the target takes an extra 27 ({@damage 6d8}) force damage." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "CUR", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Avoral Guardinal", + "source": "MPP", + "page": 32, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 172, + "formula": "23d8 + 69" + }, + "speed": { + "walk": 30, + "fly": 50 + }, + "str": 16, + "dex": 19, + "con": 17, + "int": 16, + "wis": 16, + "cha": 18, + "save": { + "dex": "+8", + "cha": "+8" + }, + "skill": { + "perception": "+11", + "religion": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "resist": [ + "radiant" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Celestial", + "Common" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The avoral casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "daily": { + "1e": [ + "{@spell command}", + "{@spell hold person}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Dive Attack", + "entries": [ + "If the avoral is flying, dives at least 30 feet in a straight line toward a Medium or smaller creature, and ends within 5 feet of it, that creature must succeed on a {@dc 15} Strength saving throw or take 14 ({@damage 4d6}) piercing damage and have the {@condition prone} condition." + ] + }, + { + "name": "Flyby", + "entries": [ + "The avoral doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The avoral makes two Talon attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 13 ({@damage 2d12}) radiant damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE" + ], + "damageTags": [ + "P", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "paralyzed", + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Baernaloth", + "source": "MPP", + "page": 20, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 256, + "formula": "27d10 + 108" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 14, + "con": 18, + "int": 22, + "wis": 16, + "cha": 21, + "save": { + "con": "+10", + "wis": "+9" + }, + "skill": { + "arcana": "+12", + "insight": "+9", + "perception": "+9" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "fire", + "lightning", + "necrotic", + "psychic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The baernaloth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell detect thoughts}", + "{@spell phantasmal force}", + "{@spell suggestion}" + ], + "daily": { + "1e": [ + "{@spell cloudkill}", + "{@spell plane shift} (self only)", + "{@spell scrying} (as an action)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the baernaloth fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The baernaloth has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The baernaloth makes one Anguishing Bite attack and one Claw attack. It can also use Teleport." + ] + }, + { + "name": "Anguishing Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 10 ({@damage 3d6}) psychic damage. If the target is a creature, it can't regain hit points until the start of the baernaloth's next turn." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 17 ({@damage 5d6}) necrotic damage." + ] + }, + { + "name": "Miasma of Discord {@recharge 5}", + "entries": [ + "The baernaloth exhales gray vapors that coalesce at a point it can see within 120 feet of itself. The vapors fill a 20-foot-radius sphere centered on that point, then vanish. Each non-yugoloth creature in that area must make a {@dc 19} Wisdom saving throw. On a failed save, the creature takes 35 ({@damage 10d6}) psychic damage and has the {@condition charmed} condition until the end of its next turn. A creature {@condition charmed} in this way treats its allies as foes, and the colors of its body and equipment become shades of gray. On a successful save, the creature takes half as much damage only." + ] + }, + { + "name": "Summon Yugoloth (1/Day)", + "entries": [ + "The baernaloth has a 50 percent chance of summoning its choice of {@dice 1d4} mezzoloths, 1 arcanaloth, or 1 baernaloth (the mezzoloth and arcanaloth appear in the Monster Manual). A summoned yugoloth appears in an unoccupied space within 60 feet of the baernaloth, acts as an ally of the baernaloth, and can't summon other yugoloths. It remains for 1 minute, until it or the baernaloth dies, or until the baernaloth dismisses it as an action." + ] + }, + { + "name": "Teleport", + "entries": [ + "The baernaloth teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ] + } + ], + "reactionHeader": [ + "The baernaloth can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Afflict Despair", + "entries": [ + "When a creature that the baernaloth can see within 60 feet of itself hits with an attack roll or succeeds on a saving throw, the baernaloth forces the creature to reroll the {@dice d20} and use the new result." + ] + }, + { + "name": "Inescapable Pain", + "entries": [ + "When the baernaloth is damaged by another creature, that creature must make a {@dc 19} Constitution saving throw, taking 14 ({@damage 4d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendaryGroup": { + "name": "Baernaloth", + "source": "MPP" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "N", + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "I", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bariaur Wanderer", + "source": "MPP", + "page": 21, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 11, + "wis": 15, + "cha": 10, + "save": { + "str": "+6", + "dex": "+4" + }, + "skill": { + "athletics": "+6", + "perception": "+4", + "stealth": "+4", + "survival": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Celestial", + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The bariaur casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "will": [ + "{@spell dancing lights}", + "{@spell druidcraft}" + ], + "daily": { + "1e": [ + "{@spell goodberry}", + "{@spell pass without trace}", + "{@spell tongues}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Portal Sense", + "entries": [ + "The bariaur can sense the presence of portals within 30 feet of itself, including inactive portals, and instinctively knows the destination of each one. The bariaur knows the distance and direction to the last portal it used as long as they're on the same plane." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bariaur makes two Barbed Javelin or Shortbow attacks." + ] + }, + { + "name": "Barbed Javelin", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage. If the target is a creature, its speed is reduced by 10 feet until the start of the bariaur's next turn." + ] + }, + { + "name": "Ram", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the bariaur moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 10 ({@damage 3d6}) bludgeoning damage, and the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Shortbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 4 ({@damage 1d8}) piercing damage if the target doesn't have all its hit points." + ] + } + ], + "bonus": [ + { + "name": "Mighty Leap", + "entries": [ + "The bariaur jumps a distance up to its walking speed." + ] + } + ], + "attachedItems": [ + "shortbow|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bleak Cabal Void Soother", + "source": "MPP", + "page": 54, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 12, + "int": 12, + "wis": 15, + "cha": 10, + "save": { + "con": "+3", + "wis": "+4" + }, + "skill": { + "medicine": "+4" + }, + "passive": 12, + "languages": [ + "Common plus one more language" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The void soother casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell guidance}", + "{@spell light}" + ], + "daily": { + "1e": [ + "{@spell calm emotions}", + "{@spell lesser restoration}", + "{@spell remove curse}", + "{@spell protection from energy}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The void soother makes two Mace or Void Bolt attacks." + ] + }, + { + "name": "Mace", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) force damage." + ] + }, + { + "name": "Void Bolt", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 90 ft., one target. {@h}9 ({@damage 2d8}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Soothing Word (3/Day)", + "entries": [ + "The void soother speaks a magical word of mercy, healing one creature it can see within 60 feet of itself. The target regains 4 ({@dice 1d4 + 2}) hit points." + ] + } + ], + "attachedItems": [ + "mace|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cranium Rat Squeaker", + "source": "MPP", + "page": 22, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "T" + ], + "type": "aberration", + "alignment": [ + "U" + ], + "ac": [ + 12 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 30 + }, + "str": 2, + "dex": 14, + "con": 10, + "int": 4, + "wis": 11, + "cha": 8, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "languages": [ + "telepathy 30 ft. (emotions only)" + ], + "cr": "0", + "trait": [ + { + "name": "Shared Telepathy", + "entries": [ + "Any creature touching the cranium rat can use the rat's telepathy if the rat allows it. If the creature knows any language, the creature can use the telepathy to communicate words and emotions." + ] + }, + { + "name": "Telepathic Shroud", + "entries": [ + "The cranium rat is immune to any effect that would sense its emotions or read its thoughts, as well as to divination spells." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Illumination", + "entries": [ + "The cranium rat sheds dim light from its exposed brain in a 5-foot radius or extinguishes the light." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cranium Rat Squeaker Swarm", + "source": "MPP", + "page": 22, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "swarmSize": "T" + }, + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 76, + "formula": "17d8" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 10, + "int": 15, + "wis": 11, + "cha": 14, + "senses": [ + "darkvision 30 ft." + ], + "passive": 10, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "telepathy 30 ft." + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The swarm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell command} *", + "{@spell detect thoughts} *", + "{@spell sending} *" + ], + "daily": { + "1e": [ + "{@spell confusion} *", + "{@spell dominate monster} *" + ] + }, + "footerEntries": [ + "*To cast this spell, the swarm must have more than half its hit points remaining." + ], + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Psychic Messenger", + "entries": [ + "The swarm can use its {@spell sending} spell to target someone familiar to a creature in telepathic contact with the swarm." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ] + }, + { + "name": "Telepathic Shroud", + "entries": [ + "The swarm is immune to any effect that would sense its emotions or read its thoughts, as well as to divination spells." + ] + } + ], + "action": [ + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer, plus 22 ({@damage 5d8}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Illumination", + "entries": [ + "The swarm sheds dim light from its brains in a 5-foot radius, increases the illumination to bright light in a 5- to 20-foot radius and dim light for an additional number of feet equal to the chosen radius, or extinguishes the light." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Cuprilach Rilmani", + "source": "MPP", + "page": 44, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81" + }, + "speed": { + "walk": 40 + }, + "str": 12, + "dex": 20, + "con": 16, + "int": 16, + "wis": 15, + "cha": 14, + "save": { + "dex": "+9", + "cha": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "resist": [ + "psychic" + ], + "languages": [ + "telepathy 120 ft.", + "any four languages" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The cuprilach casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell disguise self}" + ], + "daily": { + "1e": [ + "{@spell alter self}", + "{@spell fog cloud}", + "{@spell silence}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The cuprilach makes three Burnished Blade or Bolt attacks." + ] + }, + { + "name": "Burnished Blade", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 13 ({@damage 2d12}) psychic damage." + ] + }, + { + "name": "Bolt", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 13 ({@damage 2d12}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Assassin's Agility", + "entries": [ + "The cuprilach takes the Dash or Disengage action, or it makes one Burnished Blade attack." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "The cuprilach halves the damage it takes from an attack that hits it, provided it can see the attacker." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "B", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflictSpell": [ + "deafened" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Dabus", + "source": "MPP", + "page": 23, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 20, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 8, + "dex": 14, + "con": 12, + "int": 16, + "wis": 15, + "cha": 14, + "save": { + "int": "+5", + "wis": "+4" + }, + "skill": { + "insight": "+4", + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "conditionImmune": [ + "exhaustion" + ], + "languages": [ + "understands all languages but can't speak; communicates via Symbol Speech" + ], + "cr": "2", + "trait": [ + { + "name": "Physical Restraint", + "entries": [ + "The dabus doesn't make melee attacks or opportunity attacks, even in self-defense." + ] + }, + { + "name": "Symbol Speech", + "entries": [ + "A dabus communicates by creating illusory symbols and pictures that float in the air in front of itself and disappear a few seconds later. A creature that can see such a message can decipher it with a successful {@dc 10} Intelligence ({@skill Investigation}) check (no action required)." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dabus makes two Flying Brick attacks." + ] + }, + { + "name": "Flying Brick", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 90 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ] + }, + { + "name": "Grasping Ground {@recharge}", + "entries": [ + "The dabus causes a 20-foot-square area of ground it can see within 60 feet of itself to sprout clutching appendages made of stone. Each creature of the dabus's choice in that area must succeed on a {@dc 13} Dexterity saving throw or take 9 ({@damage 2d8}) bludgeoning damage and have the {@condition grappled} condition (escape {@dc 13}). While {@condition grappled} in this way, the creature has the {@condition restrained} condition. The appendages vanish after 1 minute or if the dabus's {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "B" + ], + "conditionInflict": [ + "grappled" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Darkweaver", + "source": "MPP", + "page": 25, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46" + }, + "speed": { + "walk": 50, + "climb": 50 + }, + "str": 10, + "dex": 17, + "con": 14, + "int": 17, + "wis": 14, + "cha": 15, + "save": { + "dex": "+7", + "wis": "+6" + }, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "resist": [ + "cold" + ], + "immune": [ + "necrotic" + ], + "languages": [ + "Abyssal", + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "10", + "trait": [ + { + "name": "Shadowy Form", + "entries": [ + "While the darkweaver is in dim light or darkness, attack rolls against it are made with disadvantage unless the darkweaver has the {@condition incapacitated} condition." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The darkweaver can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "The darkweaver takes 10 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The darkweaver makes two Shadow Web attacks and one Bite attack. It can use Reel after any of these attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage plus 17 ({@damage 5d6}) necrotic damage, and if the target is a creature, the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ] + }, + { + "name": "Shadow Web", + "entries": [ + "{@atk rw} {@hit 7} to hit, reach 120 ft., one creature. {@h}16 ({@damage 3d10}) necrotic damage, and the target has the {@condition grappled} condition (escape {@dc 15}). The shadow web can be attacked and destroyed (AC 16; 20 hit points; vulnerability to radiant damage; immunity to bludgeoning, necrotic, poison, and psychic damage). The darkweaver can grapple up to six creatures at a time using its shadow web." + ] + }, + { + "name": "Reel", + "entries": [ + "The darkweaver pulls each creature it has {@condition grappled} up to 60 feet toward itself." + ] + } + ], + "legendaryGroup": { + "name": "Darkweaver", + "source": "MPP" + }, + "traitTags": [ + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "DS", + "TP" + ], + "damageTags": [ + "N", + "P", + "R" + ], + "miscTags": [ + "HPR", + "MW", + "RCH", + "RW" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Decaton Modron", + "source": "MPP", + "page": 36, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 144, + "formula": "17d10 + 51" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 18, + "dex": 12, + "con": 16, + "int": 15, + "wis": 15, + "cha": 11, + "save": { + "int": "+5", + "wis": "+5" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 18, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Modron", + "telepathy 120 ft." + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The decaton casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The decaton can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Combat Ready", + "entries": [ + "The decaton has advantage on initiative rolls." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the decaton dies, its body disintegrates into dust, leaving behind anything it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The decaton makes three Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the decaton can't use this tentacle against other targets. The decaton has ten tentacles, each of which can grapple one target." + ] + }, + { + "name": "Lightning Rays {@recharge}", + "entries": [ + "The decaton unleashes a barrage of lightning bolts from its eyes. Each creature within 30 feet of the decaton must make a {@dc 13} Dexterity saving throw, taking 38 ({@damage 7d10}) lightning damage on a failed save, or half as much damage on a successful save." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "L", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Doomguard Doom Lord", + "source": "MPP", + "page": 54, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81" + }, + "speed": { + "walk": 30 + }, + "str": 20, + "dex": 12, + "con": 16, + "int": 15, + "wis": 14, + "cha": 18, + "save": { + "str": "+9", + "con": "+7" + }, + "skill": { + "perception": "+6" + }, + "passive": 16, + "immune": [ + "necrotic" + ], + "languages": [ + "Common plus three more languages" + ], + "cr": "12", + "trait": [ + { + "name": "Aura of Doom", + "entries": [ + "Any creature that starts its turn within 10 feet of the doom lord must make a {@dc 16} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one. If the doom lord doesn't have the {@condition incapacitated} condition, it can suppress or resume this aura at the start of its turn (no action required)." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The doom lord deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The doom lord makes two Entropic Greatsword or Entropic Javelin attacks." + ] + }, + { + "name": "Entropic Greatsword", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 10 ({@damage 3d6}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash." + ] + }, + { + "name": "Entropic Javelin", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 14 ({@damage 4d6}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash." + ] + } + ], + "traitTags": [ + "Siege Monster" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Doomguard Rot Blade", + "source": "MPP", + "page": 56, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 16, + "int": 12, + "wis": 10, + "cha": 15, + "save": { + "str": "+7", + "con": "+6" + }, + "skill": { + "perception": "+3" + }, + "passive": 13, + "resist": [ + "necrotic" + ], + "languages": [ + "Common plus two more languages" + ], + "cr": "6", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The rot blade makes two Entropic Blade or Entropic Javelin attacks." + ] + }, + { + "name": "Entropic Blade", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage plus 7 ({@damage 2d6}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash. {@hom}The rot blade can cause the blade to emit a burst of entropic magic in a 10-foot-radius sphere centered on the weapon. Each creature in that area other than the rot blade must succeed on a {@dc 13} Constitution saving throw or take 6 ({@damage 1d12}) necrotic damage. The blade can emit entropic magic in this way only once per turn." + ] + }, + { + "name": "Entropic Javelin", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 13 ({@damage 2d12}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eater of Knowledge", + "source": "MPP", + "page": 29, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 18, + "wis": 16, + "cha": 15, + "save": { + "str": "+7", + "int": "+7" + }, + "skill": { + "arcana": "+7", + "perception": "+6" + }, + "passive": 16, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "telepathy 120 ft." + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The eater of knowledge casts one of the following spells, requiring no spell components and using Intelligence as its spellcasting ability (spell save {@dc 15}). It must have consumed the requisite number of brains to cast the spell, as indicated:" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only, 0 brains)", + "{@spell detect magic} (1 brain)", + "{@spell silent image} (2 brains)", + "{@spell invisibility} (3 brains)", + "{@spell hypnotic pattern} (4 brains)", + "{@spell major image} (5 brains)", + "{@spell telekinesis} (6 brains)", + "{@spell arcane eye} (7 brains)", + "{@spell mislead} (8 brains)", + "{@spell greater invisibility} (9 brains)", + "{@spell mass suggestion} (10 or more brains)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Brains Devoured", + "entries": [ + "When the eater of knowledge is first encountered, roll {@dice 1d10} to determine the number of brains it has already consumed." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The eater of knowledge has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The eater of knowledge makes two Slam attacks. If both attacks hit the same creature and the target is Large or smaller, it has the {@condition grappled} condition (escape {@dc 14}) and must succeed on a {@dc 15} Intelligence saving throw or have the {@condition stunned} condition until the grapple ends." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ] + }, + { + "name": "Extract Brain", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Humanoid with the {@condition incapacitated} condition. {@h}45 ({@damage 10d8}) piercing damage. If this damage reduces the target to 0 hit points, the eater of knowledge kills the target by extracting and consuming its brain." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP" + ], + "damageTags": [ + "B", + "P" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "deafened", + "incapacitated", + "invisible", + "restrained" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Equinal Guardinal", + "source": "MPP", + "page": 33, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33" + }, + "speed": { + "walk": 50 + }, + "str": 23, + "dex": 16, + "con": 17, + "int": 15, + "wis": 14, + "cha": 12, + "save": { + "str": "+9", + "con": "+6" + }, + "skill": { + "athletics": "+9", + "perception": "+5", + "religion": "+5" + }, + "passive": 15, + "resist": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Celestial", + "Common" + ], + "cr": "6", + "trait": [ + { + "name": "Headfirst Charge", + "entries": [ + "If the equinal moves at least 30 feet in a straight line toward a creature and ends within 5 feet of it, that creature must succeed on a {@dc 17} Strength saving throw or take 14 ({@damage 4d6}) bludgeoning damage and have the {@condition prone} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The equinal makes two Fist attacks." + ] + }, + { + "name": "Fist", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage plus 3 ({@damage 1d6}) radiant damage." + ] + }, + { + "name": "Rock", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 60/180 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Shout {@recharge}", + "entries": [ + "The equinal lets out a booming shout. Each creature within 30 feet of the equinal must succeed on a {@dc 14} Constitution saving throw or have the {@condition stunned} condition until the end of the equinal's next turn." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE" + ], + "damageTags": [ + "B", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Farastu Demodand", + "source": "MPP", + "page": 26, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 20, + "dex": 13, + "con": 16, + "int": 8, + "wis": 12, + "cha": 16, + "save": { + "dex": "+5", + "wis": "+5" + }, + "skill": { + "perception": "+9", + "stealth": "+5", + "survival": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "paralyzed", + "poisoned", + "restrained" + ], + "languages": [ + "Abyssal", + "Demodand", + "telepathy 120 ft." + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The farastu casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell invisibility} (self only)" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell fog cloud}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Boundless Movement", + "entries": [ + "The farastu ignores difficult terrain, and magical effects can't reduce its speed. It can spend 5 feet of movement to automatically remove the {@condition grappled} condition from itself." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The farastu has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The farastu can climb difficult surfaces, including upside down on ceilings, without an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The farastu makes two Claw attacks and one Bite attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}, with disadvantage). The farastu has two claws, each of which can grapple one creature." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit (with advantage against a creature the farastu is grappling), reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 24 ({@damage 7d6}) acid damage." + ] + }, + { + "name": "Summon Demodand (1/Day)", + "entries": [ + "The farastu has a 40 percent chance of summoning 1 farastu demodand. A summoned demodand appears in an unoccupied space within 60 feet of the farastu, acts as an ally of the farastu, and can't summon other demodands. It remains for 1 minute, until it or the farastu dies, or until the farastu dismisses it as an action." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "A", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fated Shaker", + "source": "MPP", + "page": 56, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 76, + "formula": "17d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 10, + "int": 15, + "wis": 16, + "cha": 15, + "save": { + "int": "+5", + "wis": "+6" + }, + "skill": { + "insight": "+6", + "investigation": "+5", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Common plus two more languages" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The shaker casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell mage armor}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell enlarge/reduce}", + "{@spell fly}", + "{@spell suggestion}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shaker makes two Golden Rod or Radiant Bolt attacks." + ] + }, + { + "name": "Golden Rod", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) radiant damage." + ] + }, + { + "name": "Radiant Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) radiant damage." + ] + } + ], + "bonus": [ + { + "name": "Commanding Words", + "entries": [ + "The shaker speaks magical words to order a creature it can see within 30 feet of itself. The target must succeed on a {@dc 14} Wisdom saving throw or be affected by one of the following effects (choose one or roll a {@dice d4}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-2: Grovel", + "entries": [ + "The target takes 14 ({@damage 4d6}) psychic damage, drops whatever it is holding, and has the {@condition prone} condition." + ] + }, + { + "type": "item", + "name": "3-4: Cower", + "entries": [ + "The target takes 10 ({@damage 3d6}) psychic damage and has the {@condition frightened} condition until the end of its next turn." + ] + } + ] + } + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "B", + "R", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened", + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ferrumach Rilmani", + "source": "MPP", + "page": 44, + "otherSources": [ + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 14, + "con": 18, + "int": 15, + "wis": 14, + "cha": 10, + "save": { + "str": "+8", + "con": "+8" + }, + "skill": { + "athletics": "+8", + "perception": "+6" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 16, + "resist": [ + "psychic" + ], + "languages": [ + "telepathy 120 ft.", + "any two languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The ferrumach casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell detect magic}" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell ice storm}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Bladed Edges", + "entries": [ + "A creature takes 10 ({@damage 3d6}) slashing damage if it starts its turn grappling or being {@condition grappled} by the ferrumach." + ] + }, + { + "name": "Skewering Charge", + "entries": [ + "If the ferrumach moves at least 20 feet in a straight line toward a Large or smaller creature and ends within 5 feet of it, that creature must succeed on a {@dc 16} Strength saving throw or have the {@condition grappled} condition (escape {@dc 18}) and take 10 ({@damage 3d6}) piercing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The ferrumach makes three Sharpened Limb or Bolt attacks." + ] + }, + { + "name": "Sharpened Limb", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage plus 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Bolt", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 11 ({@damage 2d10}) psychic damage." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "X" + ], + "damageTags": [ + "P", + "S", + "Y" + ], + "damageTagsSpell": [ + "B", + "C" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fraternity of Order Law Bender", + "source": "MPP", + "page": 57, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 137, + "formula": "25d8 + 25" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 15, + "con": 12, + "int": 19, + "wis": 16, + "cha": 14, + "save": { + "con": "+5", + "wis": "+7" + }, + "skill": { + "insight": "+7", + "perception": "+7" + }, + "passive": 17, + "languages": [ + "Common plus three more languages" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The law bender casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "will": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The law bender makes three Arcane Burst attacks and uses Power of Authority or Spellcasting." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 8} to hit, reach 5 ft. or range 90 ft., one target. {@h}17 ({@damage 2d12 + 4}) force damage." + ] + }, + { + "name": "Power of Authority", + "entries": [ + "The law bender targets a creature it can see within 60 feet of itself. The target must succeed on a {@dc 16} Intelligence saving throw or take 10 ({@damage 3d6}) psychic damage and have the {@condition incapacitated} condition for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the {@condition incapacitated} condition on itself on a success. A target that succeeds on the saving throw becomes immune to this law bender's Power of Authority for 24 hours." + ] + } + ], + "bonus": [ + { + "name": "Spatial Loophole", + "entries": [ + "The law bender teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ] + } + ], + "reaction": [ + { + "name": "Probability Loophole (3/Day)", + "entries": [ + "When the law bender or a creature it can see makes an attack roll, a saving throw, or an ability check, the law bender can cause the roll to be made with advantage or disadvantage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Futurist", + "source": "MPP", + "page": 30, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "psychic defense" + ] + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46" + }, + "speed": { + "walk": 40 + }, + "str": 14, + "dex": 17, + "con": 15, + "int": 17, + "wis": 17, + "cha": 13, + "save": { + "str": "+6", + "dex": "+7", + "int": "+7", + "wis": "+7" + }, + "skill": { + "arcana": "+7", + "insight": "+7", + "perception": "+7" + }, + "senses": [ + "truesight 30 ft." + ], + "passive": 17, + "languages": [ + "Common", + "Gith" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell dispel magic}", + "{@spell levitate} (self only)", + "{@spell mage hand} (the hand is invisible)", + "{@spell see invisibility}" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only)", + "{@spell scrying} (as an action)", + "{@spell slow}", + "{@spell telekinesis}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes three Unarmed Strike or Psychic Bolt attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage plus 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Psychic Bolt", + "entries": [ + "{@atk rs} {@hit 7} to hit, range 60 ft., one creature. {@h}21 ({@damage 4d8 + 3}) psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Future Insight (3/Day)", + "entries": [ + "When the githzerai or a creature it can see makes an attack roll, a saving throw, or an ability check, the githzerai can cause the roll to be made with advantage or disadvantage." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Traveler", + "source": "MPP", + "page": 31, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 15, + "from": [ + "psychic defense" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 15, + "con": 12, + "int": 14, + "wis": 16, + "cha": 10, + "save": { + "str": "+3", + "dex": "+4", + "int": "+4", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "survival": "+5" + }, + "passive": 15, + "languages": [ + "Common", + "Gith" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)" + ], + "daily": { + "1e": [ + "{@spell jump}", + "{@spell plane shift} (self only)", + "{@spell see invisibility}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes three Unarmed Strike attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage plus 4 ({@damage 1d8}) psychic damage." + ] + } + ], + "bonus": [ + { + "name": "Matter Manipulation {@recharge 4}", + "entries": [ + "The githzerai manipulates the energy of the plane of existence it's on to produce one of the following effects (choose one or roll a {@dice d6}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-2: Astral Step", + "entries": [ + "The githzerai can teleport, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. In addition, its walking speed increases to 40 feet until the start of its next turn." + ] + }, + { + "type": "item", + "name": "3-4: Growth", + "entries": [ + "Flowers and vines grow around the githzerai until the start of its next turn, then vanish; the ground within 15 feet of the githzerai is difficult terrain for other creatures while the flowers and vines are present." + ] + }, + { + "type": "item", + "name": "5-6: Retaliating Light", + "entries": [ + "Multicolored lights surround the githzerai until the start of its next turn. For the effect's duration, whenever a creature within 5 feet of the githzerai hits it with a melee attack roll, that creature takes 3 ({@damage 1d6}) force damage, as magic lashes out in retribution." + ] + } + ] + } + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GTH" + ], + "damageTags": [ + "B", + "O", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Githzerai Uniter", + "source": "MPP", + "page": 31, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "aberration", + "tags": [ + "gith" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "psychic defense" + ] + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38" + }, + "speed": { + "walk": 40 + }, + "str": 13, + "dex": 17, + "con": 15, + "int": 15, + "wis": 17, + "cha": 16, + "save": { + "str": "+4", + "dex": "+6", + "int": "+5", + "wis": "+6" + }, + "skill": { + "insight": "+6", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Common", + "Gith" + ], + "cr": "7", + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "type": "spellcasting", + "headerEntries": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell see invisibility}" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only)", + "{@spell telekinesis}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Psychic Defense", + "entries": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The githzerai makes three Unarmed Strike or Psychic Bolt attacks. It can replace any of these attacks with one use of its Pacifying Touch." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Psychic Bolt", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}17 ({@damage 5d6}) psychic damage." + ] + }, + { + "name": "Pacifying Touch", + "entries": [ + "The githzerai touches one creature it can see within 5 feet of itself. The target must succeed on a {@dc 14} Intelligence saving throw, or the githzerai chooses an action for that target: Attack, Cast a Spell, or Dash. The affected target can't take that action for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a successful save. A target that succeeds on the saving throw becomes immune to this githzerai's Pacifying Touch for 24 hours." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GTH" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForced": [ + "intelligence" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hands of Havoc Fire Starter", + "source": "MPP", + "page": 58, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 14, + "int": 10, + "wis": 16, + "cha": 11, + "save": { + "str": "+5", + "con": "+4" + }, + "passive": 13, + "resist": [ + "fire" + ], + "languages": [ + "Common plus one more language" + ], + "cr": "4", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The fire starter makes two Havoc Hammer or Havoc Flask attacks." + ] + }, + { + "name": "Havoc Hammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) fire damage. If the target is a creature, magical flames cling to it, causing it to take 3 ({@damage 1d6}) fire damage at the start of each of its turns. Immediately after taking this damage on its turn, the target can make a {@dc 13} Dexterity saving throw, ending the effect on itself on a successful save." + ] + }, + { + "name": "Havoc Flask", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}13 ({@damage 2d12}) fire damage. If the target is a creature, magical flames cling to it, causing it to take 3 ({@damage 1d6}) fire damage at the start of each of its turns. Immediately after taking this damage on its turn, the target can make a {@dc 13} Dexterity saving throw, ending the effect on itself on a successful save.", + "After the fire starter throws the flask, roll a {@dice d6}; on a 3 or lower, the fire starter has no more flasks to throw." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "MW", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Harmonium Captain", + "source": "MPP", + "page": 58, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 10, + "con": 14, + "int": 12, + "wis": 16, + "cha": 16, + "save": { + "str": "+7", + "wis": "+6" + }, + "skill": { + "perception": "+6" + }, + "passive": 16, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common plus one more language" + ], + "cr": "8", + "trait": [ + { + "name": "Aura of Command", + "entries": [ + "Allies within 30 feet of the captain are immune to the {@condition charmed} and {@condition frightened} conditions. This aura is suppressed while the captain has the {@condition incapacitated} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The captain makes three Harmonium Blade attacks. The captain can also use Dictate if available." + ] + }, + { + "name": "Harmonium Blade", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 10 ({@damage 3d6}) lightning damage." + ] + }, + { + "name": "Dictate {@recharge 5}", + "entries": [ + "The captain verbally commands up to three creatures it can see within 60 feet of itself. This magical command must be to undertake an action or to refrain from taking actions (for example, \"Throw down your weapons\").", + "A target must succeed on a {@dc 14} Wisdom saving throw or have the {@condition charmed} condition for 1 minute, during which time it follows the captain's command. The effect ends early if the target takes damage or if it successfully completes the command. A target automatically succeeds on its saving throw if the command is directly harmful to itself, such as commanding it to walk into fire.", + "A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Harmonium Peacekeeper", + "source": "MPP", + "page": 59, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 14, + "int": 12, + "wis": 14, + "cha": 11, + "skill": { + "perception": "+4" + }, + "passive": 14, + "languages": [ + "Common plus one more language" + ], + "cr": "3", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The peacekeeper has advantage on an attack roll against a creature if at least one of the peacekeeper's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ] + } + ], + "action": [ + { + "name": "Electrified Mancatcher", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 4 ({@damage 1d8}) lightning damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 13}). Until the {@condition grappled} condition ends, the target has the {@condition restrained} condition and can't teleport, the peacekeeper can't make Electrified Mancatcher attacks, and the target takes 8 ({@damage 1d10 + 3}) lightning damage at the start of each of its turns." + ] + } + ], + "traitTags": [ + "Pack Tactics" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Heralds of Dust Remnant", + "source": "MPP", + "page": 59, + "otherSources": [ + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 15, + "int": 17, + "wis": 14, + "cha": 11, + "skill": { + "arcana": "+5", + "perception": "+4", + "stealth": "+6" + }, + "passive": 14, + "resist": [ + "necrotic" + ], + "languages": [ + "Common plus three more languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The remnant casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell bane}", + "{@spell dimension door}", + "{@spell web}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The remnant makes two Necrotic Surge attacks." + ] + }, + { + "name": "Necrotic Surge", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Phase (2/Day)", + "entries": [ + "The remnant becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the remnant has resistance to bludgeoning, piercing, and slashing damage." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N" + ], + "damageTagsSpell": [ + "F", + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hexton Modron", + "source": "MPP", + "page": 37, + "otherSources": [ + { + "source": "ToFW" + } + ], + "size": [ + "H" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 209, + "formula": "22d12 + 66" + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 19, + "dex": 16, + "con": 17, + "int": 19, + "wis": 17, + "cha": 15, + "save": { + "int": "+9", + "wis": "+8" + }, + "skill": { + "perception": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "lightning", + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hexton casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The hexton can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Combat Ready", + "entries": [ + "The hexton has advantage on initiative rolls." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the hexton dies, its body disintegrates into dust, leaving behind anything it was carrying." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the hexton fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hexton makes one Pincer attack and two Tentacle attacks." + ] + }, + { + "name": "Pincer", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) force damage. If the target is a creature, it must succeed on a {@dc 17} Constitution saving throw or have the {@condition incapacitated} condition until the end of its next turn." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the hexton can't use this tentacle against other targets. The hexton has six tentacles, each of which can grapple one target." + ] + } + ], + "reactionHeader": [ + "The hexton can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Counter Magic", + "entries": [ + "The hexton attempts to interrupt a creature it can see that is casting a spell. If the spell is 3rd level or lower, it fails and has no effect. If the spell is 4th level or higher, the hexton makes an Intelligence check ({@dc 10} + the spell's level). On a success, the spell fails and has no effect." + ] + }, + { + "name": "Lightning Rebuke", + "entries": [ + "When a creature within 120 feet of the hexton damages it, the hexton magically retaliates with an arc of lightning. The creature must make a {@dc 17} Dexterity saving throw, taking 11 ({@damage 2d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "L", + "O", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hound Archon", + "source": "MPP", + "page": 16, + "otherSources": [ + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 12, + "con": 15, + "int": 11, + "wis": 14, + "cha": 15, + "save": { + "int": "+2", + "wis": "+4" + }, + "skill": { + "insight": "+4", + "perception": "+6", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "exhaustion", + "paralyzed" + ], + "languages": [ + "all" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell detect evil and good}" + ], + "daily": { + "1e": [ + "{@spell aid}", + "{@spell continual flame}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aura of Menace", + "entries": [ + "As long as the archon doesn't have the {@condition incapacitated} condition, each creature of the archon's choice that starts its turn within 20 feet of the archon must make a {@dc 12} Wisdom saving throw. On a failed save, the creature has the {@condition frightened} condition until the start of its next turn. On a successful save, the creature is immune to all archons' Aura of Menace for 24 hours." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archon makes two Bite attacks. It can replace one of the attacks with a Shining Blade attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Shining Blade (True Form Only)", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) radiant damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "The archon teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The archon magically transforms into any Medium or Large dog or wolf while retaining its game statistics (other than its size and losing its Shining Blade attack). The archon reverts to its true form if reduced to 0 hit points or if it uses a bonus action to do so." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger", + "Teleport" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "P", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kelubar Demodand", + "source": "MPP", + "page": 27, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 22, + "dex": 13, + "con": 18, + "int": 14, + "wis": 15, + "cha": 18, + "save": { + "dex": "+6", + "wis": "+7" + }, + "skill": { + "insight": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "paralyzed", + "poisoned", + "restrained" + ], + "languages": [ + "Abyssal", + "Demodand", + "telepathy 120 ft." + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The kelubar casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell invisibility} (self only)" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell scrying} (as an action)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Acidic Secretions", + "entries": [ + "A creature that touches the kelubar or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 2d4}) acid damage." + ] + }, + { + "name": "Boundless Movement", + "entries": [ + "The kelubar ignores difficult terrain, and magical effects can't reduce its speed. It can spend 5 feet of movement to automatically remove the {@condition grappled} condition from itself." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The kelubar has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kelubar makes two Bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage plus 18 ({@damage 4d8}) acid damage." + ] + }, + { + "name": "Spit Acid", + "entries": [ + "The kelubar spits acid in a line 60 feet long and 5 feet wide. Each creature in that area must make a {@dc 17} Dexterity saving throw, taking 27 ({@damage 6d8}) acid damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Summon Demodand (1/Day)", + "entries": [ + "The kelubar has a 40 percent chance of summoning its choice of {@dice 1d2} farastu demodands or 1 kelubar demodand. A summoned demodand appears in an unoccupied space within 60 feet of the kelubar, acts as an ally of the kelubar, and can't summon other demodands. It remains for 1 minute, until it or the kelubar dies, or until the kelubar dismisses it as an action." + ] + } + ], + "bonus": [ + { + "name": "Nauseating Fog {@recharge}", + "entries": [ + "The kelubar magically creates a cloud of greenish fog that fills a 20-foot-radius sphere centered on a point within 120 feet of itself. The cloud remains for 1 minute or until the kelubar uses this bonus action again. The cloud is heavily obscured and difficult terrain. Any creature that starts its turn in the cloud or enters the cloud for the first time on a turn must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition until the end of its next turn." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "A", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kolyarut", + "source": "MPP", + "page": 34, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "construct", + "tags": [ + "inevitable" + ] + }, + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 297, + "formula": "35d8 + 140" + }, + "speed": { + "walk": 50, + "fly": { + "number": 35, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 25, + "dex": 12, + "con": 19, + "int": 25, + "wis": 22, + "cha": 18, + "save": { + "int": "+13", + "wis": "+12", + "cha": "+10" + }, + "skill": { + "history": "+13", + "insight": "+12", + "perception": "+12" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 22, + "resist": [ + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "all" + ], + "cr": "20", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The kolyarut is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the kolyarut fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The kolyarut has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kolyarut makes four Unerring Blade attacks." + ] + }, + { + "name": "Unerring Blade", + "entries": [ + "{@atk mw} automatic hit, reach 5 ft., one target. {@h}24 force damage plus one of the following effects (choose one or roll a {@dice d6}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-2: Disarm", + "entries": [ + "The target drops one item it is holding of the kolyarut's choice." + ] + }, + { + "type": "item", + "name": "3-4: Imbalance", + "entries": [ + "The target can't take reactions until the start of the kolyarut's next turn." + ] + }, + { + "type": "item", + "name": "5-6: Push", + "entries": [ + "If the target is Large or smaller, the target is pushed up to 15 feet away from the kolyarut." + ] + } + ] + } + ] + }, + { + "name": "Edict of Blades {@recharge 5}", + "entries": [ + "The kolyarut moves up to its speed without provoking opportunity attacks and can make one Unerring Blade attack against each creature it moves past. Whenever it hits a creature with an Unerring Blade attack during this movement, each spell of 5th level or lower on the creature ends, and the creature has the {@condition incapacitated} condition until the end of the kolyarut's next turn." + ] + }, + { + "name": "Plane Shift (3/Day)", + "entries": [ + "The kolyarut casts {@spell plane shift}, requiring no material components and using Intelligence as the spellcasting ability. The kolyarut can cast the spell normally, or it can cast the spell on an unwilling creature it can see within 60 feet of itself. If it uses the latter option, the targeted creature must succeed on a {@dc 18} Charisma saving throw or be sent to a teleportation circle in the Hall of Concordance in Sigil." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The kolyarut adds 6 to its AC against one attack roll that would hit it. To do so, the kolyarut must see the attacker and be wielding a melee weapon." + ] + } + ], + "traitTags": [ + "Immutable Form", + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Lantern Archon", + "source": "MPP", + "page": 17, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 1, + "dex": 16, + "con": 12, + "int": 6, + "wis": 12, + "cha": 13, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "radiant" + ], + "conditionImmune": [ + "exhaustion", + "grappled", + "paralyzed", + "prone", + "restrained" + ], + "languages": [ + "all" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell detect evil and good}" + ], + "daily": { + "1": [ + "{@spell aid}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aura of Menace", + "entries": [ + "As long as the archon doesn't have the {@condition incapacitated} condition, each creature of the archon's choice that starts its turn within 20 feet of the archon must make a {@dc 11} Wisdom saving throw. On a failed save, the creature has the {@condition frightened} condition until the start of its next turn. On a successful save, the creature is immune to all archons' Aura of Menace for 24 hours." + ] + }, + { + "name": "Illumination", + "entries": [ + "The archon sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "The archon can move through creatures and objects as if they were difficult terrain. If it ends its turn inside an object, it takes 5 ({@damage 1d10}) force damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archon makes two Radiant Strike attacks. It can replace one attack with a use of Teleport." + ] + }, + { + "name": "Radiant Strike", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}6 ({@damage 1d6 + 3}) radiant damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "The archon teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself." + ] + } + ], + "bonus": [ + { + "name": "Shift Radiance", + "entries": [ + "The archon reduces its Illumination to shed only dim light in a 5-foot radius, or it returns the light to full intensity." + ] + } + ], + "traitTags": [ + "Illumination", + "Incorporeal Movement" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maelephant", + "source": "MPP", + "page": 35, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item half plate armor|PHB}" + ] + } + ], + "hp": { + "average": 161, + "formula": "17d10 + 68" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 10, + "con": 18, + "int": 10, + "wis": 16, + "cha": 12, + "save": { + "str": "+8", + "con": "+8" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "acid", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "frightened", + "poisoned" + ], + "languages": [ + "Infernal" + ], + "cr": "10", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The maelephant has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The maelephant makes one Barbed Trunk attack and two Glaive attacks." + ] + }, + { + "name": "Barbed Trunk", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 13 ({@damage 2d12}) poison damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the target has the {@condition restrained} condition. While it is grappling a creature, the maelephant can't use its barbed trunk to attack other creatures." + ] + }, + { + "name": "Glaive", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage." + ] + }, + { + "name": "Mind Poison {@recharge 5}", + "entries": [ + "The maelephant expels poisonous gas from its trunk in a 60-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 39 ({@damage 6d12}) poison damage and has the {@condition poisoned} condition. While {@condition poisoned} in this way, the creature loses all weapon and skill proficiencies, it can't cast spells, it can't understand language, and it has disadvantage on Intelligence saving throws. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, the target takes half as much damage only and is immune to this maelephant's Mind Poison for 24 hours." + ] + } + ], + "attachedItems": [ + "glaive|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "I" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mercykiller Bloodhound", + "source": "MPP", + "page": 60, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 17, + "dex": 12, + "con": 16, + "int": 12, + "wis": 15, + "cha": 8, + "skill": { + "perception": "+8", + "survival": "+8" + }, + "passive": 18, + "languages": [ + "Common plus one more language" + ], + "cr": "7", + "trait": [ + { + "name": "Portal Sense", + "entries": [ + "The bloodhound can sense the presence of portals within 30 feet of itself, including inactive portals, and instinctively knows the destination of each portal." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bloodhound makes three Clawed Gauntlet attacks." + ] + }, + { + "name": "Clawed Gauntlet", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Marked for Pursuit (3/Day)", + "entries": [ + "The bloodhound attempts to place a magical mark on a creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Charisma saving throw or become cursed for 24 hours. A creature missing any of its hit points has disadvantage on this saving throw. While cursed in this way, the bloodhound can sense the direction and distance to the target as long as the two are on the same plane of existence. If the target isn't on the same plane, the bloodhound knows what plane the target is on." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "CUR", + "MW" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mind's Eye Matter Smith", + "source": "MPP", + "page": 60, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 14, + "int": 14, + "wis": 14, + "cha": 16, + "save": { + "int": "+4", + "cha": "+5" + }, + "skill": { + "investigation": "+4", + "perception": "+6" + }, + "passive": 16, + "languages": [ + "Common plus two more languages" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The matter smith casts one of the following spells, using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell create food and water}", + "{@spell fabricate} (as an action)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The matter smith makes two Manifested Force attacks." + ] + }, + { + "name": "Manifested Force", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}10 ({@damage 2d6 + 3}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Planar Smithing", + "entries": [ + "The matter smith magically manipulates the energy of the plane of existence it's on to produce one of the following effects (choose one or roll a {@dice d4}):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-2: Chains", + "entries": [ + "The matter smith creates spectral bindings around a creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Dexterity saving throw or have the {@condition restrained} condition until the end of its next turn." + ] + }, + { + "type": "item", + "name": "3-4: Magic Shield", + "entries": [ + "The matter smith conjures a floating, spectral shield that grants the matter smith a +5 bonus to its AC until the shield disappears at the start of the matter smith's next turn. The first time a creature misses a melee attack roll against the matter smith while the shield is conjured, that creature takes 7 ({@damage 2d6}) force damage." + ] + } + ] + } + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Musteval Guardinal", + "source": "MPP", + "page": 33, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S" + ], + "type": "celestial", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 38, + "formula": "11d6" + }, + "speed": { + "walk": 35 + }, + "str": 12, + "dex": 16, + "con": 11, + "int": 14, + "wis": 15, + "cha": 14, + "save": { + "dex": "+5", + "cha": "+4" + }, + "skill": { + "perception": "+6", + "stealth": "+7" + }, + "passive": 16, + "resist": [ + "radiant" + ], + "conditionImmune": [ + "frightened" + ], + "languages": [ + "Celestial", + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The musteval casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell disguise self}", + "{@spell invisibility}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The musteval makes two Bone Blade attacks." + ] + }, + { + "name": "Bone Blade", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 3 ({@damage 1d6}) radiant damage." + ] + } + ], + "reaction": [ + { + "name": "Skirmish Movement", + "entries": [ + "When a creature ends its turn within 5 feet of the musteval, the musteval can move up to half its speed. This movement doesn't provoke opportunity attacks." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CE" + ], + "damageTags": [ + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "invisible" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nonaton Modron", + "source": "MPP", + "page": 38, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "19d10 + 57" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 18, + "dex": 13, + "con": 16, + "int": 16, + "wis": 16, + "cha": 13, + "save": { + "int": "+7", + "wis": "+7" + }, + "skill": { + "investigation": "+7", + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "languages": [ + "Modron", + "telepathy 120 ft." + ], + "cr": "10", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The nonaton casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The nonaton can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Combat Ready", + "entries": [ + "The nonaton has advantage on initiative rolls." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the nonaton dies, its body disintegrates into dust, leaving behind anything it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nonaton makes three Arm attacks and uses Pillar of Truth or Spellcasting." + ] + }, + { + "name": "Arm", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the nonaton can't use this arm against other targets. The nonaton has nine arms, each of which can grapple one target." + ] + }, + { + "name": "Pillar of Truth", + "entries": [ + "The nonaton chooses a point on the ground that it can see within 60 feet of itself. A 60-foot-tall, 20-foot-radius cylinder of magical force rises from that point. Each creature in that area must make a {@dc 15} Dexterity saving throw. On a failed save, a creature takes 21 ({@damage 6d6}) force damage, and the creature reverts to its original form (if it's in a different form) and can't assume a different form until the end of its next turn. On a successful save, a creature takes half as much damage only." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "O", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Octon Modron", + "source": "MPP", + "page": 40, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "22d10 + 66" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "swim": 30, + "canHover": true + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 18, + "dex": 14, + "con": 17, + "int": 17, + "wis": 16, + "cha": 14, + "save": { + "int": "+7", + "wis": "+7" + }, + "skill": { + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "psychic" + ], + "languages": [ + "Modron", + "telepathy 120 ft." + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The octon casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The octon can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Combat Ready", + "entries": [ + "The octon has advantage on initiative checks." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the octon dies, its body disintegrates into dust, leaving behind anything it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The octon makes three Tentacle attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 9 ({@damage 2d8}) lightning damage." + ] + }, + { + "name": "Whirlwind of Tentacles {@recharge 5}", + "entries": [ + "The octon rapidly extends and spins its ring of tentacles. Each creature within 20 feet of the octon must succeed on a {@dc 16} Strength saving throw or be pulled up to 10 feet in a straight line toward the octon. Then, the octon makes two Tentacle attacks against each creature within 10 feet of itself." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "OTH", + "TP" + ], + "damageTags": [ + "B", + "L" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Planar Incarnate", + "source": "MPP", + "page": 41, + "size": [ + "G" + ], + "type": { + "type": { + "choose": [ + "celestial", + "fiend" + ] + } + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 333, + "formula": "18d20 + 144" + }, + "speed": { + "walk": 40, + "fly": 40 + }, + "str": 27, + "dex": 10, + "con": 26, + "int": 15, + "wis": 20, + "cha": 20, + "skill": { + "perception": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 22, + "immune": [ + "necrotic", + "poison", + "radiant", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "restrained", + "stunned", + "unconscious" + ], + "languages": [ + "all" + ], + "cr": "22", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the incarnate fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The incarnate has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Planar Form", + "entries": [ + "An incarnate on the Upper Planes is a Celestial. An incarnate on the Lower Planes is a Fiend." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The incarnate deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The incarnate makes two Slam or Energy Bolt attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}27 ({@damage 3d12 + 8}) force damage." + ] + }, + { + "name": "Energy Bolt", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}32 ({@damage 5d12}) necrotic damage if the incarnate is a Fiend or radiant damage if the incarnate is a Celestial." + ] + }, + { + "name": "Planar Exhalation {@recharge 5}", + "entries": [ + "The incarnate exhales concentrated energy native to its plane in a 60-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 52 ({@damage 8d12}) necrotic damage if the incarnate is a Fiend or radiant damage if the incarnate is a Celestial, and the creature has the {@condition blinded} condition until the end of the incarnate's next turn. On a successful save, a creature takes half as much damage only." + ] + } + ], + "reactionHeader": [ + "The incarnate can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Searing Gaze", + "entries": [ + "In response to being hit by an attack roll, the incarnate turns its magical gaze toward one creature it can see within 120 feet of itself and commands it to combust. The target must succeed on a {@dc 20} Wisdom saving throw or take 16 ({@damage 3d10}) fire damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "Immediately after a creature the incarnate sees ends its turn, the incarnate teleports up to 60 feet to an unoccupied space it can see." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "F", + "N", + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Razorvine Blight", + "source": "MPP", + "page": 42, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 10, + "dex": 15, + "con": 13, + "int": 5, + "wis": 10, + "cha": 3, + "skill": { + "stealth": "+4" + }, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the blight is motionless at the start of combat, it has advantage on its initiative roll. If a creature hasn't observed the blight move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the blight is animate." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The blight can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blight makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit (with advantage if the target is missing any of its hit points), reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Life-Draining Vines {@recharge}", + "entries": [ + "Snaking vines erupt from the blight. Each creature within 10 feet of it must make a {@dc 12} Dexterity saving throw, taking 9 ({@damage 2d8}) slashing damage on failed save, or half as much damage on a successful one. If at least one of the creatures that failed this save isn't a Construct or an Undead, the blight regains 9 hit points." + ] + } + ], + "traitTags": [ + "False Appearance", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Septon Modron", + "source": "MPP", + "page": 40, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 204, + "formula": "24d10 + 72" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "swim": 30, + "canHover": true + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 18, + "dex": 15, + "con": 17, + "int": 18, + "wis": 16, + "cha": 14, + "save": { + "int": "+8", + "wis": "+7" + }, + "skill": { + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "lightning", + "psychic" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The septon casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "daily": { + "1e": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}", + "{@spell sending}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Axiomatic Mind", + "entries": [ + "The septon can't be compelled to act in a manner contrary to its nature or its instructions." + ] + }, + { + "name": "Combat Ready", + "entries": [ + "The septon has advantage on initiative checks." + ] + }, + { + "name": "Disintegration", + "entries": [ + "If the septon dies, its body disintegrates into dust, leaving behind anything it was carrying." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The septon makes four Tentacle attacks and uses Lightning Network or Spellcasting." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the septon can't use this tentacle against other targets. The septon has seven tentacles, each of which can grapple one target." + ] + }, + { + "name": "Lightning Network", + "entries": [ + "The septon conjures a field of electricity that fills a 30-foot cube originating from itself before dissipating. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) lightning damage and has the {@condition stunned} condition for 1 minute. On a successful save, a creature takes half as much damage only. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "L", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shator Demodand", + "source": "MPP", + "page": 28, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 195, + "formula": "23d10 + 69" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 24, + "dex": 15, + "con": 17, + "int": 21, + "wis": 16, + "cha": 20, + "save": { + "dex": "+7", + "wis": "+8" + }, + "skill": { + "perception": "+13", + "stealth": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "paralyzed", + "poisoned", + "restrained" + ], + "languages": [ + "Abyssal", + "Common", + "Demodand", + "Infernal", + "telepathy 120 ft." + ], + "cr": "16", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The shator casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}, {@hit 10} to hit with spell attacks):" + ], + "will": [ + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "daily": { + "1e": [ + "{@spell dispel magic}", + "{@spell plane shift} (to Carceri only)", + "{@spell scrying} (as an action)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Boundless Movement", + "entries": [ + "The shator ignores difficult terrain, and magical effects can't reduce its speed. It can spend 5 feet of movement to automatically remove the {@condition grappled} condition from itself." + ] + }, + { + "name": "Jailer (1/Day)", + "entries": [ + "The shator can cast the {@spell imprisonment} spell, requiring no material components and using Intelligence as the spellcasting ability (chaining effect only; spell save {@dc 18})." + ] + }, + { + "name": "Liquefaction Ritual", + "entries": [ + "The shator can perform a 1-minute ritual that turns all willing farastus and kelubars of its choice within 60 feet of itself into a living liquid form. Each liquefied demodand becomes enough liquid to fill a flask. A demodand's liquefaction lasts until a shator uses an action to end it or a creature opens a container holding the liquid. While liquefied in this way, a demodand has the {@condition paralyzed} condition despite any immunity to that condition, it has immunity to all damage, and any curse affecting it is suspended." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The shator has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Numbing Secretions", + "entries": [ + "A creature that touches the shator or hits it with a melee attack while within 5 feet of it must succeed on a {@dc 17} Dexterity saving throw or have disadvantage on attack rolls and its speed halved until the end of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shator makes one Bite attack and two Enervating Trident attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d6 + 7}) piercing damage plus 26 ({@damage 4d12}) acid damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or have the {@condition paralyzed} condition until the start of the shator's next turn." + ] + }, + { + "name": "Enervating Trident", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) necrotic damage." + ] + }, + { + "name": "Inhibitory Spray {@recharge 5}", + "entries": [ + "The shator exhales a spray of slime in a line 100 feet long and 5 feet wide. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 40 ({@damage 9d8}) acid damage and has the {@condition paralyzed} condition for 1 minute. The creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, a creature takes half as much damage only." + ] + }, + { + "name": "Summon Demodand (1/Day)", + "entries": [ + "The shator has a 50 percent chance of summoning its choice of {@dice 1d4} farastu demodands, {@dice 1d2} kelubar demodands, or 1 shator demodand. A summoned demodand appears in an unoccupied space within 60 feet of the shator, acts as an ally of the shator, and can't summon other demodands. It remains for 1 minute, until it or the shator dies, or until the shator dismisses it as an action." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "I", + "TP" + ], + "damageTags": [ + "A", + "N", + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shemeshka", + "isNamedCreature": true, + "source": "MPP", + "page": 46, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 20, + "dex": 14, + "con": 14, + "int": 21, + "wis": 16, + "cha": 18, + "save": { + "dex": "+7", + "int": "+10", + "wis": "+8", + "cha": "+9" + }, + "skill": { + "deception": "+9", + "insight": "+8", + "perception": "+8" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 18, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Shemeshka casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell alter self}", + "{@spell darkness}", + "{@spell invisibility} (self only)", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell detect thoughts}", + "{@spell dimension door}", + "{@spell suggestion}" + ], + "1e": [ + "{@spell banishment}", + "{@spell contact other plane} (as an action)", + "{@spell mind blank}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If Shemeshka fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Shemeshka has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Shemeshka carries a magic crown called the Razorvine Tiara. In the hands of anyone other than Shemeshka, the Razorvine Tiara functions as a {@item tentacle rod} that deals slashing damage instead of bludgeoning damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Shemeshka uses Arcane Flux or Spellcasting. She then makes one Claw attack or one attack with her Razorvine Tiara." + ] + }, + { + "name": "Arcane Flux", + "entries": [ + "Shemeshka causes a surge of arcane energy to burst around one creature she can see within 120 feet of herself. The target must make a {@dc 18} Dexterity saving throw. On a failed save, the target takes 45 ({@damage 7d12}) force damage and has the {@condition incapacitated} condition until the end of its next turn. On a successful save, the target takes half as much damage only." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 14 ({@damage 4d6}) poison damage." + ] + }, + { + "name": "Razorvine Tiara", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}10 ({@damage 3d6}) slashing damage plus 9 ({@damage 2d8}) necrotic damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw, or its speed is halved and it has disadvantage on attack rolls and saving throws until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Teleport", + "entries": [ + "Shemeshka teleports, along with any equipment she is wearing or carrying, up to 60 feet to an unoccupied space she can see." + ] + } + ], + "reaction": [ + { + "name": "Fell Counterspell (3/Day)", + "entries": [ + "Shemeshka utters a magical word to interrupt a creature she can see that is casting a spell. If the spell is 5th level or lower, it fails and has no effect. If the spell is 6th level or higher, Shemeshka makes an Intelligence check ({@dc 10} + the spell's level). On a success, the spell fails and has no effect. Whatever the spell's level, the caster gains the {@condition poisoned} condition until the end of its next turn." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "I", + "N", + "O", + "S" + ], + "damageTagsSpell": [ + "B", + "O", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Society of Sensation Muse", + "source": "MPP", + "page": 61, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 16, + "con": 12, + "int": 15, + "wis": 14, + "cha": 17, + "save": { + "dex": "+5", + "cha": "+5" + }, + "skill": { + "insight": "+4", + "perception": "+4", + "performance": "+7", + "stealth": "+5" + }, + "passive": 14, + "languages": [ + "Common plus two more languages" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The muse casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell dancing lights}" + ], + "daily": { + "1e": [ + "{@spell comprehend languages}", + "{@spell hypnotic pattern}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The muse makes two Beguiling Resonance attacks." + ] + }, + { + "name": "Beguiling Resonance", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 90 ft., one target. {@h}9 ({@damage 2d8}) psychic damage. If the target is a creature, it must succeed on a {@dc 13} Charisma saving throw or have disadvantage on the next attack roll it makes until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Enchanting Presence", + "entries": [ + "Each creature within 30 feet of the muse must make a {@dc 13} Wisdom saving throw. On a failed save, the creature has the {@condition charmed} condition for 1 minute. On a successful save, the creature becomes immune to any muse's Enchanting Presence for 24 hours.", + "Whenever the muse deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sunfly", + "source": "MPP", + "page": 47, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "T" + ], + "type": "celestial", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 2, + "formula": "1d4" + }, + "speed": { + "walk": 10, + "fly": 40 + }, + "str": 4, + "dex": 17, + "con": 10, + "int": 4, + "wis": 10, + "cha": 6, + "passive": 10, + "languages": [ + "understands Celestial but can't speak" + ], + "cr": "0", + "action": [ + { + "name": "Sting", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Additionally, if the sunfly is on an Outer Plane, it injects the target with a toxin, the effect of which is determined by the sunfly's location:" + ] + }, + { + "name": "Upper Plane", + "entries": [ + "The target sheds bright light in a 5-foot radius until the end of its next turn." + ] + }, + { + "name": "Neutral Plane", + "entries": [ + "If the target is {@status concentration||concentrating} on a spell or similar effect, it makes the Constitution saving throw with disadvantage to maintain its {@status concentration}." + ] + }, + { + "name": "Lower Plane", + "entries": [ + "The target's speed is reduced by 5 feet until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Illumination", + "entries": [ + "The sunfly sheds bright light in a 5-foot radius and dim light for an additional 5 feet, or it uses a bonus action to extinguish the light." + ] + } + ], + "languageTags": [ + "CE", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Sunflies", + "source": "MPP", + "page": 47, + "size": [ + "M" + ], + "type": { + "type": "celestial", + "swarmSize": "T" + }, + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 10, + "fly": 40 + }, + "str": 6, + "dex": 17, + "con": 10, + "int": 4, + "wis": 10, + "cha": 6, + "passive": 10, + "languages": [ + "understands Celestial but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny dragonfly. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Stings", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one creature in the swarm's space. {@h}10 ({@damage 3d4 + 3}) piercing damage, or 5 ({@damage 1d4 + 3}) piercing damage if the swarm has half of its hit points or fewer. Additionally, if the swarm is on an Outer Plane, it injects the target with a toxin, the effect of which is determined by the swarm's location:" + ] + }, + { + "name": "Upper Plane", + "entries": [ + "The target sheds bright light in a 5-foot radius until the end of its next turn. During that time, the {@condition invisible} condition has no effect on it." + ] + }, + { + "name": "Neutral Plane", + "entries": [ + "If the target is {@status concentration||concentrating} on a spell or similar effect, it loses its {@status concentration}." + ] + }, + { + "name": "Lower Plane", + "entries": [ + "The target's speed is reduced by 10 feet until the end of its next turn." + ] + }, + { + "name": "Dazzling Lights {@recharge}", + "entries": [ + "The swarm shines its lights in a dazzling display. Each creature within 15 feet of the swarm must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition 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." + ] + } + ], + "bonus": [ + { + "name": "Illumination", + "entries": [ + "The swarm sheds bright light in a 15-foot radius and dim light for an additional 15 feet, or it uses a bonus action to extinguish the light." + ] + } + ], + "languageTags": [ + "CE", + "CS" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Time Dragon Wyrmling", + "source": "MPP", + "page": 51, + "otherSources": [ + { + "source": "ToFW" + } + ], + "size": [ + "M" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "climb": 30, + "fly": 60 + }, + "str": 19, + "dex": 10, + "con": 17, + "int": 17, + "wis": 13, + "cha": 17, + "save": { + "dex": "+3", + "con": "+6", + "wis": "+4", + "cha": "+6" + }, + "skill": { + "arcana": "+6", + "history": "+9", + "perception": "+7", + "stealth": "+6" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "languages": [ + "Draconic plus any two languages" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 3 ({@damage 1d6}) force damage." + ] + }, + { + "name": "Time Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of shimmering light in a 15-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 14} Constitution saving throw. On a failed save, a creature takes 27 ({@damage 6d8}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage. On a successful save, a creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "dragonAge": "wyrmling", + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR", + "X" + ], + "damageTags": [ + "O", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Transcendent Order Conduit", + "source": "MPP", + "page": 62, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 18, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30" + }, + "speed": { + "walk": 50 + }, + "initiative": { + "advantageMode": "adv" + }, + "str": 10, + "dex": 19, + "con": 14, + "int": 10, + "wis": 18, + "cha": 12, + "save": { + "wis": "+7", + "cha": "+4" + }, + "skill": { + "acrobatics": "+7", + "perception": "+7", + "performance": "+4" + }, + "passive": 17, + "languages": [ + "Common plus one more language" + ], + "cr": "8", + "trait": [ + { + "name": "Instinctive Reflexes", + "entries": [ + "The conduit has advantage on initiative rolls, and it can't have disadvantage on attack rolls." + ] + }, + { + "name": "Unarmored Defense", + "entries": [ + "While the conduit is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The conduit makes three Unarmed Strike attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. If the target is a creature, the conduit can choose one of the following additional effects (up to once per turn each):", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Incapacitate", + "entries": [ + "The target must succeed on a {@dc 15} Constitution saving throw or have the {@condition incapacitated} condition until the end of the conduit's next turn." + ] + }, + { + "type": "item", + "name": "Push", + "entries": [ + "The target is pushed up to 10 feet horizontally away from the conduit." + ] + } + ] + } + ] + } + ], + "reactionHeader": [ + "The conduit can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Deflect Attack", + "entries": [ + "In response to being hit by an attack roll, the conduit partially deflects the blow. The damage the conduit takes from the attack is reduced by {@dice 1d10}." + ] + }, + { + "name": "Don't Be There", + "entries": [ + "When the conduit must make a saving throw, it can move up to half its speed without provoking opportunity attacks. If its new position moves it out of range or otherwise makes it impossible to be targeted by the effect, the conduit avoids the effect entirely." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Transcendent Order Instinct", + "source": "MPP", + "page": 62, + "otherSources": [ + { + "source": "SatO" + } + ], + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 40 + }, + "str": 10, + "dex": 16, + "con": 12, + "int": 10, + "wis": 16, + "cha": 12, + "save": { + "wis": "+5", + "cha": "+3" + }, + "skill": { + "acrobatics": "+5", + "perception": "+5", + "performance": "+3" + }, + "passive": 15, + "languages": [ + "Common plus one more language" + ], + "cr": "3", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the instinct is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The instinct makes three Unarmed Strike attacks." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ] + } + ], + "reactionHeader": [ + "The instinct can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Deflect Blow", + "entries": [ + "In response to being hit by a melee attack roll, the instinct partially deflects the blow. The damage the instinct takes from the attack is reduced by {@dice 1d6}." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vargouille Reflection", + "source": "MPP", + "page": 52, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "T" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 22, + "formula": "5d4 + 10" + }, + "speed": { + "walk": 5, + "fly": 40 + }, + "str": 6, + "dex": 15, + "con": 14, + "int": 6, + "wis": 10, + "cha": 2, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "cold", + "fire", + "lightning", + "psychic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Abyssal", + "Infernal", + "and any languages it knew before becoming a vargouille", + "but it can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The vargouille has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ] + }, + { + "name": "Abyssal Curse", + "entries": [ + "The vargouille targets one Humanoid within 5 feet of itself that has the {@condition incapacitated} condition. The target must succeed on a {@dc 12} Charisma saving throw or become cursed. The cursed target's Charisma decreases by 1 after each hour, as its head takes on fiendish aspects, and its Charisma can't increase. The curse doesn't advance while the target is in sunlight or the area of a {@spell daylight} spell. When the cursed target's Charisma becomes 2, the target dies, and its head tears from its body and becomes a new vargouille reflection. Casting remove curse, greater restoration, or a similar spell on the target before the transformation is complete ends the curse and restores the target's Charisma." + ] + }, + { + "name": "Horrific Reflection {@recharge 5}", + "entries": [ + "The vargouille's head mimics that of a Humanoid the vargouille can see within 120 feet of itself. The target must succeed on a {@dc 12} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage and have the {@condition frightened} condition for 1 hour or until the vargouille loses {@status concentration} (as if {@status concentration||concentrating} on a spell). If the target's saving throw is successful or if the effect ends on it, the target is immune to the Horrific Reflection of all vargouille reflections for 1 hour." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "CS", + "I" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warden Archon", + "source": "MPP", + "page": 18, + "otherSources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 20, + "dex": 10, + "con": 17, + "int": 15, + "wis": 18, + "cha": 18, + "save": { + "con": "+6", + "wis": "+7" + }, + "skill": { + "arcana": "+5", + "athletics": "+8", + "perception": "+10" + }, + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "passive": 20, + "immune": [ + "lightning" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed" + ], + "languages": [ + "all" + ], + "cr": "8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The archon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "will": [ + "{@spell detect evil and good}" + ], + "daily": { + "1e": [ + "{@spell aid}", + "{@spell continual flame}", + "{@spell protection from evil and good}", + "{@spell scrying} (as an action)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aura of Menace", + "entries": [ + "As long as the archon doesn't have the {@condition incapacitated} condition, each creature of the archon's choice that starts its turn within 20 feet of the archon must make a {@dc 15} Wisdom saving throw. On a failed save, the creature has the {@condition frightened} condition until the start of its next turn. On a successful save, the creature is immune to all archons' Aura of Menace for 24 hours." + ] + }, + { + "name": "Eternal Vigil", + "entries": [ + "The archon can't be surprised. Moreover, it knows when any creature uses a portal it is assigned to guard." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The archon makes two Claw attacks and one Tracker's Bite attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a Medium or smaller creature, the target has the {@condition grappled} condition (escape {@dc 18}). The archon can have only one creature {@condition grappled} in this way at a time." + ] + }, + { + "name": "Tracker's Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage. If the target is a creature, for the next 24 hours, the archon knows the distance and direction to the target while they are both on the same plane of existence." + ] + }, + { + "name": "Teleport", + "entries": [ + "The archon teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself." + ] + } + ], + "senseTags": [ + "SD", + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Young Time Dragon", + "source": "MPP", + "page": 51, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 80 + }, + "str": 20, + "dex": 12, + "con": 20, + "int": 20, + "wis": 15, + "cha": 17, + "save": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+7" + }, + "skill": { + "arcana": "+9", + "history": "+13", + "perception": "+10", + "stealth": "+9" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 20, + "languages": [ + "Draconic plus any four languages" + ], + "cr": "11", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dragon makes three Rend attacks." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 7 ({@damage 2d6}) force damage." + ] + }, + { + "name": "Time Breath {@recharge 5}", + "entries": [ + "The dragon exhales a wave of shimmering light in a 30-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 31 ({@damage 7d8}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage. On a successful save, a creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on two of these saves." + ] + } + ], + "dragonAge": "young", + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DR", + "X" + ], + "damageTags": [ + "O", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Aza Dowling", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 17, + "_copy": { + "name": "Society of Sensation Muse", + "source": "MPP", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The muse", + "with": "Aza", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Ebonclaw", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 50, + "_copy": { + "name": "Saber-Toothed Tiger", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The tiger", + "with": "Ebonclaw", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Eyestalk of Gzemnid", + "source": "ToFW", + "page": 88, + "_copy": { + "name": "Purple Worm", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "\\bworm\\b", + "with": "eyestalk" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The eyestalk attacks with its bite and uses Eradication Gaze." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Tail Stinger", + "items": { + "name": "Eradication Gaze {@recharge 5}", + "entries": [ + "The eyestalk creates an area of magical devastation in a 150-foot cone. Any creature in that area must succeed on a {@dc 16} Dexterity saving throw or take 55 ({@damage 10d10}) necrotic damage. If this damage reduces a creature to 0 hit points, its body becomes a pile of fine violet dust." + ] + } + } + ] + } + }, + "tokenCredit": "@hamosart", + "hasToken": true, + "hasFluff": true + }, + { + "name": "Farrow", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 17, + "_copy": { + "name": "Spy", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The spy", + "with": "Farrow", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Gertrube", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 18, + "_copy": { + "name": "Thug", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The thug", + "with": "Gertrube", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Giant Whirlwyrm", + "source": "ToFW", + "page": 55, + "_copy": { + "name": "Behir", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "behir", + "with": "whirlwyrm" + }, + "action": { + "mode": "replaceArr", + "replace": "Lightning Breath {@recharge 5}", + "items": { + "name": "Thunder Breath {@recharge 5}", + "entries": [ + "The whirlwyrm exhales a line of thunder that is 20 feet long and 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 66 ({@damage 12d10}) thunder damage on a failed save, or half as much damage on a successful one." + ] + } + } + } + }, + "speed": { + "walk": 50, + "swim": 60 + }, + "hasToken": true + }, + { + "name": "Josbert Plum", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 17, + "_copy": { + "name": "Harmonium Peacekeeper", + "source": "MPP", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the peacekeeper", + "with": "Josbert", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Kal the Crisp", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 17, + "_copy": { + "name": "Hands of Havoc Fire Starter", + "source": "MPP", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The fire starter", + "with": "Kal", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Kopoha", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 61, + "_copy": { + "name": "Empyrean", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The empyrean", + "with": "Kopoha", + "flags": "i" + }, + "action": { + "mode": "removeArr", + "names": "Maul" + } + } + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Modron Planar Incarnate", + "source": "ToFW", + "page": 92, + "_copy": { + "name": "Planar Incarnate", + "source": "MPP", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Planar Form" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Energy Bolt", + "items": { + "name": "Energy Bolt", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}32 ({@damage 5d12}) necrotic damage." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Planar Exhalation {@recharge 5}", + "items": { + "name": "Planar Exhalation {@recharge 5}", + "entries": [ + "The incarnate exhales concentrated energy native to its plane in a 60-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 52 ({@damage 8d12}) necrotic damage, and the creature has the {@condition blinded} condition until the end of the incarnate's next turn. On a successful save, a creature takes half as much damage only." + ] + } + } + ] + } + }, + "type": "fiend", + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Morte", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 10, + "otherSources": [ + { + "source": "MPP" + } + ], + "size": [ + "T" + ], + "type": "undead", + "alignment": [ + "C", + "G" + ], + "ac": [ + 13 + ], + "hp": { + "average": 22, + "formula": "4d4 + 12" + }, + "speed": { + "walk": 0, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 10, + "dex": 16, + "con": 16, + "int": 13, + "wis": 10, + "cha": 12, + "skill": { + "arcana": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "1/4", + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ophelia", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 49, + "_copy": { + "name": "Elephant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The elephant", + "with": "Ophelia", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "int": 10, + "wis": 14, + "cha": 14, + "languages": [ + "Common" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Parvaz", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 50, + "_copy": { + "name": "Giant Eagle", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The eagle", + "with": "Parvaz", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "int": 16, + "cha": 14, + "languages": [ + "Common" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "R04M", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 75, + "_copy": { + "name": "Monodrone", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The monodrone", + "with": "R04M", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "int": 8, + "languages": [ + "Common", + "Modron" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Shariel", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 65, + "_copy": { + "name": "Deva", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The deva", + "with": "Shariel", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Vecna Impersonator", + "source": "ToFW", + "page": 26, + "_copy": { + "name": "Doppelganger", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "doppelganger", + "with": "impersonator" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Whirlwyrm", + "source": "ToFW", + "page": 52, + "_copy": { + "name": "Giant Crocodile", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "crocodile", + "with": "whirlwyrm" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "X01", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 91, + "_copy": { + "name": "Hexton Modron", + "source": "MPP", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The hexton", + "with": "X01", + "flags": "i" + } + } + }, + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Zaythir", + "isNpc": true, + "isNamedCreature": true, + "source": "ToFW", + "page": 32, + "_copy": { + "name": "Githzerai Uniter", + "source": "MPP", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "The githzerai", + "with": "Zaythir", + "flags": "i" + } + } + }, + "alignment": [ + "N" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Advanced Detention Drone", + "source": "BMT", + "page": 135, + "_copy": { + "name": "Shield Guardian", + "source": "MM", + "_mod": { + "*": [ + { + "mode": "replaceTxt", + "replace": "shield guardian", + "with": "drone" + }, + { + "mode": "replaceTxt", + "replace": "guardian", + "with": "drone" + } + ], + "trait": { + "mode": "removeArr", + "names": "Bound" + }, + "action": [ + { + "mode": "appendArr", + "items": { + "name": "Detention Orb", + "entries": [ + "The drone launches a tiny orb of magical force at a creature it can see within 30 feet of itself. The creature must succeed on a {@dc 15} Constitution saving throw or be encased in the orb, which expands to a size just large enough to contain the creature. While encased, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Nothing can pass through the orb, nor can any creature teleport or use planar travel to enter or exit the orb. As a bonus action, the drone can move the orb and its contents up to 30 feet in any direction. A successful casting of the {@spell Dispel Magic} spell on the orb ({@dc 15}) destroys it. The orb otherwise remains intact until the drone spends an action to end the effect or the drone is destroyed. A drone can have only one detention orb active at a time; if the drone creates a detention orb when it already has one active, the first orb disappears, freeing the creature inside." + ] + } + } + ] + } + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "tokenCredit": "MOAI", + "hasToken": true, + "hasFluff": true + }, + { + "name": "Ambitious Assassin", + "source": "BMT", + "page": 45, + "size": [ + "S", + "M" + ], + "type": "humanoid", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 10, + "dex": 18, + "con": 15, + "int": 18, + "wis": 14, + "cha": 16, + "save": { + "dex": "+7", + "int": "+7" + }, + "skill": { + "deception": "+9", + "perception": "+5", + "stealth": "+10" + }, + "senses": [ + "blindsight 10 ft." + ], + "passive": 15, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "thieves' cant", + "plus any one language" + ], + "cr": { + "cr": "5", + "lair": "6" + }, + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the assassin fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The assassin makes two Poison Blade attacks." + ] + }, + { + "name": "Poison Blade", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "When an attacker the assassin can see hits the assassin with an attack, the assassin halves the attack's damage against it." + ] + } + ], + "legendary": [ + { + "name": "Cunning", + "entries": [ + "The assassin escapes nonmagical restraints and ends the {@condition grappled} condition on itself, then moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Stab (Costs 2 Actions)", + "entries": [ + "The assassin makes one Poison Blade attack." + ] + }, + { + "name": "Vanishing Escape (Costs 3 Actions)", + "entries": [ + "The assassin creates a sudden distraction, such as a cloud of disorienting smoke or flash of dazzling light, filling a 10-foot cube within 5 feet of the assassin. Each creature of the assassin's choice in that area takes 9 ({@damage 2d8}) psychic damage, and the assassin has the {@condition invisible} condition. This invisibility lasts until the end of the assassin's next turn." + ] + } + ], + "legendaryGroup": { + "name": "Villain", + "source": "BMT" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC", + "X" + ], + "damageTags": [ + "I", + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "invisible" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Animated Armor Detention Drone", + "source": "BMT", + "page": 135, + "_copy": { + "name": "Animated Armor", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "armor", + "with": "drone" + }, + "action": [ + { + "mode": "appendArr", + "items": { + "name": "Detention Orb", + "entries": [ + "The drone launches a tiny orb of magical force at a creature it can see within 30 feet of itself. The creature must succeed on a {@dc 15} Constitution saving throw or be encased in the orb, which expands to a size just large enough to contain the creature. While encased, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Nothing can pass through the orb, nor can any creature teleport or use planar travel to enter or exit the orb. As a bonus action, the drone can move the orb and its contents up to 30 feet in any direction. A successful casting of the {@spell Dispel Magic} spell on the orb ({@dc 15}) destroys it. The orb otherwise remains intact until the drone spends an action to end the effect or the drone is destroyed. A drone can have only one detention orb active at a time; if the drone creates a detention orb when it already has one active, the first orb disappears, freeing the creature inside." + ] + } + } + ] + } + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "tokenCredit": "Smite, Hirez", + "hasToken": true, + "hasFluff": true + }, + { + "name": "Aspirant of the Comet", + "source": "BMT", + "page": 91, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 11 + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 12, + "con": 12, + "int": 11, + "wis": 10, + "cha": 13, + "passive": 10, + "languages": [ + "Common plus any one language" + ], + "cr": "1/2", + "trait": [ + { + "name": "Hunger of the Void", + "entries": [ + "When the aspirant is reduced to 0 hit points, its body and everything it is wearing or carrying, except for magic items, are sucked into a void and destroyed. Creatures in a 15-foot-radius sphere centered on the aspirant must make a {@dc 11} Strength saving throw. On a failed save, a creature takes 10 ({@damage 3d6}) necrotic damage and is pulled 10 feet straight toward the aspirant's space. On a successful save, a creature takes half as much damage only." + ] + }, + { + "name": "Sinister Devotion", + "entries": [ + "The aspirant has advantage on saving throws against the {@condition charmed} and {@condition frightened} conditions." + ] + } + ], + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Asteria", + "isNamedCreature": true, + "source": "BMT", + "page": 188, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "paladin" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item breastplate|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(winged boots)" + } + }, + "str": 12, + "dex": 21, + "con": 17, + "int": 15, + "wis": 11, + "cha": 20, + "save": { + "dex": "+11", + "con": "+9", + "wis": "+6", + "cha": "+11" + }, + "skill": { + "acrobatics": "+11", + "arcana": "+14", + "investigation": "+8", + "perception": "+12", + "persuasion": "+11", + "survival": "+6" + }, + "passive": 22, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Druidic" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Asteria casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell Guidance}", + "{@spell Light}", + "{@spell Thaumaturgy}" + ], + "daily": { + "2e": [ + "{@spell Bless}", + "{@spell Freedom of Movement}", + "{@spell Greater Restoration}", + "{@spell Plane Shift} (self only)", + "{@spell Protection from Evil and Good}", + "{@spell Revivify}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Guardian Aura", + "entries": [ + "Whenever a creature of Asteria's choice within 30 feet of her makes a saving throw, Asteria can give the creature advantage on the saving throw (no action required). This trait doesn't function if Asteria has the {@condition incapacitated} condition." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Asteria fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Asteria wears {@item Winged Boots}, which grant her a flying speed (included in her statistics). She also carries one half of a pair of {@item Sending Stones}; the other half of the pair is held by Euryale." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Asteria makes two Radiant Blade attacks and uses Bursting Benediction." + ] + }, + { + "name": "Radiant Blade", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage plus 13 ({@damage 3d8}) radiant damage." + ] + }, + { + "name": "Bursting Benediction", + "entries": [ + "Asteria causes a burst of magical energy to envelop one creature she can see within 60 feet of herself. The target must make a {@dc 19} Dexterity saving throw, taking 40 ({@damage 9d8}) force damage on a failed save, or half as much damage on a successful one. Asteria or another creature that she can see within 60 feet of herself then regains 10 hit points." + ] + } + ], + "bonus": [ + { + "name": "Empowering Aegis {@recharge 4}", + "entries": [ + "Asteria summons a spectral version of her shield, which orbits and bolsters one creature of Asteria's choice that she can see within 60 feet of herself. The spectral shield lasts until the start of Asteria's next turn. While the shield is orbiting the creature, the creature has {@quickref Cover||3||half cover}, is immune to the {@condition frightened} condition, and makes weapon attack rolls with advantage." + ] + } + ], + "legendary": [ + { + "name": "Brazen Strike", + "entries": [ + "Asteria makes one Radiant Blade attack." + ] + }, + { + "name": "Nimble Sprint", + "entries": [ + "Asteria moves up to her speed. This movement doesn't provoke opportunity attacks." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Asteria uses Spellcasting." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DU" + ], + "damageTags": [ + "O", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aurnozci", + "isNamedCreature": true, + "source": "BMT", + "page": 167, + "size": [ + "G" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 370, + "formula": "20d20 + 160" + }, + "speed": { + "walk": 50, + "burrow": 30 + }, + "str": 27, + "dex": 20, + "con": 26, + "int": 6, + "wis": 21, + "cha": 19, + "save": { + "str": "+15", + "con": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 15, + "resist": [ + "cold", + "lightning" + ], + "immune": [ + "acid", + "fire", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": { + "cr": "22", + "lair": "23" + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Aurnozci casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell Detect Magic}", + "{@spell Heat Metal} (7th-level version)" + ], + "daily": { + "2e": [ + "{@spell Darkness}", + "{@spell Dispel Magic}", + "{@spell Hold Person}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Heat Regeneration", + "entries": [ + "If the temperature around it is 100 degrees Fahrenheit or higher, Aurnozci regains 15 hit points at the start of its turn. If it takes cold or radiant damage, this trait doesn't function at the start of its next turn. Aurnozci dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Aurnozci fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Aurnozci has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Aurnozci makes one Bite attack and two Tail attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}21 ({@damage 2d12 + 8}) slashing damage plus 9 ({@damage 2d8}) fire damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Mucus Spray {@recharge 5}", + "entries": [ + "Aurnozci sprays mucus in a 60-foot cone. Each creature in that cone must make a {@dc 20} Dexterity saving throw, taking 42 ({@damage 12d6}) acid damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "Aurnozci moves up to its speed." + ] + }, + { + "name": "Tail", + "entries": [ + "Aurnozci makes one Tail attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Aurnozci uses Spellcasting." + ] + }, + { + "name": "Conflagration (Costs 2 Actions)", + "entries": [ + "Flames momentarily surround Aurnozci. Each creature within 15 feet of Aurnozci must make a {@dc 20} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendaryGroup": { + "name": "Aurnozci", + "source": "BMT" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "A", + "B", + "F", + "S" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "paralyzed" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedLegendary": [ + "constitution", + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boss Augustus", + "source": "BMT", + "page": 82, + "size": [ + "M" + ], + "type": "monstrosity", + "alignment": [ + "N" + ], + "ac": [ + 13 + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": { + "number": 40, + "condition": "in wolf or hybrid form" + } + }, + "str": 18, + "dex": 16, + "con": 17, + "int": 14, + "wis": 15, + "cha": 12, + "save": { + "str": "+8", + "dex": "+7" + }, + "skill": { + "perception": "+10", + "sleight of hand": "+7", + "stealth": "+7" + }, + "passive": 20, + "languages": [ + "Common", + "Thieves' cant (can't speak in wolf form)" + ], + "cr": "9", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "Augustus regains 10 hit points at the start of his turn. If he takes damage from a silver weapon, this trait doesn't function at the start of his next turn. Augustus dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Augustus wields a {@item +2 Longsword}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Augustus makes any combination of two Bite, Claw, or Magic Longsword attacks." + ] + }, + { + "name": "Bite (Wolf or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}26 ({@damage 5d8 + 4}) piercing damage. If the target is a Humanoid, it must succeed on a {@dc 15} Constitution saving throw or be cursed with lycanthropy. While cursed in this way, the target retains its alignment, languages, and equipment but otherwise uses the werewolf stat block, excluding actions that require equipment the target doesn't have. During any night when there's a full moon in the sky, the target becomes an NPC under the DM's control and remains so until the night ends. A {@spell Remove Curse} spell or similar magic ends this curse." + ] + }, + { + "name": "Claw (Wolf or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}21 ({@damage 5d6 + 4}) piercing damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Magic Longsword (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}28 ({@damage 4d10 + 6}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "Augustus polymorphs into a wolf-humanoid hybrid, a wolf, or his humanoid form. His statistics, other than his speed, are the same in each form. Any equipment he is wearing or carrying isn't transformed. He reverts to his humanoid form if he dies." + ] + }, + { + "name": "Cunning Action", + "entries": [ + "Augustus takes the Dash, Disengage, or Hide action." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "CS", + "TC" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MLW", + "MW" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Boss Delour", + "source": "BMT", + "page": 83, + "size": [ + "S" + ], + "type": "monstrosity", + "alignment": [ + "L", + "E" + ], + "ac": [ + 14 + ], + "hp": { + "average": 110, + "formula": "20d6 + 40" + }, + "speed": { + "walk": { + "number": 30, + "condition": "in rat or hybrid form" + } + }, + "str": 12, + "dex": 18, + "con": 15, + "int": 17, + "wis": 14, + "cha": 16, + "save": { + "dex": "+8", + "int": "+7" + }, + "skill": { + "deception": "+11", + "perception": "+10", + "sleight of hand": "+8", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 20, + "languages": [ + "Common", + "Thieves' cant (can't speak in rat form)" + ], + "cr": "9", + "trait": [ + { + "name": "Evasion", + "entries": [ + "If Delour is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw and only half damage if he fails, provided he doesn't have the {@condition incapacitated} condition." + ] + }, + { + "name": "Nimbleness", + "entries": [ + "Delour can move through the space of a Medium or larger creature." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Delour regains 10 hit points at the start of his turn. If he takes damage from a silver weapon, this trait doesn't function at the start of his next turn. Delour dies only if he starts his turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Delour makes any combination of three Bite, Shortsword, or Hand Crossbow attacks." + ] + }, + { + "name": "Bite (Rat or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}26 ({@damage 5d8 + 4}) piercing damage. If the target is a Humanoid, it must succeed on a {@dc 14} Constitution saving throw or be cursed with lycanthropy. While cursed in this way, the target retains its alignment, languages, and equipment but otherwise uses the wererat stat block, excluding actions that require equipment the target doesn't have. During any night when there's a full moon in the sky, the target becomes an NPC under the DM's control and remains so until the night ends. A {@spell Remove Curse} spell or similar magic ends this curse." + ] + }, + { + "name": "Shortsword (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Hand Crossbow (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "Delour polymorphs into a rat-humanoid hybrid, a Medium giant rat, or his humanoid form. His statistics, other than his size and speed, are the same in each form. Any equipment he is wearing or carrying isn't transformed. He reverts to his humanoid form if he dies." + ] + }, + { + "name": "Cunning Action", + "entries": [ + "Delour takes the Dash, Disengage, or Hide action." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "CS", + "TC" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Breath Drinker", + "source": "BMT", + "page": 154, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "21d8 + 63" + }, + "speed": { + "walk": 0, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 5, + "dex": 18, + "con": 16, + "int": 11, + "wis": 15, + "cha": 20, + "save": { + "int": "+5", + "wis": "+7" + }, + "skill": { + "perception": "+7", + "stealth": "+9", + "survival": "+7" + }, + "senses": [ + "blindsight 60 ft." + ], + "passive": 17, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "radiant" + ], + "vulnerable": [ + "necrotic" + ], + "conditionImmune": [ + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "cr": "14", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The breath drinker can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ] + }, + { + "name": "Radiant Absorption", + "entries": [ + "When the breath drinker is subjected to radiant damage, it takes no damage and instead regains a number of hit points equal to the radiant damage dealt." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The breath drinker makes two Enervating Claw attacks. It can also use Drink Breath." + ] + }, + { + "name": "Enervating Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d6 + 5}) necrotic damage, and if the target is Large or smaller, it has the {@condition grappled} condition (escape {@dc 18}). The target must succeed on a {@dc 18} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + }, + { + "name": "Drink Breath", + "entries": [ + "The breath drinker targets a creature that has the {@condition incapacitated} condition or that the breath drinker is grappling and that isn't a Construct or an Undead. The target must make a {@dc 18} Charisma saving throw. On a failed save, the target takes 36 ({@damage 8d8}) necrotic damage, and its Charisma score is reduced by {@dice 1d6}. This reduction lasts until the target finishes a short or long rest. If this reduces the target's Charisma to 0, the target dies. Until the breath drinker dies, the dead target can't be returned to life by any means short of divine intervention. On a successful save, the target takes half as much necrotic damage only. On a successful or failed save, the breath drinker regains a number of hit points equal to the necrotic damage dealt." + ] + }, + { + "name": "Invisibility", + "entries": [ + "The breath drinker has the {@condition invisible} condition. This invisibility ends immediately after the breath drinker hits or misses with an attack roll or uses Drink Breath." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Incorporeal Movement" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "DS", + "TP" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "HPR", + "MW" + ], + "savingThrowForced": [ + "charisma", + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Brusipha", + "isNamedCreature": true, + "source": "BMT", + "page": 127, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "minotaur", + "warlock" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 11, + "con": 16, + "int": 12, + "wis": 16, + "cha": 16, + "save": { + "wis": "+5", + "cha": "+5" + }, + "skill": { + "deception": "+5", + "perception": "+7", + "religion": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "languages": [ + "Abyssal", + "Common" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Brusipha casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell Prestidigitation}", + "{@spell Speak with Animals}" + ], + "daily": { + "1e": [ + "{@spell Bestow Curse}", + "{@spell Command}", + "{@spell Crown of Madness}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Demonic Ritual", + "entries": [ + "Brusipha can spend 3 hours performing a ritual that summons {@dice 1d3 + 1} barlguras or 1 hezrou. She must sacrifice a Medium or larger living creature to Baphomet during this ritual, and the ritual can be performed only at night. The demons vanish at dawn." + ] + }, + { + "name": "Labyrinthine Recall", + "entries": [ + "Brusipha can perfectly recall any path she has traveled." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Brusipha makes two Eldritch Blast attacks." + ] + }, + { + "name": "Eldritch Blast", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 4 ({@damage 1d8}) necrotic damage. If Brusipha moved at least 10 feet straight toward the target immediately before she hit, the target takes an extra 4 ({@damage 1d8}) piercing damage, and if the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be pushed up to 10 feet from Brusipha and have the {@condition prone} condition." + ] + }, + { + "name": "Incite the Hunters (Recharges after a Short or Long Rest)", + "entries": [ + "Brusipha allows each ally within 30 feet of herself that has the Unerring Tracker trait to make one weapon attack as a reaction against the target of that ally's Unerring Tracker." + ] + } + ], + "bonus": [ + { + "name": "Unerring Tracker", + "entries": [ + "Brusipha magically creates a psychic link with one creature she can see. For the next hour, Brusipha knows the current distance and direction to the target if it is on the same plane of existence. The link ends if Brusipha has the {@condition incapacitated} condition or uses this ability on a different target." + ] + } + ], + "reaction": [ + { + "name": "Baphomet's Blessing", + "entries": [ + "When Brusipha reduces a hostile creature to 0 hit points, she gains 8 temporary hit points." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "N", + "O", + "P" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "charmed", + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true + }, + { + "name": "Deck Defender", + "source": "BMT", + "page": 72, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "special": "5 + five times your level (the deck defender has a number of Hit Dice [d8s] equal to your level)" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 16, + "con": 14, + "int": 3, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands one of your languages but can't speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Allied Knight", + "entries": [ + "Some of the deck defender's statistics are based on the character who drew the Knight card. Where the deck defender stat block refers to \"you,\" it refers to that character." + ] + }, + { + "name": "Folded Versatility", + "entries": [ + "After finishing a long rest, you can refold the deck defender's shape, changing it to acrobat form, berserker form, or guardian form." + ] + }, + { + "name": "Fragile", + "entries": [ + "If the deck defender is reduced to 0 hit points, it collapses into a haphazard pile of nonmagical playing cards and can't be resurrected or reconstructed." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deck defender makes a number of attacks equal to half its proficiency bonus (rounded down)." + ] + }, + { + "name": "Paper Cut", + "entries": [ + "{@atk mw} PB + {@hit 3} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ] + }, + { + "name": "Reckless Strike (Berserker Form Only)", + "entries": [ + "{@atk mw} PB + {@hit 3} to hit (with advantage), reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage, and attacks made against the deck defender until the start of its next turn have advantage." + ] + } + ], + "bonus": [ + { + "name": "Swift Step (Acrobat Form Only)", + "entries": [ + "The deck defender takes the Dash or Disengage action." + ] + } + ], + "reaction": [ + { + "name": "Protection (Guardian Form Only)", + "entries": [ + "When a creature the deck defender can see attacks a target other than the deck defender and is within 5 feet of the deck defender, the deck defender imposes disadvantage on the attack roll." + ] + } + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Enchanting Infiltrator", + "source": "BMT", + "page": 46, + "size": [ + "S", + "M" + ], + "type": "fey", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "veiled presence" + ] + } + ], + "hp": { + "average": 156, + "formula": "24d8 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 10, + "dex": 20, + "con": 15, + "int": 20, + "wis": 16, + "cha": 18, + "save": { + "dex": "+9", + "int": "+9" + }, + "skill": { + "deception": "+12", + "perception": "+7", + "stealth": "+13" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 17, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "thieves' cant", + "plus any one language" + ], + "cr": { + "cr": "11", + "lair": "12" + }, + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the infiltrator fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Veiled Presence", + "entries": [ + "The infiltrator's AC includes its Wisdom modifier, and the infiltrator can't be targeted by divination magic or features that would read its mind or determine its creature type." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The infiltrator makes two Poison Blade attacks and can use Beguiling Whisper." + ] + }, + { + "name": "Poison Blade", + "entries": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ] + }, + { + "name": "Beguiling Whisper", + "entries": [ + "The infiltrator magically whispers to a creature it can see within 30 feet of itself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition stunned} condition due to fear or delight (the infiltrator's choice) until the end of the target's next turn, after which the target is immune to this Beguiling Whisper for 24 hours." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "When an attacker the infiltrator can see hits the infiltrator with an attack, the infiltrator halves the attack's damage against it." + ] + } + ], + "legendary": [ + { + "name": "Cunning", + "entries": [ + "The infiltrator escapes nonmagical restraints and ends the {@condition grappled} condition on itself, then moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Stab (Costs 2 Actions)", + "entries": [ + "The infiltrator makes one Poison Blade attack." + ] + }, + { + "name": "Misdirecting Escape (Costs 3 Actions)", + "entries": [ + "The infiltrator magically has the {@condition invisible} condition and creates an illusory duplicate of itself in its space, then teleports, along with any equipment it is wearing or carrying, to an unoccupied space within 15 feet of itself. The image flings illusory blades at two creatures of the infiltrator's choice within 20 feet of the image. Each target must make a {@dc 17} Wisdom saving throw, taking 13 ({@damage 3d8}) psychic damage on a failed save, or half as much damage on a successful one. The invisibility lasts until the end of the infiltrator's next turn." + ] + } + ], + "legendaryGroup": { + "name": "Villain", + "source": "BMT" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TC", + "X" + ], + "damageTags": [ + "I", + "P", + "Y" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Euryale", + "isNamedCreature": true, + "source": "BMT", + "page": 189, + "size": [ + "M" + ], + "type": { + "type": "monstrosity", + "tags": [ + "druid", + "medusa" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 297, + "formula": "35d8 + 140" + }, + "speed": { + "walk": 30, + "alternate": { + "walk": [ + { + "number": 50, + "condition": "in serpent form" + } + ], + "climb": [ + { + "number": 50, + "condition": "in serpent form" + } + ] + } + }, + "str": 21, + "dex": 16, + "con": 18, + "int": 12, + "wis": 20, + "cha": 15, + "save": { + "dex": "+9", + "con": "+10", + "int": "+7", + "wis": "+11" + }, + "skill": { + "animal handling": "+11", + "insight": "+17", + "medicine": "+11", + "nature": "+13", + "perception": "+11" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 21, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "Common", + "Druidic" + ], + "cr": "18", + "spellcasting": [ + { + "name": "Spellcasting (Medusa Form Only)", + "type": "spellcasting", + "headerEntries": [ + "Euryale casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 19}):" + ], + "will": [ + "{@spell Druidcraft}", + "{@spell Pass without Trace}" + ], + "daily": { + "2e": [ + "{@spell Goodberry}", + "{@spell Lesser Restoration}", + "{@spell Locate Creature}", + "{@spell Move Earth}", + "{@spell Transport via Plants}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Euryale fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Euryale carries one half of a pair of {@item Sending Stones}; the other half of the pair is held by Asteria." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Euryale makes three attacks. If she is in serpent form, only one of these attacks can be Constrict." + ] + }, + { + "name": "Constrict (Serpent Form Only)", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage, and the target has the {@condition grappled} condition (escape {@dc 19}). Until this grapple ends, the target takes 11 ({@damage 2d10}) bludgeoning damage at the start of each of its turns, and Euryale can't constrict another target." + ] + }, + { + "name": "Snake Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and the target must succeed on a {@dc 18} Constitution saving throw or have the {@condition poisoned} condition until the start of Euryale's next turn." + ] + }, + { + "name": "Verdant Bolt (Medusa Form Only)", + "entries": [ + "{@atk rs} {@hit 11} to hit, range 120 ft., one target. {@h}18 ({@damage 4d8}) acid damage." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "Euryale changes shape into her Huge serpent form or back into her Medium medusa form. Euryale's game statistics are the same in each form except where noted in this stat block. Any equipment she is wearing or carrying isn't transformed. Euryale reverts to her medusa form if she dies." + ] + }, + { + "name": "Petrifying Gaze {@recharge 4}", + "entries": [ + "Euryale unleashes petrifying magic from her eyes in a 30-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw if it doesn't have the {@condition blinded} condition. If the saving throw fails by 5 or more, the creature has the {@condition petrified} condition. Otherwise, on a failed save, the creature takes 14 ({@damage 4d6}) force damage, begins to turn to stone, and has the {@condition restrained} condition. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a failed save, it has the {@condition petrified} condition, and on a successful save, the effect ends on it, The petrification lasts until the creature is freed by the {@spell Greater Restoration} spell or other magic A creature can use its reaction, if available, to shut its eyes to avoid the saving throw. If the creature does so, it has the {@condition blinded} condition until the end of its next turn." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "Euryale moves up to her speed." + ] + }, + { + "name": "Venomous Strike (Costs 2 Actions)", + "entries": [ + "Euryale makes one Snake Bite attack. If the target has the {@condition poisoned} condition, the attack deals an extra 16 ({@damage 3d10}) poison damage." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "DU" + ], + "damageTags": [ + "A", + "B", + "I", + "O", + "P" + ], + "spellcastingTags": [ + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "petrified", + "poisoned", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fate Hag", + "source": "BMT", + "page": 176, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 13, + "int": 12, + "wis": 18, + "cha": 15, + "save": { + "con": "+3", + "wis": "+6" + }, + "skill": { + "arcana": "+5", + "deception": "+6", + "history": "+5", + "perception": "+6" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 16, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "all" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "While holding its shears, the hag casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell Bless}", + "{@spell Guidance}", + "{@spell Silent Image}" + ], + "daily": { + "1e": [ + "{@spell Bane}", + "{@spell Bestow Curse}", + "{@spell Divination}", + "{@spell Scrying} (as an action)" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the hag fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Trace the Threads (1/Day)", + "entries": [ + "The hag can cast the {@spell Legend Lore} spell, requiring no material components and using Wisdom as the spellcasting ability." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hag makes two Shears attacks. It can replace one attack with a use of Spellcasting." + ] + }, + { + "name": "Shears", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage. If the target is a creature, it has disadvantage on attack rolls until the end of the hag's next turn." + ] + } + ], + "legendary": [ + { + "name": "Destined Jaunt", + "entries": [ + "The hag magically teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 30 feet of itself." + ] + }, + { + "name": "Tangle Threads", + "entries": [ + "The hag magically tangles a creature it can see within 60 feet of itself in spectral silver threads. The creature must succeed on a {@dc 14} Strength saving throw, or its speed is reduced to 0 until the end of its next turn." + ] + }, + { + "name": "Destiny Curse (Costs 2 Actions)", + "entries": [ + "The hag magically curses a creature it can see within 60 feet of itself. The creature must make a {@dc 14} Wisdom saving throw, and the creature has disadvantage on this save if it has damaged the hag within the last minute. On a failed save, the creature has disadvantage on ability checks, attack rolls, and saving throws until the curse ends. Once per turn, when the cursed creature fails one of those {@dice d20} rolls, it takes 7 ({@damage 2d6}) force damage. The curse ends after 1 minute; when the creature succeeds on a total of three ability checks, attack rolls, or saving throws in any combination; or when the hag uses this action again." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gremorly's Ghost", + "source": "BMT", + "page": 122, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 82, + "formula": "15d8 + 15" + }, + "speed": { + "walk": 0, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 7, + "dex": 14, + "con": 12, + "int": 18, + "wis": 12, + "cha": 17, + "save": { + "int": "+8", + "wis": "+5" + }, + "skill": { + "arcana": "+8", + "history": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "lightning", + "thunder", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "cold", + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Giant" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Gremorly casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "will": [ + "{@spell Dancing Lights}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "daily": { + "1": [ + "{@spell Slow}" + ], + "2e": [ + "{@spell Bestow Curse}", + "{@spell Dispel Magic}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Ethereal Sight", + "entries": [ + "Gremorly can see 60 feet into the Ethereal Plane when he is on the Material Plane, and vice versa." + ] + }, + { + "name": "Incorporeal Movement", + "entries": [ + "Gremorly can move through other creatures and objects as if they were difficult terrain. He takes 5 ({@damage 1d10}) force damage if he ends his turn inside an object." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Gremorly fails a saving throw, he can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Gremorly makes three Withering Strike attacks." + ] + }, + { + "name": "Withering Strike", + "entries": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d12}) necrotic damage." + ] + }, + { + "name": "Fell Necromancy", + "entries": [ + "Gremorly targets one creature he can see within 60 feet of himself. The target must make a {@dc 16} Constitution saving throw, taking 61 ({@damage 7d8 + 30}) necrotic damage on a failed save, or half as much damage on a successful one. In addition, Gremorly regains 9 ({@dice 2d8}) hit points." + ] + }, + { + "name": "Possession {@recharge}", + "entries": [ + "One Humanoid Gremorly can see within 5 feet of himself must succeed on a {@dc 15} Charisma saving throw or be possessed by him; Gremorly disappears, and the target has the {@condition incapacitated} condition and loses control of its body. Gremorly can't be targeted by any attack, spell, or other effect, except ones that turn Undead, and he retains his alignment, Intelligence, Wisdom, Charisma, and immunity to the {@condition charmed} and {@condition frightened} conditions. He otherwise uses the target's game statistics, but Gremorly doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the target drops to 0 hit points, Gremorly ends it as a bonus action, or Gremorly is turned or forced out by an effect like the {@spell Dispel Evil and Good} spell. When the possession ends, Gremorly reappears in an unoccupied space within 5 feet of the target. The target is immune to this Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ] + } + ], + "bonus": [ + { + "name": "Ethereal Step {@recharge 4}", + "entries": [ + "Gremorly teleports up to 30 feet to an unoccupied space he can see." + ] + } + ], + "tokenCredit": "Nidoart", + "traitTags": [ + "Incorporeal Movement", + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "D", + "DR", + "GI" + ], + "damageTags": [ + "N", + "O" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForced": [ + "charisma", + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Grim Champion of Bloodshed", + "source": "BMT", + "page": 161, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 280, + "formula": "33d8 + 132" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 12, + "con": 18, + "int": 10, + "wis": 17, + "cha": 21, + "save": { + "str": "+12", + "dex": "+7", + "con": "+10" + }, + "skill": { + "athletics": "+12", + "intimidation": "+11", + "perception": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 19, + "resist": [ + "cold", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "poisoned", + "stunned", + "unconscious" + ], + "languages": [ + "Common" + ], + "cr": "20", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the champion fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes four Blazing Morningstar attacks. It can replace one of these attacks with Blade Storm, if available." + ] + }, + { + "name": "Blazing Morningstar", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ] + }, + { + "name": "Blade Storm {@recharge 5}", + "entries": [ + "The champion conjures a churning storm of spectral blades that fills a 20-foot cube centered on a point it can see within 120 feet of itself. The storm lasts until the start of the champion's next turn. While the storm is active, the area of the storm is difficult terrain. Whenever a creature enters the storm for the first time on a turn or starts its turn there, it must make a {@dc 19} Dexterity saving throw, taking 27 ({@damage 6d8}) slashing damage on a failed saving throw, or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Furious Pursuit", + "entries": [ + "The champion moves up to its speed or commands its mount to move up to its speed. This movement doesn't provoke opportunity attacks." + ] + }, + { + "name": "Induce Violence", + "entries": [ + "The champion targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 19} Wisdom saving throw or immediately make one melee weapon attack against another creature of the champion's choice that is within the target's reach. If no creature is within the target's reach or if the target has the {@condition incapacitated} condition, the target instead takes 11 ({@damage 2d10}) psychic damage." + ] + }, + { + "name": "Menace (Costs 2 Actions)", + "entries": [ + "The champion chooses any number of creatures it can see within 30 feet of itself. Each target must succeed on a {@dc 19} Wisdom saving throw or have the {@condition frightened} condition until the end of its next turn." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "F", + "P", + "S", + "Y" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grim Champion of Desolation", + "source": "BMT", + "page": 162, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item studded leather armor|PHB}" + ] + } + ], + "hp": { + "average": 416, + "formula": "49d8 + 196" + }, + "speed": { + "walk": 30 + }, + "str": 22, + "dex": 23, + "con": 18, + "int": 12, + "wis": 20, + "cha": 19, + "save": { + "dex": "+14", + "con": "+12", + "wis": "+13" + }, + "skill": { + "deception": "+12", + "insight": "+13", + "perception": "+13", + "stealth": "+14" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 23, + "resist": [ + "cold", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "poisoned", + "stunned", + "unconscious" + ], + "languages": [ + "Common", + "Elvish" + ], + "cr": "25", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the champion fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes two Leeching Blade attacks and uses Hollow Void." + ] + }, + { + "name": "Leeching Blade", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 33 ({@damage 6d10}) cold damage, and the champion regains 10 hit points." + ] + }, + { + "name": "Hollow Void", + "entries": [ + "The champion summons a hungering rift around a creature it can see within 120 feet of itself. The creature must make a {@dc 22} Constitution saving throw. On a failed save, the creature takes 49 ({@damage 11d8}) force damage and has the {@condition stunned} condition until the start of the champion's next turn. On a successful save, the creature takes half as much damage only. If a creature is reduced to 0 hit points by this effect, the creature dies, and its body crumbles to dust." + ] + } + ], + "bonus": [ + { + "name": "Step into Nothing {@recharge 4}", + "entries": [ + "The champion, along with any equipment it is wearing or carrying, has the {@condition invisible} condition and teleports to an unoccupied space it can see within 30 feet of itself. The champion remains {@condition invisible} until the start of its next turn or immediately after it deals damage." + ] + } + ], + "legendary": [ + { + "name": "Crush", + "entries": [ + "The champion unleashes a burst of crushing force on a creature it can see within 30 feet of itself. The creature must succeed on a {@dc 22} Strength saving throw or take 14 ({@damage 4d6}) force damage and have the {@condition prone} condition." + ] + }, + { + "name": "Fearsome Pursuit", + "entries": [ + "The champion moves up to its speed or commands its mount to move up to its speed. This movement doesn't provoke opportunity attacks." + ] + }, + { + "name": "Nullify (Costs 2 Actions)", + "entries": [ + "The champion emits a magic wave in a 60-foot cone. Every spell of 5th level or lower ends on creatures and objects of the champion's choice in that area." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "C", + "O", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "prone", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grim Champion of Pestilence", + "source": "BMT", + "page": 163, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 10, + "dex": 18, + "con": 16, + "int": 17, + "wis": 15, + "cha": 21, + "save": { + "dex": "+9", + "cha": "+10" + }, + "skill": { + "arcana": "+8", + "perception": "+7", + "stealth": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "cold", + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "poisoned", + "stunned", + "unconscious" + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The champion casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell Detect Magic}", + "{@spell Mage Armor} (self only)" + ], + "daily": { + "2e": [ + "{@spell Blight}", + "{@spell Blindness/Deafness}" + ], + "1e": [ + "{@spell Cloudkill}", + "{@spell Contagion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Halo of Pestilence", + "entries": [ + "The champion is surrounded by an aura of deadly magic that takes the form of a host of glowing white insects. Each creature that starts its turn within 10 feet of the champion must succeed on a {@dc 18} Constitution saving throw or have the {@condition incapacitated} condition until the start of its next turn, as the insects ravage its body." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the champion fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes two Blight Staff attacks, two Plague Bolt attacks, or one of each." + ] + }, + { + "name": "Blight Staff", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage." + ] + }, + { + "name": "Plague Bolt", + "entries": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}23 ({@damage 4d8 + 5}) poison damage, and the target has the {@condition poisoned} condition until the start of the champion's next turn." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "The champion makes one Blight Staff or Plague Bolt attack." + ] + }, + { + "name": "Furious Pursuit", + "entries": [ + "The champion moves up to its speed or commands its mount to move up to its speed. This movement doesn't provoke opportunity attacks." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The champion uses Spellcasting." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "B", + "I", + "N" + ], + "damageTagsSpell": [ + "I", + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "poisoned", + "stunned" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Harrow Hawk", + "source": "BMT", + "page": 177, + "size": [ + "T" + ], + "type": "undead", + "alignment": [ + "U" + ], + "ac": [ + 13 + ], + "hp": { + "average": 25, + "formula": "10d4" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 5, + "dex": 16, + "con": 10, + "int": 2, + "wis": 14, + "cha": 7, + "skill": { + "perception": "+6", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "cr": "1", + "action": [ + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage plus 3 ({@damage 1d6}) necrotic damage." + ] + }, + { + "name": "Plane Shift (2/Day)", + "entries": [ + "The hawk casts {@spell Plane Shift} on itself, requiring no spell components and using Wisdom as the spellcasting ability." + ] + } + ], + "bonus": [ + { + "name": "Shadow Dash", + "entries": [ + "When the hawk is in dim light or darkness, it teleports up to 30 feet to an unoccupied space it can see that is also in dim light or darkness. The hawk then has advantage on the first melee attack it makes before the end of the turn." + ] + } + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Harrow Hound", + "source": "BMT", + "page": 164, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18" + }, + "speed": { + "walk": 40 + }, + "str": 16, + "dex": 19, + "con": 16, + "int": 8, + "wis": 15, + "cha": 13, + "skill": { + "perception": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "resist": [ + "necrotic", + "psychic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Blink Dog", + "understands Sylvan but can't speak it" + ], + "cr": "3", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The hound has advantage on attack rolls against a creature if at least one of the hound's allies is within 5 feet of the target and the ally doesn't have the {@condition incapacitated} condition." + ] + }, + { + "name": "Supernatural Tracker", + "entries": [ + "The hound knows the distance to and direction of any creature that has come within 30 feet of it, even if that creature is on a different plane of existence. If the creature being tracked by the hound dies, the hound knows." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 3 ({@damage 1d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "bonus": [ + { + "name": "Shadow Step {@recharge 4}", + "entries": [ + "The hound magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see." + ] + } + ], + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "OTH", + "S" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Helmed Horror Detention Drone", + "source": "BMT", + "page": 135, + "_copy": { + "name": "Helmed Horror", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "helmed horror", + "with": "drone" + }, + "action": [ + { + "mode": "appendArr", + "items": { + "name": "Detention Orb", + "entries": [ + "The drone launches a tiny orb of magical force at a creature it can see within 30 feet of itself. The creature must succeed on a {@dc 15} Constitution saving throw or be encased in the orb, which expands to a size just large enough to contain the creature. While encased, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Nothing can pass through the orb, nor can any creature teleport or use planar travel to enter or exit the orb. As a bonus action, the drone can move the orb and its contents up to 30 feet in any direction. A successful casting of the {@spell Dispel Magic} spell on the orb ({@dc 15}) destroys it. The orb otherwise remains intact until the drone spends an action to end the effect or the drone is destroyed. A drone can have only one detention orb active at a time; if the drone creates a detention orb when it already has one active, the first orb disappears, freeing the creature inside." + ] + } + } + ] + } + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "tokenCredit": "Databuffer", + "hasToken": true, + "hasFluff": true + }, + { + "name": "Hierophant Medusa", + "source": "BMT", + "page": 179, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 237, + "formula": "25d10 + 100" + }, + "speed": { + "walk": 40, + "climb": 40, + "swim": 40 + }, + "str": 22, + "dex": 20, + "con": 18, + "int": 15, + "wis": 23, + "cha": 22, + "save": { + "con": "+10", + "wis": "+12" + }, + "skill": { + "insight": "+12", + "perception": "+12", + "persuasion": "+12", + "religion": "+8", + "stealth": "+11" + }, + "passive": 22, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "petrified", + "poisoned" + ], + "languages": [ + "Common plus any three languages (Abyssal, Celestial, Druidic, or Infernal recommended)" + ], + "cr": "17", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The medusa casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 20}):" + ], + "will": [ + "{@spell Light}", + "{@spell Spare the Dying}", + "{@spell Thaumaturgy}" + ], + "daily": { + "2": [ + "{@spell Mass Cure Wounds} (cast at 8th level)" + ], + "1e": [ + "{@spell Blade Barrier}", + "{@spell Divination}", + "{@spell Greater Restoration}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Devotion's Call (1/Day)", + "entries": [ + "The medusa can cast the {@spell Resurrection} spell, requiring no material components and using Wisdom as the spellcasting ability." + ] + }, + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If the medusa fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The medusa makes one Constrict attack, one Final Blade attack, and one Snake Hair attack. Alternatively, it makes two Wrathful Strike attacks." + ] + }, + { + "name": "Constrict", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 20}). Until this grapple ends, the target has the {@condition restrained} condition, and the medusa can't constrict another creature." + ] + }, + { + "name": "Final Blade", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 21 ({@damage 6d6}) force damage. If the target has at least one head and the medusa rolled a 20 on the attack roll, the target is decapitated and dies if it fails a {@dc 20} Constitution saving throw and can't survive without that head. A target is immune to this effect if it takes none of the damage, has legendary actions, or is Huge or larger. Such a creature takes an extra 28 ({@damage 8d6}) force damage from the hit." + ] + }, + { + "name": "Snake Hair", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ] + }, + { + "name": "Wrathful Strike", + "entries": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one creature. {@h}22 ({@damage 3d10 + 6}) radiant damage, and the target has the {@condition blinded} condition until the end of its next turn." + ] + } + ], + "bonus": [ + { + "name": "Petrifying Gaze {@recharge 4}", + "entries": [ + "The medusa unleashes petrifying magic from its eyes in a 30-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw if it doesn't have the {@condition blinded} condition. If the saving throw fails by 5 or more, the creature has the {@condition petrified} condition. Otherwise, on a failed save, the creature takes 10 ({@damage 3d6}) force damage, begins to turn to stone, and has the {@condition restrained} condition. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a failed save, it has the {@condition petrified} condition, and on a successful save, the effect ends on it. The petrification lasts until the creature is freed by the {@spell Greater Restoration} spell or other magic.", + "A creature can use its reaction, if available, to shut its eyes to avoid the saving throw. If the creature does so, it has the {@condition blinded} condition until the end of its next turn." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The medusa moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Wrathful Blast (Costs 2 Actions)", + "entries": [ + "The medusa makes one Wrathful Strike attack." + ] + }, + { + "name": "Final Slash (Costs 3 Actions)", + "entries": [ + "The medusa makes one Final Blade attack with advantage." + ] + } + ], + "legendaryGroup": { + "name": "Hierophant Medusa", + "source": "BMT" + }, + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "CE", + "DU", + "I", + "X" + ], + "damageTags": [ + "B", + "I", + "O", + "P", + "R", + "S" + ], + "damageTagsSpell": [ + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hierophant of the Comet", + "source": "BMT", + "page": 92, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "{@item breastplate|PHB}" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 13, + "con": 18, + "int": 15, + "wis": 17, + "cha": 20, + "save": { + "wis": "+7", + "cha": "+9" + }, + "skill": { + "arcana": "+10", + "deception": "+9", + "persuasion": "+9", + "religion": "+6" + }, + "senses": [ + "truesight 30 ft." + ], + "passive": 13, + "resist": [ + "psychic" + ], + "languages": [ + "Common plus any two languages", + "telepathy 60 ft." + ], + "cr": "11", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The hierophant casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell Detect Thoughts}", + "{@spell Mage Hand}", + "{@spell Thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell Dimension Door}", + "{@spell Mass Suggestion}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Comet's Voice (1/Day)", + "entries": [ + "The hierophant can cast {@spell Contact Other Plane}, using Charisma as the spellcasting ability." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The hierophant has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Thought Shield", + "entries": [ + "The hierophant's thoughts can't be read by any means unless the hierophant allows it." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hierophant makes two Herald's Axe attacks or three Comet Blast attacks." + ] + }, + { + "name": "Herald's Axe", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ] + }, + { + "name": "Comet Blast", + "entries": [ + "{@atk rs} {@hit 9} to hit, range 120 ft., one target. {@h}16 ({@damage 2d10 + 5}) force damage." + ] + }, + { + "name": "All-Consuming Star {@recharge}", + "entries": [ + "The hierophant conjures a manifestation of the All-Consuming Star: brilliant light and haunting screams that fill a 20-foot-radius sphere centered on a point the hierophant can see within 60 feet of itself. Each creature within the sphere has the {@condition blinded} and {@condition deafened} conditions. Each creature that enters the sphere for the first time on a turn or starts its turn there must make a {@dc 17} Wisdom saving throw. On a failed save, a creature takes 27 ({@damage 6d8}) psychic damage and has the {@condition incapacitated} condition until the start of its next turn. On a successful save, a creature takes half as much damage only. The manifestation persists until the hierophant dies, has the {@condition incapacitated} condition, uses a bonus action to end the effect, or uses this action again." + ] + } + ], + "bonus": [ + { + "name": "Star's Hunger", + "entries": [ + "The hierophant targets one creature within 30 feet of the center of its All-Consuming Star. The target must succeed on a {@dc 17} Strength saving throw or be pulled up to 30 feet toward the center of the All-Consuming Star." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "TP", + "X" + ], + "damageTags": [ + "N", + "O", + "S", + "Y" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "strength", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hulgaz", + "isNamedCreature": true, + "source": "BMT", + "page": 169, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 190, + "formula": "20d10 + 80" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 17, + "dex": 10, + "con": 18, + "int": 14, + "wis": 15, + "cha": 20, + "save": { + "wis": "+7", + "cha": "+10" + }, + "skill": { + "deception": "+10", + "insight": "+7", + "perception": "+7", + "persuasion": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "resist": [ + "acid", + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "charmed", + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "14", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Hulgaz casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell Charm Person}" + ], + "daily": { + "1": [ + "{@spell Teleport}" + ], + "2e": [ + "{@spell Dispel Magic}", + "{@spell Fog Cloud}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Hulgaz fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Hulgaz has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Hulgaz makes two Claw attacks and one Intoxicating Sting attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ] + }, + { + "name": "Intoxicating Sting", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage, and the target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition until the start of Hulgaz's next turn." + ] + }, + { + "name": "Brimstone Vapor {@recharge 5}", + "entries": [ + "Hulgaz exhales a 30-foot cone of noxious, scorching-hot vapor. Each creature in that area must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature takes 31 ({@damage 7d8}) fire damage at the start of each of its turns and has disadvantage on Wisdom saving throws. A target can repeat the Constitution saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "legendary": [ + { + "name": "Attack", + "entries": [ + "Hulgaz makes one Claw attack." + ] + }, + { + "name": "Charm", + "entries": [ + "Hulgaz uses Spellcasting to cast {@spell Charm Person}." + ] + }, + { + "name": "Curdle Heart (Costs 2 Actions)", + "entries": [ + "Hulgaz sours the good feelings of her {@condition charmed} victims. She chooses any number of creatures she can see who are {@condition charmed} by her. Each target takes 17 ({@damage 5d6}) psychic damage as the {@condition charmed} condition applied by Hulgaz ends on it." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "F", + "I", + "P", + "S", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Initiate of the Comet", + "source": "BMT", + "page": 93, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "warlock" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + 12 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 14, + "con": 16, + "int": 11, + "wis": 13, + "cha": 17, + "save": { + "wis": "+3", + "cha": "+5" + }, + "skill": { + "arcana": "+2" + }, + "passive": 11, + "languages": [ + "Common plus any one language" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The initiate casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell Mage Hand}", + "{@spell Thaumaturgy}" + ], + "daily": { + "1e": [ + "{@spell Dimension Door}", + "{@spell Divination}", + "{@spell Enthrall}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The initiate has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The initiate makes two Comet Strike attacks." + ] + }, + { + "name": "Comet Strike", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Moment of Foresight (1/Day)", + "entries": [ + "When hit by an attack roll, the initiate can force the attacker to reroll it and use the new roll, possibly causing the attack to miss." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Living Portent", + "source": "BMT", + "page": 180, + "size": [ + "S", + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 14, + "dex": 16, + "con": 14, + "int": 14, + "wis": 16, + "cha": 15, + "save": { + "dex": "+5", + "wis": "+5" + }, + "skill": { + "arcana": "+6", + "history": "+6", + "insight": "+5", + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "immune": [ + "radiant" + ], + "conditionImmune": [ + "exhaustion" + ], + "languages": [ + "all" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The living portent casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "daily": { + "2": [ + "{@spell Cure Wounds}" + ], + "1e": [ + "{@spell Divination}", + "{@spell Greater Restoration}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Brilliance (True Form Only)", + "entries": [ + "The living portent sheds bright light for 30 feet and dim light for an additional 30 feet." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The living portent makes two Radiant Strike attacks." + ] + }, + { + "name": "Radiant Strike", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}9 ({@damage 1d12 + 3}) radiant damage." + ] + }, + { + "name": "Prophetic Blessing", + "entries": [ + "The living portent magically infuses the power of its prophecy into another willing creature the living portent can see within 30 feet of itself. The target's hit point maximum and current hit points increase by 7 ({@dice 1d8 + 3}), and it gains a prophecy die, a {@dice d8}. Once during each of the creature's turns, when it fails an ability check or saving throw or misses an attack roll, it can roll the prophecy die and add the number rolled to the total, potentially changing the outcome. The blessing ends after 1 hour or when the living portent ends the blessing (no action required) or uses this action again." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The living portent magically transforms into a Humanoid while retaining its game statistics (other than its size and Brilliance trait). The transformation ends if the living portent is reduced to 0 hit points or uses a bonus action to end it." + ] + } + ], + "reaction": [ + { + "name": "Price of Defiance", + "entries": [ + "When the living portent is damaged by a creature that it can see within 120 feet of itself, radiant power sears the creature. The creature must make a {@dc 13} Constitution saving throw, taking 10 ({@damage 3d6}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "variant": [ + { + "name": "Servants of Living Stars", + "type": "variant", + "entries": [ + "Some stars in the sky are Elder Evils, alien beings of godlike power from the reality-defying Far Realm.", + "A living portent can be a fragment of these beings' will. These living portents are Aberrations instead of Celestials and are typically chaotic evil. They replace any radiant damage in their stat block with necrotic or psychic damage (DM's choice). Their spells might also be different. Some known Elder Evils include the following:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Acamar", + "entry": "A dead star that consumes other stars or sidereal bodies it encounters." + }, + { + "type": "item", + "name": "Caiphon, the Dream Whisperer", + "entry": "A purple star whose guidance and minions seem to help for a time but whose influence inevitably leads to disaster." + }, + { + "type": "item", + "name": "Hadar, the Dark Hunger", + "entry": "A cinder-red dying star that siphons life from its minions to avert its own demise." + }, + { + "type": "item", + "name": "Khirad, the Star of Secrets", + "entry": "A blue-white star whose gifts grant insight but also reveal terrible truths." + }, + { + "type": "item", + "name": "Zhudun, the Corpse Star", + "entry": "A dead star that whispers of the power to defy death." + } + ] + } + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "R" + ], + "spellcastingTags": [ + "O" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Living Star (Necrotic)", + "source": "BMT", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "\\bradiant\\b", + "with": "necrotic" + } + }, + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "variant": null + }, + { + "name": "Living Star (Psychic)", + "source": "BMT", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "\\bradiant\\b", + "with": "psychic" + } + }, + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "variant": null + } + ] + }, + { + "name": "Malaxxix", + "isNamedCreature": true, + "source": "BMT", + "page": 173, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "yugoloth" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 312, + "formula": "25d12 + 150" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "str": 23, + "dex": 16, + "con": 22, + "int": 22, + "wis": 20, + "cha": 18, + "save": { + "str": "+12", + "con": "+12" + }, + "skill": { + "arcana": "+12", + "athletics": "+12", + "perception": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "cr": "18", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Malaxxix fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Malaxxix has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Malaxxix makes two Forge Hammer or Whip attacks in any combination." + ] + }, + { + "name": "Forge Hammer", + "entries": [ + "{@atk mw,rw} {@hit 12} to hit, reach 10 ft. or range 60/180 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage, and the target can't take reactions until the end of Malaxxix's next turn. {@hom}The hammer then magically returns to Malaxxix's hand." + ] + }, + { + "name": "Whip", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 30 ft., one creature. {@h}15 ({@damage 2d8 + 6}) slashing damage, and the target has the {@condition restrained} condition for 1 minute. The {@condition restrained} target can make a {@dc 20} Strength saving throw at the end of each of its turns, ending the effect on itself on a success. Only one creature can be {@condition restrained} by the whip at a time." + ] + }, + { + "name": "Mezzoloth Vortex {@recharge 5}", + "entries": [ + "Malaxxix summons a vortex of whirling mezzoloths at a point it can see within 90 feet of itself. The vortex is a 30-foot-radius, 100-foot-high cylinder centered on that point. Each creature other than Malaxxix in that area must make a {@dc 20} Dexterity saving throw. On a failed save, a creature takes 35 ({@damage 10d6}) force damage and has the {@condition restrained} condition while within the cylinder. On a successful save, a creature takes half as much damage and is pushed to the nearest unoccupied space outside the cylinder. The vortex lasts until the start of Malaxxix's next turn." + ] + } + ], + "legendary": [ + { + "name": "Fiendish Stride", + "entries": [ + "Malaxxix moves up to its speed. This movement doesn't provoke opportunity attacks. When Malaxxix moves within 5 feet of a creature during this movement, that creature takes 5 ({@damage 1d10}) lightning damage. A creature can take this damage only once per turn." + ] + }, + { + "name": "Attack (Costs 2 Actions)", + "entries": [ + "Malaxxix makes one Forge Hammer or Whip attack." + ] + } + ], + "legendaryGroup": { + "name": "Malaxxix", + "source": "BMT" + }, + "attachedItems": [ + "whip|phb" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "I", + "TP" + ], + "damageTags": [ + "B", + "L", + "O", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Minotaur Archaeologist", + "source": "BMT", + "page": 126, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 18, + "formula": "4d8" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 10, + "con": 11, + "int": 13, + "wis": 12, + "cha": 10, + "skill": { + "arcana": "+3", + "history": "+5", + "perception": "+5", + "religion": "+3" + }, + "passive": 15, + "languages": [ + "Common" + ], + "cr": "1/4", + "trait": [ + { + "name": "Labyrinthine Recall", + "entries": [ + "The minotaur can perfectly recall any path it has traveled." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage. If the minotaur moved at least 10 feet straight toward the target immediately before it hit, the target takes an extra 3 ({@damage 1d6}) piercing damage, and if the target is a Large or smaller creature, it must succeed on a {@dc 11} Strength saving throw or be pushed up to 10 feet from the minotaur and have the {@condition prone} condition." + ] + } + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Minotaur Infiltrator", + "source": "BMT", + "page": 127, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16" + }, + "speed": { + "walk": 40 + }, + "str": 18, + "dex": 11, + "con": 14, + "int": 8, + "wis": 16, + "cha": 10, + "skill": { + "deception": "+2", + "perception": "+7", + "religion": "+1" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "languages": [ + "Abyssal", + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "Labyrinthine Recall", + "entries": [ + "The minotaur can perfectly recall any path it has traveled." + ] + } + ], + "action": [ + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage while enlarged. If the minotaur moved at least 10 feet straight toward the target immediately before it hit, the target takes an extra 4 ({@damage 1d8}) piercing damage, or 9 ({@damage 2d8}) piercing damage if the minotaur is enlarged. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet from the minotaur and have the {@condition prone} condition." + ] + }, + { + "name": "Mattock", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage, or 17 ({@damage 2d12 + 4}) bludgeoning damage while enlarged. If the target is a creature and the minotaur is enlarged, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Enlarge (Recharges after a Short or Long Rest)", + "entries": [ + "For 1 minute, the minotaur magically increases in size, along with anything it is wearing or carrying. While enlarged, the minotaur is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the minotaur lacks the room to become Large, the minotaur doesn't change size." + ] + } + ], + "bonus": [ + { + "name": "Unerring Tracker", + "entries": [ + "The minotaur magically creates a psychic link with one creature it can see. For the next hour, the minotaur knows the current distance and direction to the target if it is on the same plane of existence. The link ends if the minotaur has the {@condition incapacitated} condition or uses this ability on a different target." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Oddlewin", + "isNamedCreature": true, + "source": "BMT", + "page": 111, + "size": [ + "S" + ], + "type": { + "type": "fey", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 21, + "formula": "6d6" + }, + "speed": { + "walk": 30 + }, + "str": 8, + "dex": 14, + "con": 10, + "int": 10, + "wis": 16, + "cha": 15, + "skill": { + "performance": "+4", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Common", + "Goblin", + "Sylvan" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Oddlewin casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell Mage Hand}", + "{@spell Tasha's Hideous Laughter}" + ], + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fortune Teller", + "entries": [ + "Oddlewin can cast the {@spell Augury} spell as a ritual, using cards as the material component." + ] + }, + { + "name": "Nilbogism", + "entries": [ + "Any creature that attempts to damage Oddlewin must first succeed on a {@dc 12} Charisma saving throw or have the {@condition charmed} condition until the end of the creature's next turn. The creature must use its action praising Oddlewin.", + "Oddlewin can't regain hit points, including through magical healing, except through his Reversal of Fortune reaction." + ] + } + ], + "action": [ + { + "name": "Fool's Scepter", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Cloud of Cards", + "entries": [ + "Oddlewin conjures magical cards that slash at the air in a 5-foot cube within 60 feet of Oddlewin until the start of Oddlewin's next turn. A creature that starts its turn in the cube or that enters that area for the first time on a turn takes 10 ({@damage 4d4}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "Oddlewin takes the Disengage or Hide action." + ] + } + ], + "reaction": [ + { + "name": "Reversal of Fortune", + "entries": [ + "In response to another creature dealing damage to Oddlewin, Oddlewin reduces the damage to 0 and regains 9 ({@dice 2d8}) hit points." + ] + } + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "GO", + "S" + ], + "damageTags": [ + "B", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone" + ], + "savingThrowForced": [ + "charisma" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Otherworldly Corrupter", + "source": "BMT", + "page": 47, + "size": [ + "S", + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 217, + "formula": "29d8 + 87" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 12, + "dex": 22, + "con": 16, + "int": 22, + "wis": 18, + "cha": 20, + "save": { + "dex": "+12", + "int": "+12" + }, + "skill": { + "perception": "+10", + "stealth": "+18" + }, + "senses": [ + "blindsight 30 ft." + ], + "passive": 20, + "resist": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "telepathy 120 ft.", + "Thieves' cant" + ], + "cr": { + "cr": "17", + "lair": "18" + }, + "trait": [ + { + "name": "Alien Mind", + "entries": [ + "Magic and other features can't determine the corrupter's creature type. If a creature tries to read the corrupter's thoughts, that creature must succeed on a {@dc 20} Intelligence saving throw or have the {@condition stunned} condition for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the corrupter fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The corrupter can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The corrupter makes three Whispering Blade attacks and can use Debilitating Touch." + ] + }, + { + "name": "Whispering Blade", + "entries": [ + "{@atk mw,rw} {@hit 12} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 14 ({@damage 4d6}) psychic damage. If the target is a creature, it must succeed on a {@dc 20} Wisdom saving throw or be unable to speak until the start of the corrupter's next turn." + ] + }, + { + "name": "Debilitating Touch", + "entries": [ + "The corrupter's squirming tentacle lashes out at a creature the corrupter can see within 30 feet of itself. The target must succeed on a {@dc 20} Constitution saving throw or have the {@condition paralyzed} condition until the end of its next turn, after which the target is immune to this Debilitating Touch for 24 hours." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The corrupter magically transforms into any creature that is Small or Medium, while retaining its game statistics (other than its size). This transformation ends if the corrupter is reduced to 0 hit points or uses a bonus action to end it." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "When an attacker the corrupter can see hits the corrupter with an attack, the corrupter halves the attack's damage against it." + ] + } + ], + "legendary": [ + { + "name": "Cunning", + "entries": [ + "The corrupter escapes nonmagical restraints and ends the {@condition grappled} and {@condition restrained} conditions on itself, then moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Stab (Costs 2 Actions)", + "entries": [ + "The corrupter makes one Whispering Blade attack." + ] + }, + { + "name": "Amorphous Escape (Costs 3 Actions)", + "entries": [ + "The corrupter dissolves into a shifting mass of flesh, tentacles, eyes, claws, and mouths. Up to two creatures the corrupter can see within 20 feet of itself must make a {@dc 20} Intelligence saving throw, taking 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one. This transformation lasts until the end of the corrupter's next turn. While transformed, the corrupter has advantage on attack rolls, attack rolls made against it have disadvantage, and it can move through spaces at least 1 inch wide without squeezing." + ] + } + ], + "legendaryGroup": { + "name": "Villain", + "source": "BMT" + }, + "traitTags": [ + "Legendary Resistances", + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "TC", + "TP" + ], + "damageTags": [ + "P", + "Y" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "paralyzed", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "intelligence", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pazrodine", + "isNamedCreature": true, + "source": "BMT", + "page": 113, + "size": [ + "G" + ], + "type": { + "type": "dragon", + "tags": [ + "moonstone" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 330, + "formula": "20d20 + 120" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 22, + "dex": 18, + "con": 23, + "int": 20, + "wis": 22, + "cha": 26, + "save": { + "int": "+12", + "wis": "+13", + "cha": "+15" + }, + "skill": { + "perception": "+13", + "persuasion": "+15", + "stealth": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 23, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "21", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Pazrodine casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "will": [ + "{@spell Faerie Fire}" + ], + "daily": { + "2e": [ + "{@spell Calm Emotions}", + "{@spell Dispel Magic}", + "{@spell Invisibility}" + ], + "1e": [ + "{@spell Mass Cure Wounds}", + "{@spell Revivify}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Guardian of the Market", + "entries": [ + "Pazrodine can sense when an item is stolen from Seelie Market. She knows the distance and direction to stolen items, as if by the {@spell Locate Object} spell." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Pazrodine fails a saving throw, she can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Pazrodine makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 11 ({@damage 2d10}) radiant damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Breath Weapon {@recharge 5}", + "entries": [ + "Pazrodine uses one of the following breath weapons:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "Dream Breath", + "entries": [ + "Pazrodine exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or have the {@condition unconscious} condition for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ] + }, + { + "type": "item", + "name": "Moonlight Breath", + "entries": [ + "Pazrodine exhales a beam of moonlight in a 120-foot line that is 10 feet wide. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 60 ({@damage 11d10}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ] + } + ], + "legendary": [ + { + "name": "Tail", + "entries": [ + "Pazrodine makes one Tail attack." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Pazrodine uses Spellcasting." + ] + } + ], + "legendaryGroup": { + "name": "Pazrodine", + "source": "BMT" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "B", + "P", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "savingThrowForcedLegendary": [ + "charisma", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quadrone Detention Drone", + "group": null, + "source": "BMT", + "page": 135, + "_copy": { + "name": "Quadrone", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "quadrone", + "with": "drone" + }, + "action": [ + { + "mode": "appendArr", + "items": { + "name": "Detention Orb", + "entries": [ + "The drone launches a tiny orb of magical force at a creature it can see within 30 feet of itself. The creature must succeed on a {@dc 15} Constitution saving throw or be encased in the orb, which expands to a size just large enough to contain the creature. While encased, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Nothing can pass through the orb, nor can any creature teleport or use planar travel to enter or exit the orb. As a bonus action, the drone can move the orb and its contents up to 30 feet in any direction. A successful casting of the {@spell Dispel Magic} spell on the orb ({@dc 15}) destroys it. The orb otherwise remains intact until the drone spends an action to end the effect or the drone is destroyed. A drone can have only one detention orb active at a time; if the drone creates a detention orb when it already has one active, the first orb disappears, freeing the creature inside." + ] + } + } + ] + } + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Reaper Spirit", + "source": "BMT", + "page": 50, + "summonedBySpell": "Spirit of Death|BMT", + "summonedBySpellLevel": 4, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "11 + the level of the spell (natural armor)" + } + ], + "hp": { + "special": "40 + 10 for each spell level above 4th" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 16, + "con": 16, + "int": 16, + "wis": 16, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages you speak" + ], + "pbNote": "equals your bonus", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The spirit can move through other creatures and objects as if they were difficult terrain. If it ends its turn inside an object, it is shunted to the nearest unoccupied space and takes {@damage 1d10} force damage for every 5 feet shunted." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of Reaping Scythe attacks equal to half the level of the spell (rounded down)." + ] + }, + { + "name": "Reaping Scythe", + "entries": [ + "{@atk mw} your spell attack modifier to hit (with advantage), reach 5 ft., the creature haunted by Haunt Creature. {@h}{@damage 1d8 + 3 + summonSpellLevel} necrotic damage." + ] + } + ], + "bonus": [ + { + "name": "Haunt Creature", + "entries": [ + "The spirit targets a creature it can see within 10 feet of itself and begins haunting it. While the target is haunted, you and the spirit sense the direction and distance to the target if it is on the same plane of existence as you. Additionally, if the target starts its turn within 10 feet of the spirit, the target must succeed on a Wisdom saving throw against your spell save DC or have the {@condition frightened} condition until the start of the target's next turn. The target remains haunted until it dies, the spirit disappears, or the spirit uses this action again." + ] + } + ], + "tokenCredit": "Chris Cold", + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N", + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "hasToken": true + }, + { + "name": "Riffler", + "source": "BMT", + "page": 181, + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "20d6 + 20" + }, + "speed": { + "walk": 30, + "burrow": 20 + }, + "str": 8, + "dex": 16, + "con": 12, + "int": 11, + "wis": 15, + "cha": 17, + "save": { + "dex": "+6", + "cha": "+6" + }, + "skill": { + "arcana": "+6", + "insight": "+5", + "sleight of hand": "+9", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "necrotic", + "radiant" + ], + "languages": [ + "Common", + "Sylvan" + ], + "cr": "5", + "trait": [ + { + "name": "Card Sense", + "entries": [ + "The riffler can smell the presence of magical cards, including Decks of Many Things and other magical decks, within 1 mile of itself. It knows the direction to any such cards in that range. Effects that protect a target from divination magic block this sense." + ] + }, + { + "name": "Riffling Step", + "entries": [ + "The riffler can burrow through any nonmagical material that isn't iron, shuffling the substance through which the riffler moves aside like cards to form a tunnel that closes behind the riffler." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The riffler makes two Spectral Card attacks." + ] + }, + { + "name": "Spectral Card", + "entries": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 60 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage plus 5 ({@damage 1d10}) damage that is radiant if the {@dice d10} roll is an even number and necrotic if it's odd." + ] + }, + { + "name": "Card Spray {@recharge 5}", + "entries": [ + "The riffler magically unleashes a spray of spectral cards in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw. On a failed save, a creature takes 27 ({@damage 5d10}) force damage and has the {@condition restrained} condition for 1 minute as cards bind it. On a successful save, a creature takes half as much damage only. A {@condition restrained} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Plane Shift", + "entries": [ + "The riffler casts the {@spell Plane Shift} spell targeting only itself, requiring no material components and using Charisma as the spellcasting ability." + ] + } + ], + "reaction": [ + { + "name": "Shuffle Destiny", + "entries": [ + "When a creature the riffler can see within 30 feet of itself makes an ability check, an attack roll, or a saving throw, the riffler can magically force that creature to roll a {@dice d6} and either add the number rolled to the total or subtract it from the total (riffler's choice), potentially changing the outcome." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ruin Spider", + "source": "BMT", + "page": 182, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d10 + 28" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 16, + "dex": 18, + "con": 14, + "int": 2, + "wis": 13, + "cha": 4, + "skill": { + "stealth": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "immune": [ + "acid" + ], + "cr": "5", + "trait": [ + { + "name": "Ruinous Acid", + "entries": [ + "Any nonmagical weapon that hits the spider corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the spider is destroyed after dealing damage." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The spider ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spider makes two Ruinous Bite attacks. It can replace one attack with a use of Web." + ] + }, + { + "name": "Ruinous Bite", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage and 9 ({@damage 2d8}) acid damage. In addition, if the target is a creature wearing nonmagical armor, the armor takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an Armor Class of 10 is destroyed." + ] + }, + { + "name": "Web {@recharge 5}", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 30/60 ft., one creature. {@h}The target has the {@condition restrained} condition. As an action, a {@condition restrained} target can make a {@dc 13} Strength check, bursting the webbing on a successful check. The webbing can also be destroyed (AC 10; 5 hit points; vulnerability to fire damage; immunity to acid, bludgeoning, poison, and psychic damage)." + ] + } + ], + "traitTags": [ + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sir Jared", + "source": "BMT", + "page": 80, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 17, + "int": 13, + "wis": 14, + "cha": 17, + "save": { + "str": "+7", + "con": "+6" + }, + "skill": { + "arcana": "+4", + "athletics": "+7", + "persuasion": "+6", + "survival": "+5" + }, + "passive": 12, + "conditionImmune": [ + "blinded", + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Halfling" + ], + "cr": "5", + "action": [ + { + "name": "Multiattack", + "entries": [ + "Jared makes three Longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 4 ({@damage 1d8}) radiant damage. On a roll of 19 or 20, Jared scores a critical hit." + ] + } + ], + "reaction": [ + { + "name": "Protect Ally", + "entries": [ + "When a creature Jared can see attacks a target other than Jared that is within 5 feet of him, Jared imposes disadvantage on the attack roll." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "H" + ], + "damageTags": [ + "R", + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Solar Bastion Knight", + "source": "BMT", + "page": 75, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "paladin" + ] + }, + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "{@item plate armor|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 17, + "int": 15, + "wis": 16, + "cha": 17, + "save": { + "wis": "+7", + "cha": "+7" + }, + "skill": { + "arcana": "+6", + "history": "+6" + }, + "passive": 13, + "conditionImmune": [ + "blinded", + "charmed", + "frightened" + ], + "languages": [ + "Common plus any one language" + ], + "cr": "9", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The knight casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "daily": { + "1e": [ + "{@spell Greater Restoration}", + "{@spell Sending}", + "{@spell Word of Recall} (the prepared sanctuary is the Solar Bastion)" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Aura of Protection", + "entries": [ + "The knight and each ally within 10 feet of it have advantage on saving throws. This trait is suppressed while the knight has the {@condition incapacitated} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The knight makes three Sunspear attacks." + ] + }, + { + "name": "Sunspear", + "entries": [ + "{@atk ms,rs} {@hit 8} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 3d6 + 4}) radiant damage, or 21 ({@damage 5d6 + 4}) radiant damage if the target is a Fiend or an Undead." + ] + }, + { + "name": "Solar Flare {@recharge 5}", + "entries": [ + "The knight unleashes a blaze of brilliant energy that fills a 30-foot-radius sphere centered on the knight. Each creature of the knight's choice in that area must make a {@dc 15} Dexterity saving throw. On a failed save, a creature takes 22 ({@damage 4d10}) radiant damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, a creature takes half as much damage only. For the next minute, the affected area is filled with bright light that is sunlight." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Talon Beast", + "source": "BMT", + "page": 183, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48" + }, + "speed": { + "walk": 40 + }, + "str": 22, + "dex": 14, + "con": 19, + "int": 5, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "conditionImmune": [ + "frightened" + ], + "cr": "7", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The talon beast has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sense Magic", + "entries": [ + "The talon beast can detect and pinpoint the location of magic within 120 feet of itself." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The talon beast makes two Talon attacks or a Talon attack and a Beak attack." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage, and if the target has any spell effects on itself or any magic items in its possession, the target must make a {@dc 15} Charisma saving throw. On a failed save, a random spell effect on the target ends. If the target has no spell effects on it, one random magic item in its possession has its magical properties suppressed for 1 minute. If the item is a potion or scroll, it becomes nonmagical instead." + ] + }, + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) slashing damage, and the target has the {@condition grappled} condition (escape {@dc 17}). Until the grapple ends, the target has the {@condition restrained} condition, and the talon beast can't use Talon on another target." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Veiled Presence", + "source": "BMT", + "page": 48, + "size": [ + "S", + "M" + ], + "type": "celestial", + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 20, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 300, + "formula": "40d8 + 120" + }, + "speed": { + "walk": 40, + "fly": { + "number": 80, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 14, + "dex": 24, + "con": 16, + "int": 24, + "wis": 20, + "cha": 22, + "save": { + "dex": "+14", + "int": "+14" + }, + "skill": { + "perception": "+12", + "stealth": "+21" + }, + "senses": [ + "truesight 30 ft." + ], + "passive": 22, + "resist": [ + "necrotic", + "radiant" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "all" + ], + "cr": { + "cr": "21", + "lair": "22" + }, + "trait": [ + { + "name": "Inviolate Presence", + "entries": [ + "The veiled presence can't be targeted by divination magic or by features that would read its mind or determine its creature type." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the veiled presence fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The veiled presence makes two Blade of Judgment attacks and can use Revelation." + ] + }, + { + "name": "Blade of Judgment", + "entries": [ + "{@atk mw,rw} {@hit 14} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 1d6 + 7}) piercing damage plus 27 ({@damage 6d8}) radiant damage. If the target is a creature, it must succeed on a {@dc 22} Charisma saving throw, or on its next turn, it can either move or take an action, but not both." + ] + }, + { + "name": "Revelation", + "entries": [ + "The veiled presence reveals a glimpse of its otherworldly nature to a creature it can see within 30 feet of itself. The target must succeed on a {@dc 22} Wisdom saving throw or have the {@condition paralyzed} condition until the end of its next turn, after which the target is immune to this Revelation for 24 hours." + ] + } + ], + "reaction": [ + { + "name": "Uncanny Dodge", + "entries": [ + "When an attacker the veiled presence can see hits the veiled presence with an attack, the veiled presence halves the attack's damage against it." + ] + } + ], + "legendary": [ + { + "name": "Flash Step", + "entries": [ + "The veiled presence magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space that it can see." + ] + }, + { + "name": "Stab (Costs 2 Actions)", + "entries": [ + "The veiled presence makes one Blade of Judgment attack." + ] + }, + { + "name": "Searing Radiance (Costs 3 Actions)", + "entries": [ + "The veiled presence magically emanates dazzling light in a 10-foot-radius sphere centered on itself until the end of its next turn, during which time attack rolls against it have disadvantage and it has advantage on attack rolls. The sphere moves with the veiled presence. When another creature starts its turn in the light or enters the light for the first time on its turn, that creature must make a {@dc 22} Constitution saving throw, taking 18 ({@damage 4d8}) radiant damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "legendaryGroup": { + "name": "Villain", + "source": "BMT" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "P", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "wisdom" + ], + "savingThrowForcedLegendary": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Werevulture", + "source": "BMT", + "page": 184, + "size": [ + "M" + ], + "type": "fiend", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "alternate": { + "walk": [ + { + "number": 10, + "condition": "in vulture form" + }, + { + "number": 30, + "condition": "in hybrid form" + } + ], + "fly": [ + { + "number": 60, + "condition": "in vulture or hybrid form" + } + ] + } + }, + "str": 16, + "dex": 14, + "con": 17, + "int": 11, + "wis": 13, + "cha": 8, + "skill": { + "perception": "+5" + }, + "passive": 15, + "languages": [ + "Common (can't speak in vulture form)" + ], + "cr": "4", + "trait": [ + { + "name": "Regeneration", + "entries": [ + "The werevulture regains 10 hit points at the start of its turn. If the werevulture takes radiant damage, this trait doesn't function at the start of the werevulture's next turn. The werevulture dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The werevulture makes two Talon attacks, or it makes a Beak attack and a Talon attack." + ] + }, + { + "name": "Beak (Vulture or Hybrid Form Only)", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a Humanoid, it must succeed on a {@dc 13} Constitution saving throw or be cursed until targeted by the {@spell Remove Curse} spell or a similar effect. If the cursed target drops to 0 hit points, it becomes a werevulture under the DM's control and regains 10 hit points." + ] + }, + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}13 ({@damage 4d4 + 3}) slashing damage." + ] + }, + { + "name": "Longbow (Humanoid or Hybrid Form Only)", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The werevulture polymorphs into a vulture-humanoid hybrid, into a vulture, or back into its humanoid form. Its game statistics, other than its speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its humanoid form if it dies." + ] + } + ], + "attachedItems": [ + "longbow|phb" + ], + "traitTags": [ + "Regeneration" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "CUR", + "MW", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Pech", + "source": "DitLCoT", + "page": 16, + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d6 + 44" + }, + "speed": { + "walk": 30, + "burrow": 20 + }, + "str": 19, + "dex": 11, + "con": 18, + "int": 11, + "wis": 14, + "cha": 10, + "save": { + "con": "+6", + "wis": "+4" + }, + "skill": { + "athletics": "+6", + "perception": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "passive": 14, + "conditionImmune": [ + "petrified" + ], + "languages": [ + "Common", + "Terran" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Communal Spellcasting (2/Day)", + "type": "spellcasting", + "headerEntries": [ + "The pech works with three or more pechs to cast spells, requiring no spell components and using Wisdom as the spellcasting ability (save {@dc 12}). If at least three other pechs are within 30 feet of it, the pech can cast {@spell Wall of Stone}. If at least seven other pechs are within 30 feet of it, it can cast {@spell Greater Restoration}. Each other pech involved in casting the spell can't have the incapacitated condition and must have at least one use of Communal Spellcasting remaining, which it must immediately expend to participate (no action required)." + ], + "daily": { + "2": [ + "{@spell wall of stone}", + "{@spell greater restoration}" + ] + }, + "ability": "wis", + "displayAs": "action", + "hidden": [ + "daily" + ] + }, + { + "name": "Stone Shape (3/Day)", + "type": "spellcasting", + "headerEntries": [ + "The pech casts {@spell Stone Shape}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "daily": { + "3e": [ + "{@spell stone shape}" + ] + }, + "ability": "wis", + "displayAs": "action", + "hidden": [ + "daily" + ] + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The pech has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the pech has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pech makes two Fortified Pickaxe attacks. If it hits a Large or smaller creature with both attacks, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Fortified Pickaxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) force damage. If the target is a Construct or an object, the attack is automatically a critical hit." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Alustriel Silverhand", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 242, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "wizard" + ] + }, + "alignment": [ + "C", + "G" + ], + "ac": [ + 15, + { + "ac": 18, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 272, + "formula": "32d8 + 128" + }, + "speed": { + "walk": 30 + }, + "str": 12, + "dex": 20, + "con": 18, + "int": 24, + "wis": 23, + "cha": 22, + "save": { + "con": "+11", + "int": "+14", + "wis": "+13" + }, + "skill": { + "arcana": "+14", + "history": "+14", + "insight": "+13", + "religion": "+14" + }, + "passive": 16, + "resist": [ + "radiant" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "languages": [ + "Common", + "Draconic", + "Elvish" + ], + "cr": "21", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Alustriel casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell Dancing Lights}", + "{@spell Detect Magic}", + "{@spell Mage Armor} (self only)", + "{@spell Mage Hand}" + ], + "daily": { + "2e": [ + "{@spell Detect Thoughts}", + "{@spell Dispel Magic}", + "{@spell Tongues}" + ], + "1e": [ + "{@spell Telepathy}", + "{@spell Teleport}", + "{@spell Time Stop}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Ear of the Chosen", + "entries": [ + "Whenever a creature on the same plane of existence as Alustriel speaks Alustriel's name, Alustriel hears her name and the next nine words the speaker utters." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Alustriel fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Alustriel carries a magic staff known as the Staff of Silverymoon. In the hands of anyone other than Alustriel, the Staff of Silverymoon is a {@item Staff of Power}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Alustriel makes three Staff of Silverymoon attacks or two Reproving Ray attacks." + ] + }, + { + "name": "Staff of Silverymoon", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage plus 38 ({@damage 7d10}) radiant damage." + ] + }, + { + "name": "Reproving Ray", + "entries": [ + "{@atk rs} {@hit 14} to hit, range 120 ft., one target. {@h}65 ({@damage 9d12 + 7}) force damage, and if the target is a creature, it must make a {@dc 22} Charisma saving throw. On a failed save, the target has the {@condition incapacitated} condition until the start of Alustriel's next turn. On a successful save, the target's speed is reduced by 10 feet until the start of Alustriel's next turn." + ] + }, + { + "name": "Argent Blaze (Requires Silver Fire)", + "entries": [ + "Alustriel summons a 60-foot cone of silver fire. Each creature in that area must make a {@dc 22} Dexterity saving throw, taking 77 ({@damage 14d10}) radiant damage on a failed save or half as much damage on a successful one. Additionally, Alustriel or one creature of her choice within 60 feet of her then regains 10 ({@dice 3d6}) hit points." + ] + } + ], + "bonus": [ + { + "name": "Silver Fire (2/Day)", + "entries": [ + "Brilliant silver fire harmlessly wreathes Alustriel and empowers her. The silver fire lasts for 1 hour or until she has the {@condition incapacitated} condition or uses another bonus action to quench it. While wreathed in silver fire, Alustriel gains truesight within 30 feet and can use her Argent Blaze action. In addition, Alustriel is unaffected by magic that would ascertain her alignment, creature type, thoughts, or truthfulness." + ] + } + ], + "reaction": [ + { + "name": "Shining Counterspell", + "entries": [ + "Alustriel interrupts a creature she can see within 60 feet of herself that is casting a spell. If the spell is 5th level or lower, it fails and has no effect. If the spell is 6th level or higher, Alustriel makes an Intelligence check ({@dc 10} plus the spell's level). On a successful check, the spell fails and has no effect. Whatever the spell's level, the caster takes 11 ({@damage 2d10}) radiant damage if the spell fails." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E" + ], + "damageTags": [ + "B", + "O", + "R" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "savingThrowForced": [ + "charisma", + "dexterity" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Argentia Skywright", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Werewolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the werewolf", + "with": "Argentia", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Black Rose Bearer", + "source": "VEoR", + "page": 208, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 11, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52" + }, + "speed": { + "walk": 20 + }, + "str": 17, + "dex": 6, + "con": 18, + "int": 2, + "wis": 10, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Berserk", + "entries": [ + "Whenever the bearer takes damage or makes a Strength or Dexterity saving throw, roll a {@dice d6}. On a 5 or 6, the bearer goes berserk. On each of its turns while berserk, the bearer has advantage on melee attack rolls, it can Dash as a bonus action, and it must attack the nearest creature it can see. If no creature is near enough to move to and attack, the bearer attacks an object, with preference for an object smaller than itself. Once the bearer goes berserk, it remains berserk until it is destroyed or its creator gives it a pristine black rose." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the bearer to 0 hit points, it must make a Constitution saving throw with a DC of 5 plus the damage taken, unless the damage is radiant or from a critical hit. On a successful save, the bearer drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bearer makes two Slam attacks." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage plus 11 ({@damage 2d10}) necrotic damage." + ] + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "B", + "N" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blade Lieutenant", + "source": "VEoR", + "page": 209, + "size": [ + "M" + ], + "type": { + "type": "construct", + "tags": [ + "warforged" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 13, + "con": 19, + "int": 14, + "wis": 14, + "cha": 17, + "save": { + "int": "+6", + "cha": "+7" + }, + "skill": { + "insight": "+6", + "intimidation": "+7", + "perception": "+6" + }, + "passive": 16, + "resist": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "9", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The lieutenant has advantage on an attack roll against a creature if at least one of the lieutenant's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The lieutenant makes three Longsword or Javelin Launcher attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d8 + 4}) slashing damage, or 20 ({@damage 3d10 + 4}) slashing damage if used with two hands." + ] + }, + { + "name": "Javelin Launcher", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, and the target has the {@condition prone} condition." + ] + } + ], + "bonus": [ + { + "name": "Command Ally", + "entries": [ + "The lieutenant targets one ally it can see within 30 feet of itself. If the target can see or hear the lieutenant, the target can make one melee attack using its reaction, if available, and has advantage on the attack roll." + ] + }, + { + "name": "Rally the Troops (1/Day)", + "entries": [ + "The lieutenant ends the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of itself." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The lieutenant adds 3 to its AC against one melee attack that would hit it. To do so, the lieutenant must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blade Scout", + "source": "VEoR", + "page": 209, + "size": [ + "M" + ], + "type": { + "type": "construct", + "tags": [ + "warforged" + ] + }, + "alignment": [ + "L", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 20, + "con": 16, + "int": 10, + "wis": 19, + "cha": 10, + "save": { + "dex": "+8", + "wis": "+7" + }, + "skill": { + "acrobatics": "+8", + "perception": "+7", + "stealth": "+8" + }, + "passive": 17, + "resist": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "7", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The scout has advantage on an attack roll against a creature if at least one of the scout's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The scout makes three Armblade or Bolt Launcher attacks. It can replace one of the attacks with a use of Snare Trap." + ] + }, + { + "name": "Armblade", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + }, + { + "name": "Bolt Launcher", + "entries": [ + "{@atk rw} {@hit 8} to hit, range 80/320 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ] + }, + { + "name": "Snare Trap (1/Day)", + "entries": [ + "The scout deploys a Tiny mechanical trap on a solid surface within 5 feet of itself. The trap is hidden, requiring a successful {@dc 17} Intelligence ({@skill Investigation}) check to find. The trap lasts for 1 minute. Whenever an enemy enters a space within 10 feet of the trap or starts its turn there, it must succeed on a {@dc 16} Dexterity saving throw or take 21 ({@damage 6d6}) piercing damage and have the {@condition prone} condition. A creature makes this saving throw only once per turn." + ] + } + ], + "bonus": [ + { + "name": "Dash", + "entries": [ + "The scout moves up to its speed without provoking opportunity attacks." + ] + } + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Blazebear", + "source": "VEoR", + "page": 210, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90" + }, + "speed": { + "walk": 30 + }, + "str": 24, + "dex": 17, + "con": 21, + "int": 3, + "wis": 13, + "cha": 16, + "save": { + "str": "+11", + "cha": "+7" + }, + "skill": { + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "cr": "12", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The blazebear has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Mist Sight", + "entries": [ + "The blazebear can see normally through heavily obscured areas created by mist or fog, including areas created by spells such as Fog Cloud." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blazebear makes two Bite attacks. It can replace one attack with Stunning Gaze if available." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}20 ({@damage 2d12 + 7}) piercing damage plus 11 ({@damage 2d10}) force damage." + ] + }, + { + "name": "Stunning Gaze {@recharge 5}", + "entries": [ + "The blazebear targets two creatures it can see within 120 feet of itself. Each target must succeed on a {@dc 15} Wisdom saving throw or have the {@condition stunned} condition until the start of the blazebear's next turn." + ] + } + ], + "reaction": [ + { + "name": "Antimagic Swipe", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one creature casting a spell of 3rd level or lower. {@h}22 ({@damage 4d10}) force damage, and the target must succeed on a {@dc 15} Intelligence saving throw or the spell fails and has no effect." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "O", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "stunned" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bone Roc", + "source": "VEoR", + "page": 211, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 15 + ], + "hp": { + "average": 133, + "formula": "14d12 + 42" + }, + "speed": { + "walk": 15, + "fly": 90 + }, + "str": 18, + "dex": 20, + "con": 16, + "int": 2, + "wis": 17, + "cha": 10, + "save": { + "dex": "+8", + "wis": "+6" + }, + "skill": { + "perception": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "poison" + ], + "vulnerable": [ + "bludgeoning" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "cr": "8", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The bone roc makes one Beak attack and two Talons attacks." + ] + }, + { + "name": "Beak", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Borthak", + "source": "VEoR", + "page": 212, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96" + }, + "speed": { + "walk": 30 + }, + "str": 25, + "dex": 16, + "con": 22, + "int": 4, + "wis": 14, + "cha": 15, + "save": { + "str": "+12", + "con": "+11", + "cha": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "acid", + "cold" + ], + "cr": "15", + "trait": [ + { + "name": "Glacial Aura", + "entries": [ + "At the end of the borthak's turn, slippery ice covers surfaces within 10 feet of the borthak. This ice is difficult terrain. When a creature other than the borthak enters the ice's area for the first time on a turn or starts its turn there, it must succeed on a {@dc 16} Dexterity saving throw or have the {@condition prone} condition. The ice disappears at the start of the borthak's next turn." + ] + }, + { + "name": "Webbed Feet", + "entries": [ + "The borthak can move across icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The borthak makes one Bite attack or uses Noxious Regurgitation if available, and it makes two Stomp attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage." + ] + }, + { + "name": "Noxious Regurgitation {@recharge 5}", + "entries": [ + "The borthak spews acid at a creature it can see within 120 feet of itself. The target must make a {@dc 21} Constitution saving throw. On a failed save, the creature takes 24 ({@damage 7d6}) acid damage and has the {@condition poisoned} condition until the start of the borthak's next turn. On a successful save, the creature takes half as much damage only." + ] + } + ], + "reaction": [ + { + "name": "Reactive Tail", + "entries": [ + "When a creature within 10 feet of the borthak hits the borthak with an attack roll, the borthak swings its tail in retaliation. The triggering creature and any creature within 5 feet of it must succeed on a {@dc 16} Dexterity saving throw or take 16 ({@damage 2d8 + 7}) bludgeoning damage." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "The borthak moves up to its speed without provoking opportunity attacks." + ] + }, + { + "name": "Bite (Costs 2 Actions)", + "entries": [ + "The borthak makes one Bite attack." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Camlash", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 181, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 325, + "formula": "26d12 + 156" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 26, + "dex": 15, + "con": 22, + "int": 20, + "wis": 16, + "cha": 22, + "save": { + "str": "+14", + "con": "+12", + "wis": "+9", + "cha": "+12" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "19", + "trait": [ + { + "name": "Death Throes", + "entries": [ + "Camlash explodes when reduced to 0 hit points, and each creature within 30 feet of Camlash must make a {@dc 21} Dexterity saving throw, taking 70 ({@damage 20d6}) fire damage on a failed save or half as much damage on a successful one. The explosion ignites flammable objects in that area that aren't being worn or carried." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Camlash has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Aura", + "entries": [ + "Camlash is surrounded by tiny biting spiders that magically appear and disappear from moment to moment. At the start of each of Camlash's turns, each creature within 10 feet of Camlash takes 10 ({@damage 3d6}) poison damage and must succeed on a {@dc 21} Constitution saving throw or have the {@condition paralyzed} condition until the start of Camlash's next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Camlash makes one Flaming Whip attack and one Lightning Blade attack. Camlash can replace one of these attacks with Teleport." + ] + }, + { + "name": "Flaming Whip", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}25 ({@damage 5d6 + 8}) fire damage, and if the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pulled up to 25 feet toward Camlash." + ] + }, + { + "name": "Lightning Blade", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage plus 13 ({@damage 3d8}) lightning damage." + ] + }, + { + "name": "Teleport", + "entries": [ + "Camlash magically teleports, along with any equipment she is wearing or carrying, up to 120 feet to an unoccupied space she can see." + ] + } + ], + "traitTags": [ + "Death Burst", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Teleport" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "F", + "I", + "L", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Citadel Spider", + "source": "VEoR", + "page": 214, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 310, + "formula": "20d20 + 150" + }, + "speed": { + "walk": 50, + "climb": 50 + }, + "str": 26, + "dex": 10, + "con": 21, + "int": 6, + "wis": 12, + "cha": 9, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "passive": 11, + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "cr": "18", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the spider fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The spider ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spider makes two Bite attacks. It can replace one of these attacks with a use of Web Bomb." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Web Bomb", + "entries": [ + "{@atk rw} {@hit 14} to hit, range 300 ft./600 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage, and the target and all creatures within 10 feet of it must succeed on a {@dc 19} Dexterity saving throw or take 10 ({@damage 3d6}) acid damage and have the {@condition restrained} condition until the start of the spider's next turn." + ] + } + ], + "reaction": [ + { + "name": "Absorb Blow", + "entries": [ + "In response to being hit with an attack roll, the spider's carapace absorbs some of the blow, reducing the damage it takes by 11 ({@dice 2d10})." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Spider Climb", + "Web Walker" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "restrained" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Crunch", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Blade Scout", + "source": "VEoR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Crunch", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Deadbark Dryad", + "source": "VEoR", + "page": 216, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 16, + "con": 18, + "int": 11, + "wis": 16, + "cha": 18, + "save": { + "con": "+9", + "cha": "+9" + }, + "skill": { + "perception": "+8", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 18, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Elvish", + "Sylvan" + ], + "cr": "13", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The dryad casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell Druidcraft}" + ], + "daily": { + "1": [ + "{@spell Dispel Magic}" + ], + "2e": [ + "{@spell Pass without Trace}", + "{@spell Spike Growth}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Bramble Walk", + "entries": [ + "Difficult terrain composed of vegetation, such as foliage or thorns, doesn't cost the dryad extra movement." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The dryad has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Speak with Beasts and Plants", + "entries": [ + "The dryad can communicate with Beasts and Plants as if they shared a language." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The dryad makes two Poisonous Thorn attacks and one Sapping Vine attack." + ] + }, + { + "name": "Poisonous Thorn", + "entries": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 120 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage. If the target is a creature, it must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition until the start of the dryad's next turn." + ] + }, + { + "name": "Sapping Vine", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 30 ft., one target. {@h}The target has the {@condition grappled} condition (escape {@dc 16}). Until the grapple ends, the target has the {@condition restrained} condition, and the dryad can't use the same vine on another target. A creature {@condition restrained} in this way takes 13 ({@damage 3d8}) necrotic damage at the start of its turn.", + "The dryad has six vines. Each vine can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a vine deals no damage to the dryad, but any creature {@condition grappled} by that vine no longer has the {@condition grappled} condition. All vines immediately wither and disappear when the dryad is reduced to 0 hit points." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "E", + "S" + ], + "damageTags": [ + "I", + "N", + "P" + ], + "damageTagsSpell": [ + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Deathwolf", + "source": "VEoR", + "page": 217, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 16, + "con": 18, + "int": 10, + "wis": 17, + "cha": 19, + "save": { + "str": "+10", + "dex": "+8", + "cha": "+9" + }, + "skill": { + "perception": "+13", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 23, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "15", + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If the deathwolf fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Moon's Grace", + "entries": [ + "When the deathwolf falls, it descends at a rate of 60 feet per round and takes no falling damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The deathwolf makes one Bite attack and two Claw attacks. It can replace one of these attacks with Phantom Deathwolf if available." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. The target must succeed on a {@dc 16} Wisdom saving throw or have disadvantage on saving throws against the {@condition frightened} condition. This curse lasts until removed by the {@spell Remove Curse} spell or other magic." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 4 ({@damage 1d8}) necrotic damage." + ] + }, + { + "name": "Phantom Deathwolf {@recharge 5}", + "entries": [ + "The deathwolf creates a terrifying phantom of itself in the mind of a creature the deathwolf can see within 60 feet of itself. The target must succeed on a {@dc 17} Intelligence saving throw or have the {@condition frightened} condition for 1 minute.", + "While the target is {@condition frightened}, the phantom deals 21 ({@damage 6d6}) psychic damage to the target at the start of each of the target's turns. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "reactionHeader": [ + "The deathwolf can take up to two reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Imposing Slash", + "entries": [ + "When a creature within 5 feet of the deathwolf makes an attack roll against it, the deathwolf forces the creature to succeed on a {@dc 17} Wisdom saving throw or have disadvantage on that roll. After the attack hits or misses, the deathwolf makes one Claw attack against the creature." + ] + }, + { + "name": "Phase Step", + "entries": [ + "Immediately after taking damage, the deathwolf teleports up to 30 feet to an unoccupied space it can see that is in dim light or darkness." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N", + "P", + "S", + "Y" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "intelligence", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Degloth", + "source": "VEoR", + "page": 218, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 23, + "dex": 17, + "con": 18, + "int": 6, + "wis": 11, + "cha": 9, + "save": { + "str": "+10", + "con": "+8" + }, + "skill": { + "athletics": "+10", + "perception": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "11", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The degloth has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The degloth makes two Razor Fist attacks." + ] + }, + { + "name": "Razor Fist", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage, and if the target is a Medium or smaller creature, the target has the {@condition grappled} condition (escape {@dc 18}). Until this grapple ends, the target has the {@condition restrained} condition, and the degloth can't use this fist to grapple another target. The degloth has two fists." + ] + } + ], + "bonus": [ + { + "name": "Crush", + "entries": [ + "The degloth targets one creature currently {@condition grappled} by it. The target must make a {@dc 18} Strength saving throw, taking 15 ({@damage 2d8 + 6}) bludgeoning damage on a failed save or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Eldon Keyward", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Eldon", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "False Lich", + "source": "VEoR", + "page": 220, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 199, + "formula": "21d8 + 105" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 16, + "con": 20, + "int": 25, + "wis": 19, + "cha": 15, + "save": { + "con": "+12", + "int": "+14", + "wis": "+11", + "cha": "+9" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 14, + "immune": [ + "necrotic", + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "stunned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Giant", + "Infernal", + "Primordial", + "Undercommon" + ], + "cr": "21", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The false lich casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell Detect Magic}", + "{@spell Fly}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "daily": { + "3e": [ + "{@spell Dispel Magic}", + "{@spell Invisibility} (self only)" + ], + "1e": [ + "{@spell Globe of Invulnerability}", + "{@spell Hold Monster}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the false lich fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The false lich has advantage on saving throws against spells and magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The false lich makes two Death Rend attacks and uses Bloodcurdling Lament if available." + ] + }, + { + "name": "Death Rend", + "entries": [ + "{@atk ms} {@hit 14} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) necrotic damage." + ] + }, + { + "name": "Bloodcurdling Lament {@recharge 5}", + "entries": [ + "The false lich emits a hideous shriek charged with malignant energy. Each creature within 30 feet of the false lich must succeed on a {@dc 22} Wisdom saving throw or have the {@condition frightened} condition for 1 minute. While {@condition frightened} in this way, a creature also has the {@condition unconscious} condition. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Soul Siphon", + "entries": [ + "The false lich targets one creature it can see within 120 feet of itself. The target must make a {@dc 22} Charisma saving throw; if the target has the {@condition unconscious} condition, it has disadvantage on this saving throw. The target takes 21 ({@damage 6d6}) force damage on a failed save or half as much damage on a successful one. The false lich then regains a number of hit points equal to the amount of force damage taken.", + "If this damage reduces the target to 0 hit points, the target immediately dies, its body disappears, and its soul is trapped inside one of the soul gems within the false lich's skull. After 24 hours, the gem transfers the soul to the false lich's creator.", + "When the false lich is reduced to 0 hit points, it is destroyed and disintegrates, leaving behind the gems. Crushing a gem releases any souls trapped within, at which point the soul's body re-forms in an unoccupied space nearest to the gem and in the same state as it was when its soul was trapped." + ] + } + ], + "legendary": [ + { + "name": "Spiteful Teleport", + "entries": [ + "The false lich, along with anything it is wearing or carrying, teleports to an unoccupied space it can see within 60 feet of itself. It then makes one Death Rend attack if possible." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "The false lich uses Spellcasting." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "D", + "DR", + "E", + "GI", + "I", + "P", + "U" + ], + "damageTags": [ + "N", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "unconscious" + ], + "conditionInflictSpell": [ + "invisible", + "paralyzed" + ], + "savingThrowForced": [ + "charisma", + "wisdom" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Fernitha", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Erinyes", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the erinyes", + "with": "Fernitha", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Figaro", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Mage", + "source": "MM", + "_templates": [ + { + "name": "Tiefling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Figaro", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Glaive", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 81, + "size": [ + "M" + ], + "type": { + "type": "construct", + "tags": [ + "warforged" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(50 ft. with overdrive)" + } + }, + "str": 20, + "dex": 16, + "con": 19, + "int": 11, + "wis": 16, + "cha": 9, + "save": { + "str": "+9", + "dex": "+7", + "wis": "+7" + }, + "skill": { + "athletics": "+9", + "perception": "+7", + "stealth": "+7", + "survival": "+7" + }, + "passive": 17, + "resist": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "11", + "trait": [ + { + "name": "Heatsink", + "entries": [ + "When Glaive takes cold damage, her Overdrive immediately recharges." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "Glaive has advantage on attack rolls if at least one ally is within 5 feet of the creature she's attacking and the ally doesn't have the {@condition incapacitated} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Glaive makes two Spiked Glaive attacks and two Serrated Bolt attacks." + ] + }, + { + "name": "Spiked Glaive", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing or slashing damage, or 14 ({@damage 1d10 + 9}) piercing or slashing damage if Glaive is in overdrive." + ] + }, + { + "name": "Serrated Bolt", + "entries": [ + "{@atk rw} {@hit 7} to hit, range 60 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage. If Glaive has advantage on the attack roll, the serrated bolt lodges in the target, and the target's speed is reduced by 10 feet until the serrated bolt is removed. A target's speed can be reduced by only one serrated bolt at a time. A creature can use its action to remove a serrated bolt lodged in itself or another creature within its reach; when the bolt is removed from a creature, that creature takes 5 ({@damage 2d4}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Overdrive (Recharges after Finishing a Short or Long Rest)", + "entries": [ + "Glaive enters a state of overdrive that lasts for 1 minute or until she has the {@condition incapacitated} condition. While in overdrive, Glaive gains the following benefits:", + { + "type": "list", + "items": [ + "Glaive has advantage on Strength checks and Strength saving throws.", + "When Glaive makes a melee weapon attack, she gains a +4 bonus to the damage roll.", + "Glaive's speed increases to 50 feet." + ] + } + ] + } + ], + "reaction": [ + { + "name": "Self-Preservation", + "entries": [ + "In response to being hit by a weapon attack, Glaive reduces the damage by 11 ({@dice 2d10})." + ] + } + ], + "traitTags": [ + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Granite Juggernaut", + "source": "VEoR", + "page": 221, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75" + }, + "speed": { + "walk": { + "number": 30, + "condition": "(in a straight line)" + } + }, + "str": 23, + "dex": 1, + "con": 20, + "int": 2, + "wis": 11, + "cha": 3, + "senses": [ + "blindsight 120 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "prone" + ], + "cr": "12", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The juggernaut has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The juggernaut deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) bludgeoning damage, and if the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "bonus": [ + { + "name": "Devastating Roll", + "entries": [ + "The juggernaut moves up to its speed. During this movement, the juggernaut can move through the spaces of creatures with the {@condition prone} condition. When the juggernaut enters the space of a {@condition prone} creature for the first time during this movement, the creature must make a {@dc 18} Dexterity saving throw, taking 55 ({@damage 10d10}) bludgeoning damage on a failed save or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Siege Monster" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grottenelle Stonecutter", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Mage", + "source": "MM", + "_templates": [ + { + "name": "Deep Gnome", + "source": "DMG" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Grottenelle", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "hasToken": true + }, + { + "name": "Hazvongel", + "source": "VEoR", + "page": 222, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 237, + "formula": "25d12 + 75" + }, + "speed": { + "walk": 20, + "fly": 60 + }, + "str": 21, + "dex": 20, + "con": 16, + "int": 12, + "wis": 15, + "cha": 11, + "save": { + "con": "+8", + "wis": "+7" + }, + "skill": { + "perception": "+7" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "14", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The hazvongel has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hazvongel makes three Talon attacks." + ] + }, + { + "name": "Talon", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}18 ({@damage 3d8 + 5}) piercing damage." + ] + }, + { + "name": "Blood Barrage {@recharge 5}", + "entries": [ + "The hazvongel launches a spray of blood in a 90-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 27 ({@damage 6d8}) necrotic damage on a failed save or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "N", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hertilod", + "source": "VEoR", + "page": 223, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + 14 + ], + "hp": { + "average": 241, + "formula": "21d12 + 105" + }, + "speed": { + "walk": 50, + "climb": 50 + }, + "str": 23, + "dex": 18, + "con": 20, + "int": 3, + "wis": 15, + "cha": 10, + "save": { + "str": "+12", + "dex": "+10" + }, + "skill": { + "perception": "+8" + }, + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "passive": 18, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "17", + "trait": [ + { + "name": "Legendary Resistances (3/Day)", + "entries": [ + "If the hertilod fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The hertilod has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Shock Susceptibility", + "entries": [ + "If the hertilod takes lightning damage, its speed is halved until the end of its next turn, and it must succeed on a {@dc 15} Constitution saving throw or immediately regurgitate all swallowed creatures, each of which lands in a space within 10 feet of the hertilod and has the {@condition prone} condition." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The hertilod can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The hertilod makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage plus 13 ({@damage 2d12}) poison damage. If the target is a Large or smaller creature, it must succeed on a {@dc 20} Strength saving throw or be swallowed by the hertilod. A swallowed creature has the {@condition blinded} and {@condition restrained} conditions, and it has {@quickref Cover||3||total cover} against attacks and other effects outside the hertilod. At the start of each of the hertilod's turns, each swallowed creature takes 13 ({@damage 2d12}) poison damage from the poisonous secretion in the hertilod's gullet.", + "The hertilod's gullet can hold up to two creatures at a time. If the hertilod takes 40 damage or more on a single turn from a swallowed creature, the hertilod must succeed on a {@dc 15} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which lands in a space within 10 feet of the hertilod and has the {@condition prone} condition. If the hertilod dies, a swallowed creature is no longer {@condition restrained} and can escape from the corpse by using 10 feet of movement, exiting with the {@condition prone} condition." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ] + } + ], + "legendary": [ + { + "name": "Sprint", + "entries": [ + "The hertilod moves up to its speed. This movement doesn't provoke opportunity attacks." + ] + }, + { + "name": "Feed (Costs 2 Actions)", + "entries": [ + "The hertilod drains life from the creatures in its gullet to bolster itself. Each creature in the hertilod's gullet takes 10 ({@damage 3d6}) necrotic damage, and the hertilod regains a number of hit points equal to the damage." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "I", + "N", + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Inda", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Deva", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the deva", + "with": "Inda", + "flags": "i" + } + } + }, + "speed": { + "walk": 30 + }, + "hasToken": true + }, + { + "name": "Indrina Lamsensettle", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Noble", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Indrina", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "ac": [ + 11 + ], + "action": null, + "hasToken": true + }, + { + "name": "Jerot Galgin", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Necromancer Wizard", + "source": "MPMM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the necromancer", + "with": "Jerot", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true + }, + { + "name": "Kakkuu Spyder-Fiend", + "source": "VEoR", + "page": 234, + "size": [ + "M" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 17, + "dex": 15, + "con": 14, + "int": 6, + "wis": 10, + "cha": 10, + "save": { + "dex": "+5", + "con": "+5", + "wis": "+3" + }, + "skill": { + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "cr": "5", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The kakkuu has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The kakkuu can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "When in contact with a web, the kakkuu knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The kakkuu ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The kakkuu makes a Web Snare attack, uses Reel, and makes a Bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Reel", + "entries": [ + "The kakkuu pulls each creature within 60 feet of itself that is {@condition grappled} by its Web Snare up to 30 feet straight toward itself." + ] + }, + { + "name": "Web Snare", + "entries": [ + "{@atk rw} {@hit 6} to hit, reach 30/60 ft., one Large or smaller creature. {@h}The target has the {@condition grappled} condition (escape {@dc 13}). While {@condition grappled}, the target also has the {@condition restrained} condition. A web snare grappling a creature can be attacked and destroyed (AC 10; 10 hit points; immunity to bludgeoning, poison, and psychic damage)." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "CS" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kas the Betrayer", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 244, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "vampire" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB|plate}" + ] + } + ], + "hp": { + "average": 315, + "formula": "30d8 + 180" + }, + "speed": { + "walk": 40 + }, + "str": 26, + "dex": 20, + "con": 22, + "int": 24, + "wis": 19, + "cha": 26, + "save": { + "con": "+13", + "wis": "+11", + "cha": "+15" + }, + "skill": { + "arcana": "+14", + "deception": "+22", + "perception": "+11", + "stealth": "+12" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 21, + "immune": [ + "necrotic", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Infernal" + ], + "cr": "23", + "trait": [ + { + "name": "Eager Betrayer", + "entries": [ + "Kas adds {@dice 1d10} to his initiative rolls. He has advantage on attack rolls against any creature that has the {@condition frightened} condition." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Kas fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Kas regains 20 hit points at the start of his turn if he has at least 1 hit point. If he takes radiant damage, this trait doesn't function at the start of his next turn." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Kas wears the {@item Crown of Lies|VEoR} (see the Introduction of Vecna: Eve of Ruin)." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Kas can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Strength of the Night", + "entries": [ + "Kas doesn't require a coffin, and he drinks blood to sow terror rather than for sustenance. If destroyed, Kas revives in {@dice 1d100} nights in an unoccupied space in Tovag, his Domain of Dread. He can be permanently destroyed only by having a stake driven through his heart and then being beheaded. The stake must be cut from a tree growing in soil from Oerth, Kas's home world." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "While in sunlight, Kas takes 20 radiant damage at the start of his turn, has disadvantage on attack rolls and ability checks, and can't use his Change Shape bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Kas makes three Vengeful Sword attacks. He can replace one of these attacks with a Bite attack." + ] + }, + { + "name": "Vengeful Sword", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}20 ({@damage 2d8 + 11}) slashing damage. The sword scores a critical hit on a roll of 19 or 20." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one creature. {@h}11 ({@damage 1d6 + 8}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Kas regains a number of hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A Humanoid slain in this way and then buried rises the following night as a vampire spawn under Kas's control." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "Kas transforms into a Medium cloud of mist. While in this form, Kas has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. While in mist form, Kas can pass through a space without squeezing as long as air can pass through that space, but he can't pass through water. Kas has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage except the damage he takes as part of his Vampire Weaknesses trait. While in mist form, Kas can't take any actions, speak, or manipulate objects." + ] + }, + { + "name": "Menacing Glare", + "entries": [ + "Kas targets one creature he can see within 60 feet of himself. The target must succeed on a {@dc 23} Wisdom saving throw or have the {@condition frightened} condition until the start of Kas's next turn." + ] + } + ], + "reaction": [ + { + "name": "Parrying Riposte", + "entries": [ + "Kas adds 3 to his AC against one melee attack roll that would hit him. He then makes one Vengeful Sword attack against the attacker if it is within his reach. On a hit, the target takes an additional 9 ({@damage 2d8}) slashing damage." + ] + } + ], + "legendary": [ + { + "name": "Move", + "entries": [ + "Kas moves up to his speed without provoking opportunity attacks." + ] + }, + { + "name": "Sword (Costs 2 Actions)", + "entries": [ + "Kas makes one Vengeful Sword attack." + ] + }, + { + "name": "Rise, Fallen Soldier (Costs 3 Actions)", + "entries": [ + "Kas magically summons a specter. The specter appears in an unoccupied space within 30 feet of Kas, whom it obeys. The specter takes its turn immediately after Kas. It lasts for 1 hour, until Kas dies, or until Kas dismisses it as a bonus action. Kas can't have more than two specters summoned at a time." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "DR", + "I" + ], + "damageTags": [ + "N", + "P", + "R", + "S" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Kaylan Renaudon", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Vampire", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Kaylan", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Ker-arach", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Spiderdragon", + "source": "VEoR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the spiderdragon", + "with": "Ker-arach", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Kevetta Dolindar", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Lonely Sorrowsworn", + "source": "MPMM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the sorrowsworn", + "with": "Kevetta", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Khai Kiroth", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Red Abishai", + "source": "MPMM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the abishai", + "with": "Khai", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Laysa Matulin", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Assassin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Laysa", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true + }, + { + "name": "Lysan", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Githyanki Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the githyanki", + "with": "Lysan", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true + }, + { + "name": "Malaina van Talstiv", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Assassin", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the assassin", + "with": "Malaina", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Mirror Shade", + "source": "VEoR", + "page": 226, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 40 + }, + "str": 8, + "dex": 17, + "con": 14, + "int": 10, + "wis": 13, + "cha": 18, + "save": { + "dex": "+7", + "wis": "+5" + }, + "skill": { + "deception": "+8", + "stealth": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "psychic", + "radiant" + ], + "conditionImmune": [ + "blinded", + "exhaustion", + "frightened", + "grappled", + "paralyzed", + "petrified", + "poisoned", + "prone", + "restrained" + ], + "cr": "10", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the mirror shade is within 5 feet of a reflective surface\u2014such as a mirror, glass pane, or still water\u2014it has advantage on its initiative roll. If a creature hasn't observed the mirror shade move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the mirror shade isn't the creature's own reflection." + ] + }, + { + "name": "Mirror Movement", + "entries": [ + "The mirror shade can move along the surface of reflective or translucent objects, such as mirrors, without provoking opportunity attacks. It can move through translucent objects as if they were difficult terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The mirror shade makes two Phantasmal Strike attacks and uses Reflect Fear." + ] + }, + { + "name": "Phantasmal Strike", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) radiant damage plus 7 ({@damage 2d6}) psychic damage." + ] + }, + { + "name": "Reflect Fear", + "entries": [ + "The mirror shade targets one creature it can see within 60 feet of itself and projects an illusion of that creature's greatest fear. The target must make a {@dc 16} Wisdom saving throw. On a failed save, the target takes 28 ({@damage 8d6}) psychic damage and has the {@condition frightened} condition until the start of the mirror shade's next turn. On a successful save, the target takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Mirror Stealth", + "entries": [ + "While within 5 feet of a reflective surface, such as a mirror, the mirror shade takes the Hide action." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "R", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Miska the Wolf-Spider", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 247, + "size": [ + "H" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 21, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 399, + "formula": "38d12 + 152" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 23, + "dex": 18, + "con": 19, + "int": 18, + "wis": 21, + "cha": 22, + "save": { + "dex": "+11", + "con": "+11", + "wis": "+12" + }, + "skill": { + "insight": "+12", + "perception": "+12", + "stealth": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "24", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Miska casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell Disguise Self}", + "{@spell Invisibility}", + "{@spell Mage Hand}", + "{@spell Minor Illusion}", + "{@spell Web}" + ], + "daily": { + "2e": [ + "{@spell Dominate Monster}", + "{@spell Mass Suggestion}", + "{@spell Mirror Image}", + "{@spell Telekinesis}", + "{@spell Teleport}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Foul Ichor", + "entries": [ + "A creature that hits Miska with a melee weapon attack takes 7 ({@damage 2d6}) poison damage." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Miska fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Miska has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Miska can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "When in contact with a web, Miska knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "Miska ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Miska makes one Lupine Bite attack and two Trident of Chaos attacks." + ] + }, + { + "name": "Lupine Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 27 ({@damage 6d8}) poison damage. If the target is a creature, it must succeed on a {@dc 21} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature has the {@condition incapacitated} condition and can't regain hit points. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Trident of Chaos", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage plus 9 ({@damage 2d8}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Demand Loyalty", + "entries": [ + "Miska magically ends the {@condition charmed} and {@condition frightened} conditions on himself and on any of his allies within 120 feet of himself." + ] + } + ], + "legendary": [ + { + "name": "Howl", + "entries": [ + "Miska utters a bloodthirsty howl at one creature within 120 feet of himself that isn't a Fiend. The target must succeed on a {@dc 20} Wisdom saving throw or take 13 ({@damage 2d12}) psychic damage." + ] + }, + { + "name": "Skitter", + "entries": [ + "Miska moves up to his speed without provoking opportunity attacks." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Miska uses Spellcasting." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "I", + "O", + "P", + "Y" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MLW", + "MW", + "RCH" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Moonlight Guardian", + "source": "VEoR", + "page": 227, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30 + }, + "str": 19, + "dex": 9, + "con": 16, + "int": 6, + "wis": 12, + "cha": 6, + "senses": [ + "truesight 120 ft." + ], + "passive": 11, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison", + "radiant" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The guardian is immune to any spell or other effect that would alter its form." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The guardian has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Radiant Absorption", + "entries": [ + "Whenever the guardian is subjected to radiant damage, it takes no damage and instead regains a number of hit points equal to the radiant damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The guardian makes two Moonlight Slam attacks." + ] + }, + { + "name": "Moonlight Slam", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage plus 4 ({@damage 1d8}) radiant damage." + ] + }, + { + "name": "Moonlight Blast {@recharge 5}", + "entries": [ + "The guardian unleashes a magical blast of moonlight in a line 60 feet long and 5 feet wide. Each creature in that area must make a {@dc 14} Dexterity saving throw. Creatures that aren't in their true form have disadvantage on the save. On a failed save, a creature takes 22 ({@damage 5d8}) radiant damage, and if it isn't in its true form, it is forced into its true form and can't change forms until the end of the guardian's next turn. On a successful save, a creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Damage Absorption", + "Immutable Form", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "B", + "R" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Naxa", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Drow Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Naxa", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Nyssa Otellion", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Blue Abishai", + "source": "MPMM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the abishai", + "with": "Nyssa", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Orinix", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Adult Lunar Dragon", + "source": "BAM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Orinix", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Phisarazu Spyder-Fiend", + "source": "VEoR", + "page": 235, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 170, + "formula": "20d10 + 60" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 19, + "dex": 14, + "con": 17, + "int": 11, + "wis": 14, + "cha": 13, + "save": { + "dex": "+7", + "con": "+8", + "wis": "+7" + }, + "skill": { + "perception": "+7", + "stealth": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 17, + "resist": [ + "cold", + "fire", + "lightning", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "13", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The phisarazu has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The phisarazu can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "When in contact with a web, the phisarazu knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The phisarazu ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The phisarazu makes one Bite attack and two Claw attacks. It can replace one of these attacks with Scintillating Spray if available." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 9 ({@damage 2d8}) poison damage, and the target has the {@condition poisoned} condition until the start of the phisarazu's next turn." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d8 + 4}) slashing damage." + ] + }, + { + "name": "Scintillating Spray {@recharge 5}", + "entries": [ + "The phisarazu expels shimmering webs in a 60-foot cone. Creatures and objects in that area are outlined by the glittering webs for 1 minute, during which time they emit dim light for 10 feet and can't benefit from the {@condition invisible} condition. Additionally, creatures in that area must succeed on a {@dc 16} Wisdom saving throw or have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "bonus": [ + { + "name": "Change Shape", + "entries": [ + "The phisarazu transforms into a crab, drider, or giant crab, or returns to its true form. Its game statistics, except for its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Quavilithku Spyder-Fiend", + "source": "VEoR", + "page": 236, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 256, + "formula": "27d10 + 108" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 18, + "dex": 16, + "con": 19, + "int": 17, + "wis": 14, + "cha": 12, + "save": { + "dex": "+9", + "con": "+10", + "wis": "+8" + }, + "skill": { + "investigation": "+9", + "perception": "+8", + "stealth": "+9" + }, + "senses": [ + "truesight 60 ft." + ], + "passive": 18, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "17", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The quavilithku has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The quavilithku can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "When in contact with a web, the quavilithku knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The quavilithku ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The quavilithku makes two Bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 17 ({@damage 5d6}) poison damage. If the target is a creature, it must succeed on a {@dc 18} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature can't regain hit points. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Dissolving Web {@recharge 5}", + "entries": [ + "The quavilithku expels acid-drenched webs in a 90-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 44 ({@damage 8d10}) acid damage on a failed save or half as much damage on a successful one. Nonmagical objects in the area that aren't being worn or carried take 44 ({@damage 8d10}) acid damage." + ] + } + ], + "bonus": [ + { + "name": "Assess Weakness", + "entries": [ + "The quavilithku sizes up a creature it can see within 40 feet of itself. Until the start of the quavilithku's next turn, it has advantage on attack rolls against the creature." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "A", + "I", + "P" + ], + "miscTags": [ + "AOE", + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rack", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Blade Scout", + "source": "VEoR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the scout", + "with": "Crunch", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Raklupis Spyder-Fiend", + "source": "VEoR", + "page": 236, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 210, + "formula": "28d10 + 56" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 17, + "dex": 20, + "con": 14, + "int": 18, + "wis": 16, + "cha": 23, + "save": { + "dex": "+11", + "con": "+8", + "wis": "+9" + }, + "skill": { + "perception": "+9", + "stealth": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "immune": [ + "cold", + "fire", + "lightning", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "cr": "19", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The raklupis casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 20})." + ], + "will": [ + "{@spell Disguise Self}", + "{@spell Invisibility} (self only)", + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "daily": { + "2e": [ + "{@spell Darkness}", + "{@spell Dominate Monster}", + "{@spell Mass Suggestion}", + "{@spell Telekinesis}", + "{@spell Teleport}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The raklupis has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The raklupis can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Sense", + "entries": [ + "When in contact with a web, the raklupis knows the exact location of any other creature in contact with the same web." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The raklupis ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The raklupis makes a Bite attack and two Serrated Sword attacks. It can use Venom Globe in place of one of these attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 18 ({@damage 4d8}) poison damage. If the target is a creature, it must succeed on a {@dc 20} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature has the {@condition incapacitated} condition and can't regain hit points. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Serrated Sword", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}19 ({@damage 4d6 + 5}) slashing damage plus 18 ({@damage 4d8}) poison damage." + ] + }, + { + "name": "Venom Globe", + "entries": [ + "{@atk rw} {@hit 11} to hit, range 60/180 ft., one target. {@h}45 ({@damage 10d8}) poison damage." + ] + } + ], + "bonus": [ + { + "name": "Demand Loyalty", + "entries": [ + "The raklupis magically ends the {@condition charmed} and {@condition frightened} conditions on itself and on any number of allies within 60 feet of itself." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb", + "Web Sense", + "Web Walker" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "TP" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RW" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "charmed", + "invisible", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Redbud", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Treant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the treant", + "with": "Redbud", + "flags": "i" + } + } + }, + "speed": { + "walk": 0 + }, + "hasToken": true + }, + { + "name": "Relentless Impaler", + "source": "VEoR", + "page": 231, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 184, + "formula": "16d10 + 96" + }, + "speed": { + "walk": 30 + }, + "str": 23, + "dex": 16, + "con": 22, + "int": 12, + "wis": 15, + "cha": 18, + "save": { + "str": "+11", + "dex": "+8", + "cha": "+9" + }, + "skill": { + "athletics": "+11", + "perception": "+7", + "survival": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened" + ], + "languages": [ + "understands all languages but can't speak" + ], + "cr": "15", + "trait": [ + { + "name": "Bloodheart Stake", + "entries": [ + "The impaler is magically bound to the ceremonial stake and the sacrificed corpse the ritual caster used to create it. If the impaler is reduced to 0 hit points, it disappears, then re-forms {@dice 1d8} hours later in the nearest unoccupied space to the stake and regains all its hit points. The impaler dies only if it is reduced to 0 hit points while either the ceremonial stake is removed from the sacrifice's corpse or the impaler is on a different plane of existence from that corpse." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the impaler fails a saving throw, it can choose to succeed instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The impaler makes one Spike attack and two Wicked Spear attacks." + ] + }, + { + "name": "Spike", + "entries": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage, and the target's speed is halved until the start of the impaler's next turn." + ] + }, + { + "name": "Wicked Spear", + "entries": [ + "{@atk mw,rw} {@hit 11} to hit, reach 10 ft. or range 20/40 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ] + }, + { + "name": "Spike Burst {@recharge 5}", + "entries": [ + "Twisted, spectral spikes shoot out from the impaler's body. Each creature within 30 feet of the impaler must make a {@dc 19} Dexterity saving throw, taking 40 ({@damage 9d8}) force damage on a failed save or half as much damage on a successful one." + ] + } + ], + "legendary": [ + { + "name": "Speed Spike", + "entries": [ + "The impaler teleports up to 30 feet to an unoccupied space it can see. It can then make a Spike attack." + ] + }, + { + "name": "Deepen Wounds (Costs 2 Actions)", + "entries": [ + "Each creature whose speed is currently reduced by the impaler's Spike attack takes 18 ({@damage 4d8}) necrotic damage." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "XX" + ], + "damageTags": [ + "N", + "O", + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RCH", + "RW", + "THW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Rerak", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "False Lich", + "source": "VEoR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the false lich", + "with": "Rerak", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Rezran \"Snake Eyes\" Agrodro", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Green Abishai", + "source": "MPMM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the abishai", + "with": "Rezran", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Riffel", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Werewolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the werewolf", + "with": "Riffel", + "flags": "i" + } + } + }, + "size": [ + "S" + ], + "alignment": [ + "N", + "G" + ], + "hasToken": true + }, + { + "name": "Sangora", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Vampire", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the vampire", + "with": "Sangora", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Sarcelle Malinosh", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Sarcelle", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "spellcasting": null, + "hasToken": true + }, + { + "name": "Sarusanda Allester", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Inquisitor of the Tome", + "source": "VRGR", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the inquisitor", + "with": "Sarusanda", + "flags": "i" + }, + "_": { + "mode": "addSpells", + "will": [ + "{@spell speak with dead}" + ] + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "human" + ] + }, + "alignment": [ + "L", + "N" + ], + "languages": [ + "Celestial", + "Common", + "Draconic", + "Elvish", + "any four languages", + "telepathy 120 ft." + ], + "hasToken": true + }, + { + "name": "Shanzezim", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Marid", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the marid", + "with": "Shanzezim", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Spiderdragon", + "source": "VEoR", + "page": 233, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 152, + "formula": "16d12 + 48" + }, + "speed": { + "walk": 50, + "climb": 60 + }, + "str": 21, + "dex": 18, + "con": 16, + "int": 7, + "wis": 14, + "cha": 18, + "save": { + "str": "+9", + "dex": "+8" + }, + "skill": { + "intimidation": "+8", + "perception": "+6" + }, + "senses": [ + "darkvision 90 ft." + ], + "passive": 16, + "resist": [ + "poison", + "psychic" + ], + "languages": [ + "Abyssal", + "Draconic", + "Undercommon" + ], + "cr": "11", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The spiderdragon has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The spiderdragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Web Walker", + "entries": [ + "The spiderdragon ignores movement restrictions caused by webbing." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spiderdragon makes one Bite attack and two Claw attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 13 ({@damage 2d12}) poison damage." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ] + }, + { + "name": "Spiderling Breath {@recharge 5}", + "entries": [ + "The spiderdragon exhales venomous spiderlings in a 30-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 33 ({@damage 6d10}) piercing damage and 33 ({@damage 6d10}) poison damage on a failed save or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Stifling Webs {@recharge 5}", + "entries": [ + "The spiderdragon spins a 30-foot cube of strong, sticky webbing in an area adjacent to itself. The webbing lasts for 1 minute, is difficult terrain, and lightly obscures its area. A creature that starts its turn in the webbing or enters the webbing for the first time on its turn must succeed on a {@dc 15} Dexterity saving throw or have the {@condition restrained} condition while in the web. As an action, a creature can free itself or another creature from the web by succeeding on a {@dc 15} Strength check.", + "A 5-foot cube of the web is destroyed if it takes at least 10 acid, fire, or slashing damage on a single turn." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb", + "Web Walker" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "AB", + "DR", + "U" + ], + "damageTags": [ + "I", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Star Angler", + "source": "VEoR", + "page": 237, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42" + }, + "speed": { + "walk": 0, + "fly": 40 + }, + "str": 21, + "dex": 15, + "con": 17, + "int": 3, + "wis": 14, + "cha": 6, + "skill": { + "perception": "+5", + "stealth": "+8" + }, + "senses": [ + "blindsight 120 ft. (can't see beyond this radius)" + ], + "passive": 15, + "cr": "8", + "trait": [ + { + "name": "Avoidance", + "entries": [ + "If the star angler is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw and only half damage if it fails." + ] + }, + { + "name": "Illumination", + "entries": [ + "The star angler's lure sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The star angler makes three Bite attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ] + } + ], + "bonus": [ + { + "name": "Lure Charm", + "entries": [ + "The star angler's lure flares with enchanting starlight, targeting one creature the star angler can see within 120 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or have the {@condition charmed} condition until the start of the star angler's next turn. While {@condition charmed} in this way, the target has the {@condition incapacitated} condition and must use its movement on its turn to move directly toward the star angler; a {@condition charmed} target doesn't avoid opportunity attacks, but it does avoid damaging terrain. A target can be {@condition charmed} by only one star angler at a time." + ] + } + ], + "traitTags": [ + "Illumination" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Strahd, Master of Death House", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 251, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "vampire", + "wizard" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 20, + "wis": 15, + "cha": 18, + "save": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "arcana": "+15", + "perception": "+12", + "religion": "+10", + "stealth": "+14" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 22, + "resist": [ + "necrotic", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Elvish", + "Giant", + "Infernal" + ], + "cr": "15", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Strahd casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "will": [ + "{@spell Detect Thoughts}", + "{@spell Fog Cloud}", + "{@spell Mage Hand}" + ], + "daily": { + "2e": [ + "{@spell Animate Dead} (as an action)", + "{@spell Gust of Wind}", + "{@spell Mirror Image}", + "{@spell Nondetection}" + ], + "1e": [ + "{@spell Greater Invisibility}", + "{@spell Polymorph}", + "{@spell Scrying} (as an action)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Strahd fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Master of the House", + "entries": [ + "When Strahd is reduced to 0 hit points, he dissolves into mist and immediately teleports to his lair in Castle Ravenloft. After {@dice 1d4} hours, Strahd re-forms in a random unoccupied space within his lair, regaining all his hit points." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Strahd regains 20 hit points at the start of his turn if he has at least 1 hit point. If he takes radiant damage, this trait doesn't function at the start of his next turn." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Strahd can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Vampire Weaknesses", + "entries": [ + "Strahd has the following flaws:" + ] + }, + { + "name": "Harmed by Running Water", + "entries": [ + "While in running water, Strahd takes 20 acid damage if he ends his turn there, and he can't use his Change Shape." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "While in sunlight, Strahd takes 20 radiant damage at the start of his turn, has disadvantage on attack rolls and ability checks, and can't use his Change Shape bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Strahd makes two Death Strike attacks. He can replace one of these attacks with Blighted Fire if available." + ] + }, + { + "name": "Death Strike", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 14 ({@damage 4d6}) necrotic damage. If the target is a creature, Strahd can forgo dealing slashing damage; the target then has the {@condition grappled} condition (escape {@dc 18}) instead. Strahd can grapple only one creature at a time." + ] + }, + { + "name": "Blighted Fire {@recharge 5}", + "entries": [ + "Strahd summons shadowy, necrotic fire that fills a 20-foot-radius sphere centered on a point he can see within 90 feet of himself. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage plus 14 ({@damage 4d6}) necrotic damage on a failed save or half as much damage on a successful one." + ] + }, + { + "name": "Charm", + "entries": [ + "Strahd targets one Humanoid he can see within 30 feet of himself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition. The {@condition charmed} target regards Strahd as a trusted friend to be heeded and protected. The target isn't under Strahd's control, but it takes Strahd's requests and actions in the most favorable way.", + "Each time Strahd or his companions deal damage to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Strahd is reduced to 0 hit points, is on a different plane of existence than the target, or uses a bonus action to end the effect." + ] + } + ], + "bonus": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature that has the {@condition charmed} or {@condition grappled} condition. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Strahd regains a number of hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A Humanoid slain in this way and then buried rises the following night as a vampire spawn under Strahd's control." + ] + }, + { + "name": "Change Shape", + "entries": [ + "Strahd transforms into a new form or back into his true form. Anything he is wearing transforms with him, but nothing he is carrying does. He reverts to his true form if he dies. When transforming into a new form, Strahd chooses one of the following options:" + ] + }, + { + "name": "Beast Form", + "entries": [ + "Strahd transforms into a Tiny bat (flying speed 30 ft.) or a Medium wolf (speed 40 ft.). While in that form, he can't speak, and he retains his game statistics other than his size and speed." + ] + }, + { + "name": "Mist Form", + "entries": [ + "Strahd transforms into a Medium cloud of mist. While in this form, Strahd has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. While in mist form, Strahd can pass through a space without squeezing as long as air can pass through that space, but he can't pass through water. Strahd has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage except the damage he takes as part of his Vampire Weaknesses trait. While in mist form, Strahd can't take any actions, speak, or manipulate objects." + ] + } + ], + "legendary": [ + { + "name": "Cunning Escape", + "entries": [ + "Strahd moves up to his speed without provoking opportunity attacks." + ] + }, + { + "name": "Strike (Costs 2 Actions)", + "entries": [ + "Strahd makes one Death Strike attack." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Regeneration", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Shapechanger" + ], + "languageTags": [ + "AB", + "C", + "DR", + "E", + "GI", + "I" + ], + "damageTags": [ + "A", + "F", + "N", + "P", + "R", + "S" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed" + ], + "conditionInflictSpell": [ + "invisible" + ], + "savingThrowForced": [ + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tasha the Witch", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 252, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "wizard" + ] + }, + "alignment": [ + "C", + "N" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item robe of the archmagi}" + ] + } + ], + "hp": { + "average": 210, + "formula": "28d8 + 84" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 18, + "con": 17, + "int": 23, + "wis": 12, + "cha": 22, + "save": { + "int": "+12", + "wis": "+7", + "cha": "+12" + }, + "skill": { + "arcana": "+18", + "history": "+12", + "persuasion": "+12" + }, + "passive": 11, + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Abyssal", + "Celestial", + "Common", + "Draconic", + "Elvish", + "Infernal", + "Sylvan" + ], + "cr": "19", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Tasha casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 22}, {@hit 14} to hit with spell attacks):" + ], + "will": [ + "{@spell Detect Magic}", + "{@spell Disguise Self}", + "{@spell Dispel Magic}", + "{@spell Light}", + "{@spell Mage Hand}", + "{@spell Message}", + "{@spell Prestidigitation}", + "{@spell Tasha's Hideous Laughter}" + ], + "daily": { + "2": [ + "{@spell Polymorph}" + ], + "1e": [ + "{@spell Maze}", + "{@spell Telekinesis}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Tasha fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Tasha has advantage on saving throws against spells and other magical effects. (This trait is bestowed by her Robe of the Archmagi.)" + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Tasha wears a {@item Robe of the Archmagi}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Tasha makes two Caustic Blast attacks and uses Psychic Whip once." + ] + }, + { + "name": "Caustic Blast", + "entries": [ + "{@atk ms,rs} {@hit 14} to hit, reach 5 ft. or range 120 ft., one target. {@h}21 ({@damage 6d4 + 6}) acid damage." + ] + }, + { + "name": "Psychic Whip", + "entries": [ + "Tasha psychically lashes out at one creature she can see within 90 feet of herself. The target must make a {@dc 20} Intelligence saving throw. On a failed save, the target takes 21 ({@damage 6d6}) psychic damage and has the {@condition stunned} condition until the start of Tasha's next turn. On a successful save, the target takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Abyssal Visage (2/Day)", + "entries": [ + "For 1 minute, Tasha gains a flying speed of 30 feet, is immune to poison damage and the {@condition poisoned} condition, and has advantage on attack rolls against any creature that doesn't have all its hit points. These benefits end early if Tasha has the {@condition incapacitated} condition or if she uses another bonus action to dismiss them." + ] + } + ], + "reaction": [ + { + "name": "Arcane Rebuff", + "entries": [ + "Immediately after Tasha takes damage, she unleashes arcane energy in a 10-foot-radius sphere centered on herself. All other creatures in that area must make a {@dc 20} Dexterity saving throw, taking 19 ({@damage 3d12}) lightning damage on a failed save or half as much damage on a successful one. Tasha then teleports, along with any equipment she is wearing or carrying, to an unoccupied space she can see within 60 feet of herself." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "C", + "CE", + "DR", + "E", + "I", + "S" + ], + "damageTags": [ + "A", + "L", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW" + ], + "conditionInflict": [ + "stunned" + ], + "conditionInflictSpell": [ + "incapacitated", + "prone", + "restrained" + ], + "savingThrowForced": [ + "dexterity", + "intelligence" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Teremini Nightsedge", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Archmage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the archmage", + "with": "Teremini", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true + }, + { + "name": "Umberto Noblin", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the mage", + "with": "Umberto", + "flags": "i" + } + } + }, + "type": { + "type": "humanoid", + "tags": [ + "gnome" + ] + }, + "alignment": [ + "L", + "N" + ], + "spellcasting": null, + "hasToken": true + }, + { + "name": "Uvashar", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Rakshasa", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the rakshasa", + "with": "Uvashar", + "flags": "i" + } + } + }, + "spellcasting": null, + "hasToken": true + }, + { + "name": "Vaeve", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Drow Mage", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Vaeve", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Valendar", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Werewolf", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the werewolf", + "with": "Valendar", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "G" + ], + "hasToken": true + }, + { + "name": "Vecna the Archlich", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 254, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "wizard" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 272, + "formula": "32d8 + 128" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 16, + "con": 18, + "int": 22, + "wis": 24, + "cha": 16, + "save": { + "con": "+12", + "int": "+14", + "wis": "+15" + }, + "skill": { + "arcana": "+22", + "history": "+14", + "insight": "+15", + "perception": "+15" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 25, + "resist": [ + "cold", + "lightning", + "necrotic" + ], + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "stunned" + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "cr": "26", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Vecna casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "will": [ + "{@spell Animate Dead} (as an action)", + "{@spell Detect Magic}", + "{@spell Dispel Magic}", + "{@spell Fly}", + "{@spell Lightning Bolt}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell Dimension Door}", + "{@spell Invisibility}", + "{@spell Scrying} (as an action)" + ], + "1e": [ + "{@spell Dominate Monster}", + "{@spell Globe of Invulnerability}", + "{@spell Plane Shift} (self only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If Vecna fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Vecna carries a magic dagger named Afterthought. In the hands of anyone other than Vecna, Afterthought is a {@item +2 Dagger}." + ] + }, + { + "name": "Undying", + "entries": [ + "If Vecna is slain, his soul refuses to accept its fate and lives on as a disembodied spirit that fashions a new body for itself after {@dice 1d100} years. Vecna's new body appears within 100 miles of where he was slain. When the new body is complete, Vecna regains all his hit points and becomes active again." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Vecna uses Flight of the Damned (if available), Rotten Fate, or Spellcasting. He then makes two attacks with Afterthought." + ] + }, + { + "name": "Afterthought", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. If the target is a creature, it is afflicted by entropic magic, taking 9 ({@damage 2d8}) necrotic damage at the start of each of its turns. Immediately after taking this damage on its turn, the target must make a {@dc 20} Constitution saving throw, ending the effect on itself on a success. Until it succeeds on this save, the afflicted target can't regain hit points." + ] + }, + { + "name": "Flight of the Damned {@recharge 5}", + "entries": [ + "Vecna conjures a torrent of flying, spectral entities that fill a 120-foot cone and pass through all creatures in that area before dissipating. Each creature in that area must make a {@dc 22} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) necrotic damage and has the {@condition frightened} condition for 1 minute. On a successful save, the creature takes half as much damage only. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Rotten Fate", + "entries": [ + "Vecna causes necrotic magic to engulf one creature he can see within 120 feet of himself. The target must make a {@dc 22} Constitution saving throw, taking 96 ({@damage 8d8 + 60}) necrotic damage on a failed save or half as much damage on a successful one. A Humanoid killed by this magic rises as a zombie at the start of Vecna's next turn and acts immediately after Vecna in the initiative order. The zombie is under Vecna's control." + ] + } + ], + "bonus": [ + { + "name": "Vile Teleport", + "entries": [ + "Vecna teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see. He can cause each creature of his choice within 15 feet of his destination space to take 10 ({@damage 3d6}) psychic damage. If at least one creature takes this damage, Vecna regains 80 hit points." + ] + } + ], + "reactionHeader": [ + "Vecna can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Dread Counterspell", + "entries": [ + "Vecna utters a dread word to interrupt a creature he can see that is casting a spell. If the spell is 4th level or lower, it fails and has no effect. If the spell is 5th level or higher, Vecna makes an Intelligence check ({@dc 10} plus the spell's level). On a successful check, the spell fails and has no effect. Whatever the spell's level, the caster takes 10 ({@damage 3d6}) psychic damage if the spell fails." + ] + }, + { + "name": "Fell Rebuke", + "entries": [ + "In response to being hit by an attack, Vecna utters a fell word, dealing 10 ({@damage 3d6}) necrotic damage to the attacker, and Vecna teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "E", + "I" + ], + "damageTags": [ + "N", + "P", + "Y" + ], + "damageTagsSpell": [ + "L", + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "charmed", + "invisible" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "charisma", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vlazok", + "source": "VEoR", + "page": 238, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 21, + "dex": 18, + "con": 16, + "int": 6, + "wis": 9, + "cha": 9, + "save": { + "str": "+9", + "con": "+7" + }, + "skill": { + "perception": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 13, + "resist": [ + "cold", + "fire", + "lightning" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "poisoned" + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "cr": "11", + "trait": [ + { + "name": "All-Around Vision", + "entries": [ + "The vlazok can't be surprised." + ] + }, + { + "name": "Blood Frenzy", + "entries": [ + "The vlazok has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The vlazok has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vlazok can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vlazok makes two Gore attacks." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}23 ({@damage 4d8 + 5}) piercing damage, and if the target is a Large or smaller creature, it has the {@condition prone} condition." + ] + } + ], + "bonus": [ + { + "name": "Stomp", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition prone} creature. {@h}27 ({@damage 4d10 + 5}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Spider Climb" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AB", + "TP" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Warforged Warrior", + "source": "VEoR", + "page": 238, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 12, + "con": 16, + "int": 10, + "wis": 14, + "cha": 11, + "skill": { + "athletics": "+5", + "perception": "+4", + "survival": "+4" + }, + "passive": 14, + "resist": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "1", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warforged makes two Armblade attacks." + ] + }, + { + "name": "Armblade", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + }, + { + "name": "Javelin", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Protection", + "entries": [ + "When an attacker the warforged can see makes an attack roll against a creature within 5 feet of the warforged, the warforged can impose disadvantage on the attack roll." + ] + } + ], + "attachedItems": [ + "javelin|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Whirling Chandelier", + "source": "VEoR", + "page": 239, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d10 + 28" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 18, + "dex": 15, + "con": 15, + "int": 3, + "wis": 5, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 7, + "resist": [ + "fire" + ], + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "7", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the chandelier is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the chandelier move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the chandelier is animate." + ] + }, + { + "name": "Fiery Aura", + "entries": [ + "Any creature that starts its turn within 5 feet of the chandelier takes 7 ({@damage 2d6}) fire damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The chandelier makes three Chain attacks, three Lamp attacks, or a combination thereof." + ] + }, + { + "name": "Chain", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target must succeed on a {@dc 15} Strength saving throw or be pulled into an unoccupied space within 5 feet of the chandelier." + ] + }, + { + "name": "Lamp", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) fire damage." + ] + }, + { + "name": "Blazing Vortex {@recharge 5}", + "entries": [ + "Each creature within 20 feet of the chandelier and not behind {@quickref Cover||3||total cover} must succeed on a {@dc 14} Constitution saving throw or take 36 ({@damage 8d8}) fire damage and have the {@condition blinded} condition until the start of the chandelier's next turn." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Windfall", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "page": 153, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "bard", + "tiefling" + ] + }, + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 19, + "from": [ + "{@item studded leather armor|PHB}" + ] + } + ], + "hp": { + "average": 323, + "formula": "34d8 + 170" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 14, + "dex": 24, + "con": 20, + "int": 22, + "wis": 18, + "cha": 26, + "save": { + "str": "+9", + "dex": "+14", + "wis": "+11", + "cha": "+15" + }, + "skill": { + "arcana": "+13", + "deception": "+22", + "insight": "+18", + "perception": "+11", + "performance": "+22", + "persuasion": "+22", + "sleight of hand": "+14" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 21, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Windfall casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "will": [ + "{@spell Detect Magic}", + "{@spell Light}", + "{@spell Thaumaturgy}" + ], + "daily": { + "1": [ + "{@spell Hold Monster}" + ], + "3e": [ + "{@spell Shatter}", + "{@spell Unseen Servant}" + ], + "2e": [ + "{@spell Hypnotic Pattern}", + "{@spell Sending}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Dazzling Visage", + "entries": [ + "A brilliant array of chromatic colors emanates from Windfall, causing attack rolls against her to have disadvantage. This trait ceases to function while Windfall has the {@condition incapacitated} condition or has a speed of 0." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Windfall fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Windfall wears an iridescent magic coat that was tailored specifically for her and imbued with Tiamat's power. When she dies, the coat functions as a {@item Robe of Scintillating Colors}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Windfall makes two Chromatic Rapier attacks and uses Dragon's Fury once." + ] + }, + { + "name": "Chromatic Rapier", + "entries": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d8 + 7}) piercing damage plus 21 ({@damage 6d6}) acid, cold, fire, lightning, or poison damage (Windfall's choice)." + ] + }, + { + "name": "Dragon's Fury", + "entries": [ + "Windfall targets one creature she can see within 60 feet of herself and unleashes a burst of magical ire. The target must make a {@dc 23} Wisdom saving throw. On a failed save, the target takes 36 ({@damage 8d8}) psychic damage and has the {@condition frightened} condition until the start of Windfall's next turn. On a successful save, the target takes half as much damage only." + ] + } + ], + "bonus": [ + { + "name": "Stunning Scintillation {@recharge 5}", + "entries": [ + "Windfall emits an overwhelming array of colors from her coat. Each creature within 30 feet of Windfall that can see her must succeed on a {@dc 23} Constitution saving throw or have the {@condition stunned} condition until the start of Windfall's next turn." + ] + } + ], + "legendary": [ + { + "name": "Deft Dance", + "entries": [ + "Windfall moves up to her speed without provoking opportunity attacks." + ] + }, + { + "name": "Dragon's Flare", + "entries": [ + "Windfall flares with multicolored flames and targets a creature she can see within 30 feet of herself. The target must make a {@dc 23} Dexterity saving throw. On a failed save, the target takes 26 ({@damage 4d12}) damage of a type chosen by Windfall: acid, cold, fire, lightning, or poison. On a successful save, the target takes half as much damage." + ] + }, + { + "name": "Cast a Spell (Costs 2 Actions)", + "entries": [ + "Windfall uses Spellcasting." + ] + } + ], + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DR", + "I" + ], + "damageTags": [ + "P", + "Y" + ], + "damageTagsSpell": [ + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "charmed", + "incapacitated", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zastra", + "isNpc": true, + "isNamedCreature": true, + "source": "VEoR", + "_copy": { + "name": "Githyanki Knight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the githyanki", + "with": "Zastra", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "N" + ], + "hasToken": true + }, + { + "name": "Amun Sa", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 106, + "_copy": { + "name": "Ghost", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ghost", + "with": "Amun", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Android", + "source": "QftIS", + "page": 194, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover; aerialist only)" + }, + "swim": { + "number": 30, + "condition": "(diver only)" + }, + "canHover": true + }, + "str": 18, + "dex": 18, + "con": 15, + "int": 12, + "wis": 13, + "cha": 10, + "save": { + "con": "+5", + "wis": "+4" + }, + "skill": { + "history": "+4", + "perception": "+7" + }, + "senses": [ + "blindsight 60 ft. (sentry only)", + "darkvision 60 ft." + ], + "passive": 17, + "resist": [ + "acid", + "fire" + ], + "immune": [ + "cold", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common plus the languages spoken by its creator" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Spellcasting (Diplomat and Medic Only)", + "type": "spellcasting", + "headerEntries": [ + "The android casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "daily": { + "2e": [ + "{@spell Cure Wounds} (as a 3rd-level spell; medic only)", + "{@spell Identify}", + "{@spell Tongues} (diplomat only)" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Design Specialization", + "entries": [ + "When the android is created, it gains one of six possible designs suited for its role (choose or roll a {@dice d6}): 1, aerialist; 2, diplomat; 3, diver; 4, duelist; 5, medic; 6, sentry. This design determines certain traits in this stat block." + ] + }, + { + "name": "Lightning Overload", + "entries": [ + "When the android takes lightning damage, it must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The android makes two Force Strike attacks." + ] + }, + { + "name": "Force Strike", + "entries": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 40/120 ft., one target. {@h}15 ({@damage 2d10 + 4}) force damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "reaction": [ + { + "name": "Parry (Duelist Only)", + "entries": [ + "The android adds 3 to its AC against one melee attack roll that would hit it. To do so, the android must see the attacker." + ] + } + ], + "senseTags": [ + "B", + "D" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW", + "RW" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Android Aerialist", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Design Specialization" + } + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "senses": [ + "darkvision 60 ft." + ], + "spellcasting": null, + "reaction": null, + "hasToken": true + }, + { + "name": "Android Diplomat", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Design Specialization" + } + }, + "speed": { + "walk": 30 + }, + "senses": [ + "darkvision 60 ft." + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The android casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "daily": { + "2e": [ + "{@spell Identify}", + "{@spell Tongues}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "reaction": null, + "hasToken": true + }, + { + "name": "Android Diver", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Design Specialization" + } + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "senses": [ + "darkvision 60 ft." + ], + "spellcasting": null, + "reaction": null + }, + { + "name": "Android Duelist", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Design Specialization" + }, + "reaction": { + "mode": "renameArr", + "renames": { + "rename": "Parry (Duelist Only)", + "with": "Parry" + } + } + }, + "speed": { + "walk": 30 + }, + "senses": [ + "darkvision 60 ft." + ], + "spellcasting": null, + "hasToken": true + }, + { + "name": "Android Medic", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Design Specialization" + } + }, + "speed": { + "walk": 30 + }, + "senses": [ + "darkvision 60 ft." + ], + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The android casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "daily": { + "2e": [ + "{@spell Cure Wounds} (as a 3rd-level spell)", + "{@spell Identify}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "reaction": null, + "hasToken": true + }, + { + "name": "Android Sentry", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Design Specialization" + } + }, + "speed": { + "walk": 30 + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "spellcasting": null, + "reaction": null, + "hasToken": true + } + ] + }, + { + "name": "Barkburr", + "source": "QftIS", + "page": 195, + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "8d6 + 24" + }, + "speed": { + "walk": 10, + "climb": 10 + }, + "str": 16, + "dex": 6, + "con": 16, + "int": 1, + "wis": 15, + "cha": 1, + "skill": { + "athletics": "+5" + }, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 12, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "frightened" + ], + "cr": "3", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the barkburr is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the barkburr move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the barkburr is animate." + ] + }, + { + "name": "Springing Leap", + "entries": [ + "With or without a running start, the barkburr's high jump is up to 15 feet, and its long jump is up to 30 feet. The barkburr's jumps can exceed its speed if its speed isn't 0." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The barkburr makes two Poison Barb attacks and uses Lignify if able." + ] + }, + { + "name": "Poison Barb", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage, and the barkburr attaches to the target. While the barkburr is attached, it can't make Poison Barb attacks, and the target has the {@condition restrained} condition as its body begins to transform into wood.", + "An attached barkburr can detach itself by spending 5 feet of its movement on its turn. A creature that can reach the barkburr, including the target, can use its action to detach the barkburr by making a successful {@dc 13} Strength ({@skill Athletics}) check." + ] + }, + { + "name": "Lignify", + "entries": [ + "The barkburr targets the creature it is attached to, and the target must make a {@dc 13} Constitution saving throw. On a failed save, the target has the {@condition petrified} condition until freed by the {@spell Greater Restoration} spell or another effect, except it turns into a tree instead of stone. Any equipment the target is wearing or carrying is absorbed into the tree's bark." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "petrified" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Champion of Gorm", + "source": "QftIS", + "page": 203, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 19, + "from": [ + "{@item splint armor|phb}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 10, + "con": 12, + "int": 12, + "wis": 15, + "cha": 16, + "save": { + "str": "+5", + "wis": "+4" + }, + "skill": { + "athletics": "+5", + "insight": "+4", + "religion": "+3" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "2", + "trait": [ + { + "name": "Brave", + "entries": [ + "The champion has advantage on saving throws against the {@condition frightened} condition." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes two Lightning Mace attacks or three Handaxe attacks." + ] + }, + { + "name": "Lightning Mace", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 5 ({@damage 2d4}) lightning damage." + ] + }, + { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "bonus": [ + { + "name": "Aura of Resilience (1/Day)", + "entries": [ + "The champion exudes an aura of ghostly lightning that fills a 10-foot-radius sphere centered on itself. While this aura is active, the champion and each creature of its choice within the aura have advantage on saving throws. The aura moves with the champion and lasts for 1 minute, until the champion has the {@condition incapacitated} condition, or until the champion uses another bonus action to end the aura." + ] + } + ], + "attachedItems": [ + "handaxe|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "L", + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Champion of Madarua", + "source": "QftIS", + "page": 220, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item hide armor|PHB}" + ] + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12" + }, + "speed": { + "walk": 30 + }, + "str": 17, + "dex": 12, + "con": 15, + "int": 12, + "wis": 12, + "cha": 14, + "save": { + "str": "+5", + "dex": "+3" + }, + "skill": { + "acrobatics": "+3", + "religion": "+3" + }, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "2", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes three Longsword attacks." + ] + }, + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, or 8 ({@damage 1d10 + 3}) piercing damage if used with two hands." + ] + } + ], + "bonus": [ + { + "name": "Aura of Fury (1/Day)", + "entries": [ + "The champion summons an aura of ghostly animals that fills a 10-foot-radius sphere centered on itself. While this aura is active, the champion and all its allies in the aura have advantage on attack rolls. The aura moves with the champion and lasts for 1 minute, until the champion has the {@condition incapacitated} condition, or until the champion uses another bonus action to end the aura." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The champion adds 2 to its AC against one melee attack that would hit it. To do so, the champion must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "AOE", + "MLW", + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Champion of Usamigaras", + "source": "QftIS", + "page": 206, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 17, + "wis": 14, + "cha": 15, + "save": { + "int": "+5", + "cha": "+4" + }, + "skill": { + "arcana": "+5", + "deception": "+6", + "sleight of hand": "+4" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The champion casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell Light}", + "{@spell Mage Armor} (self only)", + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "daily": { + "2e": [ + "{@spell Charm Person}", + "{@spell Disguise Self}", + "{@spell Silent Image}" + ], + "1e": [ + "{@spell Crown of Madness}", + "{@spell Shatter}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The champion makes two Arcane Burst attacks or makes one Arcane Burst attack and uses Spellcasting." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ] + } + ], + "bonus": [ + { + "name": "Aura of Deception (1/Day)", + "entries": [ + "The champion emits an aura of ghostly illusions that fills a 10-foot-radius sphere centered on itself. While this aura is active, creatures have disadvantage on attack rolls against the champion and any of the champion's allies that are in the aura. The aura moves with the champion and lasts for 1 minute, until the champion has the {@condition incapacitated} condition, or until the champion uses another bonus action to end the aura." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O" + ], + "damageTagsSpell": [ + "T" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Cipolla", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 66, + "_copy": { + "name": "Tower Sage", + "source": "QftIS", + "_templates": [ + { + "name": "Dragonborn (Silver)", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tower sage", + "with": "Cipolla", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true + }, + { + "name": "Combat Robot", + "source": "QftIS", + "page": 214, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "L", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 40 + }, + "str": 20, + "dex": 14, + "con": 17, + "int": 10, + "wis": 15, + "cha": 10, + "save": { + "con": "+6", + "cha": "+3" + }, + "skill": { + "athletics": "+8", + "intimidation": "+6", + "perception": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "resist": [ + "acid", + "fire" + ], + "immune": [ + "cold", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common plus the languages spoken by its creator" + ], + "cr": "6", + "trait": [ + { + "name": "Lightning Overload", + "entries": [ + "When the robot takes lightning damage, it must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The robot makes two Tentacle attacks or three Laser Beam attacks." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 16}). While {@condition grappled}, the target also has the {@condition restrained} condition. The robot has two tentacles, each of which can grapple one target." + ] + }, + { + "name": "Laser Beam", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 120 ft., one target. {@h}16 ({@damage 4d6 + 2}) radiant damage." + ] + }, + { + "name": "Grenade Launcher {@recharge 5}", + "entries": [ + "The robot fires a grenade at a point it can see within 120 feet of itself. The grenade explodes in a 20-foot-radius sphere centered on that point, creating one of the following effects (robot's choice):" + ] + }, + { + "name": "Concussion Grenade", + "entries": [ + "Each creature in the sphere must make a {@dc 15} Dexterity saving throw, taking 21 ({@damage 6d6}) force damage on a failed save or half as much damage on a successful one." + ] + }, + { + "name": "Sleep Grenade", + "entries": [ + "Each creature in the sphere must succeed on a {@dc 15} Constitution saving throw or have the {@condition unconscious} condition for 1 hour. The condition ends on a creature early if the creature takes damage or if another creature uses an action to shake it awake." + ] + } + ], + "bonus": [ + { + "name": "Emergency Speed (2/Day)", + "entries": [ + "The robot takes the Dash or Disengage action." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Tentacles" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "O", + "R" + ], + "miscTags": [ + "AOE", + "MW", + "RCH", + "RW" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro Apprentice", + "source": "QftIS", + "page": 196, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 9, + "dex": 14, + "con": 12, + "int": 11, + "wis": 5, + "cha": 12, + "skill": { + "stealth": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The derro casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "will": [ + "{@spell Message}", + "{@spell Prestidigitation}" + ], + "daily": { + "1": [ + "{@spell Charm Person}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The derro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Chaos Blast", + "entries": [ + "{@atk ms,rs} {@hit 3} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 3d6}) damage. Roll a {@dice d4} to determine the damage type: 1, acid; 2, cold; 3, fire; 4, lightning." + ] + }, + { + "name": "Force Burst {@recharge 4}", + "entries": [ + "Raw arcane magic bursts out from the derro. Each creature within 10 feet of it must make a {@dc 11} Strength saving throw. On a failed save, the creature takes 7 ({@damage 2d6}) force damage and has the {@condition prone} condition. On a successful save, the creature takes half as much damage only." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "conditionInflict": [ + "prone" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derro Raider", + "source": "QftIS", + "page": 196, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d6 + 6" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 14, + "int": 11, + "wis": 5, + "cha": 9, + "skill": { + "athletics": "+4", + "stealth": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 7, + "languages": [ + "Dwarvish", + "Undercommon" + ], + "cr": "1/4", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The derro has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the derro has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Hooked Spear", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If the target is a Medium or smaller creature, the derro can choose to deal no damage, and instead the target has the {@condition prone} condition." + ] + }, + { + "name": "Throwing Hammer", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "D", + "U" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Derwyth", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 52, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 13, + "int": 12, + "wis": 15, + "cha": 11, + "skill": { + "medicine": "+4", + "nature": "+3", + "perception": "+4" + }, + "senses": [ + "darkvision 60" + ], + "passive": 14, + "languages": [ + "Common", + "Elvish" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Derwyth is a 4th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Tree Shape (2/Day)", + "entries": [ + "Over the course of 1 minute, Derwyth can magically transform into a Huge or smaller tree and remain in that form for 24 hours or until she ends this transformation early (no action required). Her equipment melds into her new form. While in this form, her Armor Class is 16, she has the {@condition incapacitated} condition, and she can't move or speak." + ] + } + ], + "action": [ + { + "name": "Quarterstaff", + "entries": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, 4 ({@damage 1d8}) bludgeoning damage if wielded with two hands, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh." + ] + } + ], + "attachedItems": [ + "quarterstaff|phb" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "B" + ], + "damageTagsSpell": [ + "F", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MLW", + "MW" + ], + "conditionInflictSpell": [ + "restrained" + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Drelnza", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 197, + "size": [ + "M" + ], + "type": { + "type": "undead", + "tags": [ + "vampire" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "{@item plate armor|PHB}" + ] + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 18, + "dex": 18, + "con": 18, + "int": 17, + "wis": 15, + "cha": 18, + "save": { + "dex": "+9", + "int": "+8", + "wis": "+7", + "cha": "+9" + }, + "skill": { + "arcana": "+8", + "deception": "+9", + "perception": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 17, + "resist": [ + "necrotic" + ], + "conditionImmune": [ + "exhaustion" + ], + "languages": [ + "Abyssal", + "Common", + "Giant" + ], + "cr": "15", + "trait": [ + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If Drelnza fails a saving throw, she can choose to succeed instead." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Drelnza wields {@item Heretic|QftIS}." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "Drelnza can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + }, + { + "name": "Sunlight Hypersensitivity", + "entries": [ + "Drelnza takes 20 radiant damage when she starts her turn in sunlight. While in sunlight, she has disadvantage on attack rolls and ability checks." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Drelnza makes one Bite attack and one Heretic attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Drelnza regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A Humanoid slain in this way and then buried rises the following night as a vampire spawn under Drelnza's control." + ] + }, + { + "name": "Heretic", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft. one target. {@h}40 ({@damage 6d10 + 7}) slashing damage, and the target must succeed on a {@dc 17} Constitution saving throw or have the {@condition paralyzed} condition until the start of Drelnza's next turn. Celestials have disadvantage on the saving throw." + ] + }, + { + "name": "Charm", + "entries": [ + "Drelnza targets one Humanoid she can see within 30 feet of herself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition. While {@condition charmed} in this way, the target regards Drelnza as a trusted friend to be heeded and protected. The target isn't under Drelnza's control, but it takes her requests and actions in the most favorable way.", + "Each time Drelnza or her allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Drelnza is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ] + } + ], + "reactionHeader": [ + "Drelnza can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Move", + "entries": [ + "Immediately after a creature Drelnza can see ends its turn, Drelnza moves up to her speed without provoking opportunity attacks." + ] + }, + { + "name": "Parry", + "entries": [ + "Drelnza adds 5 to her AC against one melee attack that would hit her. To do so, she must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "heretic|qftis" + ], + "traitTags": [ + "Legendary Resistances", + "Spider Climb", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Parry" + ], + "languageTags": [ + "AB", + "C", + "GI" + ], + "damageTags": [ + "N", + "P", + "R", + "S" + ], + "miscTags": [ + "HPR", + "MW" + ], + "conditionInflict": [ + "charmed", + "paralyzed" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Froghemoth Elder", + "source": "QftIS", + "page": 198, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "str": 25, + "dex": 13, + "con": 20, + "int": 2, + "wis": 14, + "cha": 8, + "save": { + "str": "+12", + "con": "+10", + "wis": "+7" + }, + "skill": { + "perception": "+12", + "stealth": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 22, + "resist": [ + "fire", + "lightning" + ], + "cr": "15", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The froghemoth can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the froghemoth fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Shock Susceptibility", + "entries": [ + "If the froghemoth takes lightning damage, it suffers two effects until the end of its next turn: its speed is halved, and it has disadvantage on Dexterity saving throws." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The froghemoth makes one Bite attack and two Tentacle attacks, and it can use Tongue." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) piercing damage, and the target is swallowed if it is a Medium or smaller creature. A swallowed creature has the {@condition blinded} and {@condition restrained} conditions, has {@quickref Cover||3||total cover} against attacks and other effects outside the froghemoth, and takes 10 ({@damage 3d6}) acid damage at the start of each of the froghemoth's turns.", + "The froghemoth's gullet can hold up to three creatures at a time. If the froghemoth takes 25 damage or more on a single turn from a creature inside it, the froghemoth must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which lands in a space within 10 feet of the froghemoth and has the {@condition prone} condition. If the froghemoth dies, any swallowed creatures are no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting with the {@condition prone} condition." + ] + }, + { + "name": "Tentacle", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage, and the target has the {@condition grappled} condition (escape {@dc 20}). Until this grapple ends, the froghemoth can't use this tentacle on another target. The froghemoth has four tentacles." + ] + }, + { + "name": "Tongue", + "entries": [ + "The froghemoth targets one Large or smaller creature that it can see within 25 feet of it. The target must make a {@dc 20} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the froghemoth." + ] + } + ], + "reactionHeader": [ + "The froghemoth can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Alien Gaze", + "entries": [ + "When a creature the froghemoth can see damages the froghemoth, the froghemoth swivels its eyestalk toward the creature and pierces the creature's mind with its otherworldly gaze. That creature must make a {@dc 18} Intelligence saving throw, taking 7 ({@damage 2d6}) psychic damage on a failed save or half as much damage on a successful one." + ] + }, + { + "name": "Leap", + "entries": [ + "Immediately after a creature the froghemoth can see ends its turn, the froghemoth jumps up to half its speed. Each creature within 5 feet of the froghemoth when it lands must succeed on a {@dc 20} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "legendaryGroup": { + "name": "Froghemoth Elder", + "source": "QftIS" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack", + "Swallow", + "Tentacles" + ], + "damageTags": [ + "A", + "B", + "P", + "Y" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "intelligence", + "strength" + ], + "savingThrowForcedLegendary": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gibberling", + "source": "QftIS", + "page": 202, + "size": [ + "S" + ], + "type": { + "type": "fiend", + "tags": [ + "demon" + ] + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 7, + "formula": "2d6" + }, + "speed": { + "walk": 30 + }, + "str": 13, + "dex": 14, + "con": 11, + "int": 5, + "wis": 7, + "cha": 5, + "senses": [ + "darkvision 120 ft." + ], + "passive": 8, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Gibberling" + ], + "cr": "0", + "trait": [ + { + "name": "Aversion to Fire", + "entries": [ + "If the gibberling takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Incessant Gibberish", + "entries": [ + "Any non-gibberling that is within 30 feet of the gibberling and doesn't have the {@condition deafened} condition has disadvantage on Constitution saving throws to maintain {@status concentration} on spells and similar effects." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + ], + "senseTags": [ + "SD" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Grisdelfawr", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 70, + "_copy": { + "name": "Young Red Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Grisdelfawr", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Guardian of Gorm", + "source": "QftIS", + "page": 203, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "L", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 16, + "from": [ + "{@item chain mail|PHB}" + ] + } + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 10, + "con": 10, + "int": 10, + "wis": 13, + "cha": 12, + "skill": { + "athletics": "+4", + "insight": "+3", + "religion": "+2" + }, + "passive": 11, + "languages": [ + "Common" + ], + "cr": "1/8", + "trait": [ + { + "name": "Brave", + "entries": [ + "The guardian has advantage on saving throws against the {@condition frightened} condition." + ] + } + ], + "action": [ + { + "name": "Lightning Mace", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 2 ({@damage 1d4}) lightning damage." + ] + }, + { + "name": "Handaxe", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + } + ], + "attachedItems": [ + "handaxe|phb" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "L", + "P", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Horrid Plant", + "source": "QftIS", + "page": 204, + "size": [ + "L" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + 6 + ], + "hp": { + "average": 42, + "formula": "5d10 + 15" + }, + "speed": { + "walk": 5 + }, + "str": 18, + "dex": 3, + "con": 17, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 10, + "conditionImmune": [ + "blinded", + "deafened" + ], + "cr": "4", + "trait": [ + { + "name": "Horrid Plant Varieties", + "entries": [ + "A horrid plant comes in one of three varieties (choose or roll a {@dice d6}): 1-2, dew drinker; 3-4, purple blossom; or 5-6, snapper saw. This form determines certain traits in this stat block." + ] + }, + { + "name": "False Appearance", + "entries": [ + "If the horrid plant is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the horrid plant move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Nature}) check to discern that the horrid plant isn't an ordinary plant." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The horrid plant makes two Tendril attacks." + ] + }, + { + "name": "Tendril", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 30 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}), and the horrid plant can pull the target up to 25 feet closer to itself. Until the grapple ends, the target has the {@condition restrained} condition, and the horrid plant can't use the same tendril on another target. The horrid plant has two tendrils." + ] + } + ], + "bonus": [ + { + "name": "Sap Squirt (Purple Blossom Only)", + "entries": [ + "The horrid plant targets one creature it can see within 15 feet of itself. The target must succeed on a {@dc 14} Dexterity saving throw or take 28 ({@damage 8d6}) acid damage and become covered in acidic sap. This sap lasts for 1 minute or until a creature uses its action to scrape the sap off itself or another creature it can reach. A creature covered in sap takes 14 ({@damage 4d6}) acid damage at the start of each of its turns." + ] + }, + { + "name": "Spiked Leaves (Snapper Saw Only)", + "entries": [ + "Creatures within 10 feet of the horrid plant and not behind {@quickref Cover||3||total cover} must make a {@dc 14} Dexterity saving throw, taking 21 ({@damage 6d6}) slashing damage on a failed save or half as much damage on a successful one." + ] + }, + { + "name": "Vampiric Tendril (Dew Drinker Only)", + "entries": [ + "One creature {@condition grappled} by the horrid plant must make a {@dc 13} Constitution saving throw, taking 10 ({@damage 3d6}) necrotic damage on a failed save or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken, and the horrid plant regains hit points equal to that amount. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "N", + "S" + ], + "miscTags": [ + "HPR", + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Horrid Plant Dew Drinker", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Horrid Plant Varieties" + }, + "bonus": [ + { + "mode": "removeArr", + "names": [ + "Sap Squirt (Purple Blossom Only)", + "Spiked Leaves (Snapper Saw Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Vampiric Tendril (Dew Drinker Only)", + "with": "Vampiric Tendril" + } + } + ] + } + }, + { + "name": "Horrid Plant Purple Blossom", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Horrid Plant Varieties" + }, + "bonus": [ + { + "mode": "removeArr", + "names": [ + "Spiked Leaves (Snapper Saw Only)", + "Vampiric Tendril (Dew Drinker Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Sap Squirt (Purple Blossom Only)", + "with": "Sap Squirt" + } + } + ] + } + }, + { + "name": "Horrid Plant Snapper Saw", + "source": "QftIS", + "_mod": { + "trait": { + "mode": "removeArr", + "names": "Horrid Plant Varieties" + }, + "bonus": [ + { + "mode": "removeArr", + "names": [ + "Sap Squirt (Purple Blossom Only)", + "Vampiric Tendril (Dew Drinker Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Spiked Leaves (Snapper Saw Only)", + "with": "Spiked Leaves" + } + } + ] + } + } + ] + }, + { + "name": "Iaseda", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 108, + "_copy": { + "name": "Acolyte", + "source": "MM", + "_templates": [ + { + "name": "Human", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the acolyte", + "with": "Iaseda", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Isabela Folcarae", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 79, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_templates": [ + { + "name": "Human", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Isabela", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Juliana", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 98, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Human", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Juliana", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 11 + ], + "action": null, + "hasToken": true + }, + { + "name": "Leprechaun", + "source": "QftIS", + "page": 205, + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 13 + ], + "hp": { + "average": 52, + "formula": "8d6 + 24" + }, + "speed": { + "walk": 30 + }, + "str": 6, + "dex": 17, + "con": 16, + "int": 12, + "wis": 14, + "cha": 18, + "save": { + "con": "+5", + "wis": "+4" + }, + "skill": { + "perception": "+4", + "sleight of hand": "+7", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "languages": [ + "Common", + "Sylvan" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The leprechaun casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell Mending} (as an action)", + "{@spell Prestidigitation}" + ], + "daily": { + "2e": [ + "{@spell Invisibility}", + "{@spell Phantasmal Force}" + ], + "1e": [ + "{@spell Fabricate} (as an action)", + "{@spell Mislead}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Industrious", + "entries": [ + "The leprechaun is proficient with all artisan's tools and adds double its proficiency bonus to ability checks made with them." + ] + }, + { + "name": "Reluctant Refusal", + "entries": [ + "When a creature offers the leprechaun the chance to partake in merriment or revelry such as a song, a dance, or a good meal, the leprechaun must succeed on a {@dc 15} Wisdom saving throw or have the {@condition charmed} condition for 24 hours. While {@condition charmed} in this way, the leprechaun partakes of the offering, treats the creature as a trusted friend, and seeks to defend it from harm. The {@condition charmed} condition ends if the creature or any of its allies damage the leprechaun, force the leprechaun to make a saving throw, or steal from the leprechaun." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The leprechaun makes two Cobbler's Hammer attacks and can use Spellcasting." + ] + }, + { + "name": "Cobbler's Hammer", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 13 ({@damage 3d8}) force damage. If the target is a creature, its speed is halved until the start of the leprechaun's next turn." + ] + }, + { + "name": "Gift of Luck (1/Day)", + "entries": [ + "The leprechaun touches a creature and magically gifts the target a measure of luck. The creature gains the leprechaun's Astonishing Luck reaction. The creature can use the reaction three times, after which this gift goes away. The leprechaun can revoke this gift from a creature at any time (no action required). A creature can benefit from only one leprechaun's Gift of Luck at a time." + ] + } + ], + "bonus": [ + { + "name": "Cunning Trick", + "entries": [ + "The leprechaun takes the Disengage or Hide action or makes a Dexterity ({@skill Sleight of Hand}) check." + ] + } + ], + "reaction": [ + { + "name": "Astonishing Luck", + "entries": [ + "When the leprechaun fails an ability check, an attack roll, or a saving throw, it can roll a new {@dice d20} and choose which roll to use, potentially turning the failure into a success." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "S" + ], + "damageTags": [ + "B", + "O" + ], + "damageTagsSpell": [ + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflictSpell": [ + "blinded", + "deafened", + "invisible" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedSpell": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mage of Usamigaras", + "source": "QftIS", + "page": 206, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "C", + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + 11 + ], + "hp": { + "average": 9, + "formula": "2d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 12, + "con": 10, + "int": 15, + "wis": 10, + "cha": 13, + "skill": { + "arcana": "+4", + "deception": "+5", + "sleight of hand": "+3" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1/8", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The mage casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "will": [ + "{@spell Light}", + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "daily": { + "1e": [ + "{@spell Charm Person}", + "{@spell Disguise Self}", + "{@spell Silent Image}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 120 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage." + ] + } + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Maschin-i-Bozorg", + "source": "QftIS", + "page": 207, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 16, + "con": 20, + "int": 2, + "wis": 10, + "cha": 1, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "poisoned", + "unconscious" + ], + "languages": [ + "understands Gnomish but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Overheat", + "entries": [ + "When the maschin-i-bozorg is reduced to 0 hit points, its power source overloads, briefly superheating its outer shell. Each creature within 10 feet of the maschin-i-bozorg must make a {@dc 16} Constitution saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save or half as much damage on a successful one." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The maschin-i-bozorg makes two Poison Jab attacks." + ] + }, + { + "name": "Poison Jab", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage, and the target must succeed on a {@dc 16} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Steam Jet {@recharge 5}", + "entries": [ + "The maschin-i-bozorg emits scalding steam in a 30-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save or half as much damage on a successful one." + ] + } + ], + "bonus": [ + { + "name": "Crushing Stride", + "entries": [ + "The maschin-i-bozorg moves up to its speed in a straight line. During this movement, it can enter Medium and smaller creatures' spaces. A creature whose space the maschin-i-bozorg enters must make a {@dc 15} Dexterity saving throw. On a successful save, the creature is pushed to the nearest unoccupied space out of the maschin-i-bozorg's path. On a failed save, the creature takes 10 ({@damage 3d6}) bludgeoning damage and has the {@condition prone} condition.", + "If the maschin-i-bozorg remains in the {@condition prone} creature's space, the creature also has the {@condition restrained} condition until it's no longer in the same space as the maschin-i-bozorg. While {@condition restrained} in this way, the creature, or another creature within 5 feet of it, can use its action to make a {@dc 15} Strength ({@skill Athletics}) check. On a successful check, the creature is shunted to an unoccupied space of its choice within 5 feet of the maschin-i-bozorg." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "G" + ], + "damageTags": [ + "B", + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RW" + ], + "conditionInflict": [ + "poisoned", + "prone" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Memory Web", + "source": "QftIS", + "page": 208, + "size": [ + "L" + ], + "type": "aberration", + "alignment": [ + "N", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 14 + ], + "hp": { + "average": 39, + "formula": "6d10 + 6" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 16, + "dex": 18, + "con": 13, + "int": 14, + "wis": 14, + "cha": 3, + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "passive": 12, + "resist": [ + "fire" + ], + "conditionImmune": [ + "blinded", + "deafened" + ], + "cr": "4", + "trait": [ + { + "name": "Damage Transfer", + "entries": [ + "While it is grappling a creature, the memory web takes only half the damage dealt to it, and the creature {@condition grappled} by the web takes the other half." + ] + }, + { + "name": "False Appearance", + "entries": [ + "If the memory web is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the memory web move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the memory web is animate." + ] + }, + { + "name": "Memory Flood", + "entries": [ + "When the memory web is reduced to 0 hit points, it discharges any memories it consumed over the past 24 hours in a telepathic deluge. Hazy, dreamlike visions of these discharged memories lodge in the minds of creatures up to 120 feet from the memory web." + ] + } + ], + "action": [ + { + "name": "Ensnare", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Large or smaller creature. {@h}The target has the {@condition grappled} condition (escape {@dc 13}). Until this grapple ends, the target has the {@condition restrained} condition and takes 7 ({@damage 1d8 + 3}) bludgeoning damage at the start of each of its turns. The memory web can grapple only one creature at a time." + ] + } + ], + "bonus": [ + { + "name": "Drain Memories", + "entries": [ + "The memory web targets one creature {@condition grappled} by it. The target must make a {@dc 12} Intelligence saving throw. Constructs, Oozes, Plants, and Undead succeed on the save automatically. On a failed save, the target takes 5 ({@damage 2d4}) psychic damage and becomes memory drained until it finishes a long rest or the memory web is destroyed.", + "While memory drained, the target must roll a {@dice d4} each time it makes an ability check or attack roll, subtracting the {@dice d4} roll from it. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target has the {@condition unconscious} condition for 1 hour. If a memory drained creature is the target of the Greater Restoration or {@spell Heal} spell, the memory drained effect ends on it. On a successful save, the target takes half as much damage only." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "B", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "unconscious" + ], + "savingThrowForced": [ + "intelligence" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nafas", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 210, + "size": [ + "L" + ], + "type": "elemental", + "alignment": [ + "C", + "G" + ], + "ac": [ + { + "ac": 19, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 350, + "formula": "28d10 + 196" + }, + "speed": { + "walk": 30, + "fly": { + "number": 90, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 23, + "dex": 18, + "con": 24, + "int": 15, + "wis": 18, + "cha": 23, + "save": { + "dex": "+11", + "wis": "+11", + "cha": "+13" + }, + "skill": { + "perception": "+11", + "performance": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 21, + "resist": [ + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "lightning", + "thunder" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Auran", + "Common" + ], + "cr": "23", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Nafas casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "will": [ + "{@spell Detect Evil and Good}", + "{@spell Detect Magic}", + "{@spell Thaumaturgy}" + ], + "daily": { + "3e": [ + "{@spell Create Food and Water} (the food is always tasty)", + "{@spell Dispel Magic}", + "{@spell Invisibility}", + "{@spell Legend Lore} (as an action)", + "{@spell Tongues}", + "{@spell Wind Walk} (as an action)" + ], + "1e": [ + "{@spell Gaseous Form}", + "{@spell Major Image}", + "{@spell Teleport}", + "{@spell Wish}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Dimensionally Bound", + "entries": [ + "Nafas can't leave the Infinite Staircase or be trapped within a container (such as an Iron Flask). Attempts to transport Nafas to another plane are wasted." + ] + }, + { + "name": "Last Wish", + "entries": [ + "When Nafas drops to 0 hit points, his body disintegrates into a whirl of multiversal dust that surrounds one creature responsible for his demise. That creature then hears Nafas's last wish: for the creature to take his place.", + "If the creature accepts, it is transformed into a noble djinni. The creature's game statistics are replaced by those of Nafas (including this trait), though it retains its name, alignment, and personality. The creature also inherits Nafas's palace and all it contains.", + "If the creature refuses, Nafas gains a new body in {@dice 1d10} days, regaining all his hit points and appearing in a random safe location on the Infinite Staircase." + ] + }, + { + "name": "Legendary Resistance (5/Day)", + "entries": [ + "If Nafas fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Nafas has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Noble Genie", + "entries": [ + "Nafas doesn't suffer any of the penalties that normally follow casting the {@spell Wish} spell to produce an effect other than duplicating another spell." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Nafas makes three Storm Shamshir attacks and uses Create Vortex." + ] + }, + { + "name": "Storm Shamshir", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 14 ({@damage 4d6}) lightning or thunder damage (Nafas's choice)." + ] + }, + { + "name": "Create Vortex", + "entries": [ + "A 10-foot-radius, 60-foot-tall cylinder of swirling cosmic dust forms on a point Nafas can see within 120 feet of him. The vortex lasts as long as Nafas maintains {@status concentration} (as if {@status concentration||concentrating} on a spell). When the vortex appears, each creature other than Nafas in the vortex's area must make a {@dc 22} Strength saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage and has the {@condition restrained} condition. On a successful save, a creature takes half as much damage only and moves to the nearest unoccupied space outside the vortex.", + "On subsequent turns, Nafas can use this action to move the vortex up to 60 feet. When the vortex enters a creature's space for the first time on a turn, the creature must make the same saving throw as when the vortex first appeared. Creatures {@condition restrained} by the vortex move with it.", + "A creature {@condition restrained} by the vortex, or another creature that can reach it, can use its action to make a {@dc 22} Strength check. On a successful check, the {@condition restrained} creature is no longer {@condition restrained} and moves to the nearest unoccupied space outside the vortex." + ] + } + ], + "reactionHeader": [ + "Nafas can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Blowback", + "entries": [ + "Immediately after a creature Nafas can see ends its turn, Nafas exhales forceful winds in a 30-foot cone. Large or smaller creatures in that area must succeed on a {@dc 22} Strength saving throw or be pushed up to 15 feet away from him." + ] + }, + { + "name": "Zephyr Step", + "entries": [ + "In response to being hit by an attack roll, Nafas moves up to half his flying speed without provoking opportunity attacks." + ] + } + ], + "legendaryGroup": { + "name": "Nafas", + "source": "QftIS" + }, + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AU", + "C" + ], + "damageTags": [ + "L", + "O", + "S", + "T" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "restrained" + ], + "conditionInflictSpell": [ + "incapacitated", + "invisible" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nafik", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 212, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33" + }, + "speed": { + "walk": 20 + }, + "str": 18, + "dex": 10, + "con": 16, + "int": 10, + "wis": 16, + "cha": 14, + "save": { + "int": "+3", + "wis": "+6" + }, + "skill": { + "history": "+3", + "religion": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "necrotic", + "poison" + ], + "vulnerable": [ + "fire" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Common" + ], + "cr": "6", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Nafik casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "will": [ + "{@spell Thaumaturgy}" + ], + "daily": { + "1": [ + "{@spell Insect Plague}" + ], + "2e": [ + "{@spell Command}", + "{@spell Silence}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Legendary Resistance (2/Day)", + "entries": [ + "If Nafik fails a saving throw, he can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "Nafik has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Rejuvenation", + "entries": [ + "When he is destroyed, Nafik gains a new body in 24 hours if his heart is intact, regaining all his hit points. The new body appears in an unoccupied space within 5 feet of Nafik's heart." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Nafik can use his Dreadful Glare and makes one Rotting Fist or Unholy Beam attack." + ] + }, + { + "name": "Rotting Fist", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 14} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies and its body turns to dust. The curse lasts until removed by the {@spell Remove Curse} spell or other magic." + ] + }, + { + "name": "Unholy Beam", + "entries": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) necrotic damage, and the next attack roll made against this target before the end of Nafik's next turn has advantage." + ] + }, + { + "name": "Dreadful Glare", + "entries": [ + "Nafik targets one creature he can see within 60 feet of himself. The target must succeed on a {@dc 14} Wisdom saving throw or have the {@condition frightened} condition until the end of Nafik's next turn. A target that succeeds on the saving throw is immune to Nafik's Dreadful Glare for the next 24 hours." + ] + } + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance", + "Rejuvenation" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "N" + ], + "damageTagsSpell": [ + "P" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "CUR", + "MW" + ], + "conditionInflict": [ + "frightened" + ], + "conditionInflictSpell": [ + "deafened", + "prone" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Orlando", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 98, + "_copy": { + "name": "Noble", + "source": "MM", + "_templates": [ + { + "name": "Human", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the noble", + "with": "Orlando", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + 11 + ], + "action": null, + "hasToken": true + }, + { + "name": "Pech", + "source": "QftIS", + "page": 213, + "size": [ + "S" + ], + "type": "elemental", + "alignment": [ + "N", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 82, + "formula": "11d6 + 44" + }, + "speed": { + "walk": 30, + "burrow": 20 + }, + "str": 19, + "dex": 11, + "con": 18, + "int": 11, + "wis": 14, + "cha": 10, + "save": { + "con": "+6", + "wis": "+4" + }, + "skill": { + "athletics": "+6", + "perception": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "passive": 14, + "conditionImmune": [ + "petrified" + ], + "languages": [ + "Common", + "Terran" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Communal Spellcasting (2/Day)", + "type": "spellcasting", + "headerEntries": [ + "The pech works with three or more pechs to cast spells, requiring no spell components and using Wisdom as the spellcasting ability (save {@dc 12}). If at least three other pechs are within 30 feet of it, the pech can cast {@spell Wall of Stone} . If at least seven other pechs are within 30 feet of it, it can cast {@spell Greater Restoration} . Each other pech involved in casting the spell can't have the incapacitated condition and must have at least one use of Communal Spellcasting remaining, which it must immediately expend to participate (no action required)." + ], + "daily": { + "2": [ + "{@spell Wall of Stone}", + "{@spell Greater Restoration}" + ] + }, + "ability": "wis", + "displayAs": "action", + "hidden": [ + "daily" + ] + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The pech has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the pech has disadvantage on attack rolls." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The pech makes two Fortified Pickaxe attacks. If it hits a Large or smaller creature with both attacks, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ] + }, + { + "name": "Fortified Pickaxe", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) force damage. If the target is a Construct or an object, the attack is automatically a critical hit." + ] + }, + { + "name": "Stone Shape (3/Day)", + "entries": [ + "The pech casts {@spell Stone Shape}, requiring no spell components and using Wisdom as the spellcasting ability." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "T" + ], + "damageTags": [ + "O" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "savingThrowForcedSpell": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Piyarz", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 67, + "_copy": { + "name": "Tower Sage", + "source": "QftIS", + "_templates": [ + { + "name": "Human", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tower sage", + "with": "Piyarz", + "flags": "i" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "Piyarz wears a {@item Ring of Fire Resistance}, granting him resistance to fire damage." + ] + } + } + } + }, + "alignment": [ + "L", + "E" + ], + "resist": [ + "fire" + ], + "hasToken": true + }, + { + "name": "Porro", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 66, + "_copy": { + "name": "Tower Sage", + "source": "QftIS", + "_templates": [ + { + "name": "Stout Halfling", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tower sage", + "with": "Porro", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "E" + ], + "hasToken": true + }, + { + "name": "Queen Zanobis", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 34, + "_copy": { + "name": "Wight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wight", + "with": "Queen Zanobis", + "flags": "i" + }, + "action": [ + { + "mode": "replaceArr", + "replace": "Multiattack", + "items": { + "name": "Multiattack", + "entries": [ + "The wight makes two scepter attacks or two longbow attacks. It can use its Life Drain in place of one scepter attack." + ] + } + }, + { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, or 7 ({@damage 1d10 + 2}) bludgeoning damage if used with two hands." + ] + } + } + ] + } + }, + "hasToken": true + }, + { + "name": "Shalfey", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 68, + "_copy": { + "name": "Tower Sage", + "source": "QftIS", + "_templates": [ + { + "name": "Human", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tower sage", + "with": "Shalfey", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "G" + ], + "hasToken": true + }, + { + "name": "Silverlily", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 92, + "_copy": { + "name": "Unicorn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the unicorn", + "with": "Silverlily", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Sion", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 216, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "human", + "sorcerer" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 14, + "con": 13, + "int": 12, + "wis": 14, + "cha": 16, + "save": { + "con": "+3", + "cha": "+5" + }, + "skill": { + "arcana": "+3", + "perception": "+4", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 14, + "languages": [ + "Common" + ], + "cr": "2", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Sion casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "daily": { + "1e": [ + "{@spell Darkness}", + "{@spell Mirror Image}", + "{@spell Silence}" + ] + }, + "ability": "cha", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "Sion has advantage on saving throws against spells and other magical effects if he is in dim light or darkness." + ] + }, + { + "name": "Shadesight", + "entries": [ + "Magical darkness doesn't impede Sion's darkvision." + ] + }, + { + "name": "Shadowy Demise", + "entries": [ + "If Sion dies, his body melts into shadow, leaving behind only equipment he was wearing or carrying." + ] + }, + { + "name": "Sunlight Weakness", + "entries": [ + "While in sunlight, Sion has disadvantage on attack rolls, ability checks, and saving throws." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Sion makes one Shadow Sword attack and uses Affix Shadow or Spellcasting." + ] + }, + { + "name": "Shadow Sword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) necrotic damage." + ] + }, + { + "name": "Affix Shadow", + "entries": [ + "Sion targets a creature within 60 feet of himself that he can see. That target must make a {@dc 13} Charisma saving throw. On a failed save, the target has the {@condition grappled} condition (escape {@dc 13}) as its shadow wraps around it. Once the target escapes the grapple, its shadow returns to normal." + ] + } + ], + "bonus": [ + { + "name": "Shadow Step", + "entries": [ + "While Sion is in dim light or darkness, he magically teleports up to 15 feet to an unoccupied space he can see that is also in dim light or darkness." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "N" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled" + ], + "conditionInflictSpell": [ + "deafened" + ], + "savingThrowForced": [ + "charisma" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Spirit of Hunger", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 144, + "_copy": { + "name": "Wraith", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wraith", + "with": "Spirit of Hunger", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Stargleam", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 92, + "_copy": { + "name": "Unicorn", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the unicorn", + "with": "Stargleam", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Swarm of Gibberlings", + "source": "QftIS", + "page": 202, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "swarmSize": "S" + }, + "alignment": [ + "C", + "E" + ], + "alignmentPrefix": "typically ", + "ac": [ + 12 + ], + "hp": { + "average": 38, + "formula": "7d10" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 14, + "con": 11, + "int": 5, + "wis": 7, + "cha": 5, + "senses": [ + "darkvision 120 ft." + ], + "passive": 8, + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "conditionImmune": [ + "charmed", + "frightened", + "grappled", + "paralyzed", + "petrified", + "prone", + "restrained", + "stunned" + ], + "languages": [ + "Gibberling" + ], + "cr": "3", + "trait": [ + { + "name": "Aversion to Fire", + "entries": [ + "If the swarm takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ] + }, + { + "name": "Incessant Gibberish", + "entries": [ + "Any non-gibberling that is within 60 feet of the swarm and doesn't have the {@condition deafened} condition has disadvantage on Constitution saving throws to maintain {@status concentration} on spells and similar effects." + ] + }, + { + "name": "Swarm", + "entries": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough to accommodate a Small gibberling. The swarm can't regain hit points or gain temporary hit points." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The swarm makes two Gnashing Teeth attacks." + ] + }, + { + "name": "Gnashing Teeth", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d4 + 4}) piercing damage, or 9 ({@damage 2d4 + 4}) piercing damage if the swarm has half of its hit points or fewer." + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "The Gardener", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 200, + "size": [ + "M" + ], + "type": { + "type": "fey", + "tags": [ + "archfey", + "druid" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 209, + "formula": "22d8 + 110" + }, + "speed": { + "walk": 30 + }, + "str": 21, + "dex": 16, + "con": 20, + "int": 17, + "wis": 20, + "cha": 18, + "save": { + "dex": "+7", + "con": "+9", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "insight": "+9", + "nature": "+11", + "perception": "+9", + "survival": "+13" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 19, + "resist": [ + "cold", + "fire" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The Gardener casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 17}):" + ], + "will": [ + "{@spell Druidcraft}", + "{@spell Speak with Animals}", + "{@spell Speak with Plants}" + ], + "daily": { + "2e": [ + "{@spell Awaken} (as an action)", + "{@spell Goodberry}", + "{@spell Plant Growth} (as an action only)" + ], + "1e": [ + "{@spell Heroes' Feast} (as an action)", + "{@spell Teleport}" + ] + }, + "ability": "wis", + "displayAs": "action" + } + ], + "trait": [ + { + "name": "Fey Rebirth", + "entries": [ + "If the Gardener dies in the Eternal Garden, they revive with all their hit points {@dice 1d4} days later in a safe location within the garden." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the Gardener fails a saving throw, they can choose to succeed instead." + ] + }, + { + "name": "Unfettered Steps", + "entries": [ + "The Gardener is unaffected by difficult terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The Gardener makes two Vine attacks and can use Breath of Tranquility if available." + ] + }, + { + "name": "Vine", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) bludgeoning damage plus 9 ({@damage 2d8}) psychic damage, and if the target is a Large or smaller creature, the vine wraps around the target, and the target has the {@condition grappled} condition (escape {@dc 17}). The vine vanishes when the target is no longer {@condition grappled}, or when the Gardener wills it to (no action required). A creature reduced to 0 hit points by the vine has the {@condition unconscious} condition but is stable instead of dying." + ] + }, + { + "name": "Breath of Tranquility {@recharge 5}", + "entries": [ + "The Gardener exhales soporific vapor in a 30-foot cone. Each creature in that area must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition. A {@condition poisoned} creature must repeat the saving throw at the end of its next turn. On a failed save, it has the {@condition unconscious} condition, and on a successful save, the effect ends on it. An {@condition unconscious} creature is no longer {@condition poisoned} and remains {@condition unconscious} for 1 hour, until it takes damage, or until a creature uses an action to shake it awake." + ] + } + ], + "reactionHeader": [ + "The Gardener can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Pacification", + "entries": [ + "When a creature within 120 feet of the Gardener damages the Gardener, that creature takes 10 ({@damage 3d6}) psychic damage, and the Gardener teleports, along with anything they are wearing or carrying, to an unoccupied space they can see within 15 feet. A creature reduced to 0 hit points by the psychic damage has the {@condition unconscious} condition and is stable instead of dying." + ] + }, + { + "name": "Spell Refuge", + "entries": [ + "When the Gardener or a creature within 30 feet of the Gardener takes damage from a spell, the Gardener chooses up to 5 creatures within 30 feet of themself. The Gardener and the chosen creatures have resistance to all damage from the triggering spell." + ] + } + ], + "legendaryGroup": { + "name": "The Gardener", + "source": "QftIS" + }, + "traitTags": [ + "Legendary Resistances" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "languageTags": [ + "C", + "DU", + "E", + "S" + ], + "damageTags": [ + "B", + "Y" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled" + ], + "conditionInflictSpell": [ + "charmed" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedLegendary": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tower Hand", + "source": "QftIS", + "page": 217, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 14, + "from": [ + "Unarmored Defense" + ] + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4" + }, + "speed": { + "walk": 40 + }, + "str": 10, + "dex": 14, + "con": 12, + "int": 12, + "wis": 14, + "cha": 9, + "skill": { + "insight": "+4" + }, + "passive": 12, + "languages": [ + "Common" + ], + "cr": "1/2", + "trait": [ + { + "name": "Unarmored Defense", + "entries": [ + "While the tower hand is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tower hand makes two Unarmed Strike attacks, two Dart attacks, or one of each." + ] + }, + { + "name": "Unarmed Strike", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ] + }, + { + "name": "Dart", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + } + ], + "reaction": [ + { + "name": "Deflect Missile", + "entries": [ + "In response to being hit by a ranged weapon attack, the tower hand deflects the missile. The damage it takes from the attack is reduced by 7 ({@dice 1d10 + 2})." + ] + } + ], + "attachedItems": [ + "dart|phb" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Tower Sage", + "source": "QftIS", + "page": 217, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "A" + ], + "ac": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 10, + "con": 10, + "int": 16, + "wis": 14, + "cha": 16, + "skill": { + "arcana": "+5", + "history": "+5", + "insight": "+4" + }, + "passive": 12, + "languages": [ + "Common plus any three languages" + ], + "cr": "1", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The tower sage casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "will": [ + "{@spell Dancing Lights}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "daily": { + "1e": [ + "{@spell Arcane Lock}", + "{@spell Burning Hands}", + "{@spell Comprehend Languages}", + "{@spell Detect Magic}", + "{@spell Levitate}", + "{@spell Mage Armor}" + ] + }, + "ability": "int", + "displayAs": "action" + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The tower sage makes two Arcane Burst attacks and can use Starry Radiance if available." + ] + }, + { + "name": "Arcane Burst", + "entries": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}8 ({@damage 1d10 + 3}) radiant damage." + ] + }, + { + "name": "Starry Radiance {@recharge 5}", + "entries": [ + "Dazzling light bursts from the tower sage's fingertips in a 15-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or have the {@condition blinded} condition until the end of the tower sage's next turn." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "R" + ], + "damageTagsSpell": [ + "F" + ], + "spellcastingTags": [ + "O" + ], + "miscTags": [ + "AOE" + ], + "savingThrowForced": [ + "constitution" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Uma", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 120, + "_copy": { + "name": "Knight", + "source": "MM", + "_templates": [ + { + "name": "Human", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the knight", + "with": "Uma", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Vegepygmy Moldmaker", + "source": "QftIS", + "page": 218, + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 44, + "formula": "8d6 + 16" + }, + "speed": { + "walk": 30 + }, + "str": 10, + "dex": 14, + "con": 14, + "int": 10, + "wis": 16, + "cha": 11, + "save": { + "int": "+2", + "wis": "+5" + }, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 15, + "resist": [ + "lightning", + "piercing" + ], + "languages": [ + "Vegepygmy" + ], + "cr": "3", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vegepygmy regains 7 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The vegepygmy makes two Claw attacks." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) slashing damage." + ] + }, + { + "name": "Toxic Mold (2/Day)", + "entries": [ + "The vegepygmy targets a creature it can see within 60 feet of itself. If the target isn't a vegepygmy, it must make a {@dc 13} Constitution saving throw. On a failed save, the target takes 13 ({@damage 3d8}) poison damage and has the {@condition blinded} and {@condition deafened} conditions for 1 minute as it becomes covered in a thick layer of mold. On a successful save, the target takes half as much damage only.", + "The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "I", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "blinded", + "deafened" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vegepygmy Scavenger", + "source": "QftIS", + "page": 218, + "size": [ + "S" + ], + "type": "plant", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 14, + "con": 13, + "int": 6, + "wis": 11, + "cha": 7, + "skill": { + "perception": "+2", + "sleight of hand": "+4", + "stealth": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "lightning", + "piercing" + ], + "languages": [ + "Vegepygmy" + ], + "cr": "1/4", + "trait": [ + { + "name": "Plant Camouflage", + "entries": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vegepygmy regains 3 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + } + ], + "action": [ + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ] + }, + { + "name": "Sling", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ] + } + ], + "bonus": [ + { + "name": "Nimble Escape", + "entries": [ + "The vegepygmy takes the Disengage or Hide action." + ] + } + ], + "attachedItems": [ + "sling|phb" + ], + "traitTags": [ + "Camouflage", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "OTH" + ], + "damageTags": [ + "B", + "S" + ], + "miscTags": [ + "MW", + "RW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vegepygmy Thorny Hunter", + "source": "QftIS", + "page": 219, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5" + }, + "speed": { + "walk": 40 + }, + "str": 15, + "dex": 14, + "con": 13, + "int": 2, + "wis": 10, + "cha": 6, + "skill": { + "perception": "+4", + "stealth": "+4", + "survival": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 14, + "resist": [ + "lightning", + "piercing" + ], + "cr": "2", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The vegepygmy has advantage on attack rolls against a creature if at least one of the vegepygmy's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ] + }, + { + "name": "Plant Camouflage", + "entries": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ] + }, + { + "name": "Regeneration", + "entries": [ + "The vegepygmy regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Thorny Body", + "entries": [ + "At the start of its turn, the vegepygmy deals 2 ({@damage 1d4}) piercing damage to any creature grappling it." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition." + ] + } + ], + "traitTags": [ + "Camouflage", + "Pack Tactics", + "Regeneration" + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vuuthramis", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 88, + "_copy": { + "name": "Young Bronze Dragon", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dragon", + "with": "Vuuthramis", + "flags": "i" + } + } + }, + "hasToken": true + }, + { + "name": "Warrior of Madarua", + "source": "QftIS", + "page": 220, + "size": [ + "M" + ], + "type": "humanoid", + "alignment": [ + "C", + "G" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 12, + "from": [ + "{@item leather armor|PHB}" + ] + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2" + }, + "speed": { + "walk": 30 + }, + "str": 15, + "dex": 12, + "con": 13, + "int": 10, + "wis": 10, + "cha": 10, + "skill": { + "acrobatics": "+3", + "religion": "+2" + }, + "passive": 10, + "languages": [ + "Common" + ], + "cr": "1/8", + "action": [ + { + "name": "Spear", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ] + } + ], + "reaction": [ + { + "name": "Parry", + "entries": [ + "The warrior adds 2 to its AC against one melee attack that would hit it. To do so, the warrior must see the attacker and be wielding a melee weapon." + ] + } + ], + "attachedItems": [ + "spear|phb" + ], + "actionTags": [ + "Parry" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RW", + "THW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Wolf-in-Sheep's-Clothing", + "source": "QftIS", + "page": 221, + "size": [ + "M" + ], + "type": "plant", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 20, + "dex": 9, + "con": 16, + "int": 5, + "wis": 12, + "cha": 5, + "skill": { + "perception": "+7", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 17, + "conditionImmune": [ + "prone" + ], + "cr": "7", + "trait": [ + { + "name": "False Appearance", + "entries": [ + "If the wolf-in-sheep's-clothing is motionless (except for its lure) at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the wolf-in-sheep's-clothing move or act (except for the lure), that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the wolf-in-sheep's-clothing is animate." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wolf-in-sheep's-clothing makes one Bite attack and two Root Tentacle attacks." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Root Tentacle", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 16}). While {@condition grappled} in this way, the target has the {@condition restrained} condition, and at the start of each of the wolf-in-sheep's-clothing's turns, the wolf-in-sheep's-clothing can pull the target up to 10 feet toward itself (no action required). The wolf-in-sheep's-clothing has four root tentacles, each of which can grapple one target." + ] + } + ], + "bonus": [ + { + "name": "Completely Harmless Lure", + "entries": [ + "The wolf-in-sheep's-clothing can change the color, texture, and shape of its lure to resemble a Tiny Beast or Tiny object. It can move the lure to reinforce the resemblance (no action required), but the lure must remain within 15 feet of the wolf-in-sheep's-clothing, connected by nearly {@condition invisible} filament-like tendrils." + ] + } + ], + "traitTags": [ + "False Appearance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Worker Robot", + "source": "QftIS", + "page": 215, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "alignmentPrefix": "typically ", + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "str": 20, + "dex": 9, + "con": 16, + "int": 10, + "wis": 12, + "cha": 10, + "skill": { + "athletics": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "resist": [ + "acid", + "fire" + ], + "immune": [ + "cold", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "Common plus the languages spoken by its creator" + ], + "cr": "3", + "trait": [ + { + "name": "Lightning Overload", + "entries": [ + "When the robot takes lightning damage, it must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition until the start of its next turn." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The robot makes two Cargo Tentacle attacks." + ] + }, + { + "name": "Cargo Tentacle", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}). The robot has two cargo tentacles, each of which can grapple one target." + ] + }, + { + "name": "Tractor Beam", + "entries": [ + "The robot casts {@spell Telekinesis}, targeting only creatures with the {@condition incapacitated} condition or objects. It requires no spell components and uses Wisdom as the spellcasting ability." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Zargon the Returner", + "isNpc": true, + "isNamedCreature": true, + "source": "QftIS", + "page": 223, + "size": [ + "H" + ], + "type": "aberration", + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 253, + "formula": "22d12 + 110" + }, + "speed": { + "walk": 40, + "swim": 80 + }, + "str": 22, + "dex": 10, + "con": 20, + "int": 14, + "wis": 18, + "cha": 18, + "save": { + "dex": "+6", + "cha": "+10" + }, + "skill": { + "history": "+8", + "perception": "+10" + }, + "senses": [ + "truesight 120 ft." + ], + "passive": 20, + "resist": [ + "cold", + "fire", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "acid", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "poisoned" + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "cr": "17", + "trait": [ + { + "name": "Legendary Resistance (4/Day)", + "entries": [ + "If Zargon fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Regeneration", + "entries": [ + "Zargon regains 20 hit points at the start of each of its turns. If Zargon takes cold or fire damage, this trait doesn't function at the start of Zargon's next turn. Zargon dies only if it starts its turn with 0 hit points and doesn't regenerate." + ] + }, + { + "name": "Shrouded Being", + "entries": [ + "Zargon can't be targeted by divination magic or perceived through magical scrying sensors." + ] + }, + { + "name": "Slimy Demise", + "entries": [ + "When Zargon dies, its body dissolves into foul slime, leaving only its horn behind. Zargon re-forms in {@dice 1d10} days, regrowing from the horn. The horn is immune to all damage and can be destroyed only by submerging it in a cleansing waterfall on one of the Upper Planes for 101 days. While the horn is submerged in this way, Zargon doesn't re-form, and the horn slowly dissolves, sending corrupting slime downriver that permanently fouls the water for 10 miles from the place where the horn dissolved. The fouled water is unfit to drink, chokes aquatic wildlife, and withers plants." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Zargon makes two Barbed Tentacle attacks, one Bite attack, and one Gore attack." + ] + }, + { + "name": "Barbed Tentacle", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 20}), and Zargon can pull the creature up to 20 feet straight toward itself. Zargon has six tentacles, each of which can grapple one creature. Zargon can move at its full speed while dragging creatures it is grappling." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}19 ({@damage 2d12 + 6}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ] + }, + { + "name": "Gore", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) force damage, and a 10-foot-radius {@condition invisible} sphere of antimagic, like that created by an {@spell Antimagic Field} spell, surrounds the target. The sphere is centered on the target, moves with the target, and lasts until the end of Zargon's next turn." + ] + }, + { + "name": "Slime Wave {@recharge 5}", + "entries": [ + "Zargon spews slime in a 60-foot cone. Each creature in that area that isn't an Aberration or Ooze must make a {@dc 19} Constitution saving throw. On a failed save, the creature takes 38 ({@damage 7d10}) acid damage and has the {@condition poisoned} condition for 1 minute. On a successful save, the creature takes half as much damage only. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "A creature reduced to 0 hit points by the acid damage dies and dissolves into a puddle of slime that rises as a gibbering mouther at the start of Zargon's next turn. The creature obeys Zargon's commands and takes its turn immediately after Zargon's. Only a {@spell Wish} spell can reverse this transformation and restore the creature to life." + ] + } + ], + "reactionHeader": [ + "Zargon can take up to three reactions per round but only one per turn." + ], + "reaction": [ + { + "name": "Defiant Essence", + "entries": [ + "When a creature casts a spell that targets Zargon or would deal damage to it, Zargon attempts to absorb the magic into its horn. The creature must make a {@dc 19} Charisma saving throw. On a failed save, the creature takes 6 ({@damage 1d12}) force damage, and the spell it cast fails and is wasted." + ] + }, + { + "name": "Slime Spray", + "entries": [ + "When a creature ends its turn within 30 feet of Zargon, Zargon sprays toxic slime at the creature. The target must make a {@dc 19} Dexterity saving throw (with disadvantage if it has the {@condition poisoned} condition). On a failed save, the creature takes 7 ({@damage 2d6}) poison damage. On a successful save, it takes half as much damage." + ] + } + ], + "legendaryGroup": { + "name": "Zargon the Returner", + "source": "QftIS" + }, + "traitTags": [ + "Legendary Resistances", + "Regeneration" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "TP", + "XX" + ], + "damageTags": [ + "A", + "I", + "O", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "charisma", + "constitution", + "dexterity" + ], + "savingThrowForcedLegendary": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aberrant Spirit", + "source": "XPHB", + "page": 322, + "summonedBySpell": "Summon Aberration|XPHB", + "summonedBySpellLevel": 4, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "11 + the spell's level" + } + ], + "hp": { + "special": "40 + 10 for each spell level above 4" + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover; Beholderkin only)" + }, + "canHover": true + }, + "str": 16, + "dex": 10, + "con": 15, + "int": 16, + "wis": 10, + "cha": 6, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "languages": [ + "Deep Speech", + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Regeneration (Slaad Only)", + "entries": [ + "The spirit regains 5 Hit Points at the start of its turn if it has at least 1 Hit Point." + ] + }, + { + "name": "Whispering Aura (Mind Flayer Only)", + "entries": [ + "At the start of each of the spirit's turns, the spirit emits psionic energy if it doesn't have the {@condition Incapacitated|XPHB} condition. {@actSave wis} DC equals your spell save DC, each creature (other than you) within 5 feet of the spirit. {@actSaveFail} {@damage 2d6} Psychic damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Claw (Slaad Only)", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d10 + 3 + summonSpellLevel} Slashing damage, and the target can't regain Hit Points until the start of the spirit's next turn." + ] + }, + { + "name": "Eye Ray (Beholderkin Only)", + "entries": [ + "{@atkr r} {@hitYourSpellAttack Bonus equals your spell attack modifier}, range 150 ft. {@h}{@damage 1d8 + 3 + summonSpellLevel} Psychic damage." + ] + }, + { + "name": "Psychic Slam (Mind Flayer Only)", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d8 + 3 + summonSpellLevel} Psychic damage." + ] + } + ], + "traitTags": [ + "Regeneration" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "DS" + ], + "damageTags": [ + "S", + "Y" + ], + "miscTags": [ + "MA", + "RA" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Aberrant Spirit (Beholderkin)", + "source": "XPHB", + "_mod": { + "action": [ + { + "mode": "removeArr", + "names": [ + "Claw (Slaad Only)", + "Psychic Slam (Mind Flayer Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Eye Ray (Beholderkin Only)", + "with": "Eye Ray" + } + } + ] + }, + "speed": { + "walk": 30, + "fly": { + "number": 30, + "condition": "(hover)" + }, + "canHover": true + }, + "trait": null, + "traitTags": null, + "damageTags": [ + "Y" + ], + "miscTags": [ + "RA" + ] + }, + { + "name": "Aberrant Spirit (Slaad)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Whispering Aura (Mind Flayer Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Regeneration (Slaad Only)", + "with": "Regeneration" + } + } + ], + "action": [ + { + "mode": "removeArr", + "names": [ + "Eye Ray (Beholderkin Only)", + "Psychic Slam (Mind Flayer Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Claw (Slaad Only)", + "with": "Claw" + } + } + ] + }, + "speed": { + "walk": 30 + }, + "traitTags": [ + "Regeneration" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MA" + ] + }, + { + "name": "Aberrant Spirit (Star Spawn)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Regeneration (Slaad Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Whispering Aura (Mind Flayer Only)", + "with": "Whispering Aura" + } + } + ], + "action": [ + { + "mode": "removeArr", + "names": [ + "Eye Ray (Beholderkin Only)", + "Claw (Slaad Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Psychic Slam (Mind Flayer Only)", + "with": "Psychic Slam" + } + } + ] + }, + "speed": { + "walk": 30 + }, + "traitTags": [ + "Regeneration" + ], + "damageTags": [ + "Y" + ], + "miscTags": [ + "RA" + ] + } + ] + }, + { + "name": "Animated Object", + "source": "XPHB", + "page": 240, + "summonedBySpell": "Animate Objects|XPHB", + "summonedBySpellLevel": 5, + "size": [ + "T", + "S", + "M", + "L", + "H" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + 15 + ], + "hp": { + "special": "10 (Medium or smaller), 20 (Large), 40 (Huge)" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 10, + "con": 10, + "int": 3, + "wis": 3, + "cha": 1, + "senses": [ + "blindsight 30 ft." + ], + "passive": 6, + "languages": [ + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "action": [ + { + "name": "Slam", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}Force damage equal to {@damage 1d4 + 3} + your spellcasting ability modifier (Medium or smaller), {@damage 2d6 + 3} + your spellcasting ability modifier (Large), or {@damage 2d12 + 3} + your spellcasting ability modifier (Huge)." + ] + } + ], + "senseTags": [ + "B" + ], + "miscTags": [ + "MA" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Animated Object (Huge)", + "source": "XPHB", + "hp": { + "special": "40" + }, + "action": [ + { + "name": "Slam", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}Force damage equal to {@damage 2d12 + 3} + your spellcasting ability modifier." + ] + } + ] + }, + { + "name": "Animated Object (Large)", + "source": "XPHB", + "hp": { + "special": "20" + }, + "action": [ + { + "name": "Slam", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}Force damage equal to {@damage 2d6 + 3} + your spellcasting ability modifier." + ] + } + ] + }, + { + "name": "Animated Object (Medium or Smaller)", + "source": "XPHB", + "hp": { + "special": "10" + }, + "action": [ + { + "name": "Slam", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}Force damage equal to {@damage 1d4 + 3} + your spellcasting ability modifier." + ] + } + ] + } + ] + }, + { + "name": "Beast of the Land", + "source": "XPHB", + "page": 123, + "summonedByClass": "Ranger|XPHB", + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "13 plus your Wisdom modifier" + } + ], + "hp": { + "special": "5 plus five times your Ranger level (the beast has a number of Hit Dice [d8s] equal to your Ranger level)" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 14, + "dex": 14, + "con": 15, + "int": 8, + "wis": 14, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Primal Bond", + "entries": [ + "Add your Proficiency Bonus to any ability check or saving throw the beast makes." + ] + } + ], + "action": [ + { + "name": "Beast's Strike", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@dice 1d8 + 2} plus your Wisdom modifier Bludgeoning, Piercing, or Slashing damage (your choice when you summon the beast). If the beast moved at least 20 feet straight toward the target before the hit, the target takes an extra {@damage 1d6} damage of the same type, and the target has the {@condition Prone|XPHB} condition if it is a Large or smaller creature." + ] + } + ], + "miscTags": [ + "MA" + ], + "conditionInflict": [ + "prone" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Beast of the Sea", + "source": "XPHB", + "page": 124, + "summonedByClass": "Ranger|XPHB", + "size": [ + "M" + ], + "type": "beast", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "13 plus your Wisdom modifier" + } + ], + "hp": { + "special": "5 plus five times your Ranger level (the beast has a number of Hit Dice [d8s] equal to your Ranger level)" + }, + "speed": { + "walk": 5, + "swim": 60 + }, + "str": 14, + "dex": 14, + "con": 15, + "int": 8, + "wis": 14, + "cha": 11, + "senses": [ + "darkvision 90 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The beast can breathe air and water." + ] + }, + { + "name": "Primal Bond", + "entries": [ + "Add your Proficiency Bonus to any ability check or saving throw the beast makes." + ] + } + ], + "action": [ + { + "name": "Beast's Strike", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@dice 1d6 + 2} plus your Wisdom modifier Bludgeoning or Piercing damage (your choice when you summon the beast), and the target has the {@condition Grappled|XPHB} condition (escape DC equals your spell save DC)." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "miscTags": [ + "MA" + ], + "conditionInflict": [ + "grappled" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Beast of the Sky", + "source": "XPHB", + "page": 124, + "summonedByClass": "Ranger|XPHB", + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "13 plus your Wisdom modifier" + } + ], + "hp": { + "special": "4 plus four times your Ranger level (the beast has a number of Hit Dice [d6s] equal to your Ranger level)" + }, + "speed": { + "walk": 10, + "fly": 60 + }, + "str": 6, + "dex": 16, + "con": 13, + "int": 8, + "wis": 14, + "cha": 11, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Flyby", + "entries": [ + "The beast doesn't provoke Opportunity Attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Primal Bond", + "entries": [ + "Add your Proficiency Bonus to any ability check or saving throw the beast makes." + ] + } + ], + "action": [ + { + "name": "Beast's Strike", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@dice 1d4 + 3} plus your Wisdom modifier Slashing damage." + ] + } + ], + "traitTags": [ + "Flyby" + ], + "miscTags": [ + "MA" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Bestial Spirit", + "source": "XPHB", + "page": 323, + "summonedBySpell": "Summon Beast|XPHB", + "summonedBySpellLevel": 2, + "size": [ + "S" + ], + "type": "beast", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "11 + the spell's level" + } + ], + "hp": { + "special": "20 (Air only) or 30 (Land and Water only) + 5 for each spell level above 2" + }, + "speed": { + "walk": 30, + "climb": { + "number": 30, + "condition": "(Land only)" + }, + "fly": { + "number": 60, + "condition": "(Air only)" + }, + "swim": { + "number": 30, + "condition": "(Water only)" + } + }, + "str": 18, + "dex": 11, + "con": 16, + "int": 4, + "wis": 14, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Flyby (Air Only)", + "entries": [ + "The spirit doesn't provoke Opportunity Attacks when it flies out of an enemy's reach." + ] + }, + { + "name": "Pack Tactics (Land and Water Only)", + "entries": [ + "The spirit has Advantage on an attack roll against a creature if at least one of the spirit's allies is within 5 feet of the creature and the ally doesn't have the {@condition Incapacitated|XPHB} condition." + ] + }, + { + "name": "Water Breathing (Water Only)", + "entries": [ + "The spirit can breathe only underwater." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of Rend attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d8 + 4 + summonSpellLevel} Piercing damage." + ] + } + ], + "traitTags": [ + "Flyby", + "Pack Tactics", + "Water Breathing" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MA" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Bestial Spirit (Air)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Water Breathing (Water Only)", + "Pack Tactics (Land and Water Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Flyby (Air Only)", + "with": "Flyby" + } + } + ] + }, + "hp": { + "special": "20 + 5 for each spell level above 2" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "traitTags": [ + "Flyby" + ] + }, + { + "name": "Bestial Spirit (Land)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Water Breathing (Water Only)", + "Flyby (Air Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Pack Tactics (Land and Water Only)", + "with": "Pack Tactics" + } + } + ] + }, + "hp": { + "special": "30 + 5 for each spell level above 2" + }, + "speed": { + "walk": 30, + "climb": 30 + }, + "traitTags": [ + "Pack Tactics" + ] + }, + { + "name": "Bestial Spirit (Water)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Flyby (Air Only)" + ] + }, + { + "mode": "renameArr", + "renames": { + "rename": "Pack Tactics (Land and Water Only)", + "with": "Pack Tactics" + } + } + ] + }, + "hp": { + "special": "30 + 5 for each spell level above 2" + }, + "speed": { + "walk": 30, + "swim": 30 + }, + "traitTags": [ + "Pack Tactics", + "Water Breathing" + ] + } + ] + }, + { + "name": "Celestial Spirit", + "source": "XPHB", + "page": 323, + "summonedBySpell": "Summon Celestial|XPHB", + "summonedBySpellLevel": 5, + "size": [ + "L" + ], + "type": "celestial", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "11 + the spell's level + 2 (Defender only)" + } + ], + "hp": { + "special": "40 + 10 for each spell level above 5" + }, + "speed": { + "walk": 30, + "fly": 40 + }, + "str": 16, + "dex": 14, + "con": 16, + "int": 10, + "wis": 14, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "radiant" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Celestial", + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Radiant Bow (Avenger Only)", + "entries": [ + "{@atkr r} {@hitYourSpellAttack Bonus equals your spell attack modifier}, range 600 ft. {@h}{@damage 2d6 + 2 + summonSpellLevel} Radiant damage." + ] + }, + { + "name": "Radiant Mace (Defender Only)", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d10 + 3 + summonSpellLevel} Radiant damage, and the spirit can choose itself or another creature it can see within 10 feet of the target. The chosen creature gains {@dice 1d10} Temporary Hit Points." + ] + }, + { + "name": "Healing Touch (1/Day)", + "entries": [ + "The spirit touches another creature. The target regains Hit Points equal to {@dice 2d8 + summonSpellLevel}." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "R" + ], + "miscTags": [ + "MA", + "MLW", + "RA" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Celestial Spirit (Avenger)", + "source": "XPHB", + "_mod": { + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Radiant Bow (Avenger Only)", + "with": "Radiant Bow" + } + }, + { + "mode": "removeArr", + "names": "Radiant Mace (Defender Only)" + } + ] + }, + "ac": [ + { + "special": "11 + the spell's level" + } + ], + "miscTags": [ + "RA", + "RW" + ] + }, + { + "name": "Celestial Spirit (Defender)", + "source": "XPHB", + "_mod": { + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Radiant Mace (Defender Only)", + "with": "Radiant Mace" + } + }, + { + "mode": "removeArr", + "names": "Radiant Bow (Avenger Only)" + } + ] + }, + "ac": [ + { + "special": "13 + the spell's level" + } + ], + "miscTags": [ + "MA", + "MLW" + ] + } + ] + }, + { + "name": "Construct Spirit", + "source": "XPHB", + "page": 324, + "summonedBySpell": "Summon Construct|XPHB", + "summonedBySpellLevel": 4, + "size": [ + "M" + ], + "type": "construct", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "13 + the spell's level" + } + ], + "hp": { + "special": "40 + 15 for each spell level above 4" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 10, + "con": 18, + "int": 14, + "wis": 11, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "Understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Heated Body (Metal Only)", + "entries": [ + "A creature that hits the spirit with a melee attack or that starts its turn in a grapple with the spirit takes {@damage 1d10} Fire damage." + ] + }, + { + "name": "Stony Lethargy (Stone Only)", + "entries": [ + "When a creature starts its turn within 10 feet of the spirit, the spirit can target it with magical energy if the spirit can see it. {@actSave wis} DC equals your spell save DC, the target. {@actSaveFail} Until the start of its next turn, the target can't make Opportunity Attacks, and its Speed is halved." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of Slam attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d8 + 4 + summonSpellLevel} Bludgeoning damage." + ] + } + ], + "reaction": [ + { + "name": "Berserk Lashing (Clay Only)", + "entries": [ + "{@actTrigger} The spirit takes damage from a creature. {@actResponse} The spirit makes a Slam attack against that creature if possible, or the spirit moves up to half its Speed toward that creature without provoking Opportunity Attacks." + ] + } + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "F" + ], + "miscTags": [ + "MA" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Construct Spirit (Clay)", + "source": "XPHB", + "_mod": { + "reaction": [ + { + "mode": "renameArr", + "renames": { + "rename": "Berserk Lashing (Clay Only)", + "with": "Berserk Lashing" + } + } + ] + }, + "trait": null, + "damageTags": [ + "B" + ] + }, + { + "name": "Construct Spirit (Metal)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Heated Body (Metal Only)", + "with": "Heated Body" + } + }, + { + "mode": "removeArr", + "names": "Stony Lethargy (Stone Only)" + } + ] + }, + "reaction": null + }, + { + "name": "Construct Spirit (Stone)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Stony Lethargy (Stone Only)", + "with": "Stony Lethargy" + } + }, + { + "mode": "removeArr", + "names": "Heated Body (Metal Only)" + } + ] + }, + "reaction": null, + "damageTags": [ + "B" + ] + } + ] + }, + { + "name": "Draconic Spirit", + "source": "XPHB", + "page": 325, + "summonedBySpell": "Summon Dragon|XPHB", + "summonedBySpellLevel": 5, + "size": [ + "L" + ], + "type": "dragon", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "14 + the spell's level" + } + ], + "hp": { + "special": "50 + 10 for each spell level above 5" + }, + "speed": { + "walk": 30, + "fly": 60, + "swim": 30 + }, + "str": 19, + "dex": 14, + "con": 17, + "int": 10, + "wis": 14, + "cha": 14, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "passive": 12, + "resist": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "conditionImmune": [ + "charmed", + "frightened", + "poisoned" + ], + "languages": [ + "Draconic", + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Shared Resistances", + "entries": [ + "When you summon the spirit, choose one of its Resistances. You have Resistance to the chosen damage type until the spell ends." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of Rend attacks equal to half the spell's level (round down), and it uses Breath Weapon." + ] + }, + { + "name": "Rend", + "entries": [ + "{@atk m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 10 feet. {@h}{@damage 1d6 + 4 + summonSpellLevel} Piercing damage." + ] + }, + { + "name": "Breath Weapon", + "entries": [ + "{@actSave dex} DC equals your spell save DC, each creature in a 30-foot Cone. {@actSaveFail} {@damage 2d6} damage of a type this spirit has Resistance to (your choice when you cast the spell). {@actSaveSuccess} Half damage." + ] + } + ], + "actionTags": [ + "Breath Weapon", + "Multiattack" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MA" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Elemental Spirit", + "source": "XPHB", + "page": 325, + "summonedBySpell": "Summon Elemental|XPHB", + "summonedBySpellLevel": 4, + "size": [ + "M" + ], + "type": "elemental", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "11 + the spell's level" + } + ], + "hp": { + "special": "50 + 10 for each spell level above 4" + }, + "speed": { + "walk": 40, + "burrow": { + "number": 40, + "condition": "(Earth only)" + }, + "fly": { + "number": 40, + "condition": "(hover; Air only)" + }, + "swim": { + "number": 40, + "condition": "(Water only)" + }, + "canHover": true + }, + "str": 18, + "dex": 15, + "con": 17, + "int": 4, + "wis": 10, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "lightning", + "thunder" + ], + "cond": true, + "note": "(Air only)" + }, + { + "resist": [ + "piercing", + "slashing" + ], + "cond": true, + "note": "(Earth only)" + }, + { + "resist": [ + "acid" + ], + "cond": true, + "note": "(Water only)" + } + ], + "immune": [ + "poison", + { + "immune": [ + "fire" + ], + "cond": true, + "note": "(Fire only)" + } + ], + "conditionImmune": [ + "exhaustion", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "Primordial", + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Amorphous Form (Air, Fire, and Water Only)", + "entries": [ + "The spirit can move through a space as narrow as 1 inch wide without it counting as Difficult Terrain." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of Slam attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d10 + 4 + summonSpellLevel} Bludgeoning (Earth only), Cold (Water only), Lightning (Air only), or Fire (Fire only) damage." + ] + } + ], + "traitTags": [ + "Amorphous" + ], + "actionTags": [ + "Multiattack" + ], + "miscTags": [ + "MA" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Elemental Spirit (Air)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Amorphous Form (Air, Fire, and Water Only)", + "with": "Amorphous Form" + } + } + ], + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft.. {@h}{@damage 1d10 + 4 + summonSpellLevel} Bludgeoning damage." + ] + } + } + }, + "speed": { + "walk": 40, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "resist": [ + "lightning", + "thunder" + ], + "immune": [ + "poison" + ], + "damageTags": [ + "B" + ] + }, + { + "name": "Elemental Spirit (Earth)", + "source": "XPHB", + "_mod": { + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft.. {@h}{@damage 1d10 + 4 + summonSpellLevel} Bludgeoning damage." + ] + } + } + }, + "speed": { + "walk": 40, + "burrow": 40 + }, + "resist": [ + "piercing", + "slashing" + ], + "immune": [ + "poison" + ], + "trait": null, + "damageTags": [ + "B" + ] + }, + { + "name": "Elemental Spirit (Fire)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Amorphous Form (Air, Fire, and Water Only)", + "with": "Amorphous Form" + } + } + ], + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft.. {@h}{@damage 1d10 + 4 + summonSpellLevel} Fire damage." + ] + } + } + }, + "speed": { + "walk": 40 + }, + "immune": [ + "poison", + "fire" + ], + "damageTags": [ + "F" + ] + }, + { + "name": "Elemental Spirit (Water)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Amorphous Form (Air, Fire, and Water Only)", + "with": "Amorphous Form" + } + } + ], + "action": { + "mode": "replaceArr", + "replace": "Slam", + "items": { + "name": "Slam", + "entries": [ + "{@atk m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft.. {@h}{@damage 1d10 + 4 + summonSpellLevel} Bludgeoning damage." + ] + } + } + }, + "speed": { + "walk": 40, + "swim": 40 + }, + "resist": [ + "acid" + ], + "immune": [ + "poison" + ], + "damageTags": [ + "B" + ] + } + ] + }, + { + "name": "Fey Spirit", + "source": "XPHB", + "page": 326, + "summonedBySpell": "Summon Fey|XPHB", + "summonedBySpellLevel": 3, + "size": [ + "S" + ], + "type": "fey", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "12 + the spell's level" + } + ], + "hp": { + "special": "30 + 10 for each spell level above 3" + }, + "speed": { + "walk": 30, + "fly": 30 + }, + "str": 13, + "dex": 16, + "con": 14, + "int": 14, + "wis": 11, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "conditionImmune": [ + "charmed" + ], + "languages": [ + "Sylvan", + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of Fey Blade attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Fey Blade", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 2d6 + 3 + summonSpellLevel} Force damage." + ] + } + ], + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The spirit magically teleports up to 30 feet to an unoccupied space it can see. Then one of the following effects occurs, based on the spirit's chosen mood:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "name": "Fuming", + "type": "item", + "entries": [ + "The spirit has Advantage on the next attack roll it makes before the end of this turn." + ] + }, + { + "name": "Mirthful", + "type": "item", + "entries": [ + "{@actSave wis} DC equals your spell save DC, one creature the spirit can see within 10 feet of itself. {@actSaveFail} The target is {@condition Charmed|XPHB} by you and the spirit for 1 minute or until the target takes any damage." + ] + }, + { + "name": "Tricksy", + "type": "item", + "entries": [ + "The spirit fills a 10-foot Cube within 5 feet of it with magical Darkness, which lasts until the end of its next turn." + ] + } + ] + } + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "S" + ], + "damageTags": [ + "O" + ], + "miscTags": [ + "MA" + ], + "conditionInflict": [ + "charmed" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Fey Spirit (Fuming)", + "source": "XPHB", + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The spirit magically teleports up to 30 feet to an unoccupied space it can see. The spirit has Advantage on the next attack roll it makes before the end of this turn." + ] + } + ] + }, + { + "name": "Fey Spirit (Mirthful)", + "source": "XPHB", + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The spirit magically teleports up to 30 feet to an unoccupied space it can see. {@actSave wis} DC equals your spell save DC, one creature the spirit can see within 10 feet of itself. {@actSaveFail} The target is {@condition Charmed|XPHB} by you and the spirit for 1 minute or until the target takes any damage." + ] + } + ] + }, + { + "name": "Fey Spirit (Tricksy)", + "source": "XPHB", + "bonus": [ + { + "name": "Fey Step", + "entries": [ + "The spirit magically teleports up to 30 feet to an unoccupied space it can see. The spirit fills a 10-foot Cube within 5 feet of it with magical Darkness, which lasts until the end of its next turn." + ] + } + ] + } + ] + }, + { + "name": "Fiendish Spirit", + "source": "XPHB", + "page": 327, + "summonedBySpell": "Summon Fiend|XPHB", + "summonedBySpellLevel": 6, + "size": [ + "L" + ], + "type": "fiend", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "12 + the spell's level" + } + ], + "hp": { + "special": "50 (Demon only) or 40 (Devil only) or 60 (Yugoloth only) + 15 for each spell level above 6" + }, + "speed": { + "walk": 40, + "climb": { + "number": 40, + "condition": "(Demon only)" + }, + "fly": { + "number": 60, + "condition": "(Devil only)" + } + }, + "str": 13, + "dex": 16, + "con": 15, + "int": 10, + "wis": 10, + "cha": 16, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "resist": [ + "fire" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Abyssal", + "Infernal", + "Telepathy 60 ft." + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Death Throes (Demon Only)", + "entries": [ + "When the spirit drops to 0 Hit Points or the spell ends, the spirit explodes. {@actSave dex} DC equals your spell save DC, each creature in a 10-foot Emanation originating from the spirit. {@actSaveFail} {@damage 2d10} plus this spell's level Fire damage. {@actSaveSuccess} Half damage." + ] + }, + { + "name": "Devil's Sight (Devil Only)", + "entries": [ + "Magical Darkness doesn't impede the spirit's Darkvision." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The spirit has Advantage on saving throws against spells and other magical eff ects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Bite (Demon Only)", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d12 + 3 + summonSpellLevel} Necrotic damage." + ] + }, + { + "name": "Claws (Yugoloth Only)", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d8 + 3 + summonSpellLevel} Slashing damage. Immediately after the attack hits or misses, the spirit can teleport up to 30 feet to an unoccupied space it can see." + ] + }, + { + "name": "Fiery Strike (Devil Only)", + "entries": [ + "{@atkr m,r} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. or range 150 ft. {@h}{@damage 2d6 + 3 + summonSpellLevel} Fire damage." + ] + } + ], + "traitTags": [ + "Death Burst", + "Devil's Sight", + "Magic Resistance" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "F", + "N", + "S" + ], + "miscTags": [ + "MA", + "RA" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Fiendish Spirit (Demon)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Death Throes (Demon Only)", + "with": "Death Throes" + } + }, + { + "mode": "removeArr", + "names": "Devil's Sight (Devil Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Bite (Demon Only)", + "with": "Bite" + } + }, + { + "mode": "removeArr", + "names": [ + "Claws (Yugoloth Only)", + "Fiery Strike (Devil Only)" + ] + } + ] + }, + "hp": { + "special": "50 + 15 for each spell level above 6" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "traitTags": [ + "Death Burst", + "Magic Resistance" + ], + "damageTags": [ + "F" + ] + }, + { + "name": "Fiendish Spirit (Devil)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Devil's Sight (Devil Only)", + "with": "Devil's Sight" + } + }, + { + "mode": "removeArr", + "names": "Death Throes (Demon Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Fiery Strike (Devil Only)", + "with": "Fiery Strike" + } + }, + { + "mode": "removeArr", + "names": [ + "Bite (Demon Only)", + "Claws (Yugoloth Only)" + ] + } + ] + }, + "hp": { + "special": "40 + 15 for each spell level above 6" + }, + "speed": { + "walk": 40, + "fly": 60 + }, + "traitTags": [ + "Devil's Sight", + "Magic Resistance" + ], + "damageTags": [ + "N" + ] + }, + { + "name": "Fiendish Spirit (Yugoloth)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "removeArr", + "names": [ + "Death Throes (Demon Only)", + "Devil's Sight (Devil Only)" + ] + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Claws (Yugoloth Only)", + "with": "Claws" + } + }, + { + "mode": "removeArr", + "names": [ + "Bite (Demon Only)", + "Fiery Strike (Devil Only)" + ] + } + ] + }, + "hp": { + "special": "60 + 15 for each spell level above 6" + }, + "speed": { + "walk": 40 + }, + "traitTags": [ + "Magic Resistance" + ], + "damageTags": [ + "F" + ] + } + ] + }, + { + "name": "Giant Insect", + "source": "XPHB", + "page": 279, + "summonedBySpell": "Giant Insect|XPHB", + "summonedBySpellLevel": 4, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "special": "11 + the spell's level" + } + ], + "hp": { + "special": "30 + 10 for each spell level above 4" + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": { + "number": 40, + "condition": "(Wasp only)" + } + }, + "str": 17, + "dex": 13, + "con": 15, + "int": 4, + "wis": 14, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 12, + "languages": [ + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Spider Climb", + "entries": [ + "The insect can climb difficult surfaces, including along ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The insect makes a number of attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Poison Jab", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 10 ft. {@h}{@damage 1d6 + 3 + summonSpellLevel} Piercing damage plus {@damage 1d4} Poison damage." + ] + }, + { + "name": "Web Bolt (Spider Only)", + "entries": [ + "{@atkr r} {@hitYourSpellAttack Bonus equals your spell attack modifier}, range 60 ft. {@h}{@damage 1d10 + 3 + summonSpellLevel} Bludgeoning damage, and the target's Speed is reduced to 0 until the start of the insect's next turn." + ] + } + ], + "bonus": [ + { + "name": "Venomous Spew (Centipede Only)", + "entries": [ + "{@actSave con} Your spell save DC, one creature the insect can see within 10 feet. {@actSaveFail} The target has the {@condition Poisoned|XPHB} condition until the start of the insect's next turn." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "I", + "P" + ], + "miscTags": [ + "MA", + "RA", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Giant Insect (Centipede)", + "source": "XPHB", + "_mod": { + "action": [ + { + "mode": "removeArr", + "names": [ + "Web Bolt (Spider Only)" + ] + } + ] + }, + "speed": { + "walk": 40, + "climb": 40 + } + }, + { + "name": "Giant Insect (Spider)", + "source": "XPHB", + "_mod": { + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Web Bolt (Spider Only)", + "with": "Web Bolt" + } + } + ] + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "bonus": null + }, + { + "name": "Giant Insect (Wasp)", + "source": "XPHB", + "_mod": { + "action": [ + { + "mode": "removeArr", + "names": [ + "Web Bolt (Spider Only)" + ] + } + ] + }, + "speed": { + "walk": 40, + "climb": 40, + "fly": 40 + }, + "bonus": null + } + ] + }, + { + "name": "Otherworldly Steed", + "source": "XPHB", + "page": 273, + "summonedBySpell": "Find Steed|XPHB", + "summonedBySpellLevel": 2, + "size": [ + "L" + ], + "type": { + "type": { + "choose": [ + "celestial", + "fey", + "fiend" + ] + } + }, + "alignment": [ + "N" + ], + "ac": [ + { + "special": "10 + 1 per spell level" + } + ], + "hp": { + "special": "5 + 10 per spell level (the steed has a number of Hit Dice [d10s] equal to the spell's level)" + }, + "speed": { + "walk": 60, + "fly": { + "number": 60, + "condition": "(requires level 4+ spell)" + } + }, + "str": 18, + "dex": 12, + "con": 14, + "int": 6, + "wis": 12, + "cha": 8, + "passive": 11, + "languages": [ + "telepathy 1 mile (works only with you)" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Life Bond", + "entries": [ + "When you regain Hit Points from a level 1+ spell, the steed regains the same number of Hit Points if you're within 5 feet of it." + ] + } + ], + "action": [ + { + "name": "Otherworldly Slam", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d8 + summonSpellLevel} of Radiant (Celestial), Psychic (Fey), or Necrotic (Fiend) damage." + ] + } + ], + "bonus": [ + { + "name": "Fell Glare (Fiend Only; Recharges after a Long Rest)", + "entries": [ + "{@actSave wis} DC equals your spell save DC, one creature within 60 feet the steed can see. {@actSaveFail} The target has the {@condition Frightened|XPHB} condition until the end of your next turn." + ] + }, + { + "name": "Fey Step (Fey Only; Recharges after a Long Rest)", + "entries": [ + "The steed teleports, along with its rider, to an unoccupied space of your choice up to 60 feet away from itself." + ] + }, + { + "name": "Healing Touch (Celestial Only; Recharges after a Long Rest)", + "entries": [ + "One creature within 5 feet of the steed regains a number of Hit Points equal to {@dice 2d8 + summonSpellLevel}." + ] + } + ], + "languageTags": [ + "TP" + ], + "miscTags": [ + "MA" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Undead Spirit", + "source": "XPHB", + "page": 328, + "summonedBySpell": "Summon Undead|XPHB", + "summonedBySpellLevel": 3, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N" + ], + "ac": [ + { + "special": "11 + the spell's level" + } + ], + "hp": { + "special": "30 (Ghostly and Putrid only) or 20 (Skeletal only) + 10 for each spell level above 3" + }, + "speed": { + "walk": 30, + "fly": { + "number": 40, + "condition": "(hover; Ghostly only)" + }, + "canHover": true + }, + "str": 12, + "dex": 16, + "con": 15, + "int": 4, + "wis": 10, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "exhaustion", + "frightened", + "paralyzed", + "poisoned" + ], + "languages": [ + "understands the languages you know" + ], + "pbNote": "equals your Proficiency Bonus", + "trait": [ + { + "name": "Festering Aura (Putrid Only)", + "entries": [ + "{@actSave con} DC equals your spell save DC, any creature (other than you) that starts its turn within a 5-foot Emanation originating from the spirit. {@actSaveFail} The creature has the {@condition Poisoned|XPHB} condition until the start of its next turn." + ] + }, + { + "name": "Incorporeal Passage (Ghostly Only)", + "entries": [ + "The spirit can move through other creatures and objects as if they were Difficult Terrain. If it ends its turn inside an object, it is shunted to the nearest unoccupied space and takes {@damage 1d10} Force damage for every 5 feet traveled." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The spirit makes a number of attacks equal to half this spell's level (round down)." + ] + }, + { + "name": "Deathly Touch (Ghostly Only)", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d8 + 3 + summonSpellLevel} Necrotic damage, and the target has the {@condition Frightened|XPHB} condition until the end of its next turn." + ] + }, + { + "name": "Grave Bolt (Skeletal Only)", + "entries": [ + "{@atkr r} {@hitYourSpellAttack Bonus equals your spell attack modifier}, range 150 ft. {@h}{@damage 2d4 + 3 + summonSpellLevel} Necrotic damage." + ] + }, + { + "name": "Rotting Claw (Putrid Only)", + "entries": [ + "{@atkr m} {@hitYourSpellAttack Bonus equals your spell attack modifier}, reach 5 ft. {@h}{@damage 1d6 + 3 + summonSpellLevel} Slashing damage. If the target has the {@condition Poisoned|XPHB} condition, it has the {@condition Paralyzed|XPHB} condition until the end of its next turn." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N", + "O", + "S" + ], + "miscTags": [ + "MA", + "RA" + ], + "conditionInflict": [ + "frightened", + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Undead Spirit (Ghostly)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Incorporeal Passage (Ghostly Only)", + "with": "Incorporeal Passage" + } + }, + { + "mode": "removeArr", + "names": "Festering Aura (Putrid Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Deathly Touch (Ghostly Only)", + "with": "Deathly Touch" + } + }, + { + "mode": "removeArr", + "names": [ + "Grave Bolt (Skeletal Only)", + "Rotting Claw (Putrid Only)" + ] + } + ] + }, + "hp": { + "special": "30 + 10 for each spell level above 3" + }, + "speed": { + "walk": 30, + "fly": { + "number": 40, + "condition": "(hover)" + }, + "canHover": true + }, + "damageTags": [ + "N" + ], + "conditionInflict": [ + "frightened" + ] + }, + { + "name": "Undead Spirit (Putrid)", + "source": "XPHB", + "_mod": { + "trait": [ + { + "mode": "renameArr", + "renames": { + "rename": "Festering Aura (Putrid Only)", + "with": "Festering Aura" + } + }, + { + "mode": "removeArr", + "names": "Incorporeal Passage (Ghostly Only)" + } + ], + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Rotting Claw (Putrid Only)", + "with": "Rotting Claw" + } + }, + { + "mode": "removeArr", + "names": [ + "Deathly Touch (Ghostly Only)", + "Grave Bolt (Skeletal Only)" + ] + } + ] + }, + "hp": { + "special": "30 + 10 for each spell level above 3" + }, + "speed": { + "walk": 30 + }, + "traitTags": null, + "damageTags": [ + "O", + "S" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ] + }, + { + "name": "Undead Spirit (Skeletal)", + "source": "XPHB", + "_mod": { + "action": [ + { + "mode": "renameArr", + "renames": { + "rename": "Grave Bolt (Skeletal Only)", + "with": "Grave Bolt" + } + }, + { + "mode": "removeArr", + "names": [ + "Deathly Touch (Ghostly Only)", + "Rotting Claw (Putrid Only)" + ] + } + ] + }, + "hp": { + "special": "20 + 10 for each spell level above 3" + }, + "speed": { + "walk": 30 + }, + "trait": null, + "traitTags": null, + "damageTags": [ + "N" + ], + "conditionInflict": null + } + ] + }, + { + "name": "Avatar of Death", + "source": "XDMG", + "page": 252, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 20 + ], + "hp": { + "special": "Half the HP maximum of its summoner" + }, + "speed": { + "walk": 60, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 16, + "dex": 16, + "con": 16, + "int": 16, + "wis": 16, + "cha": 16, + "senses": [ + "truesight 60 ft." + ], + "passive": 13, + "immune": [ + "necrotic", + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned", + "unconscious" + ], + "languages": [ + "all languages known to its summoner" + ], + "pbNote": "equals its summoner's", + "trait": [ + { + "name": "Incorporeal Movement", + "entries": [ + "The avatar can move through other creatures and objects as if they were Difficult Terrain. It takes 5 ({@damage 1d10}) Force damage if it ends its turn inside an object." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The avatar makes a number of Reaping Scythe attacks equal to half the summoner's Proficiency Bonus (rounded up)." + ] + }, + { + "name": "Reaping Scythe", + "entries": [ + "{@atkr m} Automatic hit, reach 5 ft. {@h}7 ({@damage 1d8 + 3}) Slashing damage plus 4 ({@damage 1d8}) Necrotic damage." + ] + } + ], + "traitTags": [ + "Incorporeal Movement" + ], + "senseTags": [ + "U" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "XX" + ], + "damageTags": [ + "N", + "O", + "S" + ], + "miscTags": [ + "MA" + ], + "hasToken": true + }, + { + "name": "Giant Fly", + "source": "XDMG", + "page": 261, + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + 11 + ], + "hp": { + "average": 19, + "formula": "3d10 + 3" + }, + "speed": { + "walk": 30, + "fly": 60 + }, + "str": 14, + "dex": 13, + "con": 13, + "int": 2, + "wis": 10, + "cha": 3, + "senses": [ + "darkvision 60 ft." + ], + "passive": 10, + "cr": { + "cr": "0", + "xp": 0 + }, + "senseTags": [ + "D" + ], + "hasToken": true + }, + { + "name": "Aeorian Absorber", + "source": "EGW", + "page": 283, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 171, + "formula": "18d10 + 72" + }, + "speed": { + "walk": 40 + }, + "str": 21, + "dex": 18, + "con": 18, + "int": 6, + "wis": 14, + "cha": 8, + "save": { + "wis": "+6", + "cha": "+3" + }, + "skill": { + "perception": "+6", + "stealth": "+8", + "survival": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "necrotic", + "radiant" + ], + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "10", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The absorber has advantage on saving throws against spells and other magical effects." + ] + }, + { + "name": "Pounce", + "entries": [ + "If the absorber moves at least 20 feet straight toward a creature and then hits its claws attack on the same turn, that target must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the absorber can make one bite attack against it as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The absorber makes three attacks: one with its bite or Mind Bolt and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 5 ({@damage 1d10}) force damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 3 ({@damage 1d6}) force damage." + ] + }, + { + "name": "Mind Bolt", + "entries": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}22 ({@damage 4d10}) psychic damage." + ] + } + ], + "reaction": [ + { + "name": "Tail Ray", + "entries": [ + "When the absorber takes damage from a spell, the absorber takes only half the triggering damage. If the spellcaster is within 60 feet of the absorber, the absorber can force the caster to make a {@dc 16} Dexterity saving throw. Unless the save succeeds, the caster takes the other half of the damage." + ] + } + ], + "traitTags": [ + "Magic Resistance", + "Pounce" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "O", + "P", + "S", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aeorian Nullifier", + "source": "EGW", + "page": 283, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 180, + "formula": "19d10 + 76" + }, + "speed": { + "walk": 40 + }, + "str": 19, + "dex": 14, + "con": 18, + "int": 7, + "wis": 14, + "cha": 18, + "save": { + "wis": "+6", + "cha": "+8" + }, + "skill": { + "perception": "+6", + "survival": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 16, + "immune": [ + "necrotic", + "radiant" + ], + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "12", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The nullifier's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell counterspell} (see \"Reactions\" below)", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell see invisibility}" + ], + "daily": { + "1": [ + "{@spell antimagic field}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Horrid Gnashing", + "entries": [ + "The nullifier's mouths gnash incoherently while it can see any enemies. Each creature that starts its turn within 20 feet of the nullifier and can hear it must make a {@dc 16} Wisdom saving throw. Unless the save succeeds, the creature rolls a {@dice d8} to determine what it does during the current turn:", + { + "type": "list", + "style": "list-hang-notitle", + "items": [ + { + "type": "item", + "name": "1-4:", + "entry": "The creature is {@condition stunned} until the end of the turn." + }, + { + "type": "item", + "name": "5-6:", + "entry": "The creature is {@condition frightened} until the end of the turn and uses its movement to get as far as possible from the nullifier." + }, + { + "type": "item", + "name": "7-8:", + "entry": "The creature doesn't move, and it uses its action to make one melee attack against a random creature (other than itself) if one is within reach. It otherwise does nothing" + } + ] + } + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The nullifier has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The nullifier makes three attacks: one with its bites and two with its claws." + ] + }, + { + "name": "Bites", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}17 ({@damage 2d12 + 4}) piercing damage plus 11 ({@damage 2d10}) force damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 11 ({@damage 2d10}) force damage, and the target is {@condition grappled} (escape {@dc 16}) if it's a creature. The nullifier has two claws, each of which can grapple one creature." + ] + } + ], + "reaction": [ + { + "name": "Counterspell", + "entries": [ + "The nullifier attempts to interrupt a creature that it can see within 60 feet in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, the nullifier makes a Charisma check with a DC equal to 10 + the spell's level. On a success, the creature's spell fails and has no effect." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened", + "grappled", + "stunned" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Aeorian Reverser", + "source": "EGW", + "page": 284, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56" + }, + "speed": { + "walk": 40, + "climb": 40 + }, + "str": 21, + "dex": 16, + "con": 18, + "int": 6, + "wis": 14, + "cha": 8, + "save": { + "wis": "+5", + "cha": "+2" + }, + "skill": { + "perception": "+5", + "stealth": "+6", + "survival": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "immune": [ + "necrotic", + "radiant" + ], + "languages": [ + "understands Draconic but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The reverser has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The reverser makes three attacks: one with its bite and two with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, range 5 ft., one creature. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 6 ({@damage 1d12}) force damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 7 ({@damage 2d6}) force damage." + ] + } + ], + "reaction": [ + { + "name": "Reversal", + "entries": [ + "When a creature the reverser can see within 30 feet of it regains hit points, the reverser reduces the number of hit points regained to 0, and the reverser deals 13 ({@damage 3d8}) force damage to the creature." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DR" + ], + "damageTags": [ + "O", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Allowak Abominable Yeti", + "source": "EGW", + "page": 126, + "_copy": { + "name": "Abominable Yeti", + "source": "MM" + }, + "alignment": [ + "N" + ], + "int": 16, + "cha": 10, + "languages": [ + "Common", + "Yeti" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Allowak Yeti", + "source": "EGW", + "page": 126, + "_copy": { + "name": "Yeti", + "source": "MM" + }, + "alignment": [ + "N" + ], + "int": 16, + "cha": 10, + "languages": [ + "Common", + "Yeti" + ], + "languageTags": [ + "C", + "OTH" + ], + "hasToken": true + }, + { + "name": "Animated Knife", + "source": "EGW", + "page": 248, + "_copy": { + "name": "Flying Sword", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "sword", + "with": "knife" + }, + "action": { + "mode": "replaceArr", + "replace": "Longsword", + "items": { + "name": "Dagger", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ] + } + } + } + }, + "size": [ + "T" + ], + "hp": { + "average": 12, + "formula": "5d4" + }, + "cr": "1/8", + "damageTags": [ + "P" + ], + "hasToken": true + }, + { + "name": "Animated Tree", + "source": "EGW", + "page": 130, + "otherSources": [ + { + "source": "MOT" + } + ], + "_copy": { + "name": "Treant", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "treant", + "with": "tree" + }, + "resist": { + "mode": "appendArr", + "items": [ + "necrotic", + "radiant" + ] + } + } + }, + "alignment": [ + "U" + ], + "languages": [ + "understands Common, Druidic, Elvish, and Sylvan but cannot speak" + ], + "hasToken": true + }, + { + "name": "Blood Hunter", + "source": "EGW", + "page": 284, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "any race" + ] + }, + "alignment": [ + "A" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item half plate armor|PHB|half plate}" + ] + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 15, + "int": 9, + "wis": 16, + "cha": 11, + "save": { + "str": "+7", + "wis": "+6" + }, + "skill": { + "acrobatics": "+4", + "insight": "+6", + "perception": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 16, + "languages": [ + "any one language (usually Common)" + ], + "cr": "5", + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "type": "spellcasting", + "headerEntries": [ + "The blood hunter can innately cast {@spell hex}. Its innate spellcasting ability is Intelligence." + ], + "will": [ + "{@spell hex}" + ], + "ability": "int", + "hidden": [ + "will" + ] + } + ], + "trait": [ + { + "name": "Blood Curse of Binding (1/Day)", + "entries": [ + "As a bonus action, the blood hunter targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Strength saving throw or have its speed reduced to 0 and be unable to take reactions. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Blood Frenzy", + "entries": [ + "The blood hunter has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The blood hunter has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The blood hunter attacks twice with a weapon." + ] + }, + { + "name": "Greatsword", + "entries": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 3 ({@damage 1d6}) fire damage." + ] + }, + { + "name": "Heavy Crossbow", + "entries": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ] + } + ], + "attachedItems": [ + "greatsword|phb", + "heavy crossbow|phb" + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "X" + ], + "damageTags": [ + "F", + "P", + "S" + ], + "damageTagsSpell": [ + "N" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "CUR", + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Bol'bara", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 261, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "goblinoid" + ] + }, + "alignment": [ + { + "alignment": [ + "C", + "G" + ], + "note": "chaotic evil when fully possessed" + } + ], + "ac": [ + { + "ac": 13, + "from": [ + "{@item leather armor|PHB}" + ] + }, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "hp": { + "average": 40, + "formula": "9d6 + 9" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 14, + "con": 12, + "int": 10, + "wis": 13, + "cha": 14, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "languages": [ + "Common", + "Goblin" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Bol'bara's innate spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell eldritch blast}", + "{@spell false life}", + "{@spell mage armor}", + "{@spell mage hand}" + ], + "daily": { + "1e": [ + "{@spell charm person}", + "{@spell hex}", + "{@spell hold person}", + "{@spell invisibility}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Dark One's Blessing", + "entries": [ + "When Bol'bara reduces a hostile creature to 0 hit points, she gains 6 temporary hit points." + ] + }, + { + "name": "Nimble Escape", + "entries": [ + "Bol'bara can take the Disengage or Hide action as a bonus action on each of her turns." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "Bol'bara makes two melee attacks." + ] + }, + { + "name": "Dagger", + "entries": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Eldritch Blast (Cantrip)", + "entries": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one creature. {@h}7 ({@damage 1d10 + 2}) force damage." + ] + } + ], + "legendaryActions": 2, + "legendary": [ + { + "name": "Incorporeal Dash", + "entries": [ + "Bol'bara moves up to her speed. She can move through other creatures and objects as if they were {@quickref difficult terrain||3}. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ] + }, + { + "name": "Zone of Calamity (Costs 2 Actions)", + "entries": [ + "A 15-foot-radius sphere of magical confusion extends from a point Bol'bara can see within 60 feet of her and spreads around corners. Each creature that starts its turn in that area is treated as if targeted by the {@spell confusion} spell (save {@dc 12}). The sphere lasts as long as Bol'bara maintains {@status concentration}, up to 1 minute (as if {@status concentration||concentrating} on a spell)." + ] + } + ], + "attachedItems": [ + "dagger|phb" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "GO" + ], + "damageTags": [ + "O", + "P" + ], + "damageTagsSpell": [ + "N", + "O" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true + }, + { + "name": "Bristled Moorbounder", + "source": "EGW", + "page": 295, + "otherSources": [ + { + "source": "CRCotN", + "page": 295 + } + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14" + }, + "speed": { + "walk": 70 + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 2, + "wis": 13, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "cr": "3", + "trait": [ + { + "name": "Bladed Hide", + "entries": [ + "At the start of each of its turns, the moorbounder deals 5 ({@damage 2d4}) piercing damage to any creature grappling it." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The moorbounder's long jump is up to 40 feet and its high jump is up to 20 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The moorbounder makes two attacks: one with its blades and one with its claws." + ] + }, + { + "name": "Blades", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) slashing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Core Spawn Crawler", + "source": "EGW", + "page": 286, + "size": [ + "S" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + 12 + ], + "hp": { + "average": 21, + "formula": "6d6" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 14, + "con": 10, + "int": 9, + "wis": 12, + "cha": 6, + "skill": { + "perception": "+5" + }, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)", + "tremorsense 60 ft." + ], + "passive": 15, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "understands Deep Speech but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Pack Tactics", + "entries": [ + "The crawler has advantage on an attack roll against a creature if at least one of the crawler's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The crawler makes four attacks: one with its bite, two with its claws, and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage and the target must succeed on a {@dc 11} Wisdom saving throw or become {@condition frightened} until the start of the crawler's next turn." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 15 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 15 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ] + } + ], + "traitTags": [ + "Pack Tactics" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Core Spawn Emissary", + "source": "EGW", + "page": 286, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48" + }, + "speed": { + "walk": 40, + "fly": { + "number": 60, + "condition": "(hover)" + }, + "canHover": true + }, + "str": 17, + "dex": 15, + "con": 18, + "int": 8, + "wis": 13, + "cha": 8, + "save": { + "dex": "+5", + "wis": "+4", + "cha": "+2" + }, + "skill": { + "perception": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "passive": 14, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "blinded" + ], + "languages": [ + "telepathy 120 ft.", + "understands Deep Speech but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Magic Resistance", + "entries": [ + "The emissary has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The emissary makes three talons attacks." + ] + }, + { + "name": "Talons", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}14 ({@damage 2d10 + 3}) slashing damage." + ] + }, + { + "name": "Alluring Thrum {@recharge 5}", + "entries": [ + "The emissary emits a dreadful yet alluring hum. Each creature within 20 feet of the emissary that can hear it and that isn't an aberration must succeed on a {@dc 14} Constitution saving throw or be {@condition charmed} 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." + ] + }, + { + "name": "Crystal Spores {@recharge}", + "entries": [ + "A 15-foot-radius cloud of toxic crystalline spores extends out from the emissary. The spores spread around corners. Each creature in the area must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, a creature takes 11 ({@damage 2d10}) poison damage at the start of each of its turns. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "DS", + "TP" + ], + "damageTags": [ + "I", + "S" + ], + "miscTags": [ + "AOE", + "MW" + ], + "conditionInflict": [ + "charmed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Core Spawn Seer", + "source": "EGW", + "page": 286, + "size": [ + "M" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72" + }, + "speed": { + "walk": 30 + }, + "str": 14, + "dex": 12, + "con": 18, + "int": 22, + "wis": 19, + "cha": 16, + "save": { + "dex": "+6", + "int": "+11", + "wis": "+9", + "cha": "+8" + }, + "skill": { + "perception": "+9" + }, + "senses": [ + "blindsight 60 ft.", + "tremorsense 60 ft." + ], + "passive": 19, + "immune": [ + "psychic" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "cr": "13", + "trait": [ + { + "name": "Earth Glide", + "entries": [ + "The seer can traverse through nonmagical, unworked earth and stone. While doing so, the seer doesn't disturb the material it moves through." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The seer has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The seer uses Fission Staff twice, Psychedelic Orb twice, or each one once." + ] + }, + { + "name": "Fission Staff", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}9 ({@damage 1d6 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage, and the target is knocked {@condition prone}." + ] + }, + { + "name": "Psychedelic Orb", + "entries": [ + "The seer hurls a glimmering orb at one creature it can see within 120 of it. The target must succeed on a {@dc 19} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage and suffer a random condition until the start of the seer's next turn. Roll a {@dice d6} for the condition: (1-2) {@condition blinded}, (3-4) {@condition frightened}, or (5-6) {@condition stunned}." + ] + } + ], + "reaction": [ + { + "name": "Fuse Damage", + "entries": [ + "When the seer is hit by an attack, it takes only half of the triggering damage. The first time the seer hits with a melee attack on its next turn, the target takes an extra {@damage 1d6} radiant damage." + ] + } + ], + "traitTags": [ + "Magic Resistance" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "DS", + "TP", + "U" + ], + "damageTags": [ + "B", + "R", + "Y" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Core Spawn Worm", + "source": "EGW", + "page": 287, + "size": [ + "G" + ], + "type": "aberration", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 279, + "formula": "18d20 + 90" + }, + "speed": { + "walk": 60, + "burrow": 40 + }, + "str": 26, + "dex": 5, + "con": 20, + "int": 6, + "wis": 8, + "cha": 4, + "save": { + "con": "+10", + "wis": "+4" + }, + "skill": { + "perception": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "passive": 14, + "immune": [ + "fire", + "psychic" + ], + "vulnerable": [ + "cold" + ], + "conditionImmune": [ + "charmed", + "frightened" + ], + "languages": [ + "understands Deep Speech but can't speak" + ], + "cr": "15", + "trait": [ + { + "name": "Illumination", + "entries": [ + "The worm sheds dim light in a 20-foot radius." + ] + }, + { + "name": "Radiant Mirror", + "entries": [ + "If the worm takes radiant damage, each creature within 20 feet of it takes that damage as well." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The worm can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The worm makes two attacks: one with its barbed tentacles and one with its bite." + ] + }, + { + "name": "Barbed Tentacles", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one creature. {@h}25 ({@damage 5d6 + 8}) piercing damage, and the target is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}. The tentacles can grapple only one creature at a time." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}30 ({@damage 5d8 + 8}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the worm, and takes 21 ({@damage 6d6}) fire damage at the start of each of the worm's turns.", + "If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ] + } + ], + "traitTags": [ + "Illumination", + "Tunneler" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "languageTags": [ + "CS", + "DS" + ], + "damageTags": [ + "F", + "P" + ], + "miscTags": [ + "AOE", + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Damaged Flesh Golem", + "source": "EGW", + "page": 248, + "_copy": { + "name": "Flesh Golem", + "source": "MM", + "_mod": { + "action": { + "mode": "removeArr", + "names": "Multiattack" + } + } + }, + "hp": { + "average": 5, + "formula": "11d8 + 44" + }, + "cr": "1", + "actionTags": [], + "hasToken": true + }, + { + "name": "Ferol Sal", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 249, + "_copy": { + "name": "Wight", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the wight", + "with": "Ferol", + "flags": "i" + } + } + }, + "int": 16, + "hasToken": true + }, + { + "name": "Frost Giant Zombie", + "source": "EGW", + "page": 288, + "size": [ + "H" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "patchwork armor" + ] + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60" + }, + "speed": { + "walk": 40 + }, + "str": 23, + "dex": 6, + "con": 21, + "int": 3, + "wis": 6, + "cha": 5, + "save": { + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "cold", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Giant but can't speak" + ], + "cr": "9", + "trait": [ + { + "name": "Numbing Aura", + "entries": [ + "Any creature that starts its turn within 10 feet of the zombie must make a {@dc 17} Constitution saving throw. Unless the save succeeds, the creature can't make more than one attack, or take a bonus action on that turn." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is fire, radiant, or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zombie makes two weapon attacks." + ] + }, + { + "name": "Greataxe", + "entries": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ] + }, + { + "name": "Hurl Rock", + "entries": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ] + }, + { + "name": "Freezing Stare", + "entries": [ + "The zombie targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 17} Constitution saving throw or take 35 ({@damage 10d6}) cold damage and be {@condition paralyzed} until the end of its next turn." + ] + } + ], + "attachedItems": [ + "greataxe|phb" + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "GI" + ], + "damageTags": [ + "B", + "C", + "S" + ], + "miscTags": [ + "MLW", + "MW", + "RCH", + "RW" + ], + "conditionInflict": [ + "paralyzed" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Frost Worm", + "source": "EGW", + "page": 289, + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 264, + "formula": "16d20 + 96" + }, + "speed": { + "walk": 40, + "burrow": 30 + }, + "str": 28, + "dex": 8, + "con": 22, + "int": 1, + "wis": 5, + "cha": 5, + "save": { + "con": "+12", + "wis": "+3" + }, + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "passive": 7, + "immune": [ + "cold" + ], + "vulnerable": [ + "fire" + ], + "cr": "17", + "trait": [ + { + "name": "Freezing Body", + "entries": [ + "A creature that touches the worm or hits it with a melee attack while within 5 feet of it takes 10 ({@damage 3d6}) cold damage." + ] + }, + { + "name": "Death Burst", + "entries": [ + "When the worm dies, it explodes in a burst of frigid energy. Each creature within 60 feet of it must make a {@dc 20} Dexterity saving throw, taking 28 ({@damage 8d6}) cold damage on a failed save, or half as much damage on a successful one. Creatures inside the worm when it dies automatically fail this saving throw." + ] + }, + { + "name": "Tunneler", + "entries": [ + "The worm can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The worm makes two bite attacks, or uses its Trill and makes a bite attack." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) piercing damage plus 10 ({@damage 3d6}) cold damage. If the target is a Large or smaller creature, it must succeed on a {@dc 20} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the worm, and takes 10 ({@damage 3d6}) acid damage and 10 ({@damage 3d6}) cold damage at the start of each of the worm's turns.", + "If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the worm." + ] + }, + { + "name": "Trill", + "entries": [ + "The frost worm emits a haunting cry. Each creature within 60 feet of the worm that can hear it must succeed on a {@dc 20} Wisdom saving throw or be {@condition stunned} for 1 minute. A creature can repeat the saving throw each time it takes damage and at the end of each of its turns, ending the effect on itself on a success. Once a creature successfully saves against this effect, or if this effect ends for it, that creature is immune to the Trill of all frost worms for the next 24 hours. Frost worms are immune to this effect." + ] + } + ], + "traitTags": [ + "Death Burst", + "Tunneler" + ], + "senseTags": [ + "B", + "T" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "C", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "restrained", + "stunned" + ], + "savingThrowForced": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gearkeeper Construct", + "source": "EGW", + "page": 290, + "size": [ + "L" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 161, + "formula": "17d10 + 68" + }, + "speed": { + "walk": 60 + }, + "str": 20, + "dex": 16, + "con": 18, + "int": 3, + "wis": 11, + "cha": 1, + "senses": [ + "blindsight 120 ft." + ], + "passive": 10, + "resist": [ + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "immune": [ + "fire", + "poison", + "psychic" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "cr": "10", + "trait": [ + { + "name": "Immutable Form", + "entries": [ + "The gearkeeper is immune to any spell or effect that would alter its form." + ] + }, + { + "name": "Rapid Shifting", + "entries": [ + "Opportunity attacks made against the gearkeeper have disadvantage." + ] + }, + { + "name": "Whirling Blades", + "entries": [ + "Any creature that starts its turn within 5 feet of the gearkeeper takes 4 ({@damage 1d8}) slashing damage." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gearkeeper makes two Arm Blade attacks, or one Arm Blade attack and one Spear Launcher attack." + ] + }, + { + "name": "Arm Blade", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) slashing damage." + ] + }, + { + "name": "Spear Launcher", + "entries": [ + "{@atk rw} {@hit 9} to hit, range 90 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and the target is knocked {@condition prone}." + ] + }, + { + "name": "Shrapnel Blast {@recharge}", + "entries": [ + "The gearkeeper jettisons a spray of jagged metal in a 30-foot cone. Each creature in the area must make a {@dc 15} Dexterity saving throw, taking 21 ({@damage 6d6}) piercing damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Immutable Form" + ], + "senseTags": [ + "B" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS" + ], + "damageTags": [ + "P", + "S" + ], + "miscTags": [ + "AOE", + "MLW", + "MW", + "RW", + "THW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Gloomstalker", + "source": "EGW", + "page": 291, + "otherSources": [ + { + "source": "CRCotN", + "page": 291 + } + ], + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24" + }, + "speed": { + "walk": 40, + "fly": 80 + }, + "str": 22, + "dex": 16, + "con": 14, + "int": 5, + "wis": 17, + "cha": 14, + "save": { + "str": "+9", + "dex": "+6" + }, + "skill": { + "athletics": "+9", + "intimidation": "+5", + "perception": "+6", + "stealth": "+6" + }, + "senses": [ + "darkvision 240 ft" + ], + "passive": 16, + "vulnerable": [ + "radiant" + ], + "languages": [ + "understands Common but can't speak" + ], + "cr": "6", + "trait": [ + { + "name": "Shadowstep", + "entries": [ + "As a bonus action, the gloomstalker can teleport up to 40 feet to an unoccupied space it can see." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the gloomstalker has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The gloomstalker makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d8 + 6}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ] + }, + { + "name": "Snatch", + "entries": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one Medium or smaller creature. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) necrotic damage, and the target is {@condition grappled} (escape {@dc 17}). While {@condition grappled} in this way, the target is {@condition restrained}." + ] + }, + { + "name": "Shriek {@recharge}", + "entries": [ + "The gloomstalker emits a terrible shriek. Each enemy within 60 feet of the gloomstalker that can hear it must succeed on a {@dc 13} Constitution saving throw or be {@condition paralyzed} until the end of the enemy's next turn." + ] + } + ], + "traitTags": [ + "Sunlight Sensitivity" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "CS" + ], + "damageTags": [ + "N", + "P", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "grappled", + "paralyzed", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Guardian Wolf", + "source": "EGW", + "page": 272, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21" + }, + "speed": { + "walk": 60 + }, + "str": 22, + "dex": 14, + "con": 16, + "int": 5, + "wis": 12, + "cha": 8, + "skill": { + "perception": "+5", + "stealth": "+4" + }, + "passive": 15, + "languages": [ + "Common", + "Elvish" + ], + "cr": "4", + "trait": [ + { + "name": "Keen Hearing and Smell", + "entries": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The wolf has advantage on attack rolls against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The wolf makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage." + ] + } + ], + "traitTags": [ + "Keen Senses", + "Pack Tactics" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "prone" + ], + "savingThrowForced": [ + "strength" + ], + "hasToken": true + }, + { + "name": "Horizonback Tortoise", + "source": "EGW", + "page": 292, + "otherSources": [ + { + "source": "CRCotN", + "page": 292 + } + ], + "size": [ + "G" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 17, + "from": [ + "natural armor" + ] + }, + { + "ac": 22, + "condition": "while in its shell" + } + ], + "hp": { + "average": 227, + "formula": "13d20 + 91" + }, + "speed": { + "walk": 20 + }, + "str": 28, + "dex": 3, + "con": 25, + "int": 4, + "wis": 10, + "cha": 5, + "save": { + "str": "+12", + "con": "+10" + }, + "senses": [ + "darkvision 60 ft" + ], + "passive": 10, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands Goblin but can't speak" + ], + "cr": "8", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The tortoise can breathe air and water." + ] + }, + { + "name": "Massive Frame", + "entries": [ + "The tortoise can carry up to 20,000 pounds of weight atop its shell, but moves at half speed if the weight exceeds 10,000 pounds. Medium or smaller creatures can move underneath the tortoise while it's not {@condition prone}.", + "Any creature under the tortoise when it falls {@condition prone} is {@condition grappled} (escape {@dc 18}). Until the grapple ends, the creature is {@condition prone} and {@condition restrained}." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) bludgeoning damage." + ] + }, + { + "name": "Shell Defense {@recharge 4}", + "entries": [ + "The tortoise withdraws into its shell, falls {@condition prone}, and gains a +5 bonus to AC. While the tortoise is in its shell, its speed is 0 and can't increase. The tortoise can emerge from its shell as an action, whereupon it is no longer {@condition prone}." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "CS", + "GO" + ], + "damageTags": [ + "B" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "prone", + "restrained" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Hulil Lutan", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 240, + "_copy": { + "name": "Cult Fanatic", + "source": "MM", + "_templates": [ + { + "name": "Mountain Dwarf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the fanatic", + "with": "Hulil", + "flags": "i" + } + } + }, + "alignment": [ + "N", + "E" + ], + "speed": { + "walk": 15 + }, + "hasToken": true + }, + { + "name": "Husk Zombie", + "source": "EGW", + "page": 293, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "N", + "E" + ], + "ac": [ + 10 + ], + "hp": { + "average": 37, + "formula": "5d8 + 15" + }, + "speed": { + "walk": 35 + }, + "str": 16, + "dex": 10, + "con": 16, + "int": 3, + "wis": 6, + "cha": 5, + "save": { + "con": "+5", + "wis": "+0" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 8, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "cr": "1", + "trait": [ + { + "name": "Curse of the Husk", + "entries": [ + "A humanoid slain by a melee attack from the zombie revives as a husk zombie on its next turn." + ] + }, + { + "name": "Undead Fortitude", + "entries": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The zombie makes two claw attacks. For each of these attacks that reduces a creature to 0 hit points, the zombie can make an additional claw attack." + ] + }, + { + "name": "Claw", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Husk Zombie Bursters", + "entries": [ + "Some husk zombies become bloated with disease and bile, their frenzied state pushing them to rush other living creatures, explode, and spread their horrid infection. A husk zombie burster has the following additional action option:", + { + "type": "entries", + "name": "Burst", + "entries": [ + "The zombie explodes and is destroyed. Each creature within 5 feet of it must make a {@dc 12} Constitution saving throw, taking 14 ({@damage 4d6}) poison damage on a failed save, or half as much damage on a successful one. A humanoid creature killed by this damage rises as a {@creature husk zombie|EGW} after 1 minute." + ] + } + ], + "_version": { + "name": "Husk Zombie Burster", + "addHeadersAs": "action" + } + } + ], + "traitTags": [ + "Undead Fortitude" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "CS", + "LF" + ], + "damageTags": [ + "I", + "S" + ], + "miscTags": [ + "MW" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ishel", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 231, + "_copy": { + "name": "Drow", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the drow", + "with": "Ishel", + "flags": "i" + } + } + }, + "hp": { + "average": 24, + "formula": "3d8" + }, + "cr": "1/2", + "hasToken": true, + "hasFluff": true + }, + { + "name": "Karkethzerethzerus, the Sable Despoiler", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 158, + "_copy": { + "name": "Ancient Silver Dragon", + "source": "MM", + "_templates": [ + { + "name": "Legendary Shadow Dragon", + "source": "MM" + } + ] + }, + "traitTags": [ + "Legendary Resistances", + "Sunlight Sensitivity" + ], + "damageTags": [ + "B", + "N", + "P", + "S" + ], + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Kobold Underling", + "source": "EGW", + "page": 221, + "size": [ + "S" + ], + "type": { + "type": "humanoid", + "tags": [ + "kobold" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + 13 + ], + "hp": { + "average": 7, + "formula": "3d6 - 3" + }, + "speed": { + "walk": 30 + }, + "str": 7, + "dex": 16, + "con": 9, + "int": 8, + "wis": 9, + "cha": 8, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Draconic" + ], + "cr": "1/8", + "trait": [ + { + "name": "Messy End", + "entries": [ + "The kobold explodes 3 rounds after it dies, or immediately if it was killed by a critical hit. The explosion destroys the kobold's body, leaving its equipment behind. Each creature within 5 feet of the exploding kobold must make a {@dc 10} Dexterity saving throw, taking 4 ({@damage 1d8}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ] + }, + { + "name": "Pack Tactics", + "entries": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ] + }, + { + "name": "Sunlight Sensitivity", + "entries": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Hand Crossbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "hand crossbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Pack Tactics", + "Sunlight Sensitivity" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "DR" + ], + "damageTags": [ + "B", + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Merrow Shallowpriest", + "source": "EGW", + "page": 294, + "size": [ + "L" + ], + "type": "monstrosity", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 15, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20" + }, + "speed": { + "walk": 10, + "swim": 40 + }, + "str": 18, + "dex": 14, + "con": 15, + "int": 11, + "wis": 16, + "cha": 9, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Abyssal", + "Aquan" + ], + "cr": "4", + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The merrow is a 6th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). The merrow has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell druidcraft}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell fog cloud}", + "{@spell thunderwave}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell mirror image}", + "{@spell misty step}" + ] + }, + "3": { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell lightning bolt} (see \"Actions\" below)", + "{@spell sleet storm}" + ] + } + }, + "ability": "wis" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The merrow can breathe air and water." + ] + } + ], + "action": [ + { + "name": "Harpoon", + "entries": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a Medium or smaller creature, the merrow can pull it 10 feet closer." + ] + }, + { + "name": "Lightning Bolt (3rd-Level Spell; Requires a Spell Slot)", + "entries": [ + "The merrow unleashes a stroke of lightning in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 13} Dexterity saving throw, taking 28 ({@damage 8d6}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "AB", + "AQ" + ], + "damageTags": [ + "L", + "P" + ], + "damageTagsSpell": [ + "L", + "T" + ], + "spellcastingTags": [ + "CD" + ], + "miscTags": [ + "MW", + "RW" + ], + "savingThrowForced": [ + "dexterity" + ], + "savingThrowForcedSpell": [ + "constitution", + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Moorbounder", + "source": "EGW", + "page": 295, + "otherSources": [ + { + "source": "CRCotN", + "page": 295 + } + ], + "size": [ + "L" + ], + "type": "beast", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 13, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8" + }, + "speed": { + "walk": 70 + }, + "str": 18, + "dex": 14, + "con": 14, + "int": 2, + "wis": 13, + "cha": 5, + "senses": [ + "darkvision 60 ft." + ], + "passive": 11, + "cr": "1", + "trait": [ + { + "name": "Standing Leap", + "entries": [ + "The moorbounder's long jump is up to 40 feet and its high jump is up to 20 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) slashing damage." + ] + } + ], + "senseTags": [ + "D" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MW" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Mossback Steward", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 256, + "_copy": { + "name": "Horizonback Tortoise", + "source": "EGW", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the tortoise", + "with": "Mossback Steward", + "flags": "i" + } + } + }, + "int": 12, + "wis": 17, + "skill": { + "arcana": "+5", + "insight": "+7", + "nature": "+5", + "perception": "+7", + "persuasion": "+5" + }, + "languages": [ + "telepathy 120 ft", + "understands Goblin, Common, and Primordial but can't speak" + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Mossback Steward's innate spellcasting ability is Wisdom (spell save {@dc 15}). It can innately cast the following spells, requiring no material components." + ], + "will": [ + "{@spell friends}" + ], + "rest": { + "1": [ + "{@spell suggestion}", + "{@spell divination}" + ] + } + } + ], + "languageTags": [ + "C", + "GO", + "P", + "TP" + ], + "spellcastingTags": [ + "I" + ], + "savingThrowForcedSpell": [ + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Nergaliid", + "source": "EGW", + "page": 296, + "size": [ + "L" + ], + "type": { + "type": "fiend", + "tags": [ + "devil" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 12, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 42, + "formula": "4d10 + 20" + }, + "speed": { + "walk": 30 + }, + "str": 18, + "dex": 12, + "con": 20, + "int": 12, + "wis": 10, + "cha": 12, + "skill": { + "deception": "+5", + "perception": "+2", + "stealth": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 12, + "resist": [ + "cold", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "immune": [ + "fire", + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "languages": [ + "Common", + "Infernal" + ], + "cr": "3", + "trait": [ + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the nergaliid can take the Hide action as a bonus action." + ] + }, + { + "name": "Standing Leap", + "entries": [ + "The nergaliid's long jump is up to 30 feet and its high jump is up to 20 feet, with or without a running start." + ] + } + ], + "action": [ + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) piercing damage, and the target must succeed on a {@dc 15} Constitution saving throw or become {@condition poisoned} for 1 minute. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + }, + { + "name": "Tongue Lash", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage." + ] + }, + { + "name": "Siphon Life {@recharge 4}", + "entries": [ + "The nergaliid magically draws the life from a humanoid it can see within 40 feet of it. The target must make a {@dc 15} Wisdom saving throw. An {@condition incapacitated} target fails the save automatically. On a failed save, the creature takes 10 ({@damage 3d6}) psychic damage, and the nergaliid gains temporary hit points equal to the damage taken. On a successful save, the target takes half as much damage, and the nergaliid doesn't gain temporary hit points. If this damage kills the target, its body rises at the end of the nergaliid's current turn as a {@creature husk zombie|EGW} (see earlier in this chapter)." + ] + } + ], + "senseTags": [ + "SD" + ], + "languageTags": [ + "C", + "I" + ], + "damageTags": [ + "B", + "P", + "Y" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "poisoned" + ], + "savingThrowForced": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Ogre Lord Buhfal II", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 251, + "_copy": { + "name": "Ogre", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the ogre", + "with": "Lord Buhfal", + "flags": "i" + } + } + }, + "alignment": [ + "L", + "E" + ], + "int": 10, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Old Croaker", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 240, + "_copy": { + "name": "Giant Toad", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the toad", + "with": "Old Croaker", + "flags": "i" + } + } + }, + "immune": [ + "cold" + ], + "hasToken": true + }, + { + "name": "Oracs the Enduring", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 154, + "_copy": { + "name": "Ancient Black Dragon", + "source": "MM", + "_templates": [ + { + "name": "Dracolich", + "source": "MM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the dracolich", + "with": "Oracs", + "flags": "i" + } + } + }, + "alignment": [ + "C", + "E" + ], + "traitTags": [ + "Legendary Resistances", + "Magic Resistance" + ], + "damageTagsLegendary": [], + "hasToken": true + }, + { + "name": "Parson Pellinost", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 261, + "_copy": { + "name": "Priest", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the priest", + "with": "Pellinost", + "flags": "i" + } + } + }, + "spellcasting": [ + { + "name": "Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "Pellinost is a 5th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Pellinost has the following cleric spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell guiding bolt}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell revivify}" + ] + } + }, + "ability": "wis" + } + ], + "damageTagsSpell": [ + "O", + "R" + ], + "savingThrowForcedSpell": [ + "dexterity", + "wisdom" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Raegrin Mau", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 240, + "_copy": { + "name": "Cultist", + "source": "MM", + "_templates": [ + { + "name": "Wood Elf", + "source": "PHB" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the cultist", + "with": "Raegrin", + "flags": "i" + } + } + }, + "traitTags": [ + "Fey Ancestry" + ], + "hasToken": true + }, + { + "name": "Sahuagin Warlock of Uk'otoa", + "source": "EGW", + "page": 297, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "sahuagin" + ] + }, + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 22, + "formula": "5d8" + }, + "speed": { + "walk": 30, + "swim": 40 + }, + "str": 14, + "dex": 10, + "con": 11, + "int": 8, + "wis": 8, + "cha": 16, + "skill": { + "arcana": "+1", + "persuasion": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 9, + "languages": [ + "Common", + "Sahuagin" + ], + "cr": "3", + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The warlock's innate spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell eldritch blast} (see \"Actions\" below)", + "{@spell minor illusion}" + ], + "daily": { + "1e": [ + "{@spell armor of Agathys}", + "{@spell arms of Hadar}", + "{@spell counterspell}", + "{@spell crown of madness}", + "{@spell invisibility}", + "{@spell hunger of Hadar}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Blood Frenzy", + "entries": [ + "The warlock has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ] + }, + { + "name": "Limited Amphibiousness", + "entries": [ + "The warlock can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + }, + { + "name": "Shark Telepathy", + "entries": [ + "The warlock can magically command any shark within 120 feet of it, using a limited telepathy." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The warlock makes two attacks: one with its bite and one with its Sword of Fathoms." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ] + }, + { + "name": "Sword of Fathoms", + "entries": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage, and if the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or begin choking. The choking creature is {@condition incapacitated} until the end of its next turn, when the effect ends on it." + ] + }, + { + "name": "Eldritch Blast (Cantrip)", + "entries": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one creature. {@h}5 ({@damage 1d10}) force damage." + ] + } + ], + "variant": [ + { + "type": "variant", + "name": "Rod of Retribution", + "entries": [ + "Sahuagin warlocks of Uk'otoa who have exceptional potential in the eyes of the leviathan lord are granted a {@item rod of retribution|egw} in addition to Uk'otoa's typical blessing, the Sword of Fathoms. A sahuagin warlock of Uk'otoa holding this rod gains the following reaction:", + { + "type": "entries", + "name": "Retribution (3/Day)", + "entries": [ + "When a creature the warlock can see within 60 feet of it damages the warlock, the creature must make a {@dc 13} Dexterity saving throw, taking 11 ({@damage 2d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + ] + } + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "C", + "OTH" + ], + "damageTags": [ + "L", + "O", + "P", + "S" + ], + "damageTagsSpell": [ + "A", + "C", + "N", + "O" + ], + "spellcastingTags": [ + "CL", + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "incapacitated" + ], + "conditionInflictSpell": [ + "blinded", + "charmed", + "invisible" + ], + "savingThrowForced": [ + "constitution", + "dexterity" + ], + "savingThrowForcedSpell": [ + "dexterity", + "strength", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true, + "_versions": [ + { + "name": "Sahuagin Warlock of Uk'otoa (Rod of Retribution)", + "source": "EGW", + "_mod": { + "trait": { + "mode": "appendArr", + "items": { + "name": "Special Equipment", + "entries": [ + "The warlock carries a {@item rod of retribution|egw}." + ] + } + }, + "reaction": { + "mode": "appendArr", + "items": { + "type": "entries", + "name": "Retribution (3/Day)", + "entries": [ + "When a creature the warlock can see within 60 feet of it damages the warlock, the creature must make a {@dc 13} Dexterity saving throw, taking 11 ({@damage 2d10}) lightning damage on a failed save, or half as much damage on a successful one." + ] + } + } + }, + "variant": null + } + ] + }, + { + "name": "Sea Fury", + "group": [ + "Hags" + ], + "source": "EGW", + "page": 299, + "size": [ + "M" + ], + "type": "fey", + "alignment": [ + "C", + "E" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42" + }, + "speed": { + "walk": 30, + "swim": 50 + }, + "str": 19, + "dex": 15, + "con": 16, + "int": 12, + "wis": 12, + "cha": 18, + "skill": { + "deception": "+8", + "insight": "+5", + "perception": "+5", + "stealth": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 15, + "immune": [ + "cold", + "fire", + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "cond": true + } + ], + "conditionImmune": [ + "paralyzed", + "poisoned" + ], + "languages": [ + "Aquan", + "Common", + "Giant" + ], + "cr": { + "cr": "12", + "lair": "14" + }, + "spellcasting": [ + { + "name": "Innate Spellcasting", + "type": "spellcasting", + "headerEntries": [ + "The sea fury's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "will": [ + "{@spell witch bolt}" + ], + "daily": { + "1e": [ + "{@spell bestow curse}", + "{@spell fear}", + "{@spell thunderwave}" + ] + }, + "ability": "cha" + } + ], + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The sea fury can breathe air and water." + ] + }, + { + "name": "Legendary Resistance (3/Day)", + "entries": [ + "If the sea fury fails a saving throw, it can choose to succeed instead." + ] + }, + { + "name": "Magic Resistance", + "entries": [ + "The sea fury has advantage on saving throws against spells and other magical effects." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The sea fury makes two attacks with its claws." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ] + }, + { + "name": "Death Glare", + "entries": [ + "The sea fury targets one {@condition frightened} creature it can see within 30 feet of it. The target must succeed on a {@dc 16} Wisdom saving throw or drop to 0 hit points." + ] + } + ], + "legendary": [ + { + "name": "As Water", + "entries": [ + "The sea fury transforms into a wave of foaming seawater, along with whatever it is wearing or carrying, and moves up to its speed without provoking opportunity attacks. While in this form, it can't be {@condition grappled} or {@condition restrained}. It reverts to its true form at the end of this movement." + ] + }, + { + "name": "Fearsome Apparition (Costs 2 Actions)", + "entries": [ + "The sea fury conjures an apparition of one of its dead sisters, which appears in an unoccupied space the sea fury can see within 30 feet of it. Enemies of the sea fury that can see the apparition must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} of it until it vanishes at the end of the sea fury's next turn." + ] + }, + { + "name": "Conjure Snakes (Costs 3 Actions)", + "entries": [ + "The sea fury disgorges a {@creature swarm of poisonous snakes}, which occupies the same space as the sea fury, acts on its own initiative count, and attacks as directed by the sea fury. The sea fury can control up to three of these swarms at a time." + ] + } + ], + "legendaryGroup": { + "name": "Sea Fury", + "source": "EGW" + }, + "traitTags": [ + "Amphibious", + "Legendary Resistances", + "Magic Resistance" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack" + ], + "languageTags": [ + "AQ", + "C", + "GI" + ], + "damageTags": [ + "S" + ], + "damageTagsSpell": [ + "L", + "N", + "T" + ], + "spellcastingTags": [ + "I" + ], + "miscTags": [ + "MW" + ], + "conditionInflictLegendary": [ + "prone" + ], + "conditionInflictSpell": [ + "frightened" + ], + "savingThrowForced": [ + "wisdom" + ], + "savingThrowForcedLegendary": [ + "strength" + ], + "savingThrowForcedSpell": [ + "constitution", + "wisdom" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Shadowghast", + "source": "EGW", + "page": 299, + "size": [ + "M" + ], + "type": "undead", + "alignment": [ + "C", + "E" + ], + "ac": [ + 15 + ], + "hp": { + "average": 49, + "formula": "9d8 + 9" + }, + "speed": { + "walk": 35 + }, + "str": 14, + "dex": 20, + "con": 12, + "int": 12, + "wis": 11, + "cha": 8, + "skill": { + "perception": "+3", + "stealth": "+8" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "resist": [ + "necrotic" + ], + "immune": [ + "poison" + ], + "conditionImmune": [ + "charmed", + "exhaustion", + "poisoned" + ], + "cr": "5", + "trait": [ + { + "name": "Stench", + "entries": [ + "Any creature that starts its turn within 5 feet of the shadowghast must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of its next turn. On a successful saving throw, the creature is immune to this Stench for 24 hours." + ] + }, + { + "name": "Shadow Stealth", + "entries": [ + "While in dim light or darkness, the shadowghast can take the Hide action as a bonus action." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The shadowghast makes two attacks: one with its bite and one with its claws." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d8 + 2}) slashing damage plus 5 ({@damage 1d10}) necrotic damage." + ] + }, + { + "name": "Claws", + "entries": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a creature other than an undead, it must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ] + } + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "N", + "S" + ], + "miscTags": [ + "MW" + ], + "conditionInflict": [ + "paralyzed", + "poisoned" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Sharkbody Abomination", + "source": "EGW", + "page": 215, + "_copy": { + "name": "Hunter Shark", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "shark", + "with": "abomination" + }, + "trait": { + "mode": "appendArr", + "items": { + "name": "Limited Amphibiousness", + "entries": [ + "The abomination can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ] + } + } + } + }, + "type": "aberration", + "speed": { + "walk": 20, + "swim": 40 + }, + "hasToken": true, + "hasFluff": true + }, + { + "name": "Sken Zabriss", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 221, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "goliath" + ] + }, + "alignment": [ + "L", + "E" + ], + "ac": [ + { + "ac": 16, + "from": [ + "{@item breastplate|PHB}", + "{@item shield|PHB}" + ] + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14" + }, + "speed": { + "walk": 30 + }, + "str": 16, + "dex": 11, + "con": 15, + "int": 13, + "wis": 10, + "cha": 12, + "passive": 10, + "languages": [ + "Common", + "Draconic", + "Giant" + ], + "cr": "1", + "trait": [ + { + "name": "Powerful Build", + "entries": [ + "Sken counts as one size larger when determining her carrying capacity and the weight she can push, drag, or lift." + ] + }, + { + "name": "Special Equipment", + "entries": [ + "Sken wears a {@item ring of obscuring|EGW}. With it, she can cast the {@spell fog cloud} spell centered on herself three times per day. The cloud lasts for 1 minute (no {@status concentration} required)." + ] + } + ], + "action": [ + { + "name": "Longsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands." + ] + } + ], + "reaction": [ + { + "name": "Stone's Endurance (Recharges after a Short or Long Rest)", + "entries": [ + "When Sken takes damage, she can use her reaction to reduce the damage taken by 8 ({@dice 1d12 + 2})." + ] + } + ], + "attachedItems": [ + "longsword|phb" + ], + "languageTags": [ + "C", + "DR", + "GI" + ], + "damageTags": [ + "S" + ], + "miscTags": [ + "MLW", + "MW" + ], + "hasToken": true + }, + { + "name": "Skr'a S'orsk", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 254, + "_copy": { + "name": "Lizardfolk Shaman", + "source": "MM", + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the lizardfolk", + "with": "Skr'a S'orsk" + } + } + }, + "spellcasting": [ + { + "name": "Spellcasting (Lizardfolk Form Only)", + "type": "spellcasting", + "headerEntries": [ + "Skr'a S'orsk is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). Skr'a S'orsk has the following druid spells prepared:" + ], + "spells": { + "0": { + "spells": [ + "{@spell produce flame}", + "{@spell resistance}", + "{@spell thorn whip}" + ] + }, + "1": { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell fog cloud}" + ] + }, + "2": { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell spike growth}" + ] + }, + "3": { + "slots": 2, + "spells": [ + "{@spell animate dead}", + "{@spell conjure animals} (reptiles only)" + ] + } + }, + "ability": "wis" + } + ], + "savingThrowForcedSpell": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluffImages": true + }, + { + "name": "Swarm of Undead Snakes", + "source": "EGW", + "page": 247, + "_copy": { + "name": "Swarm of Poisonous Snakes", + "source": "MM", + "_mod": { + "conditionImmune": { + "mode": "appendArr", + "items": "poisoned" + } + } + }, + "type": { + "type": "undead", + "swarmSize": "T" + }, + "immune": [ + "poison" + ], + "hasToken": true + }, + { + "name": "Swavain Basilisk", + "source": "EGW", + "page": 300, + "size": [ + "H" + ], + "type": "monstrosity", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 16, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 85, + "formula": "10d12 + 20" + }, + "speed": { + "walk": 15, + "swim": 40 + }, + "str": 15, + "dex": 16, + "con": 15, + "int": 2, + "wis": 8, + "cha": 7, + "senses": [ + "darkvision 60 ft." + ], + "passive": 9, + "immune": [ + "poison" + ], + "conditionImmune": [ + "poisoned" + ], + "cr": "7", + "trait": [ + { + "name": "Amphibious", + "entries": [ + "The basilisk can breathe air and water." + ] + }, + { + "name": "Petrifying Secretions", + "entries": [ + "A creature must make a {@dc 13} Constitution saving throw if it hits the basilisk with a weapon attack while within 5 feet of it or if it starts its turn {@condition grappled} by the basilisk. Unless the save succeeds, the creature magically begins to turn to stone and is {@condition restrained}, and it must repeat the saving throw at the end of its next turn. On a successful save, the effect ends. On a failure, the creature is {@condition petrified}." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The basilisk makes two attacks: one with its bite and one with its tail." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ] + }, + { + "name": "Tail", + "entries": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}14 ({@damage 2d10 + 3}) bludgeoning damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 12})." + ] + } + ], + "traitTags": [ + "Amphibious" + ], + "senseTags": [ + "D" + ], + "actionTags": [ + "Multiattack" + ], + "damageTags": [ + "B", + "I", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "grappled", + "petrified", + "restrained" + ], + "savingThrowForced": [ + "constitution" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Three Earrings", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 211, + "_copy": { + "name": "Bandit Captain", + "source": "MM", + "_templates": [ + { + "name": "Tabaxi", + "source": "VGM" + } + ], + "_mod": { + "*": { + "mode": "replaceTxt", + "replace": "the captain", + "with": "Three Earrings" + } + } + }, + "alignment": [ + "N", + "E" + ], + "hasToken": true, + "hasFluff": true + }, + { + "name": "Udaak", + "source": "EGW", + "page": 301, + "size": [ + "G" + ], + "type": "fiend", + "alignment": [ + "N", + "E" + ], + "ac": [ + { + "ac": 18, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 165, + "formula": "10d20 + 60" + }, + "speed": { + "walk": 50 + }, + "str": 26, + "dex": 14, + "con": 22, + "int": 3, + "wis": 11, + "cha": 10, + "save": { + "str": "+13", + "con": "+11" + }, + "senses": [ + "darkvision 120 ft." + ], + "passive": 10, + "immune": [ + "poison", + { + "immune": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "vulnerable": [ + "thunder" + ], + "conditionImmune": [ + "frightened", + "grappled", + "poisoned", + "restrained" + ], + "cr": "16", + "trait": [ + { + "name": "Charge", + "entries": [ + "If the udaak moves at least 20 feet straight toward a target and then hits it with a slam attack on the same turn, the target takes an extra 27 ({@damage 6d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pushed up to 20 feet away from the udaak and knocked {@condition prone}." + ] + }, + { + "name": "Siege Monster", + "entries": [ + "The udaak deals double damage to objects and structures." + ] + } + ], + "action": [ + { + "name": "Multiattack", + "entries": [ + "The udaak makes three attacks: one with its bite and two with its slam." + ] + }, + { + "name": "Bite", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one creature. {@h}21 ({@damage 2d12 + 8}) piercing damage, and the target is {@condition grappled} (escape {@dc 21}). Until this grapple ends, the target is {@condition restrained}, and the udaak can't bite another target." + ] + }, + { + "name": "Slam", + "entries": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage." + ] + }, + { + "name": "Swallow", + "entries": [ + "The udaak makes one bite attack against a Large or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the udaak, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the udaak's turns.", + "If the udaak takes 30 damage or more on a single turn from a creature inside it, the udaak must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the udaak. If the udaak dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ] + } + ], + "traitTags": [ + "Charge", + "Siege Monster" + ], + "senseTags": [ + "SD" + ], + "actionTags": [ + "Multiattack", + "Swallow" + ], + "damageTags": [ + "A", + "B", + "P" + ], + "miscTags": [ + "MW", + "RCH" + ], + "conditionInflict": [ + "blinded", + "grappled", + "prone", + "restrained" + ], + "savingThrowForced": [ + "constitution", + "strength" + ], + "hasToken": true, + "hasFluff": true, + "hasFluffImages": true + }, + { + "name": "Vox Seeker", + "source": "EGW", + "page": 270, + "size": [ + "T" + ], + "type": "construct", + "alignment": [ + "U" + ], + "ac": [ + { + "ac": 14, + "from": [ + "natural armor" + ] + } + ], + "hp": { + "average": 7, + "formula": "2d4 + 2" + }, + "speed": { + "walk": 20, + "climb": 20 + }, + "str": 2, + "dex": 10, + "con": 12, + "int": 1, + "wis": 10, + "cha": 1, + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "passive": 10, + "immune": [ + "poison", + "psychic" + ], + "conditionImmune": [ + "blinded", + "charmed", + "deafened", + "exhaustion", + "frightened", + "paralyzed", + "petrified", + "poisoned" + ], + "cr": "1/8", + "trait": [ + { + "name": "Voice Lock", + "entries": [ + "The vox seeker must move toward and attack the source of the nearest voice within 60 feet of it, to the exclusion of all other targets, for as long as it remains operational." + ] + }, + { + "name": "Spider Climb", + "entries": [ + "The vox seeker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ] + } + ], + "action": [ + { + "name": "Pincer", + "entries": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage plus 3 lightning damage." + ] + } + ], + "traitTags": [ + "Spider Climb" + ], + "senseTags": [ + "B" + ], + "damageTags": [ + "L", + "P" + ], + "miscTags": [ + "MW" + ], + "hasToken": true + }, + { + "name": "Yinra Emberwind", + "isNpc": true, + "isNamedCreature": true, + "source": "EGW", + "page": 223, + "size": [ + "M" + ], + "type": { + "type": "humanoid", + "tags": [ + "elf" + ] + }, + "alignment": [ + "N", + "G" + ], + "ac": [ + { + "ac": 15, + "from": [ + "{@item studded leather armor|PHB|studded leather}" + ] + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3" + }, + "speed": { + "walk": 30 + }, + "str": 11, + "dex": 16, + "con": 12, + "int": 14, + "wis": 13, + "cha": 11, + "skill": { + "investigation": "+4", + "perception": "+3", + "stealth": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "passive": 13, + "languages": [ + "Common", + "Elvish" + ], + "cr": "1/2", + "trait": [ + { + "name": "Fey Ancestry", + "entries": [ + "Yinra has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ] + }, + { + "name": "Keen Hearing and Sight", + "entries": [ + "Yinra has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ] + } + ], + "action": [ + { + "name": "Shortsword", + "entries": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ] + }, + { + "name": "Longbow", + "entries": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ] + } + ], + "attachedItems": [ + "longbow|phb", + "shortsword|phb" + ], + "traitTags": [ + "Fey Ancestry", + "Keen Senses" + ], + "senseTags": [ + "D" + ], + "languageTags": [ + "C", + "E" + ], + "damageTags": [ + "P" + ], + "miscTags": [ + "MLW", + "MW", + "RNG", + "RW" + ], + "hasToken": true + } +] \ No newline at end of file diff --git a/cmd/util.py b/cmd/util.py new file mode 100644 index 0000000..67b4b21 --- /dev/null +++ b/cmd/util.py @@ -0,0 +1,8 @@ +from collections.abc import Sequence +from typing import Any + +def listify(item: Any) -> list: + """Return item wrapped in a list. If item is already a list, return it unchanged.""" + if isinstance(item, Sequence) and not isinstance(item, str): + return item + return [item] \ No newline at end of file diff --git a/dmtoolkit/api/data/monsters.json b/dmtoolkit/api/data/monsters.json new file mode 100644 index 0000000..175a939 --- /dev/null +++ b/dmtoolkit/api/data/monsters.json @@ -0,0 +1,374170 @@ +[ + { + "name": "Ancient Deep Crow", + "source": "AI", + "page": 211, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "15d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 23, + "dexterity": 16, + "constitution": 23, + "intelligence": 10, + "wisdom": 15, + "charisma": 19, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+11", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Deep Crow" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The ancient deep crow has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the ancient deep crow can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ancient deep crow makes three attacks: one with its mandibles and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mandibles", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, and the ancient deep crow can't use its mandibles on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Caw", + "body": [ + "The ancient deep crow releases an ear-splitting caw. Each creature within 60 feet of the crow and able to hear it must make a {@dc 17} Constitution saving throw. On a failure, a creature takes 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The deep crow makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Caw (Costs 2 Actions)", + "body": [ + "The ancient deep crow uses Shadow Caw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The ancient deep crow beats its wings. Each creature within 10 feet of the deep crow must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The ancient deep crow can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Deep Crow-AI", + "__dataclass__": "Monster" + }, + { + "name": "Auspicia Dran", + "source": "AI", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 15, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Auspicia makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "Auspicia's innate spellcasting ability is Intelligence. She can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell augury}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Auspicia Dran-AI", + "__dataclass__": "Monster" + }, + { + "name": "Brahma Lutier", + "source": "AI", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 15, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Brahma has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Taunt (2/Day)", + "body": [ + "Brahma can use a bonus action to target one creature she can see within 30 feet of her. If the target can hear Brahma, it must succeed on a {@dc 13} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of Brahma's next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "War Lute", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Song of Domination (3/Day)", + "body": [ + "Brahma targets one creature that can see or hear her, which must succeed on a {@dc 13} Wisdom saving throw or be {@condition charmed} by her for 1 minute. The target can repeat the save at the end of each of its turns, ending the effect on itself on a success. It has disadvantage on these saves if being {@condition charmed} by Brahma is something the target openly or secretly desires. For 1 hour after the charm effect ends, the target has disadvantage on Intelligence, Wisdom, or Charisma checks made as part of a contest with Brahma." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Brahma is a 4th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She has the following bard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell heroism}", + "{@spell illusory script}", + "{@spell sleep}", + "{@spell unseen servant}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloud of daggers}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Brahma Lutier-AI", + "__dataclass__": "Monster" + }, + { + "name": "Chaos Quadrapod", + "source": "AI", + "page": 209, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 13, + "constitution": 15, + "intelligence": 6, + "wisdom": 10, + "charisma": 4, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The chaos quadrapod has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chaos quadrapod makes up to two tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. If the target is a creature, it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}. The chaos quadrapod can grapple no more than two targets at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chaos Cloud (Recharges after a Short or Long Rest)", + "body": [ + "The chaos quadrapod shoots forth a knot of roiling ethereal light that explodes at a point it can see within 60 feet of it. Each creature in a 20-foot-radius sphere centered on that point must succeed on a {@dc 14} Charisma saving throw or be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chaos Quadrapod-AI", + "__dataclass__": "Monster" + }, + { + "name": "Clockwork Dragon", + "source": "AI", + "page": 209, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 10, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the clockwork dragon remains motionless, it is indistinguishable from a metal statue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The clockwork dragon exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 11} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clockwork Dragon-AI", + "__dataclass__": "Monster" + }, + { + "name": "Deep Crow", + "source": "AI", + "page": 210, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 16, + "constitution": 18, + "intelligence": 8, + "wisdom": 15, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+6" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Deep Crow" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The deep crow has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the deep crow can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the deep crow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deep crow makes three attacks: one with its mandibles and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mandibles", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the deep crow can't use its mandibles on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deep Crow-AI", + "__dataclass__": "Monster" + }, + { + "name": "Donaar Blit'zen", + "source": "AI", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 8, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "history", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Orc" + ], + "traits": [ + { + "title": "Champion Challenge (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, Donaar causes each creature of his choice that he can see within 30 feet of him to make a {@dc 13} Wisdom saving throw. On a failure, a creature can't willingly move more than 30 feet away from Donaar. This effect ends on the creature if Donaar is {@condition incapacitated} or dies, or if the creature is moved more than 30 feet away from him." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Donaar makes two attacks with his greatsword or his whip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage. Whenever Donaar rolls a 1 or 2 on a damage die, he can reroll the die and must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whip", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Vomit", + "body": [ + "Donaar regurgitates acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 12} Dexterity saving throw, taking 7 ({@damage 2d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Donaar is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following paladin spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell compelled duel}", + "{@spell cure wounds}", + "{@spell wrathful smite}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell aid}", + "{@spell branding smite}", + "{@spell lesser restoration}", + "{@spell warding bond}", + "{@spell zone of truth}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dragonborn", + "actions_note": "", + "mythic": null, + "key": "Donaar Blit'zen-AI", + "__dataclass__": "Monster" + }, + { + "name": "Flabbergast", + "source": "AI", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 17, + "wisdom": 13, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3" + }, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Gnomish" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Flabbergast is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell distort value|AI}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gift of gab|AI}*", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fast friends|AI}*", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Flabbergast-AI", + "__dataclass__": "Monster" + }, + { + "name": "Jim Darkmagic", + "source": "AI", + "page": 197, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 18, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "animal handling", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+4" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Jim carries a {@item wand of wonder}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Benign Transportation (Recharges after Jim Casts a Conjuration Spell of 1st Level or Higher)", + "body": [ + "As a bonus action, Jim teleports up to 30 feet to a space he can see. The space must be unoccupied or occupied by a willing Small or Medium creature. If the latter, Jim and the willing creature both teleport, swapping places." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Minor Conjuration", + "body": [ + "Jim conjures an inanimate object, no larger than 3 feet on a side and no more than 10 pounds, in his hand or on the ground in an unoccupied space he can see within 10 feet of him. The object is visibly magical, radiating dim light out to 5 feet. It disappears if it takes any damage, after 1 hour, or when Jim uses this feature again." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Jim is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell Jim's magic missile|AI}*", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell Jim's glowing coin|AI}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell incite greed|AI}*", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell conjure minor elementals}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell mislead}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Jim Darkmagic-AI", + "__dataclass__": "Monster" + }, + { + "name": "K'thriss Drow'b", + "source": "AI", + "page": 202, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 14, + "constitution": 12, + "intelligence": 14, + "wisdom": 11, + "charisma": 18, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+0", + "dex": "+3", + "con": "+2", + "int": "+3", + "wis": "+3", + "cha": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Celestial", + "Common", + "Elvish", + "Undercommon; can read all writing" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "K'thriss wears a {@item robe of stars} (accounted for in his statistics). The robe allows him to cast the following spells: 6/day: {@spell magic missile} (7 missiles)" + ], + "__dataclass__": "Entry" + }, + { + "title": "Awakened Mind", + "body": [ + "K'thriss can telepathically speak to any creature he can see within 30 feet of him, provided the creature can understand at least one language." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "K'thriss has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep. Sunlight Sensitivity. While in sunlight, K'thriss has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "K'thriss makes two attacks with his sickle." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sickle", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "K'thriss's innate spellcasting ability is Charisma (spell save {@dc 14}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell disguise self}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "K'thriss is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). He regains his expended spell slots when he finishes a short or long rest, and knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mending}", + "{@spell prestidigitation}", + "{@spell thorn whip}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell dissonant whispers}", + "{@spell fly}", + "{@spell hex}", + "{@spell misty step}", + "{@spell sending}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "K'thriss Drow'b-AI", + "__dataclass__": "Monster" + }, + { + "name": "Keg Robot", + "source": "AI", + "page": 212, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 16, + "constitution": 15, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Customizable Storage", + "body": [ + "A keg robot can hold up to three types of liquid payload totaling 12 gallons within its hollow, barrel-shaped body. A full keg robot can make one liquid attack per gallon before the liquid must be refilled. Filling a keg robot takes 2 rounds per gallon. Differing payloads can alter the keg robot's attacks from those presented here." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Squirt", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/40 ft., one target. {@h}7 ({@damage 1d8 + 3}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beer Shower", + "body": [ + "The keg robot spews an unnaturally potent beer in a 15-foot cone or in a 30-foot line that is 5 feet wide. Each creature in the area must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned}. While {@condition poisoned} in this way, a creature has its speed halved by exposure to the potent brew. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "Additionally, the beer shower extinguishes any fires or open flames in its area." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hot Oil Spray {@recharge 5}", + "body": [ + "The keg robot sprays hot oil in a 15-foot cone or in a 30-foot line that is 5 feet wide. Each creature in the area must make a {@dc 13} Dexterity saving throw. On a failed save, a creature takes 7 ({@damage 1d8 + 3}) fire damage and falls {@condition prone}. On a successful save, a creature takes half as much damage and doesn't fall {@condition prone}.", + "Any creature affected by the hot oil spray that takes fire damage before the oil dries (after 1 minute) takes an additional 3 ({@damage 1d6}) fire damage, and the oil burns away.", + "If the oil that remains in the area of the spray is lit, it burns for {@dice 1d4} rounds and deals 3 ({@damage 1d6}) fire damage to any creature that enters the area for the first time on a turn or ends its turn there." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Keg Robot-AI", + "__dataclass__": "Monster" + }, + { + "name": "M\u00f4rg\u00e6n", + "source": "AI", + "page": 199, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 18, + "constitution": 12, + "intelligence": 12, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+3", + "dex": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Giant", + "Goblin" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "M\u00f4rg\u00e6n has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "M\u00f4rg\u00e6n makes three attacks with her scimitars or her longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitars", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "M\u00f4rg\u00e6n's spellcasting ability is Intelligence. She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "M\u00f4rg\u00e6n is a 9th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She has the following ranger spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell alarm}", + "{@spell animal friendship}", + "{@spell hunter's mark}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell pass without trace}", + "{@spell spike growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell conjure animals}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "M\u00f4rg\u00e6n-AI", + "__dataclass__": "Monster" + }, + { + "name": "Oak Truestrike", + "source": "AI", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good or Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 16, + "constitution": 14, + "intelligence": 10, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Oak has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Sight", + "body": [ + "Oak has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Oak makes three attacks with his hooked daggers or his hand crossbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooked Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Return the Favor (3/Day)", + "body": [ + "When Oak takes damage from a melee weapon attack, he can make a hooked dagger attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Oak Truestrike-AI", + "__dataclass__": "Monster" + }, + { + "name": "Omin Dran", + "source": "AI", + "page": 196, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 8, + "constitution": 14, + "intelligence": 11, + "wisdom": 18, + "charisma": 12, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7", + "cha": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Goblin" + ], + "traits": [ + { + "title": "Divine Strike", + "body": [ + "Once on each of his turns when he hits a creature with a weapon attack, Omin can cause the attack to deal an extra 4 ({@damage 1d8}) damage of the same type dealt by the weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Omin has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Omin makes two attacks with his maul." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "War God's Blessing (Recharges after a Short or Long Rest)", + "body": [ + "When a creature within 30 feet of Omin makes an attack roll, but before learning whether it hits or misses, Omin can grant the creature a +10 bonus to that roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Omin is a 9th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell command}", + "{@spell divine favor}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell enhance ability}", + "{@spell hold person}", + "{@spell magic weapon}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell beacon of hope}", + "{@spell crusader's mantle}", + "{@spell dispel magic}", + "{@spell mass healing word}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell death ward}", + "{@spell freedom of movement}", + "{@spell locate creature}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell dispel evil and good}", + "{@spell flame strike}", + "{@spell hold monster}", + "{@spell greater restoration}", + "{@spell legend lore}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Omin Dran-AI", + "__dataclass__": "Monster" + }, + { + "name": "Pendragon Beestinger", + "source": "AI", + "page": 206, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Halfling" + ], + "traits": [ + { + "title": "Echo Spell (1/Day)", + "body": [ + "Pendragon can cast the spell he cast on his last turn, whose casting time becomes 1 bonus action. This bonus casting uses a spell slot as normal." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Pendragon is a 4th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell light}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell cloud of daggers}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Pendragon Beestinger-AI", + "__dataclass__": "Monster" + }, + { + "name": "Phoenix Anvil", + "source": "AI", + "page": 206, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 10, + "constitution": 12, + "intelligence": 13, + "wisdom": 16, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Divine Display (1/Day)", + "body": [ + "As a bonus action, Phoenix causes his shield to flare with divine light. Each creature of his choice within 30 feet of him must succeed on a {@dc 13} Wisdom saving throw or be {@condition blinded} for 1 minute. A creature can repeat the save at the end of each of its turns, ending the effect on itself with a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Phoenix makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warhammer", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and the target must succeed on a {@dc 12} Strength saving throw or be pushed 5 feet." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Phoenix is a 4th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell cure wounds}", + "{@spell guiding bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Phoenix Anvil-AI", + "__dataclass__": "Monster" + }, + { + "name": "Portentia Dran", + "source": "AI", + "page": 208, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 18, + "constitution": 16, + "intelligence": 13, + "wisdom": 12, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Portentia deals an extra 14 ({@damage 4d6}) damage when she hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Portentia that isn't {@condition incapacitated} and Portentia doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Portentia makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Portentia magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than her own, or back into her true form. Any equipment she is wearing or carrying is absorbed or borne by the new form (her choice). In a new form, Portentia retains her game statistics and ability to speak, but her AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and she gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that she lacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Portentia Dran-AI", + "__dataclass__": "Monster" + }, + { + "name": "Prophetess Dran", + "source": "AI", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 14, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 12, + "intelligence": 13, + "wisdom": 16, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Divine Eminence", + "body": [ + "As a bonus action, Prophetess can expend a spell slot to cause her melee weapon attacks to magically deal an extra 10 ({@damage 3d6}) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If Prophetess expends a spell slot of 2nd level or higher, the extra damage increases by {@damage 1d6} for each level above 1st." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Prophetess has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Prophetess is a 5th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Prophetess has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell guiding bolt}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Prophetess Dran-AI", + "__dataclass__": "Monster" + }, + { + "name": "Rosie Beestinger", + "source": "AI", + "page": 203, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 15, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d6 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 16, + "constitution": 12, + "intelligence": 12, + "wisdom": 14, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+1", + "dex": "+5" + }, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Halfling" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "Rosie has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Halfling Nimbleness", + "body": [ + "Rosie can move through the space of any creature that is of a size larger than hers." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If Rosie is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. She can't use this trait if she's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Step", + "body": [ + "When Rosie is in dim light or darkness, she can use a bonus action to teleport 60 feet to an unoccupied space she can see that is also in dim light or darkness. She then has advantage on the first melee attack she makes before the end of the turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Rosie makes three attacks, then makes two unarmed strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of the Master (+1 Quarterstaff)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage. Rosie's unarmed strikes are magical." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missiles", + "body": [ + "In response to being hit by a ranged weapon attack, Rosie deflects the missile. The damage she takes from the attack is reduced by {@damage 1d10 + 9}. If the damage is reduced to 0, she catches the missile if it's small enough to hold in one hand and she has a hand free." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Rosie's innate spellcasting ability is Wisdom (spell save {@dc 12}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}", + "{@spell darkness}", + "{@spell darkvision}", + "{@spell pass without trace}", + "{@spell silence}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "halfling", + "actions_note": "", + "mythic": null, + "key": "Rosie Beestinger-AI", + "__dataclass__": "Monster" + }, + { + "name": "Splugoth the Returned", + "source": "AI", + "page": 213, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 14, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+4", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Goblin" + ], + "traits": [ + { + "title": "Defensive Advantage", + "body": [ + "As long as two or more of Splugoth's allies are within 5 feet of him and are not {@condition incapacitated}, attack rolls against him are made with disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimble Escape", + "body": [ + "Splugoth can take the Disengage or Hide action as a bonus action on each of his turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Touch of Madness", + "body": [ + "Splugoth has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Splugoth makes two attacks with his dagger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Word From Beyond (1/Day)", + "body": [ + "Splugoth remembers and repeats aloud a few words from a place he entered while walking back from the next world to this one. Each creature of his choice within 30 feet of him that can hear him must succeed on a {@dc 12} Wisdom saving throw or be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Absorb Attack", + "body": [ + "When a creature Splugoth can see hits him with a melee weapon attack, the weapon snags on a pocket of residual resurrectional energy and is caught fast. The attack is negated and the weapon cannot be used until the creature succeeds on a {@dc 12} Strength ({@skill Athletics}) check as an action to pull it out of Splugoth. Natural weapons can have their attacks negated by this feature, but can then be retracted automatically at the end of the attacking creature's turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Splugoth the Returned-AI", + "__dataclass__": "Monster" + }, + { + "name": "Viari", + "source": "AI", + "page": 198, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 18, + "note": "{@item +1 Studded Leather Armor||+1 studded leather}", + "__dataclass__": "AC" + }, + { + "value": 19, + "note": "(while wielding two melee weapons)", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 20, + "constitution": 14, + "intelligence": 10, + "wisdom": 8, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "int": "+3" + }, + "languages": [ + "Common", + "Draconic", + "Thieves' cant" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If Viari is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second-Story Work", + "body": [ + "Climbing does not cost Viari extra movement. Additionally, when he makes a running jump, the distance he covers increases by 5 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Viari deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Viari that isn't {@condition incapacitated} and Viari doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Viari makes two attacks with his shortsword and two attacks with his rapier." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Shortsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "Viari halves the damage that he takes from an attack that hits him. He must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Viari-AI", + "__dataclass__": "Monster" + }, + { + "name": "Walnut Dankgrass", + "source": "AI", + "page": 204, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 16, + "constitution": 14, + "intelligence": 10, + "wisdom": 18, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+2", + "wis": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Walnut has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mask of the Wild", + "body": [ + "Walnut can attempt to hide even when she is only lightly obscured by foliage, heavy rain, falling snow, mist, and other natural phenomena." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wild Shape (Recharges after a Short or Long rest)", + "body": [ + "As a bonus action, Walnut can assume the shape of a dire wolf. She can stay in this form for 3 hours or until she reverts to her normal form as a bonus action. She automatically reverts if she falls {@condition unconscious}, drops to 0 hit points, or dies.", + "While transformed, Walnut's game statistics are replaced by the statistics of the dire wolf, except she retains her alignment, personality, and Intelligence, Wisdom, and Charisma scores.", + "Her attacks in beast form are magical. While in beast form, Walnut can use a bonus action to expend one spell slot and regain {@dice 1d8} hit points per level of the spell slot expended." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Walnut makes two attacks with Foremother or her longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Foremother (+1 Scimitar)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Walnut is a 7th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell thorn whip}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell flame blade}", + "{@spell moonbeam}", + "{@spell pass without trace}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell dispel magic}", + "{@spell plant growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell blight}", + "{@spell freedom of movement}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Walnut Dankgrass-AI", + "__dataclass__": "Monster" + }, + { + "name": "Aartuk Elder", + "source": "BAM", + "page": 8, + "size_str": "Large", + "maintype": "plant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 10, + "constitution": 15, + "intelligence": 12, + "wisdom": 14, + "charisma": 12, + "passive": 12, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aartuk" + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The aartuk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aartuk makes two Branch attacks, two Radiant Pellet attacks, or one of each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Branch", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Pellet", + "body": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 4d4}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Tongue {@recharge}", + "body": [ + "The aartuk tries to use its gooey tongue to snare one Large or smaller creature it can see within 30 feet of itself. The target must make a {@dc 12} Dexterity saving throw. On a failed save, the target is {@condition grappled} by the tongue (escape {@dc 14}) and pulled up to 25 feet toward the aartuk. The tongue can grapple one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The aartuk casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}", + "{@spell detect magic}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aartuk Elder-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Aartuk Starhorror", + "source": "BAM", + "page": 9, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 10, + "constitution": 14, + "intelligence": 13, + "wisdom": 16, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aartuk" + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The aartuk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aartuk makes two Branch attacks, two Radiant Pellet attacks, or one of each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Branch", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 10 ft., one target. {@h}8 ({@damage 2d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Pellet", + "body": [ + "{@atk rs} {@hit 2} to hit, range 60 ft., one target. {@h}7 ({@damage 3d4}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rally the Troops (1/Day)", + "body": [ + "The aartuk magically ends the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue {@recharge}", + "body": [ + "The aartuk tries to use its gooey tongue to snare one Medium or smaller creature it can see within 30 feet of itself. The target must make a {@dc 12} Dexterity saving throw. On a failed save, the target is {@condition grappled} by the tongue (escape {@dc 11}) and pulled up to 25 feet toward the aartuk. The tongue can grapple one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The aartuk casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell revivify}", + "{@spell speak with plants}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aartuk Starhorror-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Aartuk Weedling", + "source": "BAM", + "page": 9, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 12, + "constitution": 13, + "intelligence": 10, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aartuk" + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The aartuk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aartuk makes two Branch attacks, two Radiant Pellet attacks, or one of each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Branch", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}8 ({@damage 2d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Pellet", + "body": [ + "{@atk rs} {@hit 3} to hit, range 60 ft., one target. {@h}7 ({@damage 3d4 + 1}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Tongue {@recharge}", + "body": [ + "The aartuk tries to use its gooey tongue to snare one Medium or smaller creature it can see within 30 feet of itself. The target must make a {@dc 11} Dexterity saving throw. On a failed save, the target is {@condition grappled} by the tongue (escape {@dc 12}) and pulled up to 25 feet toward the aartuk. The tongue can grapple one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aartuk Weedling-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Lunar Dragon", + "source": "BAM", + "page": 34, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 23, + "dexterity": 12, + "constitution": 20, + "intelligence": 10, + "wisdom": 13, + "charisma": 15, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 15-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales a blast of frost in a 60-foot cone. Each creature in the cone must make a {@dc 18} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) cold damage, and its speed is reduced to 0 until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Phase (3/Day)", + "body": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail Attack", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Treacherous Ice", + "body": [ + "Magical ice covers the ground in a 20-foot radius centered on a point the dragon can see within 120 feet of itself. The ice, which is difficult terrain for all creatures except lunar dragons, lasts for 10 minutes or until the dragon uses this legendary action again." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Lunar Dragon-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Solar Dragon", + "source": "BAM", + "page": 52, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 24, + "dexterity": 15, + "constitution": 22, + "intelligence": 15, + "wisdom": 16, + "charisma": 14, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+11", + "wis": "+8", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 180 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nebulous Thoughts", + "body": [ + "Magical attempts to read the dragon's mind or glean its thoughts fail automatically." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The dragon deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}14 ({@damage 2d6 + 7}) piercing damage plus 7 ({@damage 2d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d6 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Photonic Breath {@recharge 5}", + "body": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 180 feet of itself, then blossoms into a 30-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 19} Constitution saving throw, taking 55 ({@damage 10d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail Attack", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Burst of Light (Costs 2 Actions)", + "body": [ + "The dragon emits magical light in a 30-foot-radius sphere centered on itself. Each creature in this area must succeed on a {@dc 23} Wisdom saving throw or be {@condition blinded} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Solar Dragon-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Lunar Dragon", + "source": "BAM", + "page": 32, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 27, + "dexterity": 12, + "constitution": 24, + "intelligence": 12, + "wisdom": 15, + "charisma": 17, + "passive": 24, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+13", + "wis": "+8" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 20-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d6 + 8}) piercing damage plus 7 ({@damage 2d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}15 ({@damage 2d6 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales a blast of frost in a 90-foot cone. Each creature in the cone must make a {@dc 21} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) cold damage, and its speed is reduced to 0 until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Phase (3/Day)", + "body": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail Attack", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Treacherous Ice", + "body": [ + "Magical ice covers the ground in a 20-foot radius centered on a point the dragon can see within 120 feet of itself. The ice, which is difficult terrain for all creatures except lunar dragons, lasts for 10 minutes or until the dragon uses this legendary action again." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 21} Dexterity saving throw or take 12 ({@damage 1d8 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Lunar Dragon-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Solar Dragon", + "source": "BAM", + "page": 50, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 425, + "formula": "23d20 + 184", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 28, + "dexterity": 15, + "constitution": 26, + "intelligence": 17, + "wisdom": 18, + "charisma": 16, + "passive": 28, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nebulous Thoughts", + "body": [ + "Magical attempts to read the dragon's mind or glean its thoughts fail automatically." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The dragon deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d6 + 9}) piercing damage plus 10 ({@damage 3d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}13 ({@damage 1d8 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Photonic Breath {@recharge 5}", + "body": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 240 feet of itself, then blossoms into a 40-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 23} Constitution saving throw, taking 66 ({@damage 12d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail Attack", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Brilliance (Costs 2 Actions)", + "body": [ + "The dragon emits magical light in a 30-foot-radius sphere centered on itself. Each creature in this area must succeed on a {@dc 23} Wisdom saving throw or be {@condition blinded} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Solar Dragon-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Astral Elf Aristocrat", + "source": "BAM", + "page": 11, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item elven chain}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 103, + "formula": "23d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 14, + "constitution": 10, + "intelligence": 21, + "wisdom": 18, + "charisma": 18, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common", + "Draconic", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "The elf wears a suit of {@item elven chain}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The elf doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elf makes two Scimitar attacks and uses Radiant Beam (if available)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage plus 10 ({@damage 3d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Beam (3/Day)", + "body": [ + "A magical beam of radiance flashes out from the elf's hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a {@dc 16} Constitution saving throw, taking 18 ({@damage 4d8}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Starlight Step (3/Day)", + "body": [ + "The elf magically teleports up to 30 feet, along with anything it is wearing or carrying, to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Solar Dragon (1/Day)", + "body": [ + "The elf has a 50 percent chance of magically summoning a {@creature young solar dragon|BAM}. A summoned dragon appears in an unoccupied space that the summoner can see, acts on its own initiative count, and is an ally of its summoner. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The elf casts one of the following spells, using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fly}", + "{@spell mislead}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Astral Elf Aristocrat-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Astral Elf Commander", + "source": "BAM", + "page": 12, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|PHB|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "26d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 12, + "dexterity": 15, + "constitution": 13, + "intelligence": 18, + "wisdom": 18, + "charisma": 18, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+4", + "wis": "+7", + "cha": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The elf doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elf makes two Longsword or Longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage when used with two hands, plus 14 ({@damage 4d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 14 ({@damage 4d6}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The elf casts the following spell, using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Astral Elf Commander-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Astral Elf Honor Guard", + "source": "BAM", + "page": 12, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|PHB|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "17d8 + 17", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 15, + "constitution": 12, + "intelligence": 17, + "wisdom": 16, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The elf doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elf makes two Longsword or Radiant Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) slashing damage, or 13 ({@damage 2d10 + 2}) slashing damage when used with two hands, plus 10 ({@damage 3d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Ray", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}22 ({@damage 4d10}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Astral Elf Honor Guard-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Astral Elf Star Priest", + "source": "BAM", + "page": 13, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "20d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 11, + "dexterity": 11, + "constitution": 10, + "intelligence": 16, + "wisdom": 20, + "charisma": 17, + "passive": 15, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+8", + "cha": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The elf doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elf makes two Morningstar attacks. It can use Rain of Radiance in place of one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) piercing damage plus 17 ({@damage 5d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rain of Radiance", + "body": [ + "Magical, flame-like radiance rains down on a creature that the elf can see within 60 feet of itself. The target must make a {@dc 16} Dexterity saving throw, taking 22 ({@damage 5d8}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Starlight Step (2/Day)", + "body": [ + "The elf magically teleports up to 30 feet, along with anything it is wearing or carrying, to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The elf casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell cure wounds} (8th-level version)", + "{@spell hold person}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell divination}", + "{@spell sending}", + "{@spell word of recall}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": "cleric", + "actions_note": "", + "mythic": null, + "key": "Astral Elf Star Priest-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Astral Elf Warrior", + "source": "BAM", + "page": 13, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "13d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 15, + "constitution": 10, + "intelligence": 16, + "wisdom": 16, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The elf has advantage on saving throws it makes to avoid or end the {@condition charmed} condition on itself, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The elf doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elf makes two Longsword or Longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage when used with two hands, plus 10 ({@damage 3d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 10 ({@damage 3d6}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Astral Elf Warrior-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Autognome", + "source": "BAM", + "page": 13, + "size_str": "Small", + "maintype": "construct", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d6 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 6, + "constitution": 16, + "intelligence": 4, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "saves": { + "con": "+5", + "wis": "+2", + "cha": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Gnomish" + ], + "traits": [ + { + "title": "Malfunction", + "body": [ + "Whenever the autognome takes 15 damage or more from a single source and isn't reduced to 0 hit points by that damage, roll a {@dice d20} to determine if it suffers a malfunction:", + { + "title": "1-10: \"All Fine Here!\"", + "body": [ + "No malfunction occurs." + ], + "__dataclass__": "Entry" + }, + { + "title": "11-12: \"My Mind Is Going. I Can Feel It.\"", + "body": [ + "The autognome is {@condition incapacitated} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "13-14: \"You've Disarmed Me!\"", + "body": [ + "One of the autognome's arms falls off, reducing the number of Shock attacks it can make by 1 until a creature uses an action to reattach the arm." + ], + "__dataclass__": "Entry" + }, + { + "title": "15-16: \"Who Turned Out the Lights?\"", + "body": [ + "The autognome's head falls off and deactivates, causing the autognome to be {@condition blinded} and {@condition deafened} until a creature uses an action to reattach the head, which reactivates it." + ], + "__dataclass__": "Entry" + }, + { + "title": "17-20: \"Have a Magical Day!\"", + "body": [ + "The autognome explodes and is destroyed. Each creature within 20 feet of the exploding autognome must make a {@dc 11} Dexterity saving throw, taking 22 ({@damage 4d10}) slashing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The autognome doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The autognome makes two Shock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shock", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 2d6}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Autognome-BAM", + "__dataclass__": "Monster" + }, + { + "name": "B'rohg", + "source": "BAM", + "page": 16, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 92, + "formula": "8d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 21, + "dexterity": 14, + "constitution": 21, + "intelligence": 5, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Multiattack", + "body": [ + "The b'rohg makes four Fist attacks or two Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 5} to hit, range 60/240 ft., one target. {@h}23 ({@damage 4d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hideous Rend", + "body": [ + "The b'rohg uses all four of its hands to target one Large or smaller creature it can see within 10 feet of itself. The target must succeed on a {@dc 16} Dexterity saving throw or be {@condition grappled} (escape {@dc 16}). Until this grapple ends, the b'rohg can't make Fist attacks or Rock attacks, and the target takes 49 ({@damage 8d10 + 5}) bludgeoning damage at the start of each of its turns. A creature reduced to 0 hit points by this damage is ripped into four pieces." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "B'rohg-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Braxat", + "source": "BAM", + "page": 15, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor, intellect fortress", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "13d12 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 26, + "dexterity": 8, + "constitution": 22, + "intelligence": 14, + "wisdom": 13, + "charisma": 7, + "passive": 11, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Intellect Fortress", + "body": [ + "The braxat's AC includes its Intelligence modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The braxat makes two Greatclub attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge}", + "body": [ + "The braxat exhales a 15-foot cone of acid. Each creature in the cone must make a {@dc 18} Constitution saving throw, taking 26 ({@damage 4d12}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Psionic Shield (3/Day)", + "body": [ + "When the braxat would be hit by an attack roll or a {@spell magic missile} spell that originates from a source the braxat can see, the braxat can create an {@condition invisible} barrier of magical force around itself that lasts until the start of its next turn. This barrier gives the braxat a +5 bonus to AC, including against the triggering attack, and prevents {@spell magic missile} spells from damaging it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The braxat casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell compulsion}", + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Braxat-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Brown Scavver", + "source": "BAM", + "page": 49, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 15, + "constitution": 17, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The scavver doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Swallowing Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Dexterity saving throw or be swallowed by the scavver. The scavver can have one creature swallowed at a time.", + "A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the scavver, and takes 13 ({@damage 3d8}) poison damage at the start of each of the scavver's turns from the poisonous gas in the scavver's gullet.", + "If the scavver takes 15 damage or more on a single turn from a creature inside it, the scavver must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate the swallowed creature, which falls {@condition prone} in a space within 10 feet of the scavver. If the scavver dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Brown Scavver-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Chwinga Astronaut", + "source": "BAM", + "page": 17, + "size_str": "Tiny", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "3d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 20, + "constitution": 10, + "intelligence": 14, + "wisdom": 16, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "When the chwinga is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails, provided it isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The chwinga doesn't require air, food, or drink. When it dies, it turns into a tiny pile of moondust, a cloud of glittering spores, a statuette resembling its former self, a chunk of ice, or a sponge shaped like a dodecahedron (DM's choice)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Magical Gift (1/Day)", + "body": [ + "The chwinga targets a Humanoid it can see within 5 feet of itself. The target gains a {@filter supernatural charm|rewards|type=charm} of the DM's choice. See {@book chapter 7|DMG|7|Other Rewards} for more information on supernatural charms." + ], + "__dataclass__": "Entry" + }, + { + "title": "Natural Shelter", + "body": [ + "The chwinga takes shelter inside a rock, a bush, a tree, or a natural source of fresh water in its space. The chwinga can't be targeted by any attack, spell, or other effect while it is magically protected in this way, and the shelter doesn't impair the chwinga's blindsight. The chwinga can use its action to emerge from a shelter. If its shelter is destroyed, the chwinga is forced out and appears in the shelter's space, but is otherwise unharmed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The chwinga casts one of the following spells, requiring no material or verbal components and using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell pass without trace}", + "{@spell resistance}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chwinga Astronaut-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Cosmic Horror", + "source": "BAM", + "page": 18, + "size_str": "Gargantuan", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 280, + "formula": "16d20 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 100, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 27, + "dexterity": 10, + "constitution": 25, + "intelligence": 24, + "wisdom": 15, + "charisma": 24, + "passive": 12, + "saves": { + "int": "+13", + "wis": "+8", + "cha": "+13" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 240 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the horror fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The horror doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The horror makes one Bite attack and two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d6 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 30 ft., one target. {@h}18 ({@damage 3d6 + 8}) force damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the horror can't use this tentacle against other targets. The horror has {@dice 1d8 + 1} tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Whispers {@recharge 5}", + "body": [ + "The horror emits dreadful whispers in a 60-foot-radius sphere centered on itself. Each creature in the sphere that isn't an Aberration must make a {@dc 21} Wisdom saving throw, taking 33 ({@damage 6d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Crushing Tentacle", + "body": [ + "The horror crushes one creature it is grappling. The {@condition grappled} creature must make a {@dc 22} Constitution saving throw, taking 18 ({@damage 3d6 + 8}) force damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Jet (Costs 2 Actions)", + "body": [ + "Foul gas squirts from the horror in a 30-foot line that is 5 feet wide. Each creature in the line must succeed on a {@dc 21} Constitution saving throw or take 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport (Costs 2 Actions)", + "body": [ + "The horror teleports, along with any creatures it is grappling, to an unoccupied space it can see within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cosmic Horror-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Dohwar", + "source": "BAM", + "page": 19, + "size_str": "Small", + "maintype": "fey", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 5, + "dexterity": 12, + "constitution": 11, + "intelligence": 11, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "wis": "+4" + }, + "languages": [ + "Common", + "Dohwar", + "telepathy 30 ft. (see also Merging below)" + ], + "traits": [ + { + "title": "Merging", + "body": [ + "Two dohwars can have a telepathic conversation with each other and a third willing creature of their choice, provided all three are within 30 feet of one another." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dohwar casts the following spell, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell detect thoughts}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dohwar-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Esthetic", + "source": "BAM", + "page": 20, + "size_str": "Gargantuan", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 217, + "formula": "14d20 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 24, + "dexterity": 8, + "constitution": 20, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 12, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 300 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Bioluminescence", + "body": [ + "While it has at least 1 hit point, the esthetic sheds bright light in a 30-foot radius and dim light for an additional 30 feet, and its interior compartments are dimly lit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spelljamming", + "body": [ + "The esthetic has the properties of a spelljamming helm (see the Astral Adventurer's Guide), but only its reigar creator can attune to it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The esthetic doesn't require air, food, or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The esthetic makes two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 30 ft., one target. {@h}17 ({@damage 3d6 + 7}) force damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the creature takes 18 ({@damage 4d8}) acid damage at the start of each of its turns, and the esthetic can't use this tentacle against other targets. The esthetic has {@dice 1d4 \u00d7 2} tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Jammerscream {@recharge}", + "body": [ + "The esthetic targets one spelljamming ship within 300 feet of itself, magically suppressing the properties of the ship's spelljamming helm for {@dice 2d10} days. If the ship has more than one helm aboard it, randomly determine which helm is affected. A creature attuned to that helm can choose to make a {@dc 17} Charisma saving throw. On a failed save, the creature takes 42 ({@damage 12d6}) psychic damage, and the helm is suppressed for {@dice 2d10} hours instead of {@dice 2d10} days. On a successful save, the creature takes half as much damage, and the helm is suppressed for {@dice 2d10} minutes instead of {@dice 2d10} days." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Esthetic-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Eye Monger", + "source": "BAM", + "page": 21, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 149, + "formula": "13d10 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 21, + "dexterity": 6, + "constitution": 23, + "intelligence": 7, + "wisdom": 13, + "charisma": 7, + "passive": 11, + "senses": [ + "darkvision 120 ft.", + "blindsight 120 ft. while the eye monger's eye is closed" + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Antimagic Gullet", + "body": [ + "Magical effects, including those produced by spells and magic items but excluding those created by artifacts or deities, are suppressed inside the eye monger's gullet. Any spell slot or charge expended by a creature in the gullet to cast a spell or activate a property of a magic item is wasted. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration. No spell or magical effect that originates outside the eye monger's gullet, except one created by an artifact or a deity, can affect a creature or an object inside the gullet." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "If the eye monger is motionless and has its eye and mouth closed at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the eye monger move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the eye monger is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The eye monger doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and if the target is a Medium or smaller creature, it must succeed on a {@dc 18} Dexterity saving throw or be swallowed by the eye monger and deposited in the eye monger's gullet (see Antimagic Gullet). The eye monger can swallow one creature at a time. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects originating outside the eye monger, and takes 35 ({@damage 10d6}) acid damage at the start of each of its turns.", + "If the eye monger takes 25 damage or more on a single turn from a creature inside its gullet, the eye monger regurgitates the swallowed creature, which falls {@condition prone} in a space within 10 feet of the eye monger. If the eye monger dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eye Monger-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Feyr", + "source": "BAM", + "page": 22, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 16, + "constitution": 11, + "intelligence": 14, + "wisdom": 14, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The feyr doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The feyr makes one Frightful Bite attack and one Tentacle attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage, and each creature within 10 feet of the feyr that can see it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of the feyr until the end of the feyr's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}17 ({@damage 4d6 + 3}) psychic damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the feyr can't use this tentacle against other targets. The feyr has two tentacles, each of which can grapple one creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility", + "body": [ + "The feyr becomes {@condition invisible} until it attacks, uses Nightmare Fuel, or uses a bonus action to become visible." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Fuel (1/Day)", + "body": [ + "The feyr targets one {@condition unconscious} creature it can see within 10 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage, and the feyr gains temporary hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Feyr-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Gaj", + "source": "BAM", + "page": 23, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 10, + "constitution": 15, + "intelligence": 12, + "wisdom": 15, + "charisma": 7, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages but can't speak" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gaj makes one Mandibles attack and uses Mind-Probing Antennae or Paralyze (if available)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mandibles", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) slashing damage, and the target is {@condition grappled} (escape {@dc 11}). Until the grapple ends, the target takes 10 ({@damage 2d6 + 3}) slashing damage at the start of each of the gaj's turns. While it is grappling a creature, the gaj can't use its mandibles to attack other creatures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind-Probing Antennae", + "body": [ + "The gaj targets one creature {@condition grappled} by it. The target must make a {@dc 12} Wisdom saving throw. On a failed save, the target takes 16 ({@damage 3d10}) psychic damage, and the gaj magically pulls one piece of information from the target's mind that the gaj wants to know. On a successful save, the target takes half as much damage, and the gaj learns nothing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyze {@recharge}", + "body": [ + "The gaj magically targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 12} Wisdom saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gaj-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Space Hamster", + "source": "BAM", + "page": 56, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 12, + "constitution": 10, + "intelligence": 2, + "wisdom": 12, + "charisma": 4, + "passive": 11, + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Space Hamster-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Giff Shipmate", + "source": "BAM", + "page": 24, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 11, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Firearms Knowledge", + "body": [ + "The giff's mastery of its weapons enables it to ignore the loading property of any firearm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steady as She Goes", + "body": [ + "On the deck of a ship, the giff has advantage on ability checks and saving throws made against effects that would knock it {@condition prone} or shove it overboard." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giff makes two Longsword or Musket attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Musket", + "body": [ + "{@atk rw} {@hit 4} to hit, range 40/120 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Grenade", + "body": [ + "The giff throws a grenade up to 60 feet, and the grenade explodes in a 20-foot-radius sphere. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) force damage on a failed save, or half as much damage on a successful one. After the giff throws the grenade, roll a {@dice d6}; on a roll of 4 or lower, the giff has no more grenades to throw." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + }, + { + "source": "SJA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giff Shipmate-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Giff Shock Trooper", + "source": "BAM", + "page": 25, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 14, + "constitution": 18, + "intelligence": 11, + "wisdom": 12, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+7", + "wis": "+4" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Firearms Knowledge", + "body": [ + "The giff's mastery of its weapons enables it to ignore the loading property of any firearm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Headfirst Charge", + "body": [ + "If the giff moves at least 20 feet in a straight line and ends within 5 feet of a Large or smaller creature, that creature must succeed on a {@dc 16} Strength saving throw or take 7 ({@damage 2d6}) bludgeoning damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The giff deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giff makes two Greatsword or Musket attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Musket", + "body": [ + "{@atk rw} {@hit 5} to hit, range 40/120 ft., one target. {@h}15 ({@damage 2d12 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunder Bomb", + "body": [ + "The giff lights a grapefruit-sized bomb and throws it at a point up to 60 feet away, where it explodes. Each creature within a 10-foot-radius sphere centered on that point must make a {@dc 15} Dexterity saving throw, taking 18 ({@damage 4d8}) thunder damage on a failed save, or half as much damage on a successful one. After the giff throws the bomb, roll a {@dice d6}; on a roll of 4 or lower, the giff has no more bombs to throw." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giff Shock Trooper-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Giff Warlord", + "source": "BAM", + "page": 25, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|PHB|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "21d8 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 22, + "dexterity": 15, + "constitution": 18, + "intelligence": 14, + "wisdom": 14, + "charisma": 18, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "dex": "+6", + "con": "+8", + "wis": "+6" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Firearms Knowledge", + "body": [ + "The giff's mastery of its weapons enables it to ignore the loading property of any firearm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the giff fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giff makes two Morningstar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Double-Barreled Musket", + "body": [ + "{@atk rw} {@hit 6} to hit, range 40/120 ft., one target. {@h}28 ({@damage 4d12 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The giff moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rallying Cry", + "body": [ + "The giff ends the {@condition frightened} condition on itself and each creature of its choice that it can see within 30 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weapon of Choice (2 Actions)", + "body": [ + "The giff makes two Morningstar attacks or one Double-Barreled Musket attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giff Warlord-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Buccaneer", + "source": "BAM", + "page": 27, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 16, + "wisdom": 13, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "int": "+5", + "wis": "+3" + }, + "languages": [ + "Common", + "Gith" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes two Greatsword or Telekinetic Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Bolt", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}13 ({@damage 3d6 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Astral Step {@recharge 4}", + "body": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Buccaneer-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Star Seer", + "source": "BAM", + "page": 27, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@spell mage armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 11, + "constitution": 14, + "intelligence": 19, + "wisdom": 16, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "int": "+7", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Gith" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes three Astral Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Astral Bolt", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}20 ({@damage 3d10 + 4}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Astral Step {@recharge 4}", + "body": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell detect magic}", + "{@spell invisibility} (self only)", + "{@spell mage armor} (self only)", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell contact other plane} (as an action)", + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gith, warlock", + "actions_note": "", + "mythic": null, + "key": "Githyanki Star Seer-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Xenomancer", + "source": "BAM", + "page": 27, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "21d8 + 63", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 14, + "dexterity": 18, + "constitution": 17, + "intelligence": 15, + "wisdom": 18, + "charisma": 13, + "passive": 18, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+7", + "wis": "+8" + }, + "languages": [ + "Gith plus any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes three Staff attacks, three Telekinetic Bolt attacks, or a combination thereof." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage when used with two hands, plus 14 ({@damage 4d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 60 ft., one target. {@h}20 ({@damage 3d10 + 4}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Astral Step {@recharge 4}", + "body": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githyanki casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell light}", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell invisibility} (self only)", + "{@spell pass without trace} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": "druid, gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Xenomancer-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Gray Scavver", + "source": "BAM", + "page": 49, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 16, + "dexterity": 13, + "constitution": 15, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The scavver doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit (with advantage if the target is a creature that is missing any hit points), reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gray Scavver-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Hadozee Explorer", + "source": "BAM", + "page": 28, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 17, + "constitution": 13, + "intelligence": 13, + "wisdom": 17, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "wis": "+5" + }, + "languages": [ + "Common", + "Hadozee" + ], + "traits": [ + { + "title": "Glide", + "body": [ + "If it isn't {@condition incapacitated} or wearing heavy armor, the hadozee can extend its skin membranes to move up to 5 feet horizontally for every 1 foot it descends in the air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hadozee makes two Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Musket", + "body": [ + "{@atk rw} {@hit 5} to hit, range 40/120 ft., one target. {@h}16 ({@damage 2d12 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "The hadozee takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Safe Descent", + "body": [ + "When it would take damage from a fall, the hadozee extends its skin membranes to reduce the fall's damage to 0, provided it isn't wearing heavy armor." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hadozee Explorer-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Hadozee Shipmate", + "source": "BAM", + "page": 29, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 14, + "constitution": 11, + "intelligence": 10, + "wisdom": 14, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+2" + }, + "languages": [ + "Common", + "Hadozee" + ], + "traits": [ + { + "title": "Glide", + "body": [ + "If it isn't {@condition incapacitated} or wearing heavy armor, the hadozee can extend its skin membranes to move up to 5 feet horizontally for every 1 foot it descends in the air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Safe Descent", + "body": [ + "When it would take damage from a fall, the hadozee extends its skin membranes to reduce the fall's damage to 0, provided it isn't wearing heavy armor." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hadozee Shipmate-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Hadozee Warrior", + "source": "BAM", + "page": 29, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 16, + "constitution": 13, + "intelligence": 10, + "wisdom": 13, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+3" + }, + "languages": [ + "Common", + "Hadozee" + ], + "traits": [ + { + "title": "Glide", + "body": [ + "If it isn't {@condition incapacitated} or wearing heavy armor, the hadozee can extend its skin membranes to move up to 5 feet horizontally for every 1 foot it descends in the air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hadozee makes two Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Safe Descent", + "body": [ + "When it would take damage from a fall, the hadozee extends its skin membranes to reduce the fall's damage to 0, provided it isn't wearing heavy armor." + ], + "__dataclass__": "Entry" + }, + { + "title": "Uncanny Dodge", + "body": [ + "The hadozee halves the damage that it takes from an attack that hits it, provided it can see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hadozee Warrior-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Jammer Leech", + "source": "BAM", + "page": 30, + "size_str": "Tiny", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d4 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 11, + "dexterity": 1, + "constitution": 16, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Spelljammer Overload", + "body": [ + "If the leech is reduced to 0 hit points while attached to a ship that has a spelljamming helm, the creature attuned to that helm must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 10 ({@damage 4d4}) psychic damage and is {@condition incapacitated} for 1 minute. On a successful save, the creature takes half as much damage and is {@condition incapacitated} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The leech doesn't require air or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spiked Tentacle", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Attach to Hull", + "body": [ + "The leech attaches itself to a ship's hull in its space, dealing 2 ({@damage 1d4}) piercing damage to the ship (ignoring the ship's damage threshold). This damage can't be repaired until the leech is scraped off the hull. While the leech is attached, its speed is 0, and it can detach itself as a bonus action. As an action, a creature within reach of the leech can to try to scrape it off the hull, doing so with a successful {@dc 18} Strength check. On a failed check, the action is wasted as the leech remains attached to the hull. Removing the leech in this way deals no damage to the leech or the ship." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Magical Discharge (1/Day)", + "body": [ + "When it takes damage, the leech can discharge a bolt of magical energy from its eye that targets one creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Dexterity saving throw or take 10 ({@damage 3d6}) force damage and be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Jammer Leech-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Kindori", + "source": "BAM", + "page": 31, + "size_str": "Gargantuan", + "maintype": "celestial", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 202, + "formula": "15d20 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 25, + "dexterity": 7, + "constitution": 17, + "intelligence": 6, + "wisdom": 14, + "charisma": 7, + "passive": 12, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The kindori doesn't require food, drink, or air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Flashing Eyes {@recharge}", + "body": [ + "The kindori emits bright light in a 120-foot cone. Each creature in the cone must succeed on a {@dc 14} Wisdom saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kindori-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Lunar Dragon Wyrmling", + "source": "BAM", + "page": 35, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 12, + "constitution": 16, + "intelligence": 6, + "wisdom": 10, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+2" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales a blast of frost in a 15-foot cone. Each creature in the cone must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 13 ({@damage 3d8}) cold damage, and its speed is halved until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Phase (2/Day)", + "body": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lunar Dragon Wyrmling-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Megapede", + "source": "BAM", + "page": 36, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 175, + "formula": "13d20 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 22, + "dexterity": 10, + "constitution": 17, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The megapede makes one Bite attack and uses either Life Drain or Psychic Bomb." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 20 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage plus 22 ({@damage 5d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "The megapede magically drains life energy from other creatures nearby. Each creature within 15 feet of the megapede must make a {@dc 15} Constitution saving throw, taking 16 ({@damage 3d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Bomb", + "body": [ + "The megapede targets one creature it can see within 60 feet of itself. The target must make a {@dc 15} Wisdom saving throw. On a failed save, the target takes 22 ({@damage 5d8}) psychic damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the target takes half as much damage and isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Megapede-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Mercane", + "source": "BAM", + "page": 37, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 13, + "note": "{@spell mage armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 10, + "constitution": 15, + "intelligence": 18, + "wisdom": 16, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+5" + }, + "languages": [ + "Common", + "Giant", + "telepathy 60 ft. (see also Mercane telepathy)" + ], + "traits": [ + { + "title": "Mercane Telepathy", + "body": [ + "The mercane can communicate telepathically with any other mercane it knows, regardless of the distance between them." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mercane makes three Psi-Imbued Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psi-Imbued Blade", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage, and if the target is a creature, it must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of the mercane until the end of the target's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The mercane casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dimension door}", + "{@spell invisibility}", + "{@spell mage armor} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mercane-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Murder Comet", + "source": "BAM", + "page": 38, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "7d8 + 35", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 15, + "dexterity": 15, + "constitution": 20, + "intelligence": 6, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft." + ], + "languages": [ + "Ignan", + "Terran" + ], + "traits": [ + { + "title": "Explode", + "body": [ + "When the comet drops to 0 hit points, it explodes in a 20-foot-radius sphere centered on itself. Each creature in the sphere must make a {@dc 16} Dexterity saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The comet doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The comet sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The comet deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The comet doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The comet makes one Slam attack and one Spit Fire attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Fire", + "body": [ + "{@atk rw} {@hit 5} to hit, range 60 ft., one target. {@h}13 ({@damage 2d10 + 2}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Murder Comet-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Neh-thalggu", + "source": "BAM", + "page": 39, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 15, + "dexterity": 8, + "constitution": 18, + "intelligence": 12, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech; see also Brain Dump" + ], + "traits": [ + { + "title": "Brain Dump", + "body": [ + "Whenever the neh-thalggu consumes a brain, it gains the magical ability to speak and understand languages known by the brain's previous owner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The neh-thalggu doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The neh-thalggu makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one {@condition incapacitated} Humanoid. {@h}35 ({@damage 10d6}) piercing damage. If this damage reduces the target to 0 hit points, the neh-thalggu kills the target by extracting and consuming its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The neh-thalggu magically emits psychic energy at one Humanoid it can see within 10 feet of itself. The target must make a {@dc 14} Wisdom saving throw. On a failed save, the target takes 9 ({@damage 2d8}) psychic damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the target takes half as much damage and isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The neh-thalggu casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 11}). It must have consumed the requisite number of brains to cast the spell, as indicated:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell arms of Hadar} (1 brain)", + "{@spell detect magic} (2 brains)", + "{@spell magic missile} (3 brains)", + "{@spell Tenser's floating disk} (4 brains)", + "{@spell darkness} (5 brains)", + "{@spell hold person} (6 brains)", + "{@spell invisibility} (7 brains)", + "{@spell spider climb} (8 brains)", + "{@spell fear} (9 brains)", + "{@spell hypnotic pattern} (10 brains)", + "{@spell major image} (11 brains)", + "{@spell stinking cloud} (12 brains)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neh-thalggu-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi Hatchling Swarm", + "source": "BAM", + "page": 40, + "size_str": "Medium", + "maintype": "swarm of Tiny aberrations", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 13, + "constitution": 14, + "intelligence": 6, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny neogi hatchling. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Swarm of Bites", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}22 ({@damage 6d6 + 1}) poison damage, or 11 ({@damage 3d6 + 1}) poison damage if the swarm has half of its hit points or fewer, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neogi Hatchling Swarm-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi Pirate", + "source": "BAM", + "page": 41, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 6, + "dexterity": 15, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Mental Fortitude", + "body": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The neogi makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neogi Pirate-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi Void Hunter", + "source": "BAM", + "page": 41, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 6, + "dexterity": 16, + "constitution": 14, + "intelligence": 16, + "wisdom": 12, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 30 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the neogi's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mental Fortitude", + "body": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The neogi makes one Bite attack and two Claw attacks, or it makes two Eldritch Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}20 ({@damage 3d10 + 4}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enslave (Recharges after a Short or Long Rest)", + "body": [ + "The neogi targets one creature it can see within 30 feet of itself. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The neogi casts one of the following spells, using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dimension door}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Neogi Void Hunter-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Night Scavver", + "source": "BAM", + "page": 49, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d12 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 15, + "constitution": 17, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The scavver doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit (with advantage if the target is a creature that is missing any hit points), reach 10 ft., one target. {@h}27 ({@damage 4d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Night Scavver-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Plasmoid Boss", + "source": "BAM", + "page": 42, + "size_str": "Large", + "maintype": "ooze", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d10 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 12, + "constitution": 14, + "intelligence": 14, + "wisdom": 13, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The plasmoid can squeeze through a space as narrow as 1 inch wide, provided it is wearing and carrying nothing. It has advantage on ability checks it makes to initiate or escape a grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The plasmoid can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The plasmoid makes three Pseudopod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 6} to hit (with advantage if the plasmoid has one or more allies within 10 feet of itself), reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "The plasmoid halves the damage that it takes from an attack that hits it. The plasmoid must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Plasmoid Boss-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Plasmoid Explorer", + "source": "BAM", + "page": 43, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The plasmoid can squeeze through a space as narrow as 1 inch wide, provided it is wearing and carrying nothing. It has advantage on ability checks it makes to initiate or escape a grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The plasmoid can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The plasmoid makes two Pseudopod attacks. It can replace one of those attacks with a Javelin attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Plasmoid Explorer-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Plasmoid Warrior", + "source": "BAM", + "page": 43, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The plasmoid can squeeze through a space as narrow as 1 inch wide, provided it is wearing and carrying nothing. It has advantage on ability checks it makes to initiate or escape a grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The plasmoid can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The plasmoid makes three Pseudopod attacks. It can replace one of those attacks with a Spear or Pistol attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage when used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pistol", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Plasmoid Warrior-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Psurlon", + "source": "BAM", + "page": 44, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@spell mage armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 14, + "constitution": 14, + "intelligence": 17, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Aberrant Mind", + "body": [ + "Magic can't read the psurlon's thoughts or put the psurlon to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The psurlon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Crush", + "body": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must make a {@dc 13} Wisdom saving throw, taking 14 ({@damage 2d10 + 3}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The psurlon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell disguise self}", + "{@spell mage armor} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Psurlon-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Psurlon Leader", + "source": "BAM", + "page": 45, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@spell mage armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 14, + "constitution": 16, + "intelligence": 20, + "wisdom": 11, + "charisma": 7, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+1" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Aberrant Mind", + "body": [ + "Magic can't read the psurlon's thoughts or put the psurlon to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Two Heads", + "body": [ + "The psurlon has advantage on saving throws it makes to avoid or end the {@condition frightened}, {@condition stunned}, or {@condition unconscious} condition on itself. While one of the psurlon's heads is asleep, its other head is awake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The psurlon makes two Bite attacks and two Claw attacks. It can also use Pacify (if available) or Psychic Crush." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pacify {@recharge 5}", + "body": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must succeed on a {@dc 16} Wisdom saving throw or fall {@condition unconscious} for 10 minutes. The condition ends if the target takes any damage or if another creature uses its action to shake the target awake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Crush", + "body": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must make a {@dc 16} Wisdom saving throw, taking 21 ({@damage 3d10 + 5}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The psurlon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell disguise self}", + "{@spell mage armor} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dimension door}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Psurlon Leader-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Psurlon Ringer", + "source": "BAM", + "page": 45, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "{@spell mage armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 11, + "constitution": 10, + "intelligence": 17, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Deep Speech plus the languages of the Humanoid it is imitating", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Aberrant Mind", + "body": [ + "Magic can't read the psurlon's thoughts or put the psurlon to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage plus 4 ({@damage 1d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Crush", + "body": [ + "The psurlon targets one creature it can see within 120 feet of itself. The target must make a {@dc 13} Wisdom saving throw, taking 12 ({@damage 3d8 + 3}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The psurlon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell mage armor} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Psurlon Ringer-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Reigar", + "source": "BAM", + "page": 47, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "glory", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 15, + "constitution": 12, + "intelligence": 19, + "wisdom": 16, + "charisma": 24, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+4", + "wis": "+6", + "cha": "+10" + }, + "languages": [ + "Celestial", + "Common", + "Deep Speech", + "Draconic" + ], + "traits": [ + { + "title": "Glory", + "body": [ + "The reigar's Armor Class includes its Charisma modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The reigar can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "The reigar wears a {@item talarith|BAM}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The reigar makes two Trident attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) force damage if the reigar is wearing its talarith." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Bolt", + "body": [ + "{@atk rs} {@hit 10} to hit, range 90 ft., one target. {@h}22 ({@damage 5d8}) damage of a type chosen by the reigar from the following list: cold, fire, lightning, or radiant." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Duplicate (Recharges after a Short or Long Rest)", + "body": [ + "Using its talarith, the reigar summons a duplicate of itself. The duplicate obeys the reigar's commands and uses the reigar's statistics, except it is an unaligned Construct that doesn't have a talarith of its own. The duplicate takes its turn immediately after the reigar. It vanishes after 1 hour or when it is reduced to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The reigar casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dimension door}", + "{@spell phantasmal force}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell mass suggestion}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Reigar-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Solar Dragon Wyrmling", + "source": "BAM", + "page": 53, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 15, + "constitution": 18, + "intelligence": 11, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+6", + "wis": "+3", + "cha": "+2" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 3 ({@damage 1d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Photonic Breath {@recharge 5}", + "body": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 120 feet of itself, then blossoms into a 10-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 14} Constitution saving throw, taking 22 ({@damage 4d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Solar Dragon Wyrmling-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Space Clown", + "source": "BAM", + "page": 54, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 16, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Dying Burst", + "body": [ + "When the clown drops to 0 hit points, it pops like a balloon, releasing a splash of putrid, corrosive ichor. Each creature within 5 feet of the clown when it bursts must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Squeakers", + "body": [ + "The clown wears shoes that squeak when it walks. The squeaking can be heard out to a range of 30 feet. The squeaking is silenced while the clown's Phantasmal Form is in effect." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shock", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray Gun", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one creature. {@h}7 ({@damage 2d6}) psychic damage, and if the target is a Humanoid with an Intelligence score of 3 or higher, it must make a {@dc 12} Wisdom saving throw. On a failed save, the target perceives everything it sees or hears as hilariously funny and is {@condition incapacitated} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Phantasmal Form (3/Day)", + "body": [ + "The clown veils itself and everything it is wearing and carrying in an illusion that makes it look like some other creature of its size or smaller (such as a child) or an object small enough to fit in the clown's space (such as a floating balloon). Maintaining this effect requires the clown's {@status concentration} (as if {@status concentration||concentrating} on a spell), and the illusion fails to hold up to physical inspection. As an action, a creature that can see the clown's illusory form can make a {@dc 15} Wisdom ({@skill Insight}) check, piercing the illusion and discerning the clown's true form on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The clown casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell mirror image}", + "{@spell spider climb}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Space Clown-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Space Eel", + "source": "BAM", + "page": 55, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 18, + "constitution": 11, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The eel doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "If it isn't attached to a creature, the eel makes one Bite attack and one Tail Spine attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the eel attaches to the target. While attached, the eel can't make Bite attacks. Instead, the target takes 4 ({@damage 1d6 + 1}) piercing damage at the start of each of the eel's turns. The eel can detach itself as a bonus action. A creature, including the target, can use its action to detach the eel." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Spine", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} for 1 minute. Until this poison ends, the target is {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Space Eel-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Space Guppy", + "source": "BAM", + "page": 55, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 3, + "dexterity": 16, + "constitution": 10, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Air Envelope", + "body": [ + "If it has at least 1 hit point, the guppy can generate an air envelope around itself when in a vacuum. This air envelope can sustain the guppy and one other Tiny creature in its space indefinitely." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The guppy doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tail Slap", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Space Guppy-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Space Hamster", + "source": "BAM", + "page": 56, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "4d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 5, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 1, + "dexterity": 20, + "constitution": 10, + "intelligence": 6, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "telepathy 5 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Go for the Eyes {@recharge}", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 15} Dexterity saving throw or be {@condition blinded} until the start of the hamster's next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Escape", + "body": [ + "The hamster takes the Dash or Disengage action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Space Hamster-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Space Mollymawk", + "source": "BAM", + "page": 57, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 6, + "dexterity": 14, + "constitution": 11, + "intelligence": 3, + "wisdom": 12, + "charisma": 3, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Flyby", + "body": [ + "The mollymawk doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The mollymawk can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Space Mollymawk-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Space Swine", + "source": "BAM", + "page": 57, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 12, + "constitution": 12, + "intelligence": 4, + "wisdom": 10, + "charisma": 3, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Space Swine-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Ssurran Defiler", + "source": "BAM", + "page": 58, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor, intellect fortress", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 13, + "dexterity": 12, + "constitution": 16, + "intelligence": 15, + "wisdom": 15, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "int": "+4" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The ssurran can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Intellect Fortress", + "body": [ + "The ssurran's AC includes its Intelligence modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ssurran makes two Claw attacks and uses Defile (if available)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage plus 4 ({@damage 1d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Defile {@recharge}", + "body": [ + "Ordinary vegetation within 10 feet of the ssurran withers and dies. In addition, each creature within 10 feet of the ssurran must make a {@dc 11} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one. The ssurran regains 5 ({@dice 1d10}) hit points for each creature that fails the saving throw." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The ssurran casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell invisibility} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Ssurran Defiler-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Ssurran Poisoner", + "source": "BAM", + "page": 58, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The ssurran can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ssurran makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Bomb", + "body": [ + "The ssurran throws a tangerine-sized bomb at a point up to 60 feet away, where it explodes, releasing a 10-foot-radius sphere of poisonous gas that disperses quickly. Each creature in the sphere must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one. After the ssurran throws a bomb, roll a {@dice d6}; on a roll of 4 or lower, the ssurran has no more bombs to throw." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Ssurran Poisoner-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Starlight Apparition", + "source": "BAM", + "page": 59, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 72, + "formula": "16d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 1, + "dexterity": 11, + "constitution": 10, + "intelligence": 18, + "wisdom": 16, + "charisma": 16, + "passive": 13, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Astral Existence", + "body": [ + "The apparition can exist only on the Astral Plane. If it is sent to a location not on the Astral Plane, the apparition is destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "While it has at least 1 hit point, the apparition sheds bright light in a 20-foot radius and dim light for an additional 20 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The apparition can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The apparition doesn't require air, drink, food, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Radiant Eruption", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}20 ({@damage 5d6 + 3}) radiant damage, and if the target is a creature, it must succeed on a {@dc 14} Wisdom saving throw or be {@condition blinded} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One Humanoid that the apparition can see within 5 feet of itself must succeed on a {@dc 14} Charisma saving throw or be possessed by the apparition; the apparition then disappears, and the target is {@condition incapacitated} and loses control of its body. The apparition now controls the body but doesn't deprive the target of awareness. The apparition can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the apparition ends it as a bonus action, the body leaves the Astral Plane, or the apparition is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the apparition reappears in an unoccupied space within 5 feet of the body. If it reappears in a location not on the Astral Plane, the apparition is destroyed. The target is immune to this apparition's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Starlight Apparition-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Thri-kreen Gladiator", + "source": "BAM", + "page": 60, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "19d8 + 57", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 18, + "constitution": 16, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "dex": "+7", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "telepathy 60 ft.", + "Thri-kreen" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thri-kreen makes two Gythka attacks and one Chatkcha attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gythka", + "body": [ + "{@atk mw} {@hit 7} to hit (with advantage if the thri-kreen is missing any hit points), reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chatkcha", + "body": [ + "{@atk rw} {@hit 7} to hit (with advantage if the thri-kreen is missing any hit points), range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Leap", + "body": [ + "The thri-kreen leaps up to 20 feet in any direction, provided its speed isn't 0." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The thri-kreen adds 3 to its AC against one melee attack that would hit it. To do so, the thri-kreen must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thri-kreen Gladiator-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Thri-kreen Hunter", + "source": "BAM", + "page": 61, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 16, + "constitution": 13, + "intelligence": 10, + "wisdom": 14, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "telepathy 60 ft.", + "Thri-kreen" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thri-kreen makes two Gythka or Chatkcha attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gythka", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chatkcha", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Chameleon Carapace", + "body": [ + "The thri-kreen changes the color of its carapace to match the color and texture of its surroundings, gaining advantage on Dexterity ({@skill Stealth}) checks it makes to hide in those surroundings." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leap", + "body": [ + "The thri-kreen leaps up to 20 feet in any direction, provided its speed isn't 0." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The thri-kreen adds 2 to its AC against one melee attack that would hit it. To do so, the thri-kreen must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thri-kreen Hunter-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Thri-kreen Mystic", + "source": "BAM", + "page": 61, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 15, + "constitution": 13, + "intelligence": 12, + "wisdom": 16, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "telepathy 60 ft.", + "Thri-kreen" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thri-kreen makes two Gythka attacks or four Psychic Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gythka", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}6 ({@damage 1d6 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drain Vitality (Recharges after a Short or Long Rest)", + "body": [ + "The thri-kreen targets one creature it can see within 30 feet of itself. The target must make a {@dc 14} Constitution saving throw, taking 32 ({@damage 5d12}) necrotic damage on a failed save, or half as much damage on a successful one. The thri-kreen regains hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Chameleon Carapace", + "body": [ + "The thri-kreen changes the color of its carapace to match the color and texture of its surroundings, gaining advantage on Dexterity ({@skill Stealth}) checks it makes to hide in those surroundings." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The thri-kreen casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell levitate} (self only)", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell freedom of movement} (self only)", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thri-kreen Mystic-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Vampirate", + "source": "BAM", + "page": 62, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 14, + "constitution": 18, + "intelligence": 10, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Explode", + "body": [ + "When the vampirate is reduced to 0 hit points, it explodes in a cloud of ash. Any creature within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or take 5 ({@damage 1d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vampirate can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The vampirate doesn't require air or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Energy Drain", + "body": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 30 ft., one creature. {@h}11 ({@damage 2d10}) necrotic damage. A Humanoid reduced to 0 hit points by this attack dies and instantly transforms into a free-willed shadow under the DM's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampirate-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Vampirate Captain", + "source": "BAM", + "page": 63, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 15, + "dexterity": 16, + "constitution": 18, + "intelligence": 12, + "wisdom": 13, + "charisma": 16, + "passive": 11, + "saves": { + "con": "+7", + "wis": "+4", + "cha": "+6" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Explode", + "body": [ + "When the captain is reduced to 0 hit points, it explodes in a cloud of ash. Any creature within 5 feet of it must succeed on a {@dc 15} Constitution saving throw or take 16 ({@damage 3d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The captain can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The captain doesn't require air or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Energy Drain", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 30 ft., one creature. {@h}22 ({@damage 4d10}) necrotic damage. A Humanoid reduced to 0 hit points by this attack dies and instantly transforms into a free-willed shadow or vampirate (captain's choice) under the DM's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 100/400 ft., one target. {@h}19 ({@damage 3d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ship Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "A ship upon which the captain stands, along with all creatures and objects aboard it, becomes {@condition invisible} to creatures not aboard the ship. The captain must concentrate on this magical effect to maintain it (as if {@status concentration||concentrating} on a spell), and it lasts for up to 1 hour. The effect ends if the captain leaves the ship." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "The captain halves the damage that it takes from an attack that hits it. The captain must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampirate Captain-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Vampirate Mage", + "source": "BAM", + "page": 63, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 14, + "constitution": 18, + "intelligence": 13, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "saves": { + "wis": "+5", + "cha": "+5" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Explode", + "body": [ + "When the mage is reduced to 0 hit points, it explodes in a cloud of ash. Any creature within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or take 11 ({@damage 2d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The mage can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The mage doesn't require air or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mage makes two Ray of Cold attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Energy Drain", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 30 ft., one creature. {@h}22 ({@damage 4d10}) necrotic damage. A Humanoid reduced to 0 hit points by this attack dies and instantly transforms into a free-willed shadow under the DM's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Cold", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}11 ({@damage 2d8 + 2}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The mage casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell dimension door}", + "{@spell fly}", + "{@spell hypnotic pattern}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampirate Mage-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Void Scavver", + "source": "BAM", + "page": 49, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 22, + "dexterity": 16, + "constitution": 19, + "intelligence": 4, + "wisdom": 13, + "charisma": 5, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The scavver doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Swallowing Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}45 ({@damage 6d12 + 6}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 16} Dexterity saving throw or be swallowed by the scavver. The scavver can have one creature swallowed at a time.", + "A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the scavver, and takes 11 ({@damage 2d10}) acid damage at the start of each of the scavver's turns from the digestive juices in the scavver's gullet.", + "If the scavver takes 25 damage or more on a single turn from a creature inside it, the scavver must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate the swallowed creature, which falls {@condition prone} in a space within 10 feet of the scavver. If the scavver dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Ray of Fear {@recharge 4}", + "body": [ + "The scavver's eye emits an {@condition invisible}, magical ray that targets one creature the scavver can see within 60 feet of itself. The target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} of the scavver until the start of the scavver's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Void Scavver-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Young Lunar Dragon", + "source": "BAM", + "page": 35, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 12, + "constitution": 18, + "intelligence": 8, + "wisdom": 10, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+3" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales a blast of frost in a 30-foot cone. Each creature in the cone must make a {@dc 15} Constitution saving throw. On a failed save, the creature takes 27 ({@damage 6d8}) cold damage, and its speed is halved until the end of its next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Phase (2/Day)", + "body": [ + "The dragon becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the dragon has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Lunar Dragon-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Young Solar Dragon", + "source": "BAM", + "page": 53, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 15, + "constitution": 20, + "intelligence": 13, + "wisdom": 14, + "charisma": 12, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+9", + "wis": "+6", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The dragon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 7 ({@damage 2d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Photonic Breath {@recharge 5}", + "body": [ + "The dragon exhales a flashing mote of radiant energy that travels to a point the dragon can see within 120 feet of itself, then blossoms into a 20-foot-radius sphere centered on that point. Each creature in the sphere must make a {@dc 17} Constitution saving throw, taking 44 ({@damage 8d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Solar Dragon-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Zodar", + "source": "BAM", + "page": 64, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d8 + 128", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 30, + "dexterity": 10, + "constitution": 26, + "intelligence": 12, + "wisdom": 15, + "charisma": 18, + "passive": 12, + "saves": { + "con": "+13", + "int": "+6", + "wis": "+7", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "see Disembodied Voice below" + ], + "traits": [ + { + "title": "Disembodied Voice", + "body": [ + "Up to three times in its life, the zodar can cause a message of up to twenty-five words to issue from the air around it. It speaks only when it has something profoundly important to say, and the message can be understood by any creature that has an Intelligence score of 2 or higher." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the zodar fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Transport Inhibitor", + "body": [ + "The zodar can't be teleported or sent to any plane of existence against its will." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The zodar doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zodar makes two Crushing Fist attacks. Before or after these attacks, the zodar uses Forced Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crushing Fist", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}21 ({@damage 2d10 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forced Teleport", + "body": [ + "The zodar magically warps space around one creature it can see within 60 feet of itself. The target must make a {@dc 21} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) force damage, and the zodar teleports it, along with any equipment it's wearing or carrying, up to 60 feet to an unoccupied space that the zodar can see and that can support the target. On a successful save, the target takes half as much damage and isn't teleported." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Wish", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Wish", + "body": [ + "The zodar casts the {@spell wish} spell, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 17}). After casting this spell, the zodar turns to dust and is destroyed." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + { + "entry": "{@spell wish}", + "hidden": true + } + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "LoX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zodar-BAM", + "__dataclass__": "Monster" + }, + { + "name": "Abyssal Chicken", + "source": "BGDIA", + "page": 97, + "size_str": "Tiny", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(see bad flier below)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 14, + "constitution": 13, + "intelligence": 4, + "wisdom": 9, + "charisma": 5, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Bad Flier", + "body": [ + "The abyssal chicken falls at the end of a turn if it's airborne and the only thing holding it aloft is its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abyssal chicken makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Abyssal Chicken-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Amrik Vanthampur", + "source": "BGDIA", + "page": 30, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item leather armor|phb}, charisma modifier", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 18, + "constitution": 12, + "intelligence": 14, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Suave Defense", + "body": [ + "While Amrik is wearing light or no armor and wielding no shield, his AC includes his Charisma modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Amrik makes three dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Smoke Bomb (1/Day)", + "body": [ + "Amrik hurls a smoke bomb up to 20 feet away. The bomb explodes on impact, creating a cloud of black smoke that fills a 10-foot-radius sphere. The area within the cloud is heavily obscured. A strong wind disperses the cloud, which otherwise remains until the end of Amrik's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Amrik Vanthampur-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Arkhan the Cruel", + "source": "BGDIA", + "page": 111, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 23, + "note": "{@item obsidian flint dragon plate|bgdia}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 221, + "formula": "26d8 + 104", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 20, + "dexterity": 12, + "constitution": 18, + "intelligence": 10, + "wisdom": 10, + "charisma": 18, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft. (can see invisible creatures out to the same range)" + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Aura of Hate", + "body": [ + "While Arkhan isn't {@condition incapacitated}, he and all fiends and undead within 30 feet of him deal 4 extra damage whenever they hit with a melee weapon attack (already factored into Arkhan's attacks). This extra damage is of the same type as the weapon's damage type." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand of Vecna", + "body": [ + "The {@item Hand of Vecna} has 8 charges and regains {@dice 1d4 + 4} expended charges daily at dawn. Arkhan can cast the following spells from the hand by expending the specified number of charges (spell save {@dc 18}): {@spell finger of death} (5 charges), {@spell sleep} (1 charge), {@spell slow} (2 charges), and {@spell teleport} (3 charges)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Arkhan wields {@item Fane-Eater|bgdia} and wears a suit of {@item Obsidian Flint Dragon Plate|bgdia}. The armor gives Arkhan advantage on ability checks and saving throws made to avoid or end the {@condition grappled} condition on him." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Arkhan makes three weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fane-Eater (Battleaxe)", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}16 ({@damage 1d8 + 12}) slashing damage, or 17 ({@damage 1d10 + 12}) slashing damage when used with two hands, plus 9 ({@damage 2d8}) cold damage. If the target is a creature and Arkhan rolls a 20 on the attack roll, the creature takes an extra 9 ({@damage 2d8}) necrotic damage, and Arkhan regains an amount of hit points equal to the necrotic damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 10} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, plus 4 piercing damage and 9 ({@damage 2d8}) cold damage if the javelin was used to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Arkhan's spellcasting ability is Charisma (spell save {@dc 17}). He can cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell animate dead}", + "{@spell branding smite} (at 4th level)", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell geas}", + "{@spell raise dead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dragonborn", + "actions_note": "", + "mythic": null, + "key": "Arkhan the Cruel-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Bel", + "source": "BGDIA", + "page": 115, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 364, + "formula": "27d10 + 216", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 28, + "dexterity": 14, + "constitution": 26, + "intelligence": 25, + "wisdom": 19, + "charisma": 26, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+16", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Fear Aura", + "body": [ + "Any creature hostile to Bel that starts its turn within 20 feet of him must make a {@dc 23} Wisdom saving throw, unless Bel is {@condition incapacitated}. Unless the save succeeds, the creature is {@condition frightened} until the start of its next turn. If a creature's saving throw is successful, the creature is immune to Bel's Fear Aura for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Bel fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Bel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Bel's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bel makes three attacks: two with his greatsword and one with his tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}23 ({@damage 4d6 + 9}) slashing damage plus 21 ({@damage 6d6}) fire damage. If the target is a flammable object that is not being held or worn, it catches fire." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d10 + 9}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Constitution saving throw or be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Fireball", + "body": [ + "Bel casts {@spell fireball}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tactical Edge (Costs 2 Actions)", + "body": [ + "Roll a {@dice d6} for Bel. The number rolled on the die is subtracted from the next attack roll made against Bel or an ally of his choice within the next minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Ice Devil (Costs 3 Actions)", + "body": [ + "Bel magically summons an ice devil with an ice spear (as described in the ice devil's entry in the Monster Manual). The ice devil appears in an unoccupied space within 60 feet of Bel, acts as Bel's ally, and can summon other devils if it has such power. The ice devil remains until Bel dies or until he dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Bel's spellcasting ability is Charisma (spell save {@dc 23}). Bel can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell hold monster}", + "{@spell mirror image}", + "{@spell mislead}", + "{@spell raise dead}", + "{@spell teleport}", + "{@spell wall of fire}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell imprisonment}", + "{@spell meteor swarm}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Bel-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Black Gauntlet of Bane", + "source": "BGDIA", + "page": 235, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 11, + "constitution": 18, + "intelligence": 12, + "wisdom": 15, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Aura of Terror", + "body": [ + "When a hostile creature within 5 feet of the black gauntlet makes an attack roll or a saving throw, it has disadvantage on the roll. Creatures that are immune to the {@condition frightened} condition are immune to this trait." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tactical Discipline", + "body": [ + "The black gauntlet has advantage on all ability checks and saving throws made during combat." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The black gauntlet makes two attacks with its mace." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Guiding Bolt (1st-Level Spell; Requires a Spell Slot)", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one creature. {@h}14 ({@damage 4d6}) radiant damage, and the next attack roll made against the target before the end of the black gauntlet's next turn has advantage. If the black gauntlet casts this spell using a spell slot of 2nd level or higher, the damage increases by {@damage 1d6} for each slot level above 1st." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The black gauntlet is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell bless}", + "{@spell cure wounds}", + "{@spell guiding bolt} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell hold person}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell sending}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Black Gauntlet of Bane-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Bone Whelk", + "source": "BGDIA", + "page": 119, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 15, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 5, + "constitution": 11, + "intelligence": 6, + "wisdom": 9, + "charisma": 3, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Adhesive", + "body": [ + "The bone whelk can cause Medium or smaller objects to adhere to it. A Medium or smaller creature that touches the bone whelk is {@condition grappled} by it (escape {@dc 10})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Scream", + "body": [ + "When the bone whelk dies, it emits a blood-curdling shriek than can be heard out to a range of 120 feet. This shriek causes nonmagical, organic material within 10 feet of the bone whelk to rot. Each creature within 10 feet of the bone whelk when it dies takes 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The bone whelk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bone Whelk-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Crokek'toeck", + "source": "BGDIA", + "page": 231, + "size_str": "Gargantuan", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 28, + "dexterity": 10, + "constitution": 24, + "intelligence": 6, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "saves": { + "con": "+12", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Crokek'toeck can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Crokek'toeck has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Crokek'toeck's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Secure Memory", + "body": [ + "Crokek'toeck is immune to the waters of the River Styx as well as any effect that would steal or modify its memories or detect or read its thoughts." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "Crokek'toeck's long jump is up to 60 feet and its high jump is up to 30 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}44 ({@damage 10d6 + 9}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disgorge Allies {@recharge}", + "body": [ + "Crokek'toeck opens its mouth and disgorges {@dice 1d4} {@creature barlgura||barlguras}, {@dice 3d6} {@creature gnoll||gnolls} led by 1 {@creature gnoll fang of Yeenoghu}, {@dice 6d6} {@creature dretch||dretches}, or {@dice 1d3} {@creature vrock||vrocks}. Each creature it disgorges appears in an unoccupied space within 30 feet of Crokek'toeck's mouth, or the next closest unoccupied space." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Crokek'toeck-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Death's Head of Bhaal", + "source": "BGDIA", + "page": 233, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 20, + "constitution": 20, + "intelligence": 14, + "wisdom": 13, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Aura of Murder", + "body": [ + "As long as the death's head is not {@condition incapacitated}, hostile creatures within 5 feet of it gain vulnerability to piercing damage unless they have resistance or immunity to such damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The death's head has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The death's head uses Stunning Gaze and makes two dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Gaze", + "body": [ + "The death's head targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unstoppable (3/Day)", + "body": [ + "The death's head reduces the damage it takes from an attack to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Death's Head of Bhaal-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Duke Thalamra Vanthampur", + "source": "BGDIA", + "page": 38, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 10, + "constitution": 15, + "intelligence": 13, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft. (see devil's sight below)" + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "Thalamra has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devil's Sight", + "body": [ + "Thalamra can see normally in darkness, both magical and nonmagical, out to a distance of 120 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Thalamra uses eldritch blast twice or makes two unarmed strikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Blast (Cantrip)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}9 ({@damage 1d10 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Hellish Rebuke (1st-Level Spell; 2/Day)", + "body": [ + "When Thalamra is damaged by a creature within 60 feet of her that she can see, the creature that damaged her is engulfed in hellish flames and must make a {@dc 14} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Duke Thalamra Vanthampur-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Fiendish Flesh Golem", + "source": "BGDIA", + "page": 236, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 9, + "constitution": 20, + "intelligence": 7, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine or silvered", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Berserk", + "body": [ + "Whenever the golem starts its turn with 100 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points. If the golem's creator is within 60 feet of the berserk golem, the creator can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 100 hit points or fewer, the golem might go berserk again." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Absorption", + "body": [ + "Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fiendish Flesh Golem-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Fist of Bane", + "source": "BGDIA", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 11, + "constitution": 13, + "intelligence": 10, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Tactical Discipline", + "body": [ + "The fist of Bane has advantage on all ability checks and saving throws made during combat." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Fist of Bane-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Gideon Lightward", + "source": "BGDIA", + "page": 65, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 13, + "constitution": 18, + "intelligence": 10, + "wisdom": 18, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+7", + "wis": "+7" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "Gideon regains 10 hit points at the start of each of his turns. If he takes radiant damage, this trait doesn't function at the start of his next turn. Gideon is destroyed only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Gideon attacks twice with his fists." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Gaze", + "body": [ + "Gideon targets one creature he can see within 60 feet of him. The target must make a {@dc 15} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gideon Lightward-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Hellwasp", + "source": "BGDIA", + "page": 236, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "saves": { + "dex": "+5", + "wis": "+3" + }, + "dmg_vulnerabilities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Infernal", + "telepathy 300 ft. (with other hellwasps only)" + ], + "traits": [ + { + "title": "Magic Weapons", + "body": [ + "The hellwasp's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hellwasp makes two attacks: one with its sting and one with its sword talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 7 ({@damage 2d6}) fire damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is also {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sword Talons", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hellwasp-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Hollyphant", + "source": "BGDIA", + "page": 237, + "size_str": "Small", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 11, + "constitution": 12, + "intelligence": 16, + "wisdom": 19, + "charisma": 16, + "passive": 14, + "saves": { + "dex": "+3", + "con": "+4", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Celestial", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Aura of Invulnerability", + "body": [ + "An {@condition invisible} aura forms a 10-foot-radius sphere around the hollyphant for as long as it lives. Any spell of 5th level or lower cast from outside the barrier can't affect creatures or objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such spells. The hollyphant can use an action to suppress this trait until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The hollyphant's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tusks", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trumpet (3/Day)", + "body": [ + "The hollyphant blows air through its trunk, creating a trumpet sound that can be heard out to a range of 600 feet. The trumpet also creates a 30-foot cone of energy that has one of the following effects, chosen by the hollyphant:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Trumpet of Blasting", + "body": [ + "Each creature in the cone must make a {@dc 14} Constitution saving throw. On a failed save, a creature takes 17 ({@damage 5d6}) thunder damage and is {@condition deafened} for 1 minute. On a successful save, a creature takes half as much damage and isn't {@condition deafened}. Nonmagical objects in the cone that aren't being held or worn take 35 ({@damage 10d6}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trumpet of Sparkles", + "body": [ + "Creatures in the cone must make a {@dc 14} Constitution saving throw, taking 22 ({@damage 4d8 + 4}) radiant damage on a failed save, or half as much damage on a successful one. Evil creatures have disadvantage on the saving throw. Good creatures in the cone take no damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The hollyphant's innate spellcasting ability is Wisdom (spell save {@dc 15}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell protection from evil and good}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell heal}", + "{@spell raise dead}", + "{@spell shapechange} (into a golden-furred {@creature mammoth} with feathered wings and a flying speed of 120 ft.)", + "{@spell teleport} (with no chance of error)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hollyphant-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Iron Consul", + "source": "BGDIA", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 11, + "constitution": 16, + "intelligence": 12, + "wisdom": 15, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Tactical Discipline", + "body": [ + "The iron consul has advantage on all ability checks and saving throws made during combat." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The iron consul makes one attack with its spear and can use its Voice of Command ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage when used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Voice of Command", + "body": [ + "The iron consul selects up to two allies within 90 feet of it that can hear its commands. Each ally can immediately use its reaction to make one melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Iron Consul-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Kostchtchie", + "source": "BGDIA", + "page": 105, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 243, + "formula": "18d10 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 30, + "dexterity": 12, + "constitution": 27, + "intelligence": 18, + "wisdom": 22, + "charisma": 19, + "passive": 24, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+16", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Giant", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Kostchtchie fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Kostchtchie has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Kostchtchie makes two melee attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 5 ft., one creature. {@h}13 ({@damage 1d6 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Matalotok (Warhammer)", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage, or 21 ({@damage 2d10 + 10}) bludgeoning damage when used with two hands, and the weapon emits a burst of cold that deals 10 ({@damage 3d6}) cold damage to each creature within 30 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Kostchtchie makes one melee weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charge", + "body": [ + "Kostchtchie moves up to his speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Curse (Costs 2 Actions)", + "body": [ + "Kostchtchie curses one creature he can see within 60 feet of him. The cursed creature gains vulnerability to all damage dealt by Kostchtchie until the end of Kostchtchie's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Kostchtchie's innate spellcasting ability is Charisma (spell save {@dc 20}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell darkness}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel evil and good}", + "{@spell gate}", + "{@spell harm}", + "{@spell telekinesis}", + "{@spell teleport}", + "{@spell wind walk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Kostchtchie-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Krull", + "source": "BGDIA", + "page": 110, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 14, + "constitution": 15, + "intelligence": 12, + "wisdom": 20, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+8", + "cha": "+4" + }, + "languages": [ + "Aquan", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "Krull can hold his breath for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inescapable Destruction", + "body": [ + "Necrotic damage dealt by Krull's spells ignores resistance to necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Maul", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "Krull withdraws into his shell. Until he emerges as a bonus action, he has a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in his shell, Krull is {@condition prone}, his speed is 0 and can't increase, he has disadvantage on Dexterity saving throws, he can't take reactions, and the only action he can take is to emerge from his shell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Krull is a 14th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell mending}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell detect evil and good}", + "{@spell false life}", + "{@spell inflict wounds}", + "{@spell ray of sickness}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell gentle repose}", + "{@spell hold person}", + "{@spell ray of enfeeblement}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell magic circle}", + "{@spell speak with dead}", + "{@spell spirit guardians}", + "{@spell vampiric touch}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell blight}", + "{@spell death ward}", + "{@spell divination}", + "{@spell locate creature}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell antilife shell}", + "{@spell cloudkill}", + "{@spell contagion}", + "{@spell greater restoration}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell create undead}", + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell divine word}", + "{@spell regenerate}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "tortle", + "actions_note": "", + "mythic": null, + "key": "Krull-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Mahadi the Rakshasa", + "source": "BGDIA", + "page": 127, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "23d8 + 92", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 14, + "dexterity": 18, + "constitution": 18, + "intelligence": 14, + "wisdom": 18, + "charisma": 20, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+9", + "cha": "+10" + }, + "dmg_vulnerabilities": [ + { + "value": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all (can read only)", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Limited Magic Immunity", + "body": [ + "Mahadi can't be affected or detected by spells of 6th level or lower unless he wishes to be. He has advantage on saving throws against all other spells and magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Mahadi's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Mahadi makes four claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage, and the target is cursed if it's a creature. The curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a {@spell remove curse} spell or similar magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Erinyes (1/Day)", + "body": [ + "Mahadi summons Ilzabet, an erinyes bound to him by an infernal contract. The erinyes appears in an unoccupied space within 60 feet of him, acts as his ally, and can't summon other devils. The erinyes remains for 10 minutes or until Mahadi dismisses it as an action. If the erinyes dies, Mahadi loses this action option." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Mahadi's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 9} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell hellish rebuke}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell speak with dead}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell demiplane}", + "{@spell dominate person}", + "{@spell fly}", + "{@spell forcecage}", + "{@spell geas}", + "{@spell plane shift}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mahadi the Rakshasa-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Master of Souls", + "source": "BGDIA", + "page": 234, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 14, + "constitution": 17, + "intelligence": 19, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Grave Magic", + "body": [ + "When the master of souls cast a spell that deals damage, it can change the spell's damage type to necrotic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The master of souls attacks twice with its flail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silvered Skull Flail", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage plus 14 ({@damage 4d6}) necrotic damage, and the target has disadvantage on all saving throws until the end of the master of souls' next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chill Touch (Cantrip)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}13 ({@damage 2d8}) necrotic damage, and the target can't regain hit points until the start of the master of souls' next turn. If the target is undead, it has disadvantage on attack rolls against the master of souls for the same duration." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Sickness (1st-Level Spell; Requires a Spell Slot)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}9 ({@damage 2d8}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the end of the master of souls' next turn. If the master of souls casts this spell using a spell slot of 2nd level or higher, the damage increases by {@damage 1d8} for each slot level above 1st." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scorching Ray (2nd-Level Spell; Requires a Spell Slot)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target per ray (3 rays if a 2nd-level spell slot is used, 4 rays if a 3rd-level spell slot is used). {@h}7 ({@damage 2d6}) fire damage per ray." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The master of souls is a 5th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell detect magic}", + "{@spell ray of sickness} (see \"Actions\" below)", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell misty step}", + "{@spell scorching ray} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell animate dead}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Master of Souls-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Mortlock Vanthampur", + "source": "BGDIA", + "page": 26, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 10, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Indomitable (2/Day)", + "body": [ + "Mortlock can reroll a saving throw that he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Mortlock makes two attacks with his greatclub." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage, plus 5 ({@damage 2d4}) bludgeoning damage if Mortlock has taken any damage since his last turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Mortlock Vanthampur-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Necromite of Myrkul", + "source": "BGDIA", + "page": 234, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 13, + "constitution": 15, + "intelligence": 16, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "actions": [ + { + "title": "Skull Flail", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws of the Grave", + "body": [ + "{@atk rs} {@hit 5} to hit, range 90 ft., one target. {@h}8 ({@damage 2d4 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Necromite of Myrkul-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Night Blade", + "source": "BGDIA", + "page": 233, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 11, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60" + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Aura of Murder", + "body": [ + "As long as the night blade is not {@condition incapacitated}, hostile creatures within 5 feet of it gain vulnerability to piercing damage unless they have resistance or immunity to such damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Night Blade-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Nine-Fingers Keene", + "source": "BGDIA", + "page": 170, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 18, + "constitution": 14, + "intelligence": 13, + "wisdom": 17, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+4" + }, + "languages": [ + "Common", + "Thieves' cant" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of her turns in combat, Nine-Fingers can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger Thrower", + "body": [ + "Nine-Fingers adds double her proficiency bonus to the damage she deals on ranged attacks made with daggers (already factored into her attacks)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Nine-Fingers attacks three times with her daggers." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage, plus 6 piercing damage if it's a ranged attack." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "Nine-Fingers halves the damage that she takes from an attack that hits her. She must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Nine-Fingers Keene-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Reaper of Bhaal", + "source": "BGDIA", + "page": 233, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 20, + "constitution": 13, + "intelligence": 15, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Aura of Murder", + "body": [ + "As long as the reaper is not {@condition incapacitated}, hostile creatures within 5 feet of it gain vulnerability to piercing damage unless they have resistance or immunity to such damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The reaper makes two dagger attacks and uses Shroud Self." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shroud Self", + "body": [ + "The reaper magically turns {@condition invisible} until the start of its next turn. This invisibility ends if the reaper makes an attack roll, makes a damage roll, or casts a spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The reaper's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell sanctuary}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Reaper of Bhaal-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Rilsa Rael", + "source": "BGDIA", + "page": 199, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 18, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+2" + }, + "languages": [ + "Common", + "Thieves' cant" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of her turns in combat, Rilsa can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Focus", + "body": [ + "If Rilsa damages a creature with a weapon attack, she gains advantage on attack rolls against that target until the end of her next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tactical Leadership", + "body": [ + "As a bonus action, Rilsa chooses one creature she can see within 30 feet of her. The creature doesn't provoke opportunity attacks until the end of its next turn, provided it can hear Rilsa's commands." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Rilsa makes three weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Rilsa Rael-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Skull Lasher of Myrkul", + "source": "BGDIA", + "page": 234, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 14, + "constitution": 15, + "intelligence": 16, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3" + }, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skull lasher makes two attacks with its flail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Iron Skull Flail", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage plus 7 ({@damage 2d6}) necrotic damage, and the target has disadvantage on all saving throws until the end of the skull lasher's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Sickness (1st-Level Spell; Requires a Spell Slot)", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}9 ({@damage 2d8}) poison damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the end of the skull lasher's next turn. If the skull lasher casts this spell using a spell slot of 2nd level or higher, the damage increases by {@damage 1d8} for each slot level above 1st." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The skull lasher is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell protection from evil and good}", + "{@spell ray of sickness} (see \"Actions\" below)", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell darkness}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Skull Lasher of Myrkul-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Smiler the Defiler", + "source": "BGDIA", + "page": 133, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item +2 leather armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 20, + "constitution": 16, + "intelligence": 18, + "wisdom": 11, + "charisma": 18, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Step {@recharge 4}", + "body": [ + "As a bonus action, Smiler can teleport up to 30 feet to an unoccupied space that he can see or to the empty seat of his infernal war machine." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Smiler has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Equipment", + "body": [ + "Smiler wears +2 leather armor. He carries seven soul coins in a bag and a +1 shortsword" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Smiler makes two weapon attacks. He can cast a spell in place of one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Shortsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Smiler's innate spellcasting ability is Charisma (spell save {@dc 15}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell confusion}", + "{@spell enthrall}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell hallucinatory terrain}", + "{@spell Otto's irresistible dance}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Smiler the Defiler-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Thavius Kreeg", + "source": "BGDIA", + "page": 42, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 10, + "constitution": 11, + "intelligence": 15, + "wisdom": 18, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Shadow of Guilt", + "body": [ + "Thavius's shadow is that of a pudgy, horned devil with small wings." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Thavius Kreeg-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Thurstwell Vanthampur", + "source": "BGDIA", + "page": 34, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "2d8 - 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 7, + "dexterity": 8, + "constitution": 6, + "intelligence": 15, + "wisdom": 17, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "Thurstwell has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Sacred Flame (Cantrip)", + "body": [ + "Flame-like radiance descends on one creature Thurstwell can see within 60 feet of him. The target must succeed on a {@dc 13} Dexterity saving throw or take 4 ({@damage 1d8}) radiant damage, gaining no benefit from cover." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Thurstwell is a 2nd-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 13}). He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell sacred flame} (see \"Actions\" below)", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Thurstwell Vanthampur-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Torogar Steelfist", + "source": "BGDIA", + "page": 112, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 25, + "dexterity": 17, + "constitution": 20, + "intelligence": 8, + "wisdom": 9, + "charisma": 16, + "passive": 9, + "saves": { + "str": "+11", + "con": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Goring Rush", + "body": [ + "Immediately after using the Dash action, Torogar can make one melee attack with his horns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Labyrinthine Recall", + "body": [ + "Torogar can perfectly recall any path he has traveled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rage (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, Torogar can enter a rage that lasts for 1 minute. The rage ends early if Torogar is knocked {@condition unconscious} or if his turn ends and he hasn't attacked a hostile creature or taken damage since his last turn. While raging, Torogar gains the following benefits:", + "He has advantage on Strength checks and Strength saving throws.", + "He deals an extra 3 damage when he hits a target with a melee weapon attack.", + "He has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Torogar wears {@item gauntlets of flaming fury|bgdia} and a {@item belt of fire giant strength}. Without the belt, his Strength is 21. He also carries a {@item soul coin|bgdia}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Torogar makes three attacks: two with his scimitars and one with his horns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage, or 17 ({@damage 2d6 + 10}) slashing damage while raging, plus 3 ({@damage 1d6}) fire damage from the gauntlets of flaming fury." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horns", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage, or 19 ({@damage 2d8 + 10}) piercing damage while raging." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Torogar Steelfist-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Ulder Ravengard", + "source": "BGDIA", + "page": 70, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 17, + "dexterity": 14, + "constitution": 16, + "intelligence": 11, + "wisdom": 10, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+3" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ulder makes three melee attacks, only one of which can be with his shield." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and Ulder pushes the target 5 feet away from him. Ulder then enters the space vacated by the target. If the target is pushed to within 5 feet of a creature friendly to Ulder, the target provokes an opportunity attack from that creature." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Guardian Strike", + "body": [ + "If an enemy within 5 feet of Ulder attacks a target other than him, Ulder can make a melee attack against that enemy." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Ulder Ravengard-BGDIA", + "__dataclass__": "Monster" + }, + { + "name": "Animated Broom", + "source": "CM", + "page": 20, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 17, + "constitution": 10, + "intelligence": 1, + "wisdom": 5, + "charisma": 1, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "False Object", + "body": [ + "If the broom is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the broom move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the broom is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The broom doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The broom makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Broomstick", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Broom-CM", + "__dataclass__": "Monster" + }, + { + "name": "Animated Chained Library", + "source": "CM", + "page": 24, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 8, + "constitution": 14, + "intelligence": 1, + "wisdom": 5, + "charisma": 1, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "False Object", + "body": [ + "If the library is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the library move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the library is animate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The library makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chained Book", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 12})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Chained Library-CM", + "__dataclass__": "Monster" + }, + { + "name": "Arrant Quill", + "source": "CM", + "page": 157, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 10, + "dexterity": 18, + "constitution": 16, + "intelligence": 16, + "wisdom": 15, + "charisma": 20, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+9" + }, + "languages": [ + "Common", + "Draconic", + "Elvish", + "Undercommon" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Quill makes two attacks with his dagger and uses Supreme Mockery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quill's Fable {@recharge}", + "body": [ + "Quill utters a short fable while targeting up to five creatures within 30 feet of him that he can see. Each target that can hear Quill's magical fable must make a {@dc 17} Wisdom saving throw, taking 36 ({@damage 8d8}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Supreme Mockery", + "body": [ + "Quill hurls a string of insults laced with enchantments at a creature he can see within 60 feet of him. If the creature can hear Quill (though it need not understand him), it must succeed on a {@dc 17} Wisdom saving throw or take 66 ({@damage 12d10}) psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Quill casts one of the following spells using Charisma as the spellcasting ability (save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell hold monster}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell mind blank}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Arrant Quill-CM", + "__dataclass__": "Monster" + }, + { + "name": "Bak Mei", + "source": "CM", + "page": 168, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 10, + "dexterity": 18, + "constitution": 18, + "intelligence": 13, + "wisdom": 17, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+5", + "dex": "+9", + "con": "+9", + "int": "+6", + "wis": "+8", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Auran", + "Common" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Bak Mei fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Bak Mei carries a {@item staff of striking} with 10 charges." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "While Bak Mei is wearing no armor and wielding no shield, his AC includes his Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bak Mei attacks three times: twice with Thunder Strike and once with his staff of striking." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunder Strike", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) thunder damage, and if the target is a creature, it must succeed on a {@dc 17} Constitution saving throw or be {@condition deafened} and {@condition stunned} until the start of Bak Mei's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of Striking", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage when used with two hands, and Bak Mei can expend up to 3 of the staff's charges. For each expended charge, the target takes an extra {@damage 1d6} force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heal Self (Recharges after a Long Rest)", + "body": [ + "Bak Mei regains {@dice 2d8 + 4} hit points, and all levels of {@condition exhaustion} end on him." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "Bak Mei takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, Bak Mei deflects the missile. The damage he takes from the attack is reduced by {@dice 1d10 + 12}. If the damage is reduced to 0, Bak Mei catches the missile if it's small enough to hold in one hand and Bak Mei has a hand free." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Crane Dance", + "body": [ + "Bak Mei moves up to 20 feet. This movement does not provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunder Strike (Costs 2 Actions)", + "body": [ + "Bak Mei uses Thunder Strike." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Bak Mei-CM", + "__dataclass__": "Monster" + }, + { + "name": "Canopic Golem", + "source": "CM", + "page": 179, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 252, + "formula": "24d10 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 20, + "dexterity": 10, + "constitution": 20, + "intelligence": 7, + "wisdom": 11, + "charisma": 1, + "passive": 10, + "saves": { + "int": "+3", + "wis": "+5", + "cha": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Limited Spell Immunity", + "body": [ + "The golem automatically succeeds on saving throws against spells of 7th level or lower, and the attack rolls of such spells always miss it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The golem doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}27 ({@damage 4d10 + 5}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crystal Dart", + "body": [ + "{@atk rw} {@hit 10} to hit, range 120 ft., one target. {@h}14 ({@damage 2d8 + 5}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Deflection", + "body": [ + "In response to a spell attack missing the golem, it causes that spell to hit another creature within 120 feet of it that it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Canopic Golem-CM", + "__dataclass__": "Monster" + }, + { + "name": "Cloud Giant Ghost", + "source": "CM", + "page": 146, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 27, + "dexterity": 11, + "constitution": 10, + "intelligence": 12, + "wisdom": 16, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Ethereal Sight", + "body": [ + "The ghost can see 120 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The ghost regains 10 hit points at the start of its turn. If the ghost takes radiant damage or damage from a magic weapon, this trait doesn't function at the start of the ghost's next turn. The ghost dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ghost makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Weapon", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wind Howl {@recharge}", + "body": [ + "The ghost emits a dreadful howl that summons a cold, biting wind. This wind engulfs up to three creatures of the ghost's choice that it can see within 60 feet of it. Each target is pulled up to 20 feet toward the ghost and must make a {@dc 15} Constitution saving throw, taking 16 ({@damage 3d10}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The ghost casts one of the following spells, using Charisma as the spellcasting ability and requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fog cloud}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell control weather}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cloud Giant Ghost-CM", + "__dataclass__": "Monster" + }, + { + "name": "Constructed Commoner", + "source": "CM", + "page": 149, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 6, + "formula": "1d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 10, + "constitution": 15, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The commoner doesn't require air, food, drink, or sleep, and it gains no benefit from finishing a short or long rest. When it drops to 0 hit points, it becomes a lifeless object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Constructed Commoner-CM", + "__dataclass__": "Monster" + }, + { + "name": "Corrupted Avatar of Lurue", + "source": "CM", + "page": 123, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 11, + "wisdom": 17, + "charisma": 16, + "passive": 13, + "saves": { + "int": "+3", + "wis": "+6", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Elvish", + "Sylvan", + "telepathy 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The avatar makes two attacks: one with its hooves and one with its horn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}32 ({@damage 8d6 + 4}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horn", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}32 ({@damage 8d6 + 4}) necrotic damage. If the target is a humanoid, it must succeed on a {@dc 13} Wisdom saving throw or be transformed into a wolf under the avatar's control. This transformation lasts for 1 hour, or until the target drops to 0 hit points or dies. The target's game statistics are replaced by the wolf's statistics, but it retains its hit points. The target is limited in the actions it can perform by the nature of its wolf form, and it can't speak, cast spells, or take any other action that requires hands or speech. The target's gear melds into the new form, and it can't activate, use, wield, or otherwise benefit from any of its equipment." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Corrupted Avatar of Lurue-CM", + "__dataclass__": "Monster" + }, + { + "name": "Faerl", + "source": "CM", + "page": 104, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 11, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Faerl has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Faerl adds 2 to his AC against one melee attack that would hit it. To do so, he must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Faerl-CM", + "__dataclass__": "Monster" + }, + { + "name": "Fungal Servant", + "source": "CM", + "page": 217, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 11, + "wisdom": 18, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+5", + "wis": "+9", + "cha": "+8" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "The languages it knew in life" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The fungal servant has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "A destroyed fungal servant gains a new body in 24 hours if its heart is intact, regaining all its hit points and becoming active again. The new body appears within 5 feet of the fungal servant's heart." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fungal servant can use its Dreadful Glare and makes one attack with its rotting fist." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotting Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to spores. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Glare", + "body": [ + "The fungal servant targets one creature it can see within 60 feet of it. If the target can see the fungal servant, it must succeed on a {@dc 16} Wisdom saving throw against this magic or become {@condition frightened} until the end of the fungal servant's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all fungal servants for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The fungal servant makes one attack with its rotting fist or uses its Dreadful Glare." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Spores", + "body": [ + "Blinding spores swirls magically around the fungal servant. Each creature within 5 feet of the fungal servant must succeed on a {@dc 16} Constitution saving throw or be {@condition blinded} until the end of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blasphemous Word (Costs 2 Actions)", + "body": [ + "The fungal servant utters a blasphemous word. Each non-undead creature within 10 feet of the fungal servant that can hear the magical utterance must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the end of the fungal servant's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Channel Negative Energy (Costs 2 Actions)", + "body": [ + "The fungal servant magically unleashes negative energy. Creatures within 60 feet of the fungal servant, including ones behind barriers and around corners, can't regain hit points until the end of the fungal servant's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind of Spores (Costs 2 Actions)", + "body": [ + "The fungal servant magically transforms into a whirlwind of spores, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the fungal servant is immune to all damage, and it can't be {@condition grappled}, {@condition petrified}, knocked {@condition prone}, {@condition restrained}, or {@condition stunned}. Equipment worn or carried by the fungal servant remain in its possession." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The fungal servant is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The fungal servant has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell guardian of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell insect plague}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell harm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fungal Servant-CM", + "__dataclass__": "Monster" + }, + { + "name": "Gingwatzim", + "source": "CM", + "page": 27, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d6 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover) in its true form only", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 15, + "constitution": 16, + "intelligence": 4, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Alternate Forms", + "body": [ + "The gingwatzim has two alternate forms, both of which are chosen by its creator when the gingwatzim comes into being. One form is an exact duplicate of a Tiny nonmagical object (such as a book, dagger, or gemstone) that its creator is carrying or wearing when the gingwatzim is conjured. The other form can be any Tiny beast. Once these alternate forms are chosen, they can't be changed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Energy Drain (True Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}16 ({@damage 4d6 + 2}) necrotic damage, and the target must succeed on a {@dc 12} Constitution saving throw or gain 1 level of {@condition exhaustion}. When the target finishes a short or long rest, the target loses every level of {@condition exhaustion} gained from this attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The gingwatzim changes from its true form\u2014a 3-foot-diameter sphere of luminous ectoplasm\u2014into one of its two alternate forms, or from one of those forms back into its true form. In object form, it can't move or make attacks but otherwise retains its statistics, and it is indistinguishable from the thing it is imitating. In beast form, it retains its hit points but otherwise uses the stat block of the beast it is imitating. When it dies, the gingwatzim reverts to its true form and then vanishes." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Gingwatzim-CM", + "__dataclass__": "Monster" + }, + { + "name": "Grippli Warrior", + "source": "CM", + "page": 99, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Grippli plus one other language (usually Common, Draconic, or Primordial)" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The grippli can hold its breath for 20 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The grippli can leap 30 feet horizontally or 20 feet vertically from a standing position." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The grippli makes one attack with its tongue. If this attack hits, the grippli can make a melee attack using its trident against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the grippli can't grab another creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack, plus 2 ({@damage 1d4}) piercing damage if the grippli had advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 2 ({@damage 1d4}) piercing damage if the grippli had advantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "grippli", + "actions_note": "", + "mythic": null, + "key": "Grippli Warrior-CM", + "__dataclass__": "Monster" + }, + { + "name": "Immortal Lotus Monk", + "source": "CM", + "page": 165, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 11, + "wisdom": 14, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the monk is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The monk makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) force damage, and if the target is a creature, it must succeed on a {@dc 14} Dexterity saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 6} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Immortal Lotus Monk-CM", + "__dataclass__": "Monster" + }, + { + "name": "Jade Tigress", + "source": "CM", + "page": 166, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 11, + "wisdom": 16, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+5" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While Jade Tigress is wearing no armor and wielding no shield, her AC includes her Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jade Tigress makes three attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Strike", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) force damage, and if the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of Jade Tigress's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisoned Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 7 ({@damage 3d4}) poison damage, and the target must succeed on a {@dc 15} Constitution saving throw or gain 1 level of {@condition exhaustion}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heal Self (Recharges after a Long Rest)", + "body": [ + "Jade Tigress regains {@dice 2d8 + 2} hit points, and all levels of {@condition exhaustion} end on her." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "Jade Tigress takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, Jade Tigress deflects the missile. The damage she takes from the attack is reduced by {@dice 1d10 + 9}. If the damage is reduced to 0, Jade Tigress catches the missile if it's small enough to hold in one hand and Jade Tigress has a hand free." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Jade Tigress-CM", + "__dataclass__": "Monster" + }, + { + "name": "K'Tulah", + "source": "CM", + "page": 64, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Druidic" + ], + "traits": [ + { + "title": "Feline Agility", + "body": [ + "When K'Tulah moves on her turn in combat, she can double her speed until the end of the turn. Once she uses this ability, K'Tulah can't use it again until she moves 0 feet on one of her turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, 4 ({@damage 1d8}) bludgeoning damage if wielded with two hands, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "K'Tulah is a 4th-level spellcaster. K'Tulah's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). K'Tulah has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "tabaxi", + "actions_note": "", + "mythic": null, + "key": "K'Tulah-CM", + "__dataclass__": "Monster" + }, + { + "name": "Kiddywidget", + "source": "CM", + "page": 136, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 6, + "dexterity": 14, + "constitution": 18, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60" + ], + "languages": [ + "Skitterwidget" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The kiddywidget doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kiddywidget makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a creature, it is {@condition grappled} by the kiddywidget (escape {@dc 8})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 2 ({@damage 1d4}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kiddywidget-CM", + "__dataclass__": "Monster" + }, + { + "name": "Lichen Lich", + "source": "CM", + "page": 223, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 11, + "dexterity": 16, + "constitution": 16, + "intelligence": 14, + "wisdom": 20, + "charisma": 16, + "passive": 21, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "int": "+8", + "wis": "+11", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Druidic", + "Sylvan" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the lich fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If it has a phylactery, a destroyed lich gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lich makes four attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Touch", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}17 ({@damage 5d6}) poison damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wither", + "body": [ + "{@atk rs} {@hit 9} to hit, range 60 ft., one target. {@h}14 ({@damage 4d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Storm (7th-Level Spell; 1/Day)", + "body": [ + "The lich fills up to ten 10-foot cubes with fire. Every cube must be within 150 feet of the lich and occupy a space the lich can see, and each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a {@dc 19} Dexterity saving throw, taking 38 ({@damage 7d10}) fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried. If the lich chooses, plant life in the area is unaffected by the spell." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The lich makes an attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Prick (Cost 2 Actions)", + "body": [ + "The lich targets one {@condition poisoned} creature it can see within 30 feet of it. The target must succeed on a {@dc 19} Constitution saving throw or fall {@condition unconscious} until the {@condition poisoned} condition ends on it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sap Life (Costs 2 Actions)", + "body": [ + "The lich targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 19} Constitution saving throw or take 11 ({@damage 2d10}) necrotic damage. The lich regains a number of hit points equal to the amount of damage that the creature takes." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The lich casts one of the following spells using Wisdom as the spellcasting ability (save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell pass without trace}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell antilife shell}", + "{@spell dispel magic}", + "{@spell speak with plants}", + "{@spell transport via plants}", + { + "entry": "{@spell fire storm}", + "hidden": true + } + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lichen Lich-CM", + "__dataclass__": "Monster" + }, + { + "name": "Lightning Golem", + "source": "CM", + "page": 129, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 9, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Berserk", + "body": [ + "Whenever the golem starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points.", + "The golem's creator, if within 60 feet of the berserk golem, can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 40 hit points or fewer, the golem might go berserk again." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Absorption", + "body": [ + "Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lightning Golem-CM", + "__dataclass__": "Monster" + }, + { + "name": "Master Sage", + "source": "CM", + "page": 9, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 54, + "formula": "12d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 8, + "dexterity": 10, + "constitution": 10, + "intelligence": 20, + "wisdom": 18, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any five languages" + ], + "actions": [ + { + "title": "Shocking Grasp (Cantrip)", + "body": [ + "{@atk ms} {@hit 8} to hit (with advantage if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}13 ({@damage 3d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fireball (3rd-Level Spell; 3/Day)", + "body": [ + "The sage creates a fiery explosion centered on a point it can see within 150 feet of it. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 14} Dexterity saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shield (1st-Level Spell; 3/Day)", + "body": [ + "When the sage is hit by an attack or targeted by a {@spell magic missile} spell, it calls forth an {@condition invisible} barrier of magical force that protects it. Until the start of its next turn, the sage has a +5 bonus to AC, including against the triggering attack, and it takes no damage from magic missile." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The sage casts one of the following spells, using Intelligence as the spellcasting ability (save {@dc 14}, {@hit 6} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell prestidigitation}", + { + "entry": "{@spell shocking grasp}", + "hidden": true + } + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell dispel magic}", + { + "entry": "{@spell fireball}", + "hidden": true + }, + "{@spell identify}", + "{@spell levitate}", + "{@spell locate object}", + { + "entry": "{@spell shield}", + "hidden": true + }, + "{@spell Tenser's Floating Disk}", + "{@spell unseen servant}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell contact other plane}", + "{@spell Drawmij's instant summons}", + "{@spell legend lore}", + "{@spell locate creature}", + "{@spell planar binding}", + "{@spell polymorph}", + "{@spell protection from evil and good}", + "{@spell scrying}", + "{@spell sending}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Master Sage-CM", + "__dataclass__": "Monster" + }, + { + "name": "Miirym", + "source": "CM", + "page": 16, + "size_str": "Large", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 262, + "formula": "25d10 + 125", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 17, + "dexterity": 10, + "constitution": 20, + "intelligence": 18, + "wisdom": 15, + "charisma": 23, + "passive": 26, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+12", + "int": "+11", + "wis": "+9", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft.; see also \"x-ray vision\" below" + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Bound to Candlekeep", + "body": [ + "Miirym can't leave Candlekeep and is immune to any effect that would place her in a location outside it, including an extradimensional space. If she dies, Miirym regains her form and all her hit points after {@dice 1d10} days, reappearing in the location where she died or in the nearest unoccupied space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Miirym regains 40 hit points at the start of her turn. If Miirym takes damage from a magic weapon or a spell, this trait doesn't function at the start of Miirym's next turn. Miirym dies only if she starts her turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "Miirym can move through other creatures and objects as if they were {@quickref difficult terrain||3}. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Miirym fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "X-Ray Vision", + "body": [ + "Miirym can see through solid matter out to a range of 60 feet. To her, opaque creatures, objects, and obstacles within that distance appear transparent and don't prevent light from passing through them. This vision can penetrate 5 feet of stone, 3 inches of common metal, and up to 10 feet of wood or dirt. Thicker substances block this vision, as does a thin sheet of lead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}34 ({@damage 9d6 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "Miirym uses one of the following breath weapons:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath", + "body": [ + "Miirym exhales an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 21} Constitution saving throw, taking 67 ({@damage 15d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Breath", + "body": [ + "Miirym exhales a bolt of necrotic energy in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 21} Dexterity saving throw, taking 82 ({@damage 15d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Breath", + "body": [ + "Miirym exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Miirym's choice that is within 120 feet of her and aware of her must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Miirym's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Bite", + "body": [ + "Miirym makes a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport (Costs 2 Actions)", + "body": [ + "Miirym magically teleports up to 120 feet to an unoccupied space she can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Miirym casts one of the following spells, using Charisma as the spellcasting ability (save {@dc 21}) and requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell locate creature}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dispel evil and good}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Miirym-CM", + "__dataclass__": "Monster" + }, + { + "name": "Mimic Chair", + "source": "CM", + "page": 22, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 5, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Adhesive (Object Form Only)", + "body": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 10}). Ability checks made to escape this grapple have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance (Object Form Only)", + "body": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grappler", + "body": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Mimic Chair-CM", + "__dataclass__": "Monster" + }, + { + "name": "Nintra Siotta", + "source": "CM", + "page": 197, + "size_str": "Large", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 306, + "formula": "36d10 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 16, + "dexterity": 24, + "constitution": 16, + "intelligence": 17, + "wisdom": 15, + "charisma": 24, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "dex": "+12", + "wis": "+7" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Nintra fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Nintra makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d4 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shard of Shadow", + "body": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}10 ({@damage 1d6 + 7}) necrotic damage, and if the target is a creature, it must succeed on a {@dc 20} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Storm of Shattered Glass {@recharge}", + "body": [ + "Nintra targets a point she can see within 60 feet of her and creates a 20-foot-radius sphere of swirling glass shards centered on that point. Each creature in the sphere must make a {@dc 20} Dexterity saving throw, taking 28 ({@damage 8d6}) slashing damage on a failed save, or half as much damage on a successful save. If Nintra is in the sphere, the shards deal no damage to her." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Nintra makes one attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Step", + "body": [ + "Nintra teleports to an unoccupied space she can see within 30 feet of her." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Strikes (Costs 2 Actions)", + "body": [ + "Provided she is in bright or dim light, Nintra causes her shadow to attack a creature within 10 feet of her. Her shadow makes two claw attacks, each attack identical to Nintra's claw attack except that it deals psychic damage instead of piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Nintra casts one of the following spells, using Charisma as the spellcasting ability (save {@dc 20}) and requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell mirror image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nintra Siotta-CM", + "__dataclass__": "Monster" + }, + { + "name": "Parasite-infested Behir", + "source": "CM", + "page": 220, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 23, + "dexterity": 16, + "constitution": 18, + "intelligence": 7, + "wisdom": 14, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 90 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The behir makes two attacks: one with its bite and one to constrict." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one Large or smaller creature. {@h}17 ({@damage 2d10 + 6}) bludgeoning damage plus 17 ({@damage 2d10 + 6}) slashing damage. The target is {@condition grappled} (escape {@dc 16}) if the behir isn't already constricting a creature, and the target is {@condition restrained} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the behir, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.", + "Any creature swallowed by a parasite-infested behir must succeed on a {@dc 19} Constitution saving throw at the start of each of the behir's turns or be feasted upon by blood parasites, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful save. This damage is in addition to the damage caused by the behir's digestive acids.", + "If the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a {@dc 14} Constitution saving throw at the end of that turn or regurgitate the creature, which falls {@condition prone} in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Parasite-infested Behir-CM", + "__dataclass__": "Monster" + }, + { + "name": "Ram Sugar", + "source": "CM", + "page": 132, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "Ram Sugar has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ram Sugar makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon (Recharges after a Short or Long Rest)", + "body": [ + "Ram Sugar exhales fire in a 30-foot-long line that is 5 feet wide. Any creature in the line must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Ram Sugar is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). Ram Sugar has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dragonborn", + "actions_note": "", + "mythic": null, + "key": "Ram Sugar-CM", + "__dataclass__": "Monster" + }, + { + "name": "Sage", + "source": "CM", + "page": 9, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 8, + "dexterity": 10, + "constitution": 10, + "intelligence": 18, + "wisdom": 15, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any four languages" + ], + "actions": [ + { + "title": "Shocking Grasp (Cantrip)", + "body": [ + "{@atk ms} {@hit 6} to hit (with advantage if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}9 ({@damage 2d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shield (1st-Level Spell; 3/Day)", + "body": [ + "When the sage is hit by an attack or targeted by a {@spell magic missile} spell, it calls forth an {@condition invisible} barrier of magical force that protects it. Until the start of its next turn, the sage has a +5 bonus to AC, including against the triggering attack, and it takes no damage from magic missile." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The sage casts one of the following spells, using Intelligence as the spellcasting ability (save {@dc 14}, {@hit 6} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}", + { + "entry": "{@spell shocking grasp}", + "hidden": true + } + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell identify}", + { + "entry": "{@spell shield}", + "hidden": true + } + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell levitate}", + "{@spell locate object}", + "{@spell see invisibility}", + "{@spell sending}", + "{@spell tongues}", + "{@spell unseen servant}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Sage-CM", + "__dataclass__": "Monster" + }, + { + "name": "Sapphire Sentinel", + "source": "CM", + "page": 201, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 22, + "dexterity": 9, + "constitution": 20, + "intelligence": 3, + "wisdom": 11, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slow {@recharge 5}", + "body": [ + "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a {@dc 17} Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapphire", + "body": [ + "The sapphire has 3 charges. As an action, the golem can expend 1 charge to cast {@spell dispel magic} (as a 9th-level spell) from the sapphire using Constitution as its spellcasting ability. The sapphire ceases to glow if all its charges are expended, but it regains {@dice 1d3} expended charges daily at dawn and glows again once it has 1 or more charges." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sapphire Sentinel-CM", + "__dataclass__": "Monster" + }, + { + "name": "Shemshime", + "source": "CM", + "page": 69, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 6, + "dexterity": 17, + "constitution": 10, + "intelligence": 17, + "wisdom": 14, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Crushing End", + "body": [ + "If damage reduces Shemshime to 0 hit points, Shemshime instead drops to 1 hit point unless the damage is the result of Shemshime being crushed by an object weighing at least 1,000 pounds." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "Shemshime can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Maddening Touch", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whispers of Violence", + "body": [ + "Shemshime chooses up to two creatures it can see within 60 feet of it. Each target must succeed on a {@dc 13} Wisdom saving throw, or that target takes 7 ({@damage 1d8 + 3}) psychic damage and must use its reaction to make a melee weapon attack against one creature it can reach (Shemshime's choice) that Shemshime can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Howling Babble {@recharge}", + "body": [ + "Shemshime targets one creature it can see within 30 feet of it. The creature must make a {@dc 13} Wisdom saving throw. On a failed save, it takes 21 ({@damage 4d8 + 3}) psychic damage and is {@condition stunned} until the end of its next turn. On a successful save, it takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shemshime-CM", + "__dataclass__": "Monster" + }, + { + "name": "Skitterwidget", + "source": "CM", + "page": 136, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 14, + "constitution": 18, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Skitterwidget" + ], + "traits": [ + { + "title": "Lightning Absorption", + "body": [ + "Whenever the skitterwidget is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The skitterwidget doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skitterwidget makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it is {@condition grappled} by the skitterwidget (escape {@dc 13})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) lightning damage, and if the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Good Parent", + "body": [ + "The skitterwidget imposes disadvantage on one attack roll made against a kiddywidget it can see within 5 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skitterwidget-CM", + "__dataclass__": "Monster" + }, + { + "name": "Steel Crane", + "source": "CM", + "page": 164, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "9d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 13, + "dexterity": 18, + "constitution": 18, + "intelligence": 13, + "wisdom": 17, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+4" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While Steel Crane is wearing no armor and wielding no shield, his AC includes his Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Steel Crane makes three attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Strike", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage, and if the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the start of Steel Crane's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whip", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage or, if the target is a creature, Steel Crane can grapple the target instead (escape {@dc 15}). Steel Crane can't make attacks with the whip while using it to grapple a creature. Anytime on his turn, he can release a creature {@condition grappled} by the whip (no action required)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heal Self (Recharges after a Long Rest)", + "body": [ + "Steel Crane regains {@dice 2d8 + 4} hit points, and all levels of {@condition exhaustion} end on him." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, Steel Crane deflects the missile. The damage he takes from the attack is reduced by {@dice 1d10 + 10}. If the damage is reduced to 0, Steel Crane catches the missile if it's small enough to hold in one hand and Steel Crane has a hand free." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slow Descent (3/Day)", + "body": [ + "When Steel Crane falls, he can slow his descent, taking no damage from the fall." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Steel Crane-CM", + "__dataclass__": "Monster" + }, + { + "name": "Storm Giant Skeleton", + "source": "CM", + "page": 208, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "armor scraps", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 204, + "formula": "24d12 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 29, + "dexterity": 14, + "constitution": 15, + "intelligence": 3, + "wisdom": 8, + "charisma": 1, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+14", + "con": "+7" + }, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two attacks with its greatsword or hurls two rocks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}30 ({@damage 6d6 + 9}) slashing damage plus 18 ({@damage 4d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 14} to hit, reach 60/240 ft., one target. {@h}35 ({@damage 4d12 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike {@recharge 5}", + "body": [ + "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a {@dc 15} Dexterity saving throw, taking 54 ({@damage 12d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Storm Giant Skeleton-CM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Animated Books", + "source": "CM", + "page": 19, + "size_str": "Medium", + "maintype": "swarm of Tiny constructs", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 13, + "constitution": 12, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "False Objects", + "body": [ + "If the swarm is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the swarm move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the swarm is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a 1-foot-tall, 8-inch-wide, 2-inch-thick object. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Book Club", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage, or 3 ({@damage 1d4 + 1}) bludgeoning damage if the swarm has half its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Animated Books-CM", + "__dataclass__": "Monster" + }, + { + "name": "Valin Sarnaster", + "source": "CM", + "page": 182, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 11, + "wisdom": 18, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+5", + "wis": "+9", + "cha": "+8" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "The languages it knew in life" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "Valin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "While her heart remains in Alessia's body, Valin re-forms inside her sarcophagus, regaining all her hit points and becoming active again." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Valin can use her Dreadful Glare and makes one attack with her rotting fist." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotting Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Glare", + "body": [ + "Valin targets one creature she can see within 60 feet of her. If the target can see Valin, it must succeed on a {@dc 16} Wisdom saving throw against this magic or become {@condition frightened} until the end of Valin's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Valin makes one attack with her rotting fist or uses her Dreadful Glare." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Dust", + "body": [ + "Blinding dust and sand swirls magically around Valin. Each creature within 5 feet of Valin must succeed on a {@dc 16} Constitution saving throw or be {@condition blinded} until the end of her next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blasphemous Word (Costs 2 Actions)", + "body": [ + "Valin utters a blasphemous word. Each non-undead creature within 10 feet of Valin that can hear the magical utterance must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the end of Valin's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Channel Negative Energy (Costs 2 Actions)", + "body": [ + "Valin magically unleashes negative energy. Creatures within 60 feet of Valin, including ones behind barriers and around corners, can't regain hit points until the end of Valin's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind of Sand (Costs 2 Actions)", + "body": [ + "Valin magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to her normal form. While in whirlwind form, Valin is immune to all damage, and it can't be {@condition grappled}, {@condition petrified}, knocked {@condition prone}, {@condition restrained}, or {@condition stunned}. Equipment worn or carried by Valin remain in her possession." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Valin Sarnaster is a 10th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). Valin has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell harm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Valin Sarnaster-CM", + "__dataclass__": "Monster" + }, + { + "name": "Varnyr", + "source": "CM", + "page": 63, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 11, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Varnyr has advantage on saving throws against being {@condition charmed}, and magic can't put Varnyr to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Varnyr makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cane", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Varnyr adds 2 to their AC against one melee attack that would hit it. To do so, Varnyr must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Varnyr-CM", + "__dataclass__": "Monster" + }, + { + "name": "Zikzokrishka", + "source": "CM", + "page": 209, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 25, + "dexterity": 10, + "constitution": 23, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 24, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+12", + "wis": "+8", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Zikzokrishka fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Zikzokrishka has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zikzokrishka can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Zikzokrishka's choice that is within 120 feet of the Zikzokrishka and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the Zikzokrishka's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "Zikzokrishka exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 20} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "Zikzokrishka makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "Zikzokrishka makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "Zikzokrishka beats its tattered wings. Each creature within 10 feet of Zikzokrishka must succeed on a {@dc 21} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. After beating its wings this way, Zikzokrishka can fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zikzokrishka-CM", + "__dataclass__": "Monster" + }, + { + "name": "Baba Lysaga", + "source": "CoS", + "page": 228, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 18, + "dexterity": 10, + "constitution": 16, + "intelligence": 20, + "wisdom": 17, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7" + }, + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Giant" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "Baba Lysaga can use an action to polymorph into a {@creature swarm of insects} (flies), or back into her true form. While in swarm form, she has a walking speed of 5 feet and a flying speed of 30 feet. Anything she is wearing transforms with her, but nothing she is carrying does." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blessing of Mother Night", + "body": [ + "Baba Lysaga is shielded against divination magic, as though protected by a {@spell nondetection} spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Baba Lysaga makes three attacks with her quarterstaff." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if wielded with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Swarms of Insects (Recharges after a Short or Long Rest)", + "body": [ + "Baba Lysaga summons {@dice 1d4} swarms of insects. A summoned swarm appears in an unoccupied space within 60 feet of Baba Lysaga and acts as her ally. It remains until it dies or until Baba Lysaga dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Baba Lysaga is a 16th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). Baba Lysaga has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell sleep}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell enlarge/reduce}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fireball}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell Evard's black tentacles}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell geas}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell programmed illusion}", + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell mirage arcane}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell power word stun}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Baba Lysaga-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Baba Lysaga's Creeping Hut", + "source": "CoS", + "page": 226, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 263, + "formula": "17d20 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 26, + "dexterity": 7, + "constitution": 20, + "intelligence": 1, + "wisdom": 3, + "charisma": 3, + "passive": 6, + "saves": { + "con": "+9", + "wis": "+0", + "cha": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Constructed Nature", + "body": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antimagic Susceptibility", + "body": [ + "The hut is {@condition incapacitated} while the magic gem that animates it is in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the hut must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The hut deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hut makes three attacks with its roots. It can replace one of these attacks with a rock attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Root", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 60 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 12} to hit, range 120 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Baba Lysaga's Creeping Hut-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Barovian Witch", + "source": "CoS", + "page": 229, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 7, + "dexterity": 11, + "constitution": 13, + "intelligence": 14, + "wisdom": 11, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Claws (Requires Alter Self)", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage. This attack is magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The witch is a 3rd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The witch has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell ray of sickness}", + "{@spell sleep}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell alter self}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Barovian Witch-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Broom of Animated Attack", + "source": "CoS", + "page": 226, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 17, + "constitution": 10, + "intelligence": 1, + "wisdom": 5, + "charisma": 1, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Constructed Nature", + "body": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antimagic Susceptibility", + "body": [ + "The broom is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the broom must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the broom remains motionless and isn't flying, it is indistinguishable from a normal broom." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The broom makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Broomstick", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Animated Attack", + "body": [ + "If the broom is motionless and a creature grabs hold of it, the broom makes a Dexterity check contested by the creature's Strength check. If the broom wins the contest, it flies out of the creature's grasp and makes a melee attack against it with advantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Broom of Animated Attack-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Ezmerelda d'Avenir", + "source": "CoS", + "page": 231, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 17, + "note": "{@item +1 studded leather armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 14, + "dexterity": 19, + "constitution": 16, + "intelligence": 16, + "wisdom": 11, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "In addition to her magic armor and weapons, Ezmerelda has two {@item potion of greater healing||potions of greater healing}, six {@item holy water (flask)|phb|vials of holy water}, and three wooden stakes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ezmerelda makes three attacks: two with her +1 rapier and one with her +1 handaxe or her silvered shortsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier +1", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Handaxe +1", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silvered Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Curse (Recharges after a Long Rest)", + "body": [ + "Ezmerelda targets one creature that she can see within 30 feet of her. The target must succeed on a {@dc 14} Wisdom saving throw or be cursed. While cursed, the target has vulnerability to one type of damage of Ezmerelda's choice. The curse lasts until ended with a {@spell greater restoration} spell, a {@spell remove curse} spell, or similar magic. When the curse ends, Ezmerelda takes {@damage 3d6} psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evil Eye (Recharges after a Short or Long Rest)", + "body": [ + "Ezmerelda targets one creature that she can see within 10 feet of her and casts one of the following spells on the target (save {@dc 14}), requiring neither somatic nor material components to do so: animal friendship, charm person, or hold person. If the target succeeds on the initial saving throw, Ezmerelda is {@condition blinded} until the end of her next turn. Once a target succeeds on a saving throw against this effect, it is immune to the Evil Eye power of all Vistani for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Ezmerelda is a 7th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Ezmerelda has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell protection from evil and good}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell knock}", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell lightning bolt}", + "{@spell magic circle}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell greater invisibility}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Ezmerelda d'Avenir-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Guardian Portrait", + "source": "CoS", + "page": 227, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 5, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 1, + "dexterity": 1, + "constitution": 10, + "intelligence": 14, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "plus up to two other languages" + ], + "traits": [ + { + "title": "Constructed Nature", + "body": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antimagic Susceptibility", + "body": [ + "The portrait is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the portrait must succeed on a Constitution saving throw against the caster's spell save DC or become {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the figure in the portrait remains motionless, the portrait is indistinguishable from a normal painting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The portrait's innate spellcasting ability is Intelligence (spell save {@dc 12}). The portrait can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell counterspell}", + "{@spell crown of madness}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guardian Portrait-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Izek Strazni", + "source": "CoS", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 9, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when Izek hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Izek makes two attacks with his battleaxe." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Flame", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) fire damage. If the target is a flammable object that isn't being worn or carried, it catches fire." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Izek Strazni-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Madam Eva", + "source": "CoS", + "page": 233, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 8, + "dexterity": 11, + "constitution": 12, + "intelligence": 17, + "wisdom": 20, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5" + }, + "languages": [ + "Abyssal", + "Common", + "Elvish", + "Infernal" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Curse (Recharges after a Long Rest)", + "body": [ + "Madam Eva targets one creature that she can see within 30 feet of her. The target must succeed on a {@dc 17} Wisdom saving throw or be cursed. While cursed, the target is {@condition blinded} and {@condition deafened}. The curse lasts until ended with a {@spell greater restoration} spell, a {@spell remove curse} spell, or similar magic. When the curse ends, Madam Eva takes {@damage 5d6} psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evil Eye (Recharges after a Short or Long Rest)", + "body": [ + "Madam Eva targets one creature that she can see within 10 feet of her and casts one of the following spells on the target (save {@dc 17}), requiring neither somatic nor material components to do so: {@spell animal friendship}, {@spell charm person}, or {@spell hold person}. If the target succeeds on the initial saving throw, Madam Eva is {@condition blinded} until the end of her next turn. Once a target succeeds on a saving throw against this effect, it is immune to the Evil Eye power of all Vistani for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Madam Eva is a 16th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). Madam Eva has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell protection from poison}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell create food and water}", + "{@spell speak with dead}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell freedom of movement}", + "{@spell guardian of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell greater restoration}", + "{@spell raise dead}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell find the path}", + "{@spell harm}", + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell fire storm}", + "{@spell regenerate}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell earthquake}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Madam Eva-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Mongrelfolk", + "source": "CoS", + "page": 234, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 9, + "constitution": 15, + "intelligence": 9, + "wisdom": 10, + "charisma": 6, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Extraordinary Feature", + "body": [ + "The mongrelfolk has one of the following extraordinary features, determined randomly by rolling a {@dice d20} or chosen by the DM:", + "1\u20133: Amphibious. The mongrelfolk can breathe air and water.", + "4\u20139: Darkvision. The mongrelfolk has darkvision out to a range of 60 feet.", + "10: Flight. The mongrelfolk has leathery wings and a flying speed of 40 feet.", + "11\u201315: Keen Hearing and Smell. The mongrelfolk has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell.", + "16\u201317: Spider Climb. The mongrelfolk can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check.", + "18\u201319: Standing Leap. The mongrelfolk's long jump is up to 20 feet and its high jump up to 10 feet, with or without a running start.", + "20: Two-Headed. The mongrelfolk has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mimicry", + "body": [ + "The mongrelfolk can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mongrelfolk makes two attacks: one with its bite and one with its claw or dagger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "mongrelfolk", + "actions_note": "", + "mythic": null, + "key": "Mongrelfolk-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Phantom Warrior", + "source": "CoS", + "page": 235, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 8, + "wisdom": 10, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any languages it knew in life" + ], + "traits": [ + { + "title": "Ethereal Sight", + "body": [ + "The phantom warrior can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The phantom warrior can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Armor and Shield", + "body": [ + "The phantom warrior's AC accounts for its spectral armor and shield." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The phantom warrior makes two attacks with its spectral longsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "The phantom warrior enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Phantom Warrior-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Pidlwick II", + "source": "CoS", + "page": 236, + "size_str": "Small", + "maintype": "construct", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 14, + "constitution": 11, + "intelligence": 8, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "performance", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands Common but doesn't speak and can't read or write" + ], + "traits": [ + { + "title": "Ambusher", + "body": [ + "During the first round of combat, Pidlwick II has advantage on attack rolls against any creature that hasn't had a turn yet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pidlwick II-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Rahadin", + "source": "CoS", + "page": 237, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 14, + "dexterity": 22, + "constitution": 17, + "intelligence": 15, + "wisdom": 16, + "charisma": 18, + "passive": 21, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Deathly Choir", + "body": [ + "Any creature within 10 feet of Rahadin that isn't protected by a {@spell mind blank} spell hears in its mind the screams of the thousands of people Rahadin has killed. As a bonus action, Rahadin can force all creatures that can hear the screams to make a {@dc 16} Wisdom saving throw. Each creature takes 16 ({@damage 3d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Rahadin has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mask of the Wild", + "body": [ + "Rahadin can attempt to hide even when he is only lightly obscured by foliage, heavy rain, falling snow, mist, and other natural phenomena." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Rahadin attacks three times with his scimitar, or twice with his {@condition poisoned} darts." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisoned Dart", + "body": [ + "{@atk rw} {@hit 10} to hit, range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Rahadin's innate spellcasting ability is Intelligence. He can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell magic weapon}", + "{@spell nondetection}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell misty step}", + "{@spell phantom steed}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Rahadin-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Rictavio", + "source": "CoS", + "page": 238, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 77, + "formula": "14d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 12, + "constitution": 13, + "intelligence": 16, + "wisdom": 18, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+7" + }, + "languages": [ + "Abyssal", + "Common", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "In addition to his sword cane, Rictavio wears a {@item hat of disguise} and a {@item ring of mind shielding}, and he carries a {@item spell scroll (5th level)||spell scroll} of {@spell raise dead}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Slayer", + "body": [ + "When Rictavio hits an undead with a weapon attack, the undead takes an extra 10 ({@damage 3d6}) damage of the weapon's type." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Rictavio makes two attacks with his sword cane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sword Cane", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage (wooden cane) or piercing damage (silvered sword)." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Rictavio is a 9th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Rictavio has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell lesser restoration}", + "{@spell protection from poison}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell magic circle}", + "{@spell remove curse}", + "{@spell speak with dead}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell death ward}", + "{@spell freedom of movement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell dispel evil and good}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Rictavio-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Strahd von Zarovich", + "source": "CoS", + "page": 240, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 20, + "wisdom": 15, + "charisma": 18, + "passive": 22, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Elvish", + "Giant", + "Infernal" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "If Strahd isn't in running water or sunlight, he can use his action to polymorph into a Tiny bat, a Medium wolf, or a Medium cloud of mist, or back into his true form.", + "While in bat or wolf form, Strahd can't speak. In bat form, his walking speed is 5 feet, and he has a flying speed of 30 feet. In wolf form, his walking speed is 40 feet. His statistics, other than his size and speed, are unchanged. Anything he is wearing transforms with him, but nothing he is carrying does. He reverts to his true form if he dies.", + "While in mist form, Strahd can't take any actions, speak, or manipulate objects. He is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and he can't pass through water. He has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage, except the damage he takes from sunlight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Strahd fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misty Escape", + "body": [ + "When Strahd drops to 0 hit points outside his coffin, he transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that he isn't in running water or sunlight. If he can't transform, he is destroyed.", + "While he has 0 hit points in mist form, he can't revert to his vampire form, and he must reach his coffin within 2 hours or be destroyed. Once in his coffin, he reverts to his vampire form. He is then {@condition paralyzed} until he regains at least 1 hit point. After 1 hour in his coffin with 0 hit points, he regains 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Strahd regains 20 hit points at the start of his turn if he has at least 1 hit point and isn't in running water or sunlight. If he takes radiant damage or damage from holy water, this trait doesn't function at the start of his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Strahd can climb difficult surfaces, including upside down on ceilings, without having to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "Strahd has the following flaws:", + "{@i Forbiddance.} He can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} He takes 20 acid damage if he ends his turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into his heart while he is {@condition incapacitated} in his coffin, he is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} While in sunlight, Strahd takes 20 radiant damage at the start of his turn, and he has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Vampire Form Only)", + "body": [ + "Strahd makes two attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike (Vampire or Wolf Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, plus 14 ({@damage 4d6}) necrotic damage. If the target is a creature, Strahd can grapple it (escape {@dc 18}) instead of dealing the slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by Strahd, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Strahd regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under Strahd's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "Strahd targets one humanoid he can see within 30 feet of him. If the target can see Strahd, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed}. The {@condition charmed} target regards Strahd as a trusted friend to be heeded and protected. The target isn't under Strahd's control, but it takes Strahd's requests and actions in the most favorable way and lets Strahd bite it.", + "Each time Strahd or his companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Strahd is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Children of the Night (1/Day)", + "body": [ + "Strahd magically calls {@dice 2d4} {@creature swarm of bats||swarms of bats} or {@creature swarm of rats||swarms of rats}, provided that the sun isn't up. While outdoors, Strahd can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of Strahd and obeying his spoken commands. The beasts remain for 1 hour, until Strahd dies, or until he dismisses them as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "Strahd moves up to his speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "Strahd makes one unarmed strike." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "Strahd makes one bite attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Strahd is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell fog cloud}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell gust of wind}", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell fireball}", + "{@spell nondetection}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell greater invisibility}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell animate objects}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Strahd von Zarovich-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Strahd Zombie", + "source": "CoS", + "page": 241, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 6, + "constitution": 16, + "intelligence": 3, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "saves": { + "wis": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Loathsome Limbs", + "body": [ + "Whenever the zombie takes at least 5 bludgeoning or slashing damage at one time, roll a {@dice d20} to determine what else happens to it:", + "1\u20138: One leg is severed from the zombie if it has any legs left.", + "9\u201316: One arm is severed from the zombie if it has any arms left.", + "17\u201320: The zombie is decapitated.", + "If the zombie is reduced to 0 hit points, all parts of it die. Until then, a severed part acts on the zombie's initiative and has its own action and movement. A severed part has AC 8. Any damage it takes is subtracted from the zombie's hit points.", + "A severed leg is unable to attack and has a speed of 5 feet.", + "A severed arm has a speed of 5 feet and can make one claw attack on its turn, with disadvantage on the attack roll. Each time the zombie loses an arm, it loses a claw attack.", + "If its head is severed, the zombie loses its bite attack and its body is {@condition blinded} unless the head can see it. The severed head has a speed of 0 feet. It can make a bite attack, but only against a target in its space.", + "The zombie's speed is halved if it's missing a leg. If it loses both legs, it falls {@condition prone}. If it has both arms, it can crawl. With only one arm, it can still crawl, but its speed is halved. With no arms or legs, its speed is 0 feet, and it can't benefit from bonuses to speed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zombie makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Strahd Zombie-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Strahd's Animated Armor", + "source": "CoS", + "page": 227, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 17, + "dexterity": 13, + "constitution": 16, + "intelligence": 9, + "wisdom": 10, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Constructed Nature", + "body": [ + "An animated object doesn't require air, food, drink, or sleep.", + "The magic that animates an object is dispelled when the construct drops to 0 hit points. An animated object reduced to 0 hit points becomes inanimate and is too damaged to be of much use or value to anyone." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antimagic Susceptibility", + "body": [ + "The armor is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the armor remains motionless, it is indistinguishable from a normal suit of armor." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The armor makes two melee attacks or uses Shocking Bolt twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shocking Bolt", + "body": [ + "{@atk rs} {@hit 4} to hit (with advantage on the attack roll if the target is wearing armor made of metal), range 60 ft., one target. {@h}10 ({@damage 3d6}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Strahd's Animated Armor-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Tree Blight", + "source": "CoS", + "page": 230, + "size_str": "Huge", + "maintype": "plant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 92, + "formula": "8d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 23, + "dexterity": 10, + "constitution": 20, + "intelligence": 6, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common and Druidic but doesn't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the blight remains motionless, it is indistinguishable from a dead tree." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The blight deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blight makes one Branch attack and one Grasping Root attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Branch", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Root", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one creature not {@condition grappled} by the blight. {@h}The target is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target takes 9 ({@damage 1d6 + 6}) bludgeoning damage at the start of each of its turns. The root has AC 15 and can be severed by dealing 6 slashing damage or more to it at once. Cutting the root doesn't hurt the blight, but ends the grapple." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature {@condition grappled} by the blight. {@h}19 ({@damage 3d8 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tree Blight-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Vladimir Horngaard", + "source": "CoS", + "page": 241, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 192, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 13, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "saves": { + "str": "+7", + "con": "+7", + "wis": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "Vladimir regains 10 hit points at the start of his turn. If he takes fire or radiant damage, this trait doesn't function at the start of his next turn. Vladimir's body is destroyed only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "When Vladimir's body is destroyed, his soul lingers. After 24 hours, the soul inhabits and animates another corpse on the same plane of existence and regains all its hit points. While the soul is bodiless, a {@spell wish} spell can be used to force the soul to go to the afterlife and not return." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Vladimir wields a {@item +2 greatsword} with a hilt sculpted to resemble silver dragon wings and a pommel shaped like a silver dragon's head clutching a black opal between its teeth. " + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Immunity", + "body": [ + "Vladimir is immune to effects that turn undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vengeful Tracker", + "body": [ + "Vladimir knows the distance to and direction of Strahd, even if Strahd and Vladimir are on different planes of existence. If Strahd is destroyed, Vladimir knows." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Vladimir makes two fist attacks or two attacks with his +2 Greatsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. Strahd, the target of Vladimir's sworn vengeance, takes an extra 14 ({@damage 4d6}) bludgeoning damage. Instead of dealing damage, Vladimir can grapple the target (escape {@dc 14}) provided the target is Large or smaller." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword +2", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}20 ({@damage 4d6 + 6}) slashing damage. Against Strahd, Vladimir deals an extra 14 ({@damage 4d6}) slashing damage with this weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vengeful Glare", + "body": [ + "Vladimir can target Strahd within 30 feet provided he can see Strahd. Strahd must make a {@dc 15} Wisdom saving throw. One a failure, Strahd is {@condition paralyzed} until Vladimir deals damage to him, or until the end of Vladimir's next turn. When the paralysis ends, Strahd is {@condition frightened} of Vladimir for 1 minute. Strahd can repeat the saving throw at the end of each of his turns, with disadvantage if he can see Vladimir, ending the {@condition frightened} condition on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vladimir Horngaard-CoS", + "__dataclass__": "Monster" + }, + { + "name": "Ebondeath", + "source": "DC", + "page": 0, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 7, + "dexterity": 13, + "constitution": 10, + "intelligence": 10, + "wisdom": 12, + "charisma": 17, + "passive": 11, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Any languages it knew in life" + ], + "traits": [ + { + "title": "Ethereal Sight", + "body": [ + "Ebondeath can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "Ebondeath can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Withering Touch", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "Ebondeath enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrifying Visage", + "body": [ + "Each non-undead creature within 60 feet of Ebondeath that can see it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this Ebondeath's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a {@spell greater restoration} spell, but only within 24 hours of it occurring." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One humanoid that Ebondeath can see within 5 feet of it must succeed on a {@dc 20} Charisma saving throw or be possessed by Ebondeath; Ebondeath then disappears, and the target is {@condition incapacitated} and loses control of its body. Ebondeath now controls the body but doesn't deprive the target of awareness. Ebondeath can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, including gaining access to the target's knowledge, class features, and proficiencies.", + "The possession lasts until the body drops to 0 hit points, Ebondeath ends it as a bonus action, or Ebondeath is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, Ebondeath reappears in an unoccupied space within 5 feet of the body. The target is immune to Ebondeath Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ebondeath-DC", + "__dataclass__": "Monster" + }, + { + "name": "Expert", + "source": "DC", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 20, + "constitution": 12, + "intelligence": 14, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Helpful", + "body": [ + "The expert can take the Help action as a bonus action, and the creature who receives the help gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "When the expert is not {@condition incapacitated} and subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it failed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reliable Talent", + "body": [ + "Whenever the expert makes an ability check that includes its whole proficiency bonus, it can treat a {@dice d20} roll of 9 or lower as a 10." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tools", + "body": [ + "The expert has {@item thieves' tools|phb} and a musical instrument." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Extra Attack", + "body": [ + "The expert can attack twice, instead of once, whenever it takes the attack action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 9} to hit, range 80/320 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Expert-DC", + "__dataclass__": "Monster" + }, + { + "name": "Spellcaster (Healer)", + "source": "DC", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 54, + "formula": "12d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 15, + "wisdom": 18, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+8" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Empowered Spells", + "body": [ + "Whenever the spellcaster casts a spell of the evocation school by expending a spell slot, the spellcaster can add its spellcasting ability modifier to the spell's damage roll or healing roll, if any." + ], + "__dataclass__": "Entry" + }, + { + "title": "Potent Cantrip", + "body": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Healer)", + "body": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell protection from energy}", + "{@spell revivify}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell death ward}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell greater restoration}", + "{@spell mass cure wounds}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell heal}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "healer", + "actions_note": "", + "mythic": null, + "key": "Spellcaster (Healer)-DC", + "__dataclass__": "Monster" + }, + { + "name": "Spellcaster (Mage)", + "source": "DC", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 54, + "formula": "12d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 18, + "wisdom": 14, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Empowered Spells", + "body": [ + "Whenever the spellcaster casts a spell of the evocation school by expending a spell slot, the spellcaster can add its spellcasting ability modifier to the spell's damage roll or healing roll, if any." + ], + "__dataclass__": "Entry" + }, + { + "title": "Potent Cantrip", + "body": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Mage)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Mage)", + "body": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell polymorph}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "mage", + "actions_note": "", + "mythic": null, + "key": "Spellcaster (Mage)-DC", + "__dataclass__": "Monster" + }, + { + "name": "Warrior", + "source": "DC", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 21, + "note": "{@item plate armor|PHB|plate}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Battle Readiness", + "body": [ + "The warrior has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Improved Critical", + "body": [ + "The warrior's attack rolls score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Improved Defense", + "body": [ + "The warrior's AC increases by 1." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indomitable (1/Day)", + "body": [ + "The warriorcan reroll a saving throw that it fails, but it must use the new result." + ], + "__dataclass__": "Entry" + }, + { + "title": "Martial Role", + "body": [ + "The warrior has one of the following traits of your choice:", + { + "title": "Attacker", + "body": [ + "The warrior gains a +2 bonus to attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Defender", + "body": [ + "The warrior gains the Protection reaction below." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "The warrior can use a bonus action on its turn to regain hit points equal to {@dice 1d10} + its level." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Extra Attack", + "body": [ + "The warrior can attack three times, instead of once, whenever it takes the attack action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection (Defender Only)", + "body": [ + "When a creature the warrior can see attacks a target other than the warrior that is within 5 feet of the warrior, the warrior can use their reaction to impose disadvantage on the attack roll. The warrior must be wielding a shield." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warrior-DC", + "__dataclass__": "Monster" + }, + { + "name": "Anchorite of Talos", + "source": "DIP", + "page": 51, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 9, + "wisdom": 15, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The anchorite can use its action to polymorph into a boar or back into its true form, which is humanoid. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Clawed Gauntlet (Humanoid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tusk (Boar Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The anchorite's innate spellcasting ability is Wisdom (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell thunderwave} ({@damage 2d8} damage)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell augury}", + "{@spell bless}", + "{@spell lightning bolt} ({@damage 8d6} damage)", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "SDW" + } + ], + "subtype": "half-orc, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Anchorite of Talos-DIP", + "__dataclass__": "Monster" + }, + { + "name": "Don-Jon Raskin", + "source": "DIP", + "page": 56, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 10, + "constitution": 13, + "intelligence": 12, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+3" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "Don-Jon has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Not Dead Yet (Recharges after a Long Rest)", + "body": [ + "If damage reduces Don-Jon to 0 hit points, he drops to 1 hit point instead and gains advantage on attack rolls until the end of his next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Don-Jon makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 2} to hit, range 30/120 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Don-Jon Raskin-DIP", + "__dataclass__": "Monster" + }, + { + "name": "Falcon the Hunter", + "source": "DIP", + "page": 56, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 14, + "dexterity": 15, + "constitution": 16, + "intelligence": 11, + "wisdom": 16, + "charisma": 15, + "passive": 17, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+5" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Archer", + "body": [ + "A longbow or shortbow deals one extra die of its damage when Falcon hits with it (included in his longbow attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sharpshooter", + "body": [ + "Falcon's ranged weapon attacks ignore {@quickref Cover||3||half cover} and {@quickref Cover||3||three-quarters cover}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Falcon makes three melee attacks or two ranged attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Falcon the Hunter-DIP", + "__dataclass__": "Monster" + }, + { + "name": "Gorthok the Thunder Boar", + "source": "DIP", + "page": 58, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 73, + "formula": "7d12 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 11, + "constitution": 19, + "intelligence": 6, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Relentless (Recharges after a Short or Long Rest)", + "body": [ + "If Gorthok takes 27 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Gorthok makes two melee attacks: one with its lightning tusks and one with its thunder hooves." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Tusks", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 7 ({@damage 2d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunder Hooves", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 7 ({@damage 2d6}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Bolt {@recharge}", + "body": [ + "Gorthok shoots a bolt of lightning at one creature it can see within 120 feet of it. The target must make a {@dc 15} Dexterity saving throw, taking 18 ({@damage 4d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gorthok the Thunder Boar-DIP", + "__dataclass__": "Monster" + }, + { + "name": "Rock Gnome Recluse", + "source": "DIP", + "page": 62, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 11, + "constitution": 10, + "intelligence": 15, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Gnomish" + ], + "traits": [ + { + "title": "Gnome Cunning", + "body": [ + "The gnome has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Magic Missile (Expends a 1st-Level Spell Slot)", + "body": [ + "The gnome creates three magical darts. Each dart hits a creature the gnome chooses within 120 feet of it and deals 3 ({@damage 1d4 + 1}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Frost", + "body": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one creature. {@h}4 ({@damage 1d8}) cold damage, and the target's speed is reduced by 10 feet until the start of the gnome's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The gnome is a 2nd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile} (see \"Actions\" below)", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gnome", + "actions_note": "", + "mythic": null, + "key": "Rock Gnome Recluse-DIP", + "__dataclass__": "Monster" + }, + { + "name": "Avatar of Death", + "source": "DMG", + "page": 164, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 20 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "half the hit point maximum of its summoner", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 16, + "dexterity": 16, + "constitution": 16, + "intelligence": 16, + "wisdom": 16, + "charisma": 16, + "passive": 13, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "truesight 60 ft." + ], + "languages": [ + "all languages known to its summoner" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The avatar can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Immunity", + "body": [ + "The avatar is immune to features that turn undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Reaping Scythe", + "body": [ + "The avatar sweeps its spectral scythe through a creature within 5 feet of it, dealing 7 ({@damage 1d8 + 3}) slashing damage plus 4 ({@damage 1d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TCE" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Avatar of Death-DMG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Fly", + "source": "DMG", + "page": 169, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 13, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Fly-DMG", + "__dataclass__": "Monster" + }, + { + "name": "Larva", + "source": "DMG", + "page": 63, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 9, + "dexterity": 9, + "constitution": 10, + "intelligence": 6, + "wisdom": 10, + "charisma": 2, + "passive": 10, + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Larva-DMG", + "__dataclass__": "Monster" + }, + { + "name": "Fume Drake", + "source": "DoSI", + "page": 41, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 14, + "constitution": 12, + "intelligence": 6, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Ignan" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the fume drake dies, it explodes in a cloud of noxious fumes. Each creature within 5 feet of the fume drake must succeed on a {@dc 11} Constitution saving throw or take 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The fume drake doesn't require food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scalding Breath {@recharge}", + "body": [ + "The fume drake exhales a 15-foot cone of scalding steam. Each creature in that area must make a {@dc 11} Dexterity saving throw, taking 4 ({@damage 1d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fume Drake-DoSI", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Tinkerer", + "source": "DoSI", + "page": 43, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 10, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 14, + "constitution": 10, + "intelligence": 15, + "wisdom": 7, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 0, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Inquiring Mind (1/Day)", + "body": [ + "The kobold can cast {@spell detect magic}, requiring no spell components and using Intelligence as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of its allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Alchemical Flame {@recharge}", + "body": [ + "The kobold unleashes fire in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed saving throw, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kobold Tinkerer-DoSI", + "__dataclass__": "Monster" + }, + { + "name": "Merrow Extortionist", + "source": "DoSI", + "page": 0, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 10, + "constitution": 15, + "intelligence": 8, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The merrow can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The merrow makes two Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Merrow Extortionist-DoSI", + "__dataclass__": "Monster" + }, + { + "name": "Spore Servant Octopus", + "source": "DoSI", + "page": 46, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 13, + "constitution": 13, + "intelligence": 2, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "While out of water, the octopus can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The octopus can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 15 ft., one target {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spore Servant Octopus-DoSI", + "__dataclass__": "Monster" + }, + { + "name": "Tarak", + "source": "DoSI", + "page": 47, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 16, + "constitution": 10, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Draconic", + "Thieves' cant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tarak makes three Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Cunning Action", + "body": [ + "Tarak takes the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Tarak-DoSI", + "__dataclass__": "Monster" + }, + { + "name": "Varnoth", + "source": "DoSI", + "page": 47, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Varnoth makes three Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Varnoth-DoSI", + "__dataclass__": "Monster" + }, + { + "name": "Andir Valmakos", + "source": "DSotDQ", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 12, + "intelligence": 14, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2" + }, + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Bonus Proficiencies", + "body": [ + "Andir is proficient with simple weapons and light armor." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 120 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Andir's spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 2, + "spells": [ + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Andir Valmakos-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Anhkolox", + "source": "DSotDQ", + "page": 192, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 22, + "dexterity": 11, + "constitution": 18, + "intelligence": 4, + "wisdom": 14, + "charisma": 2, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The anhkolox doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The anhkolox makes two Claw attacks and one Entrapping Rend attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be pushed up to 20 feet in a horizontal direction of the anhkolox's choice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entrapping Rend", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}23 ({@damage 5d6 + 6}) piercing damage, and if the target is a Large or smaller creature, the target must succeed on a {@dc 18} Strength saving throw or be trapped in the anhkolox's rib cage and {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}, and the anhkolox can't use Entrapping Rend on another target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Anhkolox-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Aurak Draconian", + "source": "DSotDQ", + "page": 196, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 13, + "dexterity": 14, + "constitution": 16, + "intelligence": 16, + "wisdom": 11, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+3", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Aura of Command", + "body": [ + "The draconian radiates a commanding presence in a 20-foot-radius sphere centered on itself. A draconian in the aura that can see or hear the aurak can't be {@condition charmed} and has advantage on saving throws made to avoid or end the {@condition frightened} condition on itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, its magical essence lashes out as a ball of lightning at the closest creature within 30 feet of it before arcing out to up to two other creatures within 15 feet of the first. Each creature must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) lightning damage and is {@condition stunned} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes three Rend or Energy Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d12 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Energy Ray", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noxious Breath {@recharge 5}", + "body": [ + "The draconian exhales a 15-foot cone of noxious gas. Each creature in that area must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 21 ({@damage 6d6}) poison damage and gains 1 level of {@condition exhaustion}. On a successful save, the creature takes half as much damage, doesn't gain {@condition exhaustion}, and is immune to all draconians' Noxious Breath for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell invisibility}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate person}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell dimension door}", + "{@spell disguise self}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Aurak Draconian-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Ayik Ur", + "source": "DSotDQ", + "page": 211, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 11, + "dexterity": 16, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Attacker", + "body": [ + "Ayik gains a +2 bonus to all attack rolls (included below)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bonus Proficiencies", + "body": [ + "Ayik is proficient with simple and martial weapons, shields, and all armor." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Ayik Ur-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Baaz Draconian", + "source": "DSotDQ", + "page": 197, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 11, + "constitution": 13, + "intelligence": 8, + "wisdom": 8, + "charisma": 10, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Controlled Fall", + "body": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, its body turns to stone and releases a petrifying gas. Each creature within 5 feet of the draconian must succeed on a {@dc 11} Constitution saving throw or be {@condition restrained} as it begins to turn to stone. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a success, the effect ends; otherwise the creature is {@condition petrified} for 1 minute. After 1 minute, the body of the draconian crumbles to dust." + ], + "__dataclass__": "Entry" + }, + { + "title": "Draconic Devotion", + "body": [ + "While the draconian can see a Dragon that isn't hostile to it, the draconian has advantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Baaz Draconian-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Bozak Draconian", + "source": "DSotDQ", + "page": 198, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 11, + "intelligence": 11, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "saves": { + "int": "+2", + "wis": "+2", + "cha": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, its scales and flesh immediately shrivel away, and then its bones explode. Each creature within 10 feet of it must succeed on a {@dc 10} Dexterity saving throw or take 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glide", + "body": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Trident melee attacks or two Lightning Discharge attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Discharge", + "body": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell invisibility}", + "{@spell stinking cloud}", + "{@spell web}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Bozak Draconian-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Caradoc", + "source": "DSotDQ", + "page": 193, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 1, + "dexterity": 18, + "constitution": 12, + "intelligence": 15, + "wisdom": 13, + "charisma": 19, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Solamnic" + ], + "traits": [ + { + "title": "Bound Haunting", + "body": [ + "Caradoc's spirit is bound to Dargaard Keep. At the start of his turn, if he's outside the keep's walls and not possessing a creature using his Possession action, he must succeed on a {@dc 15} Charisma saving throw or vanish and reappear in an unoccupied space within the keep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "Caradoc can move through other creatures and objects as if they were difficult terrain. He takes 5 ({@damage 1d10}) force damage if he ends his turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If Caradoc dies, he reforms within Dargaard Keep in {@dice 2d6} days." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Caradoc doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Caradoc makes two Withering Touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Touch", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge 5}", + "body": [ + "One Humanoid that Caradoc can see within 5 feet of himself must succeed on a {@dc 15} Charisma saving throw or be possessed by him; he then disappears, and the target is {@condition incapacitated} and loses control of its body. Caradoc now controls the body but doesn't deprive the target of awareness. Caradoc can't be targeted by any attack, spell, or other effect, except ones that turn Undead, and he retains his alignment, Intelligence, Wisdom, and Charisma, immunity to being {@condition charmed} and {@condition frightened}, and his Divisive Whispers bonus action. He otherwise uses the possessed target's statistics but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, Caradoc ends it as a bonus action, or he is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, Caradoc reappears in an unoccupied space within 5 feet of the body. The target is immune to Caradoc's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Divisive Whispers", + "body": [ + "Caradoc magically whispers to one creature within 60 feet of himself. The target must succeed on a {@dc 15} Wisdom saving throw, or the target must immediately use its reaction to make a melee attack against another creature of Caradoc's choice (wasting its reaction if there are no other creatures within reach)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Caradoc-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Army Dragonnel", + "source": "DSotDQ", + "page": 201, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate barding|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 13, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The dragonnel doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonnel makes two Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Army Dragonnel-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Army Officer", + "source": "DSotDQ", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "{@item splint armor|PHB|splint}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 15, + "intelligence": 12, + "wisdom": 14, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+4" + }, + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Draconic Devotion", + "body": [ + "While the officer can see a Dragon that isn't hostile to it, the officer has advantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The officer makes two Vicious Lance attacks and uses Assault Orders if it's available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vicious Lance", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 2 ({@damage 1d4}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Assault Orders {@recharge 5}", + "body": [ + "The officer shouts orders and targets up to two other creatures within 60 feet of itself. If a target has the Draconic Devotion trait and can hear the officer, the target can use its reaction to make one melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Army Officer-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Army Soldier", + "source": "DSotDQ", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item scale mail|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Draconic Devotion", + "body": [ + "While the soldier can see a Dragon that isn't hostile to it, the soldier has advantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The soldier makes two Longsword or Javelin attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands, plus 2 ({@damage 1d4}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 2 ({@damage 1d4}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Army Soldier-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Fewmaster Gholcag", + "source": "DSotDQ", + "page": 74, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item scale mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fewmaster Gholcag-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Greater Death Dragon", + "source": "DSotDQ", + "page": 195, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 230, + "formula": "20d12 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 23, + "dexterity": 10, + "constitution": 20, + "intelligence": 11, + "wisdom": 14, + "charisma": 10, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 4 ({@damage 1d8}) necrotic damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, and the dragon can't bite a different target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft. one target. {@h}10 ({@damage 1d8 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cataclysmic Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of ghostly purple flames in a 60-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 45 ({@damage 10d8}) necrotic damage on a failed save, or half as much damage on a successful one. A creature dies if the breath reduces it to 0 hit points. Additionally, any Medium or smaller Humanoid killed by the breath's damage, as well as every corpse of such a creature within the cone, becomes a zombie (see the Monster Manual) under the dragon's control. The zombie acts on the dragon's initiative but immediately after the dragon's turn. Absent any other command, the zombie tries to kill any non-Undead creature it encounters." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cataclysmic Rush (Costs 2 Actions)", + "body": [ + "The dragon moves up to half its flying speed without provoking opportunity attacks, carrying with it any creatures it is grappling. During this move, if it enters the space of a Medium or smaller creature, that creature takes 4 ({@damage 1d8}) necrotic damage. A creature can take this damage only once per turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Greater Death Dragon-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Hrigg Roundrook", + "source": "DSotDQ", + "page": 211, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 16, + "note": "{@item half plate armor|PHB|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Bonus Proficiencies", + "body": [ + "Hrigg is proficient with simple and martial weapons and light and medium armor." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dwarven Resilience", + "body": [ + "Hrigg has advantage on saving throws made to avoid or end the {@condition poisoned} condition on himself." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Hrigg's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 2, + "spells": [ + "{@spell cure wounds}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Hrigg Roundrook-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Iriad", + "source": "DSotDQ", + "page": 212, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 11, + "dexterity": 16, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Bonus Proficiencies", + "body": [ + "Iriad is proficient with simple weapons, light armor, {@item cartographer's tools|PHB}, and {@item woodcarver's tools|PHB}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Iriad has advantage on saving throws made to avoid or end the {@condition charmed} condition on herself, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Poison Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Helpful", + "body": [ + "Iriad takes the {@action Help} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Iriad-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Istarian Drone", + "source": "DSotDQ", + "page": 202, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 10, + "constitution": 18, + "intelligence": 4, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands the languages spoken by its creator but can't speak" + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The drone can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The drone doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drone makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 4 ({@damage 1d8}) lightning damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). The drone has two claws, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crystalline Spit {@recharge 5}", + "body": [ + "The drone spits crackling gel in a line 5 feet wide and 20 feet long. Each creature in the line must make a {@dc 15} Dexterity saving throw. On a failed save, the creature takes 14 ({@damage 4d6}) lightning damage and is {@condition restrained} by the gel, which hardens into crystal. The creature is {@condition restrained} until the crystal is destroyed. The crystal has AC 15, 15 hit points, immunity to poison and psychic damage, and vulnerability to thunder damage. On a successful save, the creature takes half as much damage and isn't {@condition restrained}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Istarian Drone-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Kalaman Soldier", + "source": "DSotDQ", + "page": 202, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The soldier makes two Longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Hold the Line", + "body": [ + "If an ally within 5 feet of the soldier must make a saving throw, the soldier encourages the ally, granting advantage on the roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kalaman Soldier-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Kansaldi Fire-Eyes", + "source": "DSotDQ", + "page": 203, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "23d8 + 69", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 18, + "dexterity": 11, + "constitution": 17, + "intelligence": 16, + "wisdom": 19, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+8", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Kansaldi has a glowing ruby embedded in her left eye socket. The gem functions as her eye and grants her truesight (included above). The gem can't be removed while Kansaldi is alive. When she dies, a creature can remove the gem as an action. The gem then functions as a {@item gem of seeing}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Kansaldi makes two Pike attacks and uses Flame Burst." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pike", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 16 ({@damage 3d10}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Burst", + "body": [ + "Kansaldi hurls magical flames at a creature she can see within 60 feet of herself. The target must make a {@dc 16} Dexterity saving throw. On a failed save, the target takes 11 ({@damage 2d10}) fire damage and catches fire; until a creature takes an action to put out the fire, the target takes 5 ({@damage 1d10}) fire damage at the start of each of its turns. On a successful save, the target takes half as much damage and doesn't catch fire." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Dragon Queen's Favor", + "body": [ + "Kansaldi or one creature she can see within 60 feet of herself magically regains 17 ({@dice 2d12 + 4}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Kansaldi casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blade barrier}", + "{@spell dispel magic}", + "{@spell flame strike}", + "{@spell lesser restoration}", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "cleric, human", + "actions_note": "", + "mythic": null, + "key": "Kansaldi Fire-Eyes-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Kapak Draconian", + "source": "DSotDQ", + "page": 198, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 17, + "constitution": 14, + "intelligence": 12, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, it dissolves into acid that splashes on those around it. Each creature within 5 feet of the draconian must succeed on a {@dc 12} Dexterity saving throw or be covered in acid for 1 minute. A creature covered in the acid takes 7 ({@damage 2d6}) acid damage at the start of each of its turns. A creature can use its action to scrape or wash the acid off itself or another creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glide", + "body": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Dagger attacks. If both attacks hit the same creature, the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} until the end of the target's next turn. While {@condition poisoned} in this way, the target is also {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kapak Draconian-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Kender Skirmisher", + "source": "DSotDQ", + "page": 204, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 16, + "constitution": 10, + "intelligence": 12, + "wisdom": 8, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Kenderspeak" + ], + "actions": [ + { + "title": "Hoopak", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 5 ({@damage 1d4 + 3}) bludgeoning damage if the kender used the hoopak's sling to make a ranged attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Taunt", + "body": [ + "The kender launches a barrage of insults at a creature it can see within 60 feet of itself. If the target can hear the kender, the target must succeed on a {@dc 12} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Elusive", + "body": [ + "The kender takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kender Skirmisher-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Leedara", + "source": "DSotDQ", + "page": 58, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 7, + "dexterity": 13, + "constitution": 10, + "intelligence": 10, + "wisdom": 12, + "charisma": 17, + "passive": 11, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Any languages she knew in life" + ], + "traits": [ + { + "title": "Ethereal Sight", + "body": [ + "Leedara can see 60 feet into the Ethereal Plane when she is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "Leedara can move through other creatures and objects as if they were difficult terrain. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Withering Touch", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "Leedara enters the Ethereal Plane from the Material Plane, or vice versa. She is visible on the Material Plane while she is in the Border Ethereal, and vice versa, yet she can't affect or be affected by anything on the other plane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrifying Visage", + "body": [ + "Each non-undead creature within 60 feet of Leedara that can see her must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to Leedara's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a {@spell greater restoration} spell, but only within 24 hours of it occurring." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One humanoid that the ghost can see within 5 feet of it must succeed on a {@dc 13} Charisma saving throw or be possessed by Leedara; Leedara then disappears, and the target is {@condition incapacitated} and loses control of its body. Leedara now controls the body but doesn't deprive the target of awareness. Leedara can't be targeted by any attack, spell, or other effect, except ones that turn undead, and she retains her alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. She otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, Leedara ends it as a bonus action, or Leedara is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, Leedara reappears in an unoccupied space within 5 feet of the body. The target is immune to Leedara's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Leedara magically assumes the appearance she had in life, and her creature type changes to Humanoid, while retaining her other game statistics. This transformation ends if Leedara is reduced to 0 hit points or uses an action to end it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Leedara-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Lesser Death Dragon", + "source": "DSotDQ", + "page": 195, + "size_str": "Large", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 199, + "formula": "21d10 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 20, + "dexterity": 10, + "constitution": 18, + "intelligence": 5, + "wisdom": 10, + "charisma": 5, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 4 ({@damage 1d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft. one target. {@h}8 ({@damage 1d6 + 5}) slashing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}. The dragon has two claws, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cataclysmic Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of ghostly purple flames in a 30-foot cone. Each creature in that area must make a {@dc 16} Dexterity saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. A creature dies if the breath reduces it to 0 hit points. Additionally, any Medium or smaller Humanoid killed by the breath's damage, as well as every corpse of such a creatures within the cone, becomes a zombie (see the Monster Manual) under the dragon's control. The zombie acts on the dragon's initiative but immediately after the dragon's turn. Absent any other command, the zombie tries to kill any non-Undead creature it encounters." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lesser Death Dragon-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Levna Drakehorn", + "source": "DSotDQ", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 15, + "dexterity": 10, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Bonus Proficiencies", + "body": [ + "Levna is proficient with simple and martial weapons, shields, and all armor." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "Levna has advantage on an attack roll against a creature if at least one of her allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection", + "body": [ + "When a creature Levna can see within 5 feet of her is targeted by an attack, she can impose disadvantage on the attack roll if she can see the attacker and she is wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Levna Drakehorn-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Lohezet", + "source": "DSotDQ", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 137, + "formula": "25d8 + 25", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 20, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Toxic Mastery", + "body": [ + "Lohezet ignores a creature's resistance to poison damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Lohezet makes three Withering Blast attacks and uses Miasma if it's available. He can replace one of the attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Blast", + "body": [ + "{@atk ms,rs} {@hit 9} to hit, reach 5 ft. or range 60 ft., one target. {@h}18 ({@damage 2d12 + 5}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Miasma {@recharge 4}", + "body": [ + "Lohezet magically conjures a billowing cloud of purple fog in a 20-foot-radius sphere centered on a point within 120 feet of himself. The area within the sphere is heavily obscured, and when a creature starts its turn in the sphere or enters the sphere for the first time on a turn, it must make a {@dc 17} Constitution saving throw. On a failed save, the creature takes 39 ({@damage 6d12}) poison damage and is {@condition poisoned} until the start of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}. The cloud lasts for 1 minute, until Lohezet ends it early (no action required), or until Lohezet uses this action again. A strong wind disperses the cloud." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Noxious Rebuke (3/Day)", + "body": [ + "When a creature within 60 feet of Lohezet damages him, Lohezet magically retaliates with a spray of foul, purple mist. The creature must make a {@dc 17} Constitution saving throw, taking 16 ({@damage 2d10 + 5}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Lohezet casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell light}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dimension door}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell arcane eye}", + "{@spell dominate person}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, wizard", + "actions_note": "", + "mythic": null, + "key": "Lohezet-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Lord Soth", + "source": "DSotDQ", + "page": 206, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 228, + "formula": "24d8 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 22, + "dexterity": 11, + "constitution": 20, + "intelligence": 12, + "wisdom": 16, + "charisma": 20, + "passive": 13, + "saves": { + "dex": "+6", + "wis": "+9", + "cha": "+11" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Infernal", + "Solamnic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Soth fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Soth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Marshal Undead", + "body": [ + "Unless Soth is {@condition incapacitated}, he and Undead creatures of his choice within 60 feet of him are immune to features that turn Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Soth doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Soth makes three Forsaken Brand attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forsaken Brand", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) necrotic damage, and if the target is a creature, it can't regain hit points until the start of Soth's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cataclysmic Fire (1/Day)", + "body": [ + "Soth hurls a magical ball of fire that explodes at a point he can see within 120 feet of himself. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 19} Dexterity saving throw. A creature takes 35 ({@damage 10d6}) fire damage and 35 ({@damage 10d6}) necrotic damage on a failed save, or half as much damage on a successful one.", + "Additionally, any Medium or smaller Humanoid killed by this damage, as well as every corpse of such a creature within the sphere, becomes a skeleton (see the Monster Manual) under Soth's control. The skeleton acts on Soth's initiative but immediately after his turn. Absent any other command, the skeleton tries to kill any non-Undead creature it encounters." + ], + "__dataclass__": "Entry" + }, + { + "title": "Word of Death (1/Day)", + "body": [ + "Soth points at a creature he can see within 60 feet of himself and magically commands it to die. The target must make a {@dc 19} Constitution saving throw, taking 100 necrotic damage on a failed save, or half as much damage on a successful one. If this damage reduces the target to 0 hit points, the target dies." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Implacable Maneuver", + "body": [ + "Soth moves up to his speed or commands a mount he is riding to move up to its speed. The movement from this action doesn't provoke opportunity attacks. If he or his mount moves within 5 feet of a creature during this movement, he can force the creature to make a {@dc 20} Strength saving throw. The creature is knocked {@condition prone} unless it succeeds on the saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Strike (Costs 2 Actions)", + "body": [ + "Soth makes one Forsaken Brand attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 3 Actions)", + "body": [ + "Soth uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Soth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command} (cast at 3rd level)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishment} (cast at 6th level)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell hold person} (cast at 3rd level)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VEoR" + } + ], + "subtype": "paladin", + "actions_note": "", + "mythic": null, + "key": "Lord Soth-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Red Ruin", + "source": "DSotDQ", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB|plate}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 12, + "constitution": 17, + "intelligence": 13, + "wisdom": 14, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "dex": "+5" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Draconic Devotion", + "body": [ + "While Red Ruin can see a Dragon that isn't hostile to her, she has advantage on attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mounted Combat Master", + "body": [ + "When Red Ruin is mounted and a creature targets her mount with an attack, Red Ruin can cause the attack to target her instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mounted Evasion", + "body": [ + "When Red Ruin or her mount makes a Dexterity saving throw to take half damage from an effect, they take no damage on a success and half damage on a failure." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Red Ruin makes three Ember Lance attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ember Lance", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage plus 7 ({@damage 2d6}) fire damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 16} Strength saving throw or fall {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Explosive Hand Crossbow {@recharge 5}", + "body": [ + "Red Ruin fires an explosive crossbow bolt at a point she can see within 120 feet of herself. When the bolt reaches that point, or if it hits an object early, it detonates in a 20-foot-radius sphere. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 35 ({@damage 10d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Red Ruin-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Sea Elf Scout", + "source": "DSotDQ", + "page": 114, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Any one language (usually Common)" + ], + "traits": [ + { + "title": "Keen Hearing and Sight", + "body": [ + "The scout has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The scout has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Child of the Sea", + "body": [ + "The scout can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scout makes two melee attacks or two ranged attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, ranged 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Sea Elf Scout-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Sivak Draconian", + "source": "DSotDQ", + "page": 199, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 57, + "formula": "6d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 10, + "constitution": 18, + "intelligence": 13, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "saves": { + "str": "+6", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points by a creature that is Large or smaller, the draconian crumbles into dust that then forms a spectral, shrieking image of the creature that killed it. The image lasts for 1 minute. Each creature hostile to the draconian within 10 feet of the image must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the spectral image for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Serrated Sword attacks and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Serrated Sword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shape Theft", + "body": [ + "After the draconian kills a Medium or smaller Humanoid, the draconian magically cloaks itself in an illusion to look and feel like that creature while retaining the draconian's game statistics (other than its size). This transformation lasts until the draconian dies or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sivak Draconian-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Skeletal Knight", + "source": "DSotDQ", + "page": 208, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 20, + "dexterity": 10, + "constitution": 16, + "intelligence": 13, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "saves": { + "con": "+6", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the skeletal knight to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is bludgeoning or from a critical hit. On a success, the skeletal knight drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The skeletal knight doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skeletal knight makes three Enervating Blade or Throwing Axe attacks in any combination." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enervating Blade", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) necrotic damage, and if the target is a creature, it can't regain hit points until the start of the skeletal knight's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Throwing Axe", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skeletal Knight-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Tem Temble", + "source": "DSotDQ", + "page": 213, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 14, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Kenderspeak" + ], + "traits": [ + { + "title": "Bonus Proficiencies", + "body": [ + "Tem is proficient with simple weapons and light armor." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hoopak", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 40/160 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if Tem used the hoopak's sling to make a ranged attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Taunt", + "body": [ + "Tem launches an infuriating barrage of insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a {@dc 12} Wisdom saving throw or have disadvantage on attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Elusive", + "body": [ + "Tem takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Tem's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to spell attacks). She has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 2, + "spells": [ + "{@spell healing word}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "kender", + "actions_note": "", + "mythic": null, + "key": "Tem Temble-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Wasteland Dragonnel", + "source": "DSotDQ", + "page": 201, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d10 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 16, + "constitution": 12, + "intelligence": 8, + "wisdom": 13, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The dragonnel doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonnel makes two Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Spit", + "body": [ + "{@atk rw} {@hit 5} to hit, range 60 ft., one target. {@h}20 ({@damage 5d6 + 3}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wasteland Dragonnel-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Wersten Kern", + "source": "DSotDQ", + "page": 209, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "21d8 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 21, + "dexterity": 10, + "constitution": 18, + "intelligence": 13, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "saves": { + "con": "+9", + "wis": "+7" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal", + "Solamnic" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces Wersten to 0 hit points, she must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is bludgeoning or from a critical hit. On a success, Wersten drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Wersten doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Wersten makes three Banner Pike attacks and uses Terrifying Litany if it's available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Banner Pike", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 13 ({@damage 3d8}) necrotic damage. If the target is a Humanoid, it must succeed on a {@dc 16} Charisma saving throw or be cursed. The curse lasts until it is lifted by remove curse or similar magic. Black, thorny rose stems sprout from the creature's body while it is cursed, imposing disadvantage on the creature's ability checks and attack rolls and halving its speed. A creature that succeeds on the saving throw against the curse is immune to it for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrifying Litany {@recharge 5}", + "body": [ + "Wersten recites names of souls slain by Soth and his company, channeling their mortal terror. Each creature that isn't an Undead within 30 feet of her must make a {@dc 16} Wisdom saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) psychic damage and is {@condition frightened} of Wersten for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition frightened}. At the end of each of its turns, a {@condition frightened} creature can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Wersten casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell wall of stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wersten Kern-DSotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Belashyrra", + "source": "ERLW", + "page": 286, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 304, + "formula": "32d8 + 160", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 24, + "dexterity": 21, + "constitution": 20, + "intelligence": 25, + "wisdom": 22, + "charisma": 23, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+14", + "wis": "+13", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Alien Mind", + "body": [ + "If a creature tries to read Belashyrra's thoughts or deals psychic damage to it, that creature must succeed on a {@dc 22} Intelligence saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Thief", + "body": [ + "Belashyrra can see through the eyes of all creatures within 120 feet of it. It can use its Eye Ray through any creature within 120 feet of it, as though it were in that creature's space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Belashyrra fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Belashyrra has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Belashyrra regains 20 hit points at the start of its turn. If it takes radiant damage, this trait doesn't function at the start of its next turn. Belashyrra dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "As a bonus action, Belashyrra can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Belashyrra makes two attacks with its claws and uses its Eye Ray once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Ray", + "body": [ + "Belashyrra shoots one of the following magical eye rays of its choice, targeting one creature it can see within 120 feet of it:", + { + "title": "1. Psyche-Reconstruction Ray", + "body": [ + "The target must make a {@dc 22} Wisdom saving throw, taking 49 ({@damage 9d10}) psychic damage on a failed save, or half as much damage on a successful one. If this damage reduces a creature to 0 hit points, it dies and transforms into a spectator under Belashyrra's control and acts immediately after Belashyrra in the initiative order. The target can't be returned to its original form by any means short of a {@spell wish} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Domination Ray", + "body": [ + "The target must succeed on a {@dc 22} Wisdom saving throw or be {@condition charmed} by Belashyrra for 1 minute or until the target takes damage. Belashyrra can issue telepathic commands to the {@condition charmed} creature (no action required), which it does its best to obey." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Mind-Weakening Ray", + "body": [ + "The target must succeed on a {@dc 22} Intelligence saving throw or take 36 ({@damage 8d8}) psychic damage and be unable to cast spells or activate magic items for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Blinding Ray", + "body": [ + "The target and each creature within 10 feet of it must succeed on a {@dc 22} Constitution saving throw or take 19 ({@damage 3d12}) radiant damage and be {@condition blinded} for 1 minute. Until this blindness ends, Belyshyrra can see through the {@condition blinded} creature's eyes. The {@condition blinded} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "Belashyrra makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Implant Fear (Costs 2 Actions)", + "body": [ + "Belashyrra targets a creature it can see within 60 feet of it. The target must succeed on a {@dc 22} Wisdom saving throw or take 22 ({@damage 4d10}) psychic damage and immediately use its reaction, if available, to move as far as its speed allows away from Belashyrra." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend Reality (Costs 3 Actions)", + "body": [ + "Belashyrra rips at the bonds of reality in its immediate area. Each creature within 10 feet of Belashyrra must succeed on a {@dc 22} Constitution saving throw or take 19 ({@damage 3d12}) force damage and gain one level of {@condition exhaustion}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Belashyrra-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Bone Knight", + "source": "ERLW", + "page": 316, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 20, + "note": "bonecraft armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 13, + "constitution": 14, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Commander of Bones", + "body": [ + "As a bonus action, the knight can target one skeleton or zombie it can see within 30 feet of it. The target must make a {@dc 14} Wisdom saving throw. On a failed save, the target must obey the knight's commands until the knight dies or until the knight releases it as a bonus action. The knight can command up to twelve undead at a time this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master of the Pallid Banner", + "body": [ + "While within 60 feet of the knight, any undead ally of the knight has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The knight attacks twice with one of its weapons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The knight is an 8th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It has the following paladin spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell compelled duel}", + "{@spell hellish rebuke}", + "{@spell wrathful smite}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell branding smite}", + "{@spell crown of madness}", + "{@spell darkness}", + "{@spell find steed}", + "{@spell magic weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Bone Knight-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Changeling", + "source": "ERLW", + "page": 317, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 8, + "dexterity": 15, + "constitution": 12, + "intelligence": 14, + "wisdom": 10, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Halfling", + "Thieves' cant" + ], + "traits": [ + { + "title": "Change Appearance", + "body": [ + "The changeling can use its action to polymorph into a Medium humanoid it has seen, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The changeling makes two attacks with its dagger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unsettling Visage (Recharges after a Short or Long Rest)", + "body": [ + "Each creature within 30 feet of the changeling must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "changeling, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Changeling-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Clawfoot", + "source": "ERLW", + "page": 289, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 4, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The clawfoot has advantage on an attack roll against a creature if at least one of the clawfoot's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the clawfoot moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the clawfoot can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The clawfoot makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clawfoot-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Dolgaunt", + "source": "ERLW", + "page": 290, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 18, + "constitution": 12, + "intelligence": 13, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "Deep Speech", + "Goblin" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If the dolgaunt is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the dolgaunt instead takes no damage if it succeeds on the saving throw, and only half damage if it fails. It can't use this trait if it's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "While the dolgaunt is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dolgaunt makes two tentacle attacks and two unarmed strikes. Up to two tentacle attacks can be replaced by Vitality Drain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage. The target is {@condition grappled} (escape {@dc 12}) if it is a Large or smaller creature. Until this grapple ends, the dolgaunt can't use the same tentacle on another target. The dolgaunt has two tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vitality Drain", + "body": [ + "One creature {@condition grappled} by a tentacle of the dolgaunt must make a {@dc 11} Constitution saving throw. On a failed save, the target takes 9 ({@damage 2d8}) necrotic damage, and the dolgaunt regains a number of hit points equal to half the necrotic damage taken." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dolgaunt-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Dolgrim", + "source": "ERLW", + "page": 291, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 14, + "constitution": 12, + "intelligence": 8, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech", + "Goblin" + ], + "traits": [ + { + "title": "Dual Consciousness", + "body": [ + "The dolgrim has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dolgrim makes three attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dolgrim-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Dusk Hag", + "source": "ERLW", + "page": 292, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 16, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+6" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Common", + "Giant", + "Infernal" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The hag has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hag makes two Nightmare Touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Touch", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one creature. {@h}18 ({@damage 4d6 + 4}) psychic damage. If the target is {@condition unconscious}, it takes an extra 10 ({@damage 3d6}) psychic damage and is cursed until the hag dies or the curse is removed. The cursed creature's hit point maximum decreases by 5 ({@dice 1d10}) whenever it finishes a long rest." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Dream Eater", + "body": [ + "When an {@condition unconscious} creature the hag can see within 30 feet of her regains consciousness, the hag can force the creature to make a {@dc 15} Wisdom saving throw. Unless the save succeeds, the creature takes 11 ({@damage 2d10}) psychic damage, and the hag regains hit points equal to the amount of damage taken." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The hag's spellcasting ability is Charisma (spell save {@dc 15}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dream}", + "{@spell hypnotic pattern}", + "{@spell sleep} ({@dice 9d8})" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell legend lore}", + "{@spell scrying}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dusk Hag-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Dyrrn", + "source": "ERLW", + "page": 288, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 325, + "formula": "31d8 + 186", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 26, + "dexterity": 21, + "constitution": 22, + "intelligence": 26, + "wisdom": 23, + "charisma": 24, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+15", + "wis": "+13", + "cha": "+14" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Alien Mind", + "body": [ + "If a creature tries to read Dyrrn's thoughts or deals psychic damage to it, that creature must succeed on a {@dc 23} Intelligence saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Dyrrn fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Dyrrn has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Dyrrn regains 20 hit points at the start of its turn. If Dyrrn takes radiant damage, this trait doesn't function at the start of its next turn. Dyrrn dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "As a bonus action, Dyrrn can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Dyrrn makes one Tentacle Whip attack and uses its Corruption once. Dyrrn can replace its Tentacle Whip attack with Extract Brain if it has a creature {@condition grappled}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle Whip", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) slashing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 23}), pulled into an unoccupied space within 5 feet of Dyrrn, and must succeed on a {@dc 23} Intelligence saving throw or be {@condition stunned} until this grapple ends. Dyrrn can't use the same tentacle whip on another target until this grapple ends. Dyrrn has two tentacle whips." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corruption", + "body": [ + "Dyrrn targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 23} Constitution saving throw or take 22 ({@damage 4d6 + 8}) necrotic damage and become corrupted for 1 minute.", + "A corrupted creature's flesh twists in alien ways. The creature has disadvantage on attack rolls, its speed is reduced by half, and if it tries to cast a spell, it must first succeed on a {@dc 15} Intelligence check or the spell fails and is wasted. The corrupted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one {@condition incapacitated} creature {@condition grappled} by Dyrrn. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, Dyrrn kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tentacle Whip", + "body": [ + "Dyrrn makes one attack with its Tentacle Whip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spawn Aberration (Costs 2 Actions)", + "body": [ + "Dyrrn regurgitates an intellect devourer in an unoccupied space within 5 feet of it. The intellect devourer is under Dyrrn's control and acts immediately after Dyrrn in the initiative order." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast (Costs 3 Actions)", + "body": [ + "Dyrrn magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 23} Intelligence saving throw or take 30 ({@damage 5d8 + 8}) psychic damage and be {@condition stunned} 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dyrrn-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Expeditious Messenger", + "source": "ERLW", + "page": 293, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d4 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 6, + "dexterity": 16, + "constitution": 13, + "intelligence": 8, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "one language spoken by its creator" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The messenger doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Bond", + "body": [ + "While the messenger is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Expeditious Messenger-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Fastieth", + "source": "ERLW", + "page": 289, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 18, + "constitution": 10, + "intelligence": 4, + "wisdom": 11, + "charisma": 4, + "passive": 10, + "traits": [ + { + "title": "Quickness {@recharge 5}", + "body": [ + "The fastieth can take the Dodge action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fastieth-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Hashalaq Quori", + "source": "ERLW", + "page": 305, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 12, + "dexterity": 14, + "constitution": 13, + "intelligence": 18, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Quori" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quori uses its Mind Thrust twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Idyllic Touch", + "body": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) force damage. If the target is a creature, it must succeed on a {@dc 16} Wisdom saving throw or fall {@condition prone} in a fit of laughter." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Thrust", + "body": [ + "The quori targets a creature it can see within 60 feet of it. The target must make a {@dc 16} Wisdom saving throw, taking 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One humanoid that the quori can see within 5 feet of it must succeed on a {@dc 16} Charisma saving throw or be possessed by the quori; the quori then disappears, and the target is {@condition incapacitated} and loses control of its body. The quori now controls the body but doesn't deprive the target of awareness. The quori can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the quori ends it as a bonus action, or the quori is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the quori reappears in an unoccupied space within 5 feet of the body. The target is immune to this quori's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Empathic Feedback", + "body": [ + "When the quori takes damage from a creature it can see within 60 feet of it, the quori can force that creature to succeed on a {@dc 16} Intelligence saving throw or take 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The quori's spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate person}", + "{@spell dream}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hashalaq Quori-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Inspired", + "source": "ERLW", + "page": 294, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 10, + "intelligence": 16, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+2" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Quori" + ], + "traits": [ + { + "title": "Dual Mind", + "body": [ + "The Inspired has advantage on Wisdom saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Inspired makes two crysteel dagger attacks. It can replace one attack with vicious mockery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crysteel Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 10 ({@damage 3d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vicious Mockery (Cantrip)", + "body": [ + "The Inspired unleashes a string of insults laced with subtle enchantments at one creature it can see within 60 feet of it. If the target can hear the Inspired, the target must succeed on a {@dc 13} Wisdom saving throw or take 2 ({@damage 1d4}) psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The Inspired's spellcasting ability is Intelligence (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell vicious mockery} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell dissonant whispers}", + "{@spell hex}", + "{@spell hold person}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Inspired-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Iron Defender", + "source": "ERLW", + "page": 293, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 14, + "constitution": 16, + "intelligence": 8, + "wisdom": 11, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Keen Senses", + "body": [ + "The defender has advantage on Wisdom ({@skill Perception}) checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Bond", + "body": [ + "While the defender is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or take an extra 3 ({@damage 1d6}) piercing damage and be {@condition grappled} (escape {@dc 13}). The defender can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Iron Defender-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Kalaraq Quori", + "source": "ERLW", + "page": 306, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "19d8 + 76", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 12, + "dexterity": 21, + "constitution": 18, + "intelligence": 23, + "wisdom": 24, + "charisma": 25, + "passive": 23, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+13", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "All-Around Vision", + "body": [ + "The quori can't be {@status surprised} while it isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The quori can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The quori has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quori makes two Soul Binding attacks. Alternatively, it can make four attacks with Arcane Blast." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Blast", + "body": [ + "{@atk rs} {@hit 13} to hit, range 120 ft., one target. {@h}12 ({@damage 1d10 + 7}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Binding", + "body": [ + "{@atk ms} {@hit 13} to hit, reach 5 ft., one target. {@h}29 ({@damage 4d10 + 7}) necrotic damage. A creature reduced to 0 hit points from this attack dies and has its soul imprisoned in one of the quori's eyes. The target can't be revived by any means short of a {@spell wish} spell until the quori is destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Seed (1/Day)", + "body": [ + "The quori touches one humanoid, which must succeed on a {@dc 21} Intelligence saving throw or be cursed. The curse lasts until it's removed by a remove curse or {@spell greater restoration} spell.", + "The cursed target suffers 1 level of {@condition exhaustion} every 24 hours, and finishing a long rest doesn't reduce its {@condition exhaustion}. If the cursed target reaches {@condition exhaustion} level 6, it doesn't die; it instead becomes a thrall under the quori's control, and all its {@condition exhaustion} is removed. Only the {@spell wish} spell can free the thrall from this control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm of Eyes {@recharge}", + "body": [ + "The quori creates a swarm of spectral eyes that fills a 30-foot-radius sphere centered on a point it can see within 60 feet of it. Each creature in that area must make a {@dc 21} Wisdom saving throw. On a failure, a creature takes 45 ({@damage 10d8}) psychic damage, and it is {@condition blinded} for 1 minute. On a success, a creature takes half as much damage and isn't {@condition blinded}. A {@condition blinded} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One humanoid that the quori can see within 5 feet of it must succeed on a {@dc 21} Charisma saving throw or be possessed by the quori; the quori then disappears, and the target is {@condition incapacitated} and loses control of its body. The quori now controls the body but doesn't deprive the target of awareness. The quori can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the quori ends it as a bonus action, or the quori is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the quori reappears in an unoccupied space within 5 feet of the body. The target is immune to this quori's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The quori's spellcasting ability is Charisma (spell save {@dc 21}, {@hit 13} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell arcane eye}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell confusion}", + "{@spell dream}", + "{@spell eyebite}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kalaraq Quori-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Kalashtar", + "source": "ERLW", + "page": 317, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 14, + "constitution": 12, + "intelligence": 13, + "wisdom": 15, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "telepathy 20 ft." + ], + "traits": [ + { + "title": "Dual Mind", + "body": [ + "The kalashtar has advantage on Wisdom saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Thrust", + "body": [ + "The kalashtar targets a creature it can see within 30 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "kalashtar", + "actions_note": "", + "mythic": null, + "key": "Kalashtar-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Karrnathi Undead Soldier", + "source": "ERLW", + "page": 295, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 16, + "intelligence": 12, + "wisdom": 13, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The soldier has advantage on an attack roll against a creature if at least one of the soldier's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the soldier to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the soldier drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The soldier attacks three times with one of its weapons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The soldier adds 3 to its AC against one melee attack that would hit it. To do so, the soldier must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Karrnathi Undead Soldier-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Lady Illmarrow", + "source": "ERLW", + "page": 296, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 199, + "formula": "21d8 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 16, + "dexterity": 16, + "constitution": 20, + "intelligence": 27, + "wisdom": 21, + "charisma": 24, + "passive": 22, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "int": "+15", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Illmarrow fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Illmarrow has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "Illmarrow's body turns to dust when she drops to 0 hit points, and her equipment is left behind. She gains a new body after {@dice 1d10} days, regaining all her hit points and becoming active again. The new body appears within two hundred miles of the location at which she was destroyed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Chill Touch (Cantrip)", + "body": [ + "{@atk rs} {@hit 15} to hit, range 120 ft., one creature. {@h}18 ({@damage 4d8}) necrotic damage, and the target can't regain hit points until the start of Illmarrow's next turn. If the target is undead, it also has disadvantage on attack rolls against Illmarrow until the end of her next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d6 + 3}) slashing damage plus 10 ({@damage 3d6}) cold damage, and the target must succeed on a {@dc 20} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Breath {@recharge 5}", + "body": [ + "Illmarrow exhales poisonous gas in a 30-foot cone. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, a creature takes 35 ({@damage 10d6}) poison damage and is {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the creature can't regain hit points. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}.", + "A humanoid reduced to 0 hit points by this damage dies and rises at the start of Illmarrow's next turn as a zombie. The zombie acts immediately after Illmarrow in the initiative count and is permanently under her command, following her verbal orders." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip", + "body": [ + "Illmarrow casts a cantrip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Claw", + "body": [ + "Illmarrow uses her Paralyzing Claw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightening Presence (Costs 2 Actions)", + "body": [ + "Illmarrow targets up to three creatures she can see within 30 feet of her. Each target must succeed on a {@dc 20} Wisdom saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to Illmarrow's Frightening Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Breath (Costs 3 Actions)", + "body": [ + "Illmarrow recharges her Poison Breath and uses it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Illmarrow is a 20th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 23}, {@hit 15} to hit with spell attacks). Illmarrow has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell magic missile}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell detect thoughts}", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell confusion}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell cone of cold}", + "{@spell hold monster}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell chain lightning}", + "{@spell circle of death}", + "{@spell create undead}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell finger of death}", + "{@spell forcecage}", + "{@spell prismatic spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell incendiary cloud}", + "{@spell maze}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell power word kill}", + "{@spell time stop}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lady Illmarrow-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Living Burning Hands", + "source": "ERLW", + "page": 298, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 25, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 12, + "constitution": 16, + "intelligence": 3, + "wisdom": 6, + "charisma": 6, + "passive": 8, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The living spell can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Magical Strike", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Mimicry {@recharge 5}", + "body": [ + "The living spell unleashes a thin sheet of flames in a 15-foot cone. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Burning Hands-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Living Cloudkill", + "source": "ERLW", + "page": 299, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 73, + "formula": "7d10 + 35", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 25, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 10, + "dexterity": 15, + "constitution": 20, + "intelligence": 3, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The living spell can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The living spell makes two Magical Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magical Strike", + "body": [ + "{@atk ms} {@hit 8} to hit, reach 10 ft., one target. {@h}22 ({@dice 5d6 + 5}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Mimicry {@recharge 5}", + "body": [ + "The living spell creates a 40-foot-diameter sphere of fog within 60 feet of it (the fog spreads around corners). When a creature enters the fog for the first time on a turn or starts its turn there, it must make a {@dc 16} Constitution saving throw, taking 22 ({@damage 5d8}) poison damage on a failed save, or half as much damage on a successful one.", + "The fog moves 10 feet away from the living spell at the start of each of its turns, rolling along the ground and through openings. The fog lasts for 10 minutes or until the living spell's {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Cloudkill-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Living Lightning Bolt", + "source": "ERLW", + "page": 299, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 57, + "formula": "6d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 25, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 15, + "constitution": 18, + "intelligence": 3, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The living spell can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The living spell makes two Magical Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magical Strike", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 10 ft., one target. {@h}21 ({@damage 5d6 + 4}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Mimicry {@recharge 5}", + "body": [ + "The living spell unleashes a stroke of lightning in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 15} Dexterity saving throw, taking 28 ({@damage 8d6}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Lightning Bolt-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Magewright", + "source": "ERLW", + "page": 318, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 11, + "dexterity": 13, + "constitution": 10, + "intelligence": 14, + "wisdom": 14, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The magewright's spellcasting ability is Intelligence (spell save {@dc 12}). To cast one of its rituals, the magewright must provide additional material components whose value in gold pieces is 20 times the spell's level. These components are consumed when the ritual is finished. The magewright knows the following spells:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Magewright-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Mordakhesh", + "source": "ERLW", + "page": 301, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 20, + "dexterity": 16, + "constitution": 18, + "intelligence": 15, + "wisdom": 17, + "charisma": 20, + "passive": 18, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "con": "+9", + "wis": "+8", + "cha": "+10" + }, + "dmg_vulnerabilities": [ + { + "value": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Limited Magic Immunity", + "body": [ + "Mordakhesh can't be affected or detected by spells of 6th level or lower unless he wishes to be. Mordakhesh has advantage on saving throws against all other spells and magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Mordakhesh makes three greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 5 ({@damage 1d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Orb", + "body": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one creature. {@h}13 ({@dice 3d8}) damage of a type chosen by Mordakhesh: acid, cold, fire, lightning, poison, or thunder." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Mordakhesh makes one weapon attack or casts {@spell chromatic orb}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Resistance", + "body": [ + "Modakhesh gains resistance to one damage type of his choice\u2014acid, cold, fire, lightning, poison, or thunder\u2014until the start of his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warlord's Command (Costs 2 Actions)", + "body": [ + "Mordakhesh targets up to two allies that he can see within 30 feet of him. If a target can see and hear him, the target can make one weapon attack as a reaction and gains advantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Mordakhesh's spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). Mordakhesh can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chromatic orb} (see \"Actions\" below)", + "{@spell detect thoughts}", + "{@spell disguise self}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishing smite}", + "{@spell destructive wave}", + "{@spell fly}", + "{@spell mass suggestion}", + "{@spell staggering smite}", + "{@spell suggestion}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mordakhesh-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Radiant Idol", + "source": "ERLW", + "page": 308, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 23, + "dexterity": 18, + "constitution": 19, + "intelligence": 17, + "wisdom": 20, + "charisma": 21, + "passive": 19, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+9", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Aura of False Divinity", + "body": [ + "A creature that starts its turn within 30 feet of the radiant idol must make a {@dc 17} Wisdom saving throw, provided the radiant idol isn't {@condition incapacitated}. On a failed save, the creature is {@condition charmed} by the radiant idol. A creature {@condition charmed} in this way can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it succeeds on the saving throw, a creature is immune to this radiant idol's Aura of False Divinity for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The radiant idol has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The radiant idol makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Strike (1/Day)", + "body": [ + "The radiant idol chooses a point on the ground it can see within 60 feet of it. A 30-foot-radius, 40-foot-high cylinder of bright light appears there until the start of the radiant idol's next turn. Each creature in the cylinder when it appears or that ends its turn there must make a {@dc 17} Constitution saving throw, taking 36 ({@damage 8d8}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The radiant idol's spellcasting ability is Charisma (spell save {@dc 17}). The radiant idol can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell cure wounds}", + "{@spell disguise self}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell commune}", + "{@spell dominate person}", + "{@spell insect plague}", + "{@spell mass suggestion}", + "{@spell raise dead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Radiant Idol-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Rak Tulkhesh", + "source": "ERLW", + "page": 303, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 23, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 25, + "note": "(versus ranged attacks)", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 478, + "formula": "33d12 + 264", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "28", + "xp": 120000, + "strength": 29, + "dexterity": 19, + "constitution": 27, + "intelligence": 21, + "wisdom": 22, + "charisma": 26, + "passive": 24, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+17", + "con": "+16", + "wis": "+14", + "cha": "+16" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Deadly Critical", + "body": [ + "Rak Tulkhesh scores a critical hit on a roll of 19 or 20 and rolls the damage dice three times, instead of twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Rak Tulkhesh fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Rak Tulkhesh has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind of Weapons", + "body": [ + "A magical aura of weapons surrounds Rak Tulkhesh in a 10 foot radius. At the start of each of his turns, any other creature in the aura takes 14 ({@damage 4d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Rak Tulkhesh makes four weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spawned Melee Weapon", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spawned Ranged Weapon", + "body": [ + "{@atk rw} {@hit 12} to hit, range 150/600 ft., one target. {@h}17 ({@damage 3d8 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Rak Tulkhesh magically polymorphs into a humanoid, beast, or giant that has a challenge rating no higher than his own, or back into his true form. He reverts to his true form if he dies. Any equipment he is wearing or carrying is absorbed or borne by the new form (his choice).", + "In a new form, Rak Tulkhesh retains his alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, and Intelligence, Wisdom, and Charisma scores, as well as this action. His statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Rak Tulkhesh makes one weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "End Magic (Costs 2 Actions)", + "body": [ + "Rak Tulkhesh casts {@spell dispel magic}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Provoke Rage (Costs 3 Actions)", + "body": [ + "Each creature within 60 feet of Rak Tulkhesh must succeed on a {@dc 24} Wisdom saving throw or use its reaction to make a melee weapon attack against a random creature within reach. If no creatures are within reach, it makes a ranged weapon attack against a random creature within range, throwing its weapon if necessary. This attack is made with advantage and gains a +4 bonus to the damage roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Rak Tulkhesh's spellcasting ability is Charisma (spell save {@dc 24}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishing smite}", + "{@spell blinding smite}", + "{@spell staggering smite}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rak Tulkhesh-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Shifter", + "source": "ERLW", + "page": 319, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 11, + "wisdom": 15, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Shifting (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the shifter takes on a more bestial form for 1 minute or until it dies. The shifter gains 5 temporary hit points. It can make a bite attack when it activates this trait and also as a bonus action on each of its turns while in its bestial form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shifter", + "actions_note": "", + "mythic": null, + "key": "Shifter-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Sul Khatesh", + "source": "ERLW", + "page": 304, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 475, + "formula": "50d10 + 200", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "28", + "xp": 120000, + "strength": 18, + "dexterity": 21, + "constitution": 19, + "intelligence": 30, + "wisdom": 22, + "charisma": 25, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "int": "+18", + "wis": "+14", + "cha": "+15" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 150 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Sul Khatesh fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Sul Khatesh has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master of Magic", + "body": [ + "Sul Khatesh has advantage on Constitution saving throws to maintain {@status concentration}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Sul Khatesh makes four attacks with Arcane Blast." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Blast", + "body": [ + "{@atk rs} {@hit 18} to hit, range 120 ft., one target. {@h}15 ({@damage 1d10 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Staff", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}36 ({@damage 5d12 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Cataclysm (Recharges after a Long Rest)", + "body": [ + "Sul Khatesh conjures orbs of magical energy that plummet to the ground at three different points she can see within 1 mile of her. Each creature in a 40-foot-radius sphere centered on each point must make a {@dc 26} Dexterity saving throw, taking 71 ({@damage 11d12}) force damage on a failed save or half as much damage on a successful one. A creature in the area of more than one arcane burst is affected only once. The area of each arcane burst then acts as an {@spell antimagic field} for 1 hour. Sul Khatesh and spells she casts are unaffected by these fields." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Sul Khatesh magically polymorphs into a humanoid, beast, or giant that has a challenge rating no higher than her own, or back into her true form. She reverts to her true form if she dies. Any equipment she is wearing or carrying is absorbed or borne by the new form (Sul Khatesh's choice).", + "In a new form, Sul Khatesh retains her alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, and Intelligence, Wisdom, and Charisma scores, as well as this action. Her statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Sul Khatesh makes two attacks with her Arcane Blast or one attack with her magic staff." + ], + "__dataclass__": "Entry" + }, + { + "title": "Consume Magic (Costs 2 Actions)", + "body": [ + "Sul Khatesh targets a creature within 120 feet of her who is {@status concentration||concentrating} on a spell. The target must succeed on a {@dc 26} Constitution saving throw or its {@status concentration} is broken on the spell, and Sul Khatesh gains 5 temporary hit points per level of that spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maddening Secrets (Costs 3 Actions)", + "body": [ + "Sul Khatesh whispers an arcane secret into the mind of a creature she can see within 60 feet of her. The target must succeed on a {@dc 26} Wisdom saving throw or expend one of its spell slots of 3rd level or lower and deal 26 ({@damage 4d12}) force damage to each creature within 30 feet of it. A creature that fails the saving throw but can't expend a spell slot is instead {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Sul Khatesh's spellcasting ability is Intelligence (spell save {@dc 26}, {@hit 18} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell counterspell}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell eyebite}", + "{@spell fireball}", + "{@spell lightning bolt}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell chain lightning}", + "{@spell create undead}", + "{@spell dream}", + "{@spell hold monster}", + "{@spell mass suggestion}", + "{@spell scrying}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell foresight}", + "{@spell gate}", + "{@spell power word kill}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sul Khatesh-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Tarkanan Assassin", + "source": "ERLW", + "page": 320, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Thieves' cant" + ], + "traits": [ + { + "title": "Unstable Mark", + "body": [ + "When the assassin casts an innate spell, each creature within 10 feet of the assassin must make a {@dc 12} Constitution saving throw, taking 4 ({@damage 1d8}) force damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The assassin makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Bolt (Cantrip)", + "body": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one target. {@h}11 ({@damage 2d10}) fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Orb (1/Day)", + "body": [ + "{@atk rs} {@hit 4} to hit, range 90 ft., one creature. {@h}18 ({@dice 4d8}) damage of a type chosen by the assassin: acid, cold, fire, lightning, poison, or thunder." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "con", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The assassin's spellcasting ability is Constitution ({@hit 4} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fire bolt}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell chromatic orb}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Tarkanan Assassin-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "The Lord of Blades", + "source": "ERLW", + "page": 300, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "23d8 + 92", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 20, + "dexterity": 15, + "constitution": 18, + "intelligence": 19, + "wisdom": 17, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "con": "+10", + "int": "+10", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "disease", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "traits": [ + { + "title": "Adamantine Plating", + "body": [ + "Any critical hit against the Lord of Blades becomes a normal hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bladed Armor", + "body": [ + "A creature that grapples the Lord of Blades or is {@condition grappled} by him takes 13 ({@damage 3d8}) slashing damage. A creature takes 13 ({@damage 3d8}) slashing damage if it starts its turn grappling or being {@condition grappled} by the Lord of Blades." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charge", + "body": [ + "If the Lord of Blades moves at least 10 feet straight toward a target and then hits it with his adamantine sixblade on the same turn, the target takes an extra 11 ({@damage 2d10}) slashing damage. If the target is a creature, it must succeed on a {@dc 19} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warforged Resilience", + "body": [ + "The Lord of Blades has advantage on saving throws against being {@condition poisoned}, is immune to disease, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Lord of Blades makes three attacks: two with his adamantine sixblade and one with his bladed wings." + ], + "__dataclass__": "Entry" + }, + { + "title": "Adamantine Sixblade", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bladed Wings", + "body": [ + "{@atk mw,rw} {@hit 11} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Bolt (Cantrip)", + "body": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}22 ({@damage 4d10}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The Lord of Blades makes one weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cantrip", + "body": [ + "The Lord of Blades casts one of his cantrips." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The Lord of Blades casts a spell of 2nd level or lower from his spell list that takes 1 action to cast." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blade Dash (Costs 3 Actions)", + "body": [ + "The Lord of Blades moves up to his speed without provoking opportunity attacks, then makes one attack with his adamantine sixblade. He can make one bladed wings attack against each creature he moves past." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The Lord of Blades is a 20th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). He has the following artificer spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt} (see \"Actions\" below)", + "{@spell mage hand}", + "{@spell mending}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell sanctuary}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell heat metal}", + "{@spell scorching ray}", + "{@spell see invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell haste}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell freedom of movement}", + "{@spell Mordenkainen's faithful hound}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell animate objects}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "warforged", + "actions_note": "", + "mythic": null, + "key": "The Lord of Blades-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Tsucora Quori", + "source": "ERLW", + "page": 307, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 14, + "constitution": 18, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Quori" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quori makes three attacks: one pincer attack, one attack with its claws, and one stinger attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pincer", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage. The target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. The quori has two pincers, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 4d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stinger", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage, and the target must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the quori for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One humanoid that the quori can see within 5 feet of it must succeed on a {@dc 14} Charisma saving throw or be possessed by the quori; the quori then disappears, and the target is {@condition incapacitated} and loses control of its body. The quori now controls the body but doesn't deprive the target of awareness. The quori can't be targeted by any attack, spell, or other effect, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the quori ends it as a bonus action, or the quori is forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the quori reappears in an unoccupied space within 5 feet of the body. The target is immune to this quori's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The quori's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tsucora Quori-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Undying Councilor", + "source": "ERLW", + "page": 311, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 16, + "dexterity": 10, + "constitution": 14, + "intelligence": 17, + "wisdom": 21, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+7", + "wis": "+9" + }, + "dmg_vulnerabilities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Aura of Radiance", + "body": [ + "The councilor magically sheds bright light in a 15-foot radius and dim light for an additional 15 feet. The councilor can extinguish or restore this light as a bonus action. If the bright light overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created that darkness is dispelled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The councilor has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The councilor makes two Radiant Touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Touch", + "body": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing Touch (3/Day)", + "body": [ + "The councilor touches another creature. The target magically regains 18 ({@dice 3d8 + 5}) hit points and is freed from one curse afflicting it (councilor's choice)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Strike (5th-Level Spell; Requires a Spell Slot)", + "body": [ + "The councilor chooses a point it can see within 60 feet of it. Each creature in a 10-foot-radius, 40-foot-high cylinder centered on that point must make a {@dc 17} Dexterity saving throw. A creature takes 14 ({@damage 4d6}) fire damage and 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one. If the councilor casts this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (its choice) increases by {@dice 1d6} for each slot level above 5th." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Touch", + "body": [ + "The councilor makes one attack with its Radiant Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shimmering Aura (Costs 2 Actions)", + "body": [ + "The councilor channels positive energy into its Aura of Radiance. Until the end of the councilor's next turn, it sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Any creature that starts its turn in the bright light must succeed on a {@dc 17} Constitution saving throw or be {@condition blinded} until the end of the councilor's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The councilor is a 13th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell command}", + "{@spell create or destroy water}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell calm emotions}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell daylight}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell divination}", + "{@spell guardian of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dispel evil and good}", + "{@spell flame strike} (see \"Actions\" below)", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell forbiddance}", + "{@spell planar ally}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell plane shift}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Undying Councilor-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Undying Soldier", + "source": "ERLW", + "page": 311, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "{@item breastplate|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 12, + "constitution": 14, + "intelligence": 11, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "The soldier magically sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The soldier can extinguish or restore this light as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The soldier has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The soldier makes two spear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack, plus 9 ({@damage 2d8}) radiant damage if the target is a fiend or undead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Undying Soldier-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Valenar Hawk", + "source": "ERLW", + "page": 312, + "size_str": "Tiny", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "4d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 8, + "dexterity": 18, + "constitution": 10, + "intelligence": 9, + "wisdom": 16, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "traits": [ + { + "title": "Bonding", + "body": [ + "The hawk can magically bond with one creature it can see, immediately after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the hawk bonds with a different creature or until the bonded creature dies. While bonded, the hawk and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Sight", + "body": [ + "The hawk has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Valenar Hawk-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Valenar Hound", + "source": "ERLW", + "page": 312, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 17, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "traits": [ + { + "title": "Bonding", + "body": [ + "The hound can magically bond with one creature it can see, immediately after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the hound bonds with a different creature or until the bonded creature dies. While bonded, the hound and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "The hound has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Valenar Hound-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Valenar Steed", + "source": "ERLW", + "page": 313, + "size_str": "Large", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 16, + "constitution": 14, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "traits": [ + { + "title": "Bonding", + "body": [ + "The steed can magically bond with one creature it can see, immediately after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the steed bonds with a different creature or until the bonded creature dies. While bonded, the steed and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Valenar Steed-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Warforged Colossus", + "source": "ERLW", + "page": 314, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 23, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 410, + "formula": "20d20 + 200", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 30, + "dexterity": 11, + "constitution": 30, + "intelligence": 3, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "saves": { + "int": "+4", + "wis": "+8", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "incapacitated", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 150 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The colossus is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the colossus fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The colossus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The colossus deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Towering Terror", + "body": [ + "Any enemy outside the colossus that starts its turn within 30 feet of it must succeed on a {@dc 26} Wisdom saving throw or be {@condition frightened} until the start of the enemy's next turn. If the enemy's saving throw is successful, it is immune to this colossus's Towering Terror for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The colossus makes three attacks\u2014one with its slam and two with its eldritch turrets\u2014and then uses Stomp." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}29 ({@damage 3d12 + 10}) bludgeoning damage, and the colossus can push the target up to 20 feet away from it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Turret", + "body": [ + "{@atk rs} {@hit 18} to hit, range 300 ft., one target. {@h}18 ({@damage 4d8}) force damage, and if the target is a creature, it is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "The colossus stomps one of its feet at a point on the ground within 20 feet of it. Any creature in a 20-foot-radius, 20-foot-high cylinder centered on this point must succeed on a {@dc 26} Dexterity saving throw or take 33 ({@damage 6d10}) bludgeoning damage and fall {@condition prone}. Until the colossus uses its Stomp again or moves, the creature is {@condition restrained}. While {@condition restrained} in this way, the creature (or another creature within 5 feet of it) can use its action to make a {@dc 26} Strength check. On a success, the creature relocates to an unoccupied space of its choice within 5 feet of the colossus and is no longer {@condition restrained}.", + "Structures, as well as nonmagical objects that are neither being worn nor carried, take the same amount of damage if they are in the cylinder (no save)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incinerating Beam {@recharge 5}", + "body": [ + "The colossus fires a beam of light in a 150-foot line that is 10 feet wide. Each creature in the line must make a {@dc 26} Dexterity saving throw, taking 60 ({@damage 11d10}) radiant damage on a failed save, or half as much damage on a successful one. A creature reduced to 0 hit points by this beam is disintegrated, leaving behind anything it was wearing or carrying." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warforged Colossus-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Warforged Soldier", + "source": "ERLW", + "page": 320, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 12, + "constitution": 16, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "disease", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Warforged Resilience", + "body": [ + "The warforged has advantage on saving throws against being {@condition poisoned} and is immune to disease. Magic can't put it to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warforged makes two armblade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Armblade", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection", + "body": [ + "When an attacker the warforged can see makes an attack roll against a creature within 5 feet of the warforged, the warforged can impose disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "warforged", + "actions_note": "", + "mythic": null, + "key": "Warforged Soldier-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Warforged Titan", + "source": "ERLW", + "page": 315, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 125, + "formula": "10d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 23, + "dexterity": 8, + "constitution": 22, + "intelligence": 3, + "wisdom": 11, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Platforms", + "body": [ + "The warforged titan has two platforms built into its chassis. One Medium or smaller creature can ride on each platform without squeezing. To make a melee attack against a target within 5 feet of the warforged, they must use spears or weapons with reach and the target must be Large or larger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The warforged titan deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warforged titan makes one axehand attack and one hammerfist attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Axehand", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) slashing damage, plus 11 ({@damage 2d10}) slashing damage if the target is {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hammerfist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sweeping Axe {@recharge}", + "body": [ + "The warforged titan makes a sweep with its axehand, and each creature within 10 feet of it must make a {@dc 17} Dexterity saving throw. A creature takes 19 ({@damage 3d8 + 6}) slashing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warforged Titan-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Zakya Rakshasa", + "source": "ERLW", + "page": 309, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 12, + "wisdom": 13, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Limited Magic Immunity", + "body": [ + "The rakshasa can't be affected or detected by spells of 1st level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The rakshasa's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Martial Prowess (1/Turn)", + "body": [ + "When the rakshasa hits a creature with a melee weapon attack, the attack deals an extra 11 ({@dice 2d10}) damage of the weapon's type, and the creature must make a {@dc 15} Strength saving throw. On a failure, the rakshasa can push the creature up to 10 feet away from it, knock the creature {@condition prone}, or make the creature drop one item it is holding of the rakshasa's choice." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The rakshasa makes three melee weapon attacks. Alternatively, it can make two ranged attacks with its javelins." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The rakshasa's innate spellcasting ability is Charisma (spell save {@dc 11}). The rakshasa can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell disguise self}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell shield}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zakya Rakshasa-ERLW", + "__dataclass__": "Monster" + }, + { + "name": "Expert", + "source": "ESK", + "page": 63, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 13, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Helpful", + "body": [ + "The expert can take the Help action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tools", + "body": [ + "The expert has {@item thieves' tools|phb} and a musical instrument." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Expert-ESK", + "__dataclass__": "Monster" + }, + { + "name": "Spellcaster", + "source": "ESK", + "page": 63, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 15, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Magical Role", + "body": [ + "Choose a role for the spellcaster: healer or mage. Your choice determines which Spellcasting trait to use below." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Healer)", + "body": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cure wounds}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting (Mage)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Mage)", + "body": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spellcaster-ESK", + "__dataclass__": "Monster" + }, + { + "name": "Warrior", + "source": "ESK", + "page": 63, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 15, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Martial Role", + "body": [ + "The warrior has one of the following traits of your choice:", + { + "title": "Attacker", + "body": [ + "The warrior gains a +2 bonus to attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Defender", + "body": [ + "The warrior gains the Protection reaction below." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection (Defender Only)", + "body": [ + "The warrior imposes disadvantage on the attack roll of a creature within 5 feet of it whose target isn't the warrior. The warrior must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warrior-ESK", + "__dataclass__": "Monster" + }, + { + "name": "Adult Amethyst Dragon", + "source": "FTD", + "page": 161, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 229, + "formula": "17d12 + 119", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 25, + "dexterity": 14, + "constitution": 25, + "intelligence": 20, + "wisdom": 17, + "charisma": 21, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+12", + "wis": "+8", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d8 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Singularity Breath {@recharge 5}", + "body": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 90-foot cone. Each creature in that area must make a {@dc 20} Strength saving throw. On a failed save, the creature takes 45 ({@damage 10d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Explosive Crystal (Costs 3 Actions)", + "body": [ + "The dragon spits an amethyst that that explodes at a point it can see within 60 feet of it. Each creature within a 20-foot-radius sphere centered on that point must succeed on a {@dc 20} Dexterity saving throw or take 13 ({@damage 3d8}) force damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blink}", + "{@spell control water}", + "{@spell dispel magic}", + "{@spell protection from evil and good}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Adult Amethyst Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Adult Crystal Dragon", + "source": "FTD", + "page": 171, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 21, + "dexterity": 12, + "constitution": 21, + "intelligence": 18, + "wisdom": 15, + "charisma": 19, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scintillating Breath {@recharge 5}", + "body": [ + "The dragon exhales a burst of brilliant radiance in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 40 ({@damage 9d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 15 temporary hit points by absorbing a portion of the radiant energy." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Starlight Strike (Costs 3 Actions)", + "body": [ + "The dragon releases a searing beam of starlight at a creature that it can see within 60 feet of it. The target must succeed on a {@dc 17} Dexterity saving throw or take 31 ({@damage 9d6}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}", + "{@spell divination}", + "{@spell hypnotic pattern}", + "{@spell lesser restoration}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Adult Crystal Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Adult Deep Dragon", + "source": "FTD", + "page": 174, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 147, + "formula": "14d12 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 20, + "dexterity": 14, + "constitution": 18, + "intelligence": 16, + "wisdom": 16, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+8", + "wis": "+7", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 150 ft." + ], + "languages": [ + "Common", + "Draconic", + "Undercommon" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Breath {@recharge 5}", + "body": [ + "The dragon exhales a cloud of spores in a 60-foot cone. Each creature in that area must make a {@dc 16} Wisdom saving throw. On a failed save, the creature takes 33 ({@damage 6d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Commanding Spores", + "body": [ + "The dragon releases spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 16} Wisdom saving throw or use its reaction to make a melee weapon attack against a random creature within reach. If no creatures are within reach, or the target can't take a reaction, it takes 5 ({@damage 1d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spore Salvo (Costs 2 Actions)", + "body": [ + "The dragon releases poisonous spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 16} Constitution saving throw or take 17 ({@damage 5d6}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Deep Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Adult Emerald Dragon", + "source": "FTD", + "page": 196, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 23, + "dexterity": 12, + "constitution": 21, + "intelligence": 18, + "wisdom": 16, + "charisma": 18, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+10", + "wis": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shift Perception (1/Day)", + "body": [ + "The dragon can cast {@spell hallucinatory terrain}, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 15-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disorienting Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of psychic dissonance in a 60-foot cone. Each creature in that area must make a {@dc 18} Intelligence saving throw. On a failed save, the creature takes 42 ({@damage 12d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d6} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Emerald Embers (Costs 3 Actions)", + "body": [ + "The dragon creates a dancing mote of green flame around a creature it can see within 60 feet of it. The target must succeed on a {@dc 17} Dexterity saving throw or take 31 ({@damage 9d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell invisibility}", + "{@spell major image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Adult Emerald Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Adult Moonstone Dragon", + "source": "FTD", + "page": 212, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 20, + "dexterity": 18, + "constitution": 20, + "intelligence": 22, + "wisdom": 20, + "charisma": 23, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+11", + "wis": "+10", + "cha": "+11" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Gnomish", + "Sylvan" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 7 ({@damage 2d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons:", + { + "title": "Dream Breath", + "body": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 18} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moonlight Breath", + "body": [ + "The dragon exhales a beam of moonlight in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 49 ({@damage 9d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The dragon uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The dragon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell faerie fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}", + "{@spell invisibility}", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Moonstone Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Adult Sapphire Dragon", + "source": "FTD", + "page": 215, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 23, + "dexterity": 14, + "constitution": 22, + "intelligence": 18, + "wisdom": 17, + "charisma": 18, + "passive": 23, + "skills": { + "skills": [ + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+11", + "wis": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 5 ({@damage 1d10}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Debilitating Breath {@recharge 5}", + "body": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw. On a failed save, the creature takes 44 ({@damage 8d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Fling (Costs 3 Actions)", + "body": [ + "The dragon chooses one Small or smaller object that isn't being worn or carried that it can see within 60 feet of it, and it magically hurls the object at a creature it can see within 60 feet of the object. The target must succeed on a {@dc 17} Dexterity saving throw or take 31 ({@damage 9d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dissonant whispers}", + "{@spell hold monster}", + "{@spell meld into stone}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Adult Sapphire Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Adult Topaz Dragon", + "source": "FTD", + "page": 221, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d12 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 19, + "dexterity": 12, + "constitution": 19, + "intelligence": 18, + "wisdom": 17, + "charisma": 18, + "passive": 23, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+9", + "wis": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fabricate (1/Day)", + "body": [ + "The dragon can cast {@spell fabricate}, requiring no spell components and using Intelligence as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 3 ({@damage 1d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Desiccating Breath {@recharge 5}", + "body": [ + "The dragon exhales yellowish necrotic energy in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw. On a failed save, the creature takes 35 ({@damage 10d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Essential Reduction (Costs 3 Actions)", + "body": [ + "The dragon targets a creature or an object not being worn or carried that it can see within 60 feet of it. The target must succeed on a {@dc 17} Constitution saving throw or take 28 ({@damage 8d6}) necrotic damage. If this damage reduces the target to 0 hit points, it crumbles to dust." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bane}", + "{@spell control water}", + "{@spell create or destroy water}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Adult Topaz Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Amethyst Dragon Wyrmling", + "source": "FTD", + "page": 162, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 16, + "wisdom": 13, + "charisma": 17, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+5", + "wis": "+3", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 4 ({@damage 1d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Singularity Breath {@recharge 5}", + "body": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 15-foot cone. Each creature in that area must make a {@dc 13} Strength saving throw. On a failed save, the creature takes 22 ({@damage 5d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell protection from evil and good}", + "{@spell Tenser's floating disk}", + "{@spell unseen servant}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Amethyst Dragon Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Amethyst Greatwyrm", + "source": "FTD", + "page": 201, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 28, + "dexterity": 14, + "constitution": 29, + "intelligence": 30, + "wisdom": 24, + "charisma": 25, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 26, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": "force", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Gem Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "body": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The greatwyrm makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Beam (Costs 3 Actions)", + "body": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Amethyst Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Amethyst Dragon", + "source": "FTD", + "page": 160, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 26, + "dexterity": 14, + "constitution": 27, + "intelligence": 26, + "wisdom": 19, + "charisma": 23, + "passive": 28, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 13 ({@damage 3d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Singularity Breath {@recharge 5}", + "body": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 90-foot cone. Each creature in that area must make a {@dc 23} Strength saving throw. On a failed save, the creature takes 63 ({@damage 14d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Explosive Crystal (Costs 3 Actions)", + "body": [ + "The dragon spits an amethyst that that explodes at a point it can see within 60 feet of it. Each creature within a 20-foot-radius sphere centered on that point must succeed on a {@dc 23} Dexterity saving throw or take 18 ({@damage 4d8}) force damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 23}, {@hit 15} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blink}", + "{@spell control water}", + "{@spell dispel magic}", + "{@spell freedom of movement}", + "{@spell globe of invulnerability}", + "{@spell plane shift}", + "{@spell protection from evil and good}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Ancient Amethyst Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Crystal Dragon", + "source": "FTD", + "page": 170, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 222, + "formula": "12d20 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 25, + "dexterity": 12, + "constitution": 26, + "intelligence": 20, + "wisdom": 16, + "charisma": 21, + "passive": 25, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+14", + "wis": "+9", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 9 ({@damage 2d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scintillating Breath {@recharge 5}", + "body": [ + "The dragon exhales a burst of brilliant radiance in a 90-foot cone. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 49 ({@damage 11d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 25 temporary hit points by absorbing a portion of the radiant energy." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Starlight Strike (Costs 3 Actions)", + "body": [ + "The dragon releases a searing beam of starlight at a creature that it can see within 60 feet of it. The target must succeed on a {@dc 19} Dexterity saving throw or take 38 ({@damage 11d6}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}", + "{@spell divination}", + "{@spell greater restoration}", + "{@spell hypnotic pattern}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Ancient Crystal Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Deep Dragon", + "source": "FTD", + "page": 173, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 201, + "formula": "13d20 + 65", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 23, + "dexterity": 16, + "constitution": 20, + "intelligence": 19, + "wisdom": 18, + "charisma": 21, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+11", + "wis": "+10", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 300 ft." + ], + "languages": [ + "Common", + "Draconic", + "Undercommon" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Breath {@recharge 5}", + "body": [ + "The dragon exhales a cloud of spores in a 90-foot cone. Each creature in that area must make a {@dc 19} Wisdom saving throw. On a failed save, the creature takes 49 ({@damage 9d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Commanding Spores", + "body": [ + "The dragon releases spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 19} Wisdom saving throw or use its reaction to make a melee weapon attack against a random creature within reach. If no creatures are within reach, or the target can't take a reaction, it takes 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spore Salvo (Costs 2 Actions)", + "body": [ + "The dragon releases poisonous spores around a creature within 30 feet of it that it can see. The target must succeed on a {@dc 19} Constitution saving throw or take 28 ({@damage 8d6}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Deep Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Dragon Turtle", + "source": "FTD", + "page": 191, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 409, + "formula": "21d20 + 189", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 28, + "dexterity": 12, + "constitution": 29, + "intelligence": 14, + "wisdom": 19, + "charisma": 15, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+16", + "wis": "+11" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Aquan", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon turtle can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blessing of the Sea (Recharges after a Short or Long Rest)", + "body": [ + "If the dragon turtle would be reduced to 0 hit points, its current hit point total instead resets to 350 hit points, and it recharges its Steam Breath. Additionally, the dragon turtle can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 62,000 XP (124,000 XP total) for defeating the dragon turtle after its Blessing of the Sea activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon turtle fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon turtle doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon turtle makes one Bite or Tail attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}15 ({@damage 1d12 + 9}) piercing damage plus 13 ({@damage 2d12}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 24} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steam Breath {@recharge 5}", + "body": [ + "The dragon turtle exhales steam in a 90-foot cone. Each creature in that area must make a {@dc 24} Constitution saving throw, taking 67 ({@damage 15d8}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The dragon turtle makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The dragon turtle moves up to its speed. If the dragon turtle is swimming, this movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boiling Aura (Costs 3 Actions)", + "body": [ + "The dragon turtle radiates intense heat. Until the start of the dragon turtle's next turn, whenever a creature starts its turn within 20 feet of the dragon turtle, that creature must succeed on a {@dc 24} Constitution saving throw or take 40 ({@damage 9d8}) fire damage. Being underwater doesn't grant resistance against this damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Dragon Turtle-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Emerald Dragon", + "source": "FTD", + "page": 195, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 332, + "formula": "19d20 + 133", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 25, + "dexterity": 12, + "constitution": 25, + "intelligence": 20, + "wisdom": 18, + "charisma": 20, + "passive": 28, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+14", + "wis": "+11", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 20-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warp Perception (1/Day)", + "body": [ + "The dragon can cast {@spell mirage arcane}, requiring no spell components and using Intelligence as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disorienting Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of psychic dissonance in a 90-foot cone. Each creature in that area must make a {@dc 22} Intelligence saving throw. On a failed save, the creature takes 56 ({@damage 16d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d8} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Emerald Embers (Costs 3 Actions)", + "body": [ + "The dragon creates a dancing mote of green flame around a creature it can see within 60 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or take 42 ({@damage 12d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell etherealness}", + "{@spell major image}", + "{@spell mislead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Ancient Emerald Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Moonstone Dragon", + "source": "FTD", + "page": 211, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 330, + "formula": "20d20 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 22, + "dexterity": 18, + "constitution": 23, + "intelligence": 20, + "wisdom": 22, + "charisma": 26, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+13", + "cha": "+15" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 11 ({@damage 2d10}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons:", + { + "title": "Dream Breath", + "body": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moonlight Breath", + "body": [ + "The dragon exhales a beam of moonlight in a 120-foot line that is 10 feet wide. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 60 ({@damage 11d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "The dragon makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The dragon uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The dragon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell faerie fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell calm emotions}", + "{@spell dispel magic}", + "{@spell invisibility}", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Moonstone Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Sapphire Dragon", + "source": "FTD", + "page": 214, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 370, + "formula": "20d20 + 160", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 27, + "dexterity": 14, + "constitution": 27, + "intelligence": 21, + "wisdom": 19, + "charisma": 20, + "passive": 28, + "skills": { + "skills": [ + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 19, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 20-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 11 ({@damage 2d10}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Debilitating Breath {@recharge 5}", + "body": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, the creature takes 55 ({@damage 10d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Fling (Costs 3 Actions)", + "body": [ + "The dragon chooses one Medium or smaller object that isn't being worn or carried that it can see within 60 feet of it, and it magically hurls the object at a creature it can see within 60 feet of the object. The target must succeed on a {@dc 20} Dexterity saving throw or take 42 ({@damage 12d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dissonant whispers}", + "{@spell hold monster}", + "{@spell meld into stone}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Ancient Sapphire Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Sea Serpent", + "source": "FTD", + "page": 219, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 170, + "formula": "11d20 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 24, + "dexterity": 15, + "constitution": 20, + "intelligence": 13, + "wisdom": 16, + "charisma": 12, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "con": "+10" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The sea serpent can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the sea serpent fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The sea serpent deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sea serpent makes one Bite attack and one Constrict or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d12 + 7}) piercing damage plus 6 ({@damage 1d12}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one creature. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 20}). Until this grapple ends, the target is {@condition restrained}, and the sea serpent can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}13 ({@damage 1d12 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be pushed up to 30 feet away from the sea serpent and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rime Breath {@recharge 5}", + "body": [ + "The sea serpent exhales a 60-foot cone of cold. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 49 ({@damage 9d10}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "The sea serpent makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "The sea serpent makes one Bite attack" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Sea Serpent-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Topaz Dragon", + "source": "FTD", + "page": 220, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 280, + "formula": "17d20 + 102", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 23, + "dexterity": 12, + "constitution": 23, + "intelligence": 20, + "wisdom": 19, + "charisma": 20, + "passive": 26, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+12", + "wis": "+10", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fabricate (1/Day)", + "body": [ + "The dragon can cast {@spell fabricate}, requiring no spell components and using Intelligence as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Desiccating Breath {@recharge 5}", + "body": [ + "The dragon exhales yellowish necrotic energy in a 90-foot cone. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, the creature takes 49 ({@damage 14d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The dragon magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The dragon magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The dragon uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Essential Reduction (Costs 3 Actions)", + "body": [ + "The dragon targets a creature or an object not being worn or carried that it can see within 60 feet of it. The target must succeed on a {@dc 19} Constitution saving throw or take 40 ({@damage 9d8}) necrotic damage. If this damage reduces the target to 0 hit points, it crumbles to dust." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell antilife shell}", + "{@spell bane}", + "{@spell control water}", + "{@spell create or destroy water}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Ancient Topaz Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Animated Breath", + "source": "FTD", + "page": 163, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 17, + "note": "(cold form only)", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 11, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_resistances": [ + { + "value": null, + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "traits": [ + { + "title": "Chromatic Form", + "body": [ + "When created, the animated breath takes one of five forms, matching its creator's breath weapon: Acid, Cold, Fire, Lightning, or Poison. This form determines the creature's AC, damage resistance, traits, and attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Aura (Fire Form Only)", + "body": [ + "At the start of each of the animated breath's turns, each creature within 5 feet of it takes 3 ({@damage 1d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the animated breath or hits it with a melee attack takes 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Putrid Aura (Acid and Poison Forms Only)", + "body": [ + "A creature that starts its turn within 5 feet of the animated breath must succeed on a {@dc 15} Constitution saving throw or be {@condition poisoned} until the start of its next turn. A creature that touches the animated breath or hits it with a melee attack takes 3 ({@damage 1d6}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The animated breath makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 11 ({@damage 2d10}) damage of a type determined by the animated breath's form: acid, cold, fire, lightning, or poison." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Lightning Burst (Lightning Form Only)", + "body": [ + "The animated breath magically teleports to an unoccupied space it can see within 30 feet of it. Each creature within 5 feet of the animated breath after it teleports takes 3 ({@damage 1d6}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Breath-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Aspect of Bahamut", + "source": "FTD", + "page": 165, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 23, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 585, + "formula": "30d20 + 270", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "30", + "xp": 155000, + "strength": 30, + "dexterity": 18, + "constitution": 29, + "intelligence": 25, + "wisdom": 28, + "charisma": 30, + "passive": 28, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 19, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+18", + "int": "+16", + "wis": "+18", + "cha": "+19" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Platinum Brilliance (Recharges after a Short or Long Rest)", + "body": [ + "If the aspect would be reduced to 0 hit points, his current hit point total instead resets to 500 hit points, he recharges his Breath Weapon, and he regains any expended uses of Legendary Resistance. Additionally, the aspect can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 155,000 XP (310,000 XP total) for defeating the aspect of Bahamut after his Platinum Brilliance activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the aspect fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aspect makes one Bite attack, one Claw attack, and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}23 ({@damage 2d12 + 10}) piercing damage plus 22 ({@damage 4d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The aspect can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}23 ({@damage 2d12 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 27} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The aspect uses one of the following breath weapons:", + { + "title": "Exalting Breath", + "body": [ + "The aspect exhales the restoring winds of Mount Celestia in a 300-foot cone. Each creature in that area of the aspect's choice regains 71 ({@dice 13d10}) hit points, and each creature in that area of the aspect's choice that has been dead for no longer than 1 hour is restored to life with all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Platinum Breath", + "body": [ + "The aspect exhales radiant platinum flames in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw, taking 66 ({@damage 12d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The aspect magically transforms into any Humanoid or Beast, while retaining his game statistics (other than his size). This transformation ends if the aspect is reduced to 0 hit points or if he uses a bonus action to end it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The aspect makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Furious Bite (Costs 2 Actions)", + "body": [ + "The aspect makes one Bite attack. If the attack hits a creature, the target must succeed on a {@dc 27} Wisdom saving throw or become {@condition frightened} of the aspect until the end of the target's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "metallic", + "actions_note": "", + "mythic": null, + "key": "Aspect of Bahamut-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Aspect of Tiamat", + "source": "FTD", + "page": 166, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 23, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 574, + "formula": "28d20 + 280", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "30", + "xp": 155000, + "strength": 30, + "dexterity": 14, + "constitution": 30, + "intelligence": 21, + "wisdom": 20, + "charisma": 26, + "passive": 33, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 26, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 23, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+19", + "wis": "+14", + "cha": "+17" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "traits": [ + { + "title": "Chromatic Wrath (Recharges after a Short or Long Rest)", + "body": [ + "If the aspect would be reduced to 0 hit points, her current hit point total instead resets to 500 hit points, she recharges her Chromatic Flames, and she regains any expended uses of Legendary Resistance. Additionally, the aspect can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 155,000 XP (310,000 XP total) for defeating the aspect of Tiamat after her Chromatic Wrath activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the aspect fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aspect makes one Bite attack, one Claw attack, and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}23 ({@damage 2d12 + 10}) piercing damage plus 19 ({@damage 3d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The aspect can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}23 ({@damage 2d12 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 27} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Flames {@recharge 5}", + "body": [ + "The aspect exhales multicolored flames in a 300-foot cone. Each creature in that area must make a {@dc 27} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) damage of a type of the aspect's choosing: acid, cold, fire, lightning, or poison. On a successful save, the creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The aspect makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Furious Bite (Costs 2 Actions)", + "body": [ + "The aspect makes one Bite attack. If the attack hits a creature, the target must succeed on a {@dc 27} Wisdom saving throw or become {@condition frightened} of the aspect until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "chromatic", + "actions_note": "", + "mythic": null, + "key": "Aspect of Tiamat-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Black Greatwyrm", + "source": "FTD", + "page": 168, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "27", + "xp": 105000, + "strength": 30, + "dexterity": 14, + "constitution": 30, + "intelligence": 21, + "wisdom": 20, + "charisma": 26, + "passive": 31, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 21, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) acid damage. On a successful save, the creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Spear (Costs 3 Actions)", + "body": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "chromatic", + "actions_note": "", + "mythic": null, + "key": "Black Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Blue Greatwyrm", + "source": "FTD", + "page": 168, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "27", + "xp": 105000, + "strength": 30, + "dexterity": 14, + "constitution": 30, + "intelligence": 21, + "wisdom": 20, + "charisma": 26, + "passive": 31, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 21, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) lightning damage. On a successful save, the creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Spear (Costs 3 Actions)", + "body": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "chromatic", + "actions_note": "", + "mythic": null, + "key": "Blue Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Brass Greatwyrm", + "source": "FTD", + "page": 208, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "28", + "xp": 120000, + "strength": 30, + "dexterity": 16, + "constitution": 29, + "intelligence": 21, + "wisdom": 22, + "charisma": 30, + "passive": 32, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Metallic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm uses one of the following breath weapons:", + { + "title": "Elemental Breath", + "body": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapping Breath", + "body": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "metallic", + "actions_note": "", + "mythic": null, + "key": "Brass Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Bronze Greatwyrm", + "source": "FTD", + "page": 208, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "28", + "xp": 120000, + "strength": 30, + "dexterity": 16, + "constitution": 29, + "intelligence": 21, + "wisdom": 22, + "charisma": 30, + "passive": 32, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Metallic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm uses one of the following breath weapons:", + { + "title": "Elemental Breath", + "body": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapping Breath", + "body": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "metallic", + "actions_note": "", + "mythic": null, + "key": "Bronze Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Copper Greatwyrm", + "source": "FTD", + "page": 208, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "28", + "xp": 120000, + "strength": 30, + "dexterity": 16, + "constitution": 29, + "intelligence": 21, + "wisdom": 22, + "charisma": 30, + "passive": 32, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Metallic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm uses one of the following breath weapons:", + { + "title": "Elemental Breath", + "body": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapping Breath", + "body": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "metallic", + "actions_note": "", + "mythic": null, + "key": "Copper Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Crystal Dragon Wyrmling", + "source": "FTD", + "page": 172, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 15, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 12, + "constitution": 14, + "intelligence": 14, + "wisdom": 13, + "charisma": 15, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+4", + "wis": "+3", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scintillating Breath {@recharge 5}", + "body": [ + "The dragon exhales a burst of brilliant radiance in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 18 ({@damage 4d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 5 temporary hit points by absorbing a portion of the radiant energy." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Crystal Dragon Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Crystal Greatwyrm", + "source": "FTD", + "page": 201, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 28, + "dexterity": 14, + "constitution": 29, + "intelligence": 30, + "wisdom": 24, + "charisma": 25, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 26, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Gem Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "body": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The greatwyrm makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Beam (Costs 3 Actions)", + "body": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Crystal Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Deep Dragon Wyrmling", + "source": "FTD", + "page": 175, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 15, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 11, + "constitution": 12, + "intelligence": 11, + "wisdom": 12, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+3", + "wis": "+3", + "cha": "+3" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 90 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Breath {@recharge 5}", + "body": [ + "The dragon exhales a cloud of spores in a 15-foot cone. Each creature in that area must make a {@dc 11} Wisdom saving throw. On a failed save, the creature takes 5 ({@damage 1d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deep Dragon Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dracohydra", + "source": "FTD", + "page": 176, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 218, + "formula": "19d12 + 95", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 6, + "wisdom": 12, + "charisma": 12, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "traits": [ + { + "title": "Multiple Heads", + "body": [ + "The dracohydra has five heads. While it has more than one head, the dracohydra has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}.", + "Whenever the dracohydra takes 30 or more damage in a single turn, one of its heads dies. If all its heads die, the dracohydra dies.", + "At the end of its turn, the dracohydra grows two heads for each of its heads that died since its last turn, unless it has taken radiant damage since its last turn. The dracohydra regains 10 hit points for each head regrown this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reactive Heads", + "body": [ + "For each head the dracohydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wakeful", + "body": [ + "While the dracohydra sleeps, at least one of its heads is awake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dracohydra makes as many Bite attacks as it has heads." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) damage of a type chosen by the dracohydra: acid, cold, fire, lightning, or poison." + ], + "__dataclass__": "Entry" + }, + { + "title": "Prismatic Breath {@recharge 4}", + "body": [ + "The dracohydra's heads exhale a single breath of multicolored energy in a 60-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, the creature takes 33 ({@damage 6d10}) damage of a type chosen by the dracohydra: acid, cold, fire, lightning, or poison. On a successful save, the creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dracohydra-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Draconian Dreadnought", + "source": "FTD", + "page": 177, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 57, + "formula": "6d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 10, + "constitution": 18, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "saves": { + "str": "+6", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, it bursts into flames and is reduced to ashes. Each creature in a 10-foot-radius sphere centered on the draconian must succeed on a {@dc 13} Dexterity saving throw or take 10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Serrated Sword attacks and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Serrated Sword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shape Theft", + "body": [ + "After the draconian kills a Medium or smaller Humanoid, the draconian can magically transform itself to look and feel like that creature while retaining its game statistics (other than its size). This transformation lasts until the draconian dies or uses an action to end it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Draconian Dreadnought-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Draconian Foot Soldier", + "source": "FTD", + "page": 178, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 11, + "constitution": 13, + "intelligence": 8, + "wisdom": 8, + "charisma": 10, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Controlled Fall", + "body": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, its body turns to stone and releases a petrifying gas. Each creature within 5 feet of the draconian must succeed on a {@dc 11} Constitution saving throw or be {@condition restrained} as it begins to turn to stone. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a success, the effect ends; otherwise the creature is {@condition petrified} for 1 minute. After 1 minute, the body of the draconian crumbles to dust." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Draconian Foot Soldier-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Draconian Infiltrator", + "source": "FTD", + "page": 178, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 17, + "constitution": 14, + "intelligence": 9, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, it turns into a puddle of acid and splashes acid on those around it. Each creature within 5 feet of the draconian must succeed on a {@dc 12} Dexterity saving throw or be covered in acid for 1 minute. A creature can use its action to scrape or wash the acid off itself or another creature. A creature covered in the acid takes 7 ({@damage 2d6}) acid damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glide", + "body": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Dagger attacks. If both attacks hit the same creature, the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} until the end of the target's next turn. While {@condition poisoned} in this way, the target is also {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Draconian Infiltrator-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Draconian Mage", + "source": "FTD", + "page": 179, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 11, + "intelligence": 11, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "saves": { + "int": "+2", + "wis": "+2", + "cha": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, its scales and flesh immediately shrivel away and its bones explode. Each creature within 10 feet of it must succeed on a {@dc 10} Dexterity saving throw or take 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glide", + "body": [ + "When the draconian falls and isn't {@condition incapacitated}, it subtracts up to 100 feet from the fall when calculating the fall's damage, and it can move up to 2 feet horizontally for every 1 foot it descends." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes two Trident or Necrotic Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Ray", + "body": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell invisibility}", + "{@spell stinking cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Draconian Mage-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Draconian Mastermind", + "source": "FTD", + "page": 180, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 13, + "dexterity": 14, + "constitution": 16, + "intelligence": 15, + "wisdom": 11, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the draconian is reduced to 0 hit points, its magical essence lashes out as a ball of lightning at the closest creature within 30 feet of it before arcing out to up to two other creatures within 15 feet of the first. Each creature must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) lightning damage and is {@condition stunned} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draconian makes three Rend or Energy Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Energy Ray", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noxious Breath {@recharge 5}", + "body": [ + "The draconian exhales a 15-foot cone of noxious gas. Each creature in that area must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 21 ({@damage 6d6}) poison damage and gains 1 level of {@condition exhaustion}. On a successful save, the creature takes half as much damage, doesn't gain {@condition exhaustion}, and is immune to all draconians' Noxious Breath for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Magic Shield (3/Day)", + "body": [ + "When the draconian is hit by an attack roll, it can create an {@condition invisible} barrier of magical force around itself, granting it a +5 bonus to its AC against that attack and potentially causing the attack to miss." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The draconian casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell invisibility}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dimension door}", + "{@spell disguise self}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Draconian Mastermind-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Draconic Shard", + "source": "FTD", + "page": 181, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "deflection", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 1, + "dexterity": 12, + "constitution": 18, + "intelligence": 22, + "wisdom": 18, + "charisma": 22, + "passive": 26, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+12", + "wis": "+10", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Deflection", + "body": [ + "The shard's AC includes its Intelligence modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The shard can move through creatures and objects as if they were {@quickref difficult terrain||3}. If it ends its turn inside an object, it takes 5 ({@damage 1d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the shard fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "When it drops to 0 hit points, the shard disappears and leaves a Tiny cracked gemstone in its space. The gemstone matches the kind of gem dragon it was in life and has AC 20, 15 hit points, and immunity to all damage except force. Unless the gemstone is destroyed, after {@dice 1d20} days, the gemstone dissipates and the shard re-forms, regaining all its hit points and appearing in the place the gemstone once occupied or in the nearest unoccupied space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The shard doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shard makes two Telekinetic Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Rend", + "body": [ + "{@atk ms,rs} {@hit 12} to hit, reach 10 ft. or range 120 ft., one target. {@h}15 ({@damage 2d8 + 6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inhabit Object", + "body": [ + "The shard disappears as it pours its psychic essence into a Medium or smaller nonsentient object it can see within 30 feet of it, magically possessing it. The object uses the shard's AC, and any damage dealt to the object applies to the shard's hit points. The shard inhabits the object until it uses an action to leave; until it is turned; until it is reduced to 0 hit points; or until an effect that ends possession, such as a {@spell dispel evil and good} spell, is used on it. When it leaves the object, it reappears in the nearest unoccupied space.", + "While inhabited, the object becomes a magic item if it wasn't already, and a Tiny cracked gemstone matching the kind of gem dragon the shard was in life appears somewhere on the object. The shard can cause the object to fly using the shard's own flying speed, use its senses, speak verbally or telepathically, cast spells, and use its legendary actions.", + "If a creature wears or carries the inhabited object, the shard can grant the creature the following benefits:", + "Each of the creature's attacks deals an extra {@damage 1d8} force damage on a hit.", + "The creature gains resistance to psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Crush {@recharge 5}", + "body": [ + "The shard unleashes a pulse of psychic power. Each creature of the shard's choice in a 60-foot-radius sphere centered on it must make a {@dc 20} Intelligence saving throw. On a failed save, the creature takes 55 ({@damage 10d10}) psychic damage and is {@condition stunned} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Rend", + "body": [ + "The shard makes one Telekinetic Rend attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The shard uses Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Commanding Thought (Costs 2 Actions)", + "body": [ + "The shard targets a creature it can see within 30 feet of it. The target must succeed on a {@dc 20} Wisdom saving throw or be {@condition charmed} until the end of its next turn. While {@condition charmed} in this way, the target becomes the shard's puppet, acting and moving in accordance with its telepathic commands. While under the shard's control, the target can take only the Attack (shard chooses the target) or Dash action on its turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The shard casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell telekinesis}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Draconic Shard-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Blessed", + "source": "FTD", + "page": 188, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item scale mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 10, + "constitution": 16, + "intelligence": 14, + "wisdom": 17, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+6" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "and any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blessed makes two Mace or Radiant Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}22 ({@damage 5d8}) radiant damage, and the blessed regains 5 ({@dice 1d10}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The blessed casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell enhance ability}", + "{@spell flame strike}", + "{@spell mass cure wounds}", + "{@spell revivify}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Blessed-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Chosen", + "source": "FTD", + "page": 189, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 18, + "constitution": 14, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "dex": "+6", + "con": "+4" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chosen makes one Handaxe attack and two Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Handaxe", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage. {@hom}The handaxe magically returns to the chosen's hand immediately after a ranged attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Biting Rebuke", + "body": [ + "Immediately after the chosen takes damage from a creature within 5 feet of it, it can make a Shortsword attack with advantage against that creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Chosen-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Speaker", + "source": "FTD", + "page": 189, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 13, + "wisdom": 11, + "charisma": 17, + "passive": 10, + "skills": { + "skills": [ + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "cha": "+5" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "and any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The speaker makes two Thunder Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunder Bolt", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 3d8}) thunder damage, and the target is pushed horizontally up to 10 feet away from the speaker." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Disarming Words (3/Day)", + "body": [ + "When a creature the speaker can see within 60 feet of it makes a damage roll, the speaker can roll a {@dice d6} and subtract the number rolled from that damage roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The speaker casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}", + "{@spell charm person}", + "{@spell command}", + "{@spell comprehend languages}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Speaker-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Turtle Wyrmling", + "source": "FTD", + "page": 192, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 10, + "constitution": 15, + "intelligence": 8, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "saves": { + "dex": "+2", + "con": "+4", + "wis": "+2" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon turtle can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steam Breath {@recharge 5}", + "body": [ + "The dragon turtle exhales steam in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 17 ({@damage 5d6}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Turtle Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonblood Ooze", + "source": "FTD", + "page": 182, + "size_str": "Large", + "maintype": "ooze", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 6, + "constitution": 17, + "intelligence": 2, + "wisdom": 12, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Draconic and the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The ooze can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The ooze can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ooze makes two Pseudopod attacks. The ooze can replace one Pseudopod attack with its Slime Breath, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage plus 14 ({@damage 4d6}) acid damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target takes 7 ({@damage 2d6}) acid damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slime Breath {@recharge}", + "body": [ + "The ooze expels a spray of its gelatinous mass in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) acid damage and is pulled up to 30 feet straight toward the ooze. On a successful save, the creature takes half as much damage and isn't pulled." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonblood Ooze-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonbone Golem", + "source": "FTD", + "page": 183, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "19d10 + 57", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 20, + "dexterity": 10, + "constitution": 17, + "intelligence": 3, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic and the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Fear Aura", + "body": [ + "Each creature of the golem's choice that starts its turn within 20 feet of the golem must make a {@dc 15} Wisdom saving throw unless the golem is {@condition incapacitated}. On a failed save, the creature is {@condition frightened} until the start of its next turn. On a successful save, the creature is immune to this golem's Fear Aura for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The golem doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes one Pinion attack and two Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pinion", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage. If the target is a Medium or smaller creature, it is pinned beneath the bony pinion and {@condition restrained}. The golem has two pinions, each of which can restrain one target. If a creature is {@condition restrained} by one of the pinions, the golem can't attack with it. Any creature {@condition restrained} by a pinion can free itself at the start of its turn with a successful {@dc 17} Strength ({@skill Athletics}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 5 ({@damage 1d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Breath {@recharge 5}", + "body": [ + "The golem emits a 60-foot cone of petrifying gas from its mouth. Each creature in that area must succeed on a {@dc 15} Constitution saving throw or take 35 ({@damage 10d6}) poison damage and be {@condition restrained} as it begins to turn to stone. The {@condition restrained} target must repeat the saving throw at the end of its next turn. On a successful save, the effect ends on the target. On a failed save, the target is {@condition petrified}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonbone Golem-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonborn of Bahamut", + "source": "FTD", + "page": 184, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item half plate armor|PHB|half plate}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 19, + "dexterity": 13, + "constitution": 18, + "intelligence": 12, + "wisdom": 14, + "charisma": 17, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+4", + "wis": "+5", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If the dragonborn fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonborn makes three Longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands, plus 13 ({@damage 3d8}) radiant damage. The dragonborn can cause the sword to flare with bright light, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition blinded} until the start of the dragonborn's next turn. The sword can flare in this way only once per turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing Touch (1/Day)", + "body": [ + "The dragonborn touches another creature within 5 feet of it. The target magically regains 40 hit points. In addition, all diseases and poisons affecting the target are removed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Breath {@recharge}", + "body": [ + "The dragonborn exhales fiery radiance in a 30-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 44 ({@damage 8d10}) radiant damage on a failed save, or half as much damage on a successful one. When the dragonborn uses this action, it can choose up to three creatures in the cone. These creatures take no damage from the radiance and instead regain 22 ({@dice 4d10}) hit points each." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonborn of Bahamut-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonborn of Sardior", + "source": "FTD", + "page": 185, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "mental defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 14, + "dexterity": 16, + "constitution": 17, + "intelligence": 18, + "wisdom": 14, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If the dragonborn fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mental Defense", + "body": [ + "While the dragonborn is wearing no armor, its AC includes its Intelligence modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonborn makes three Mind Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blade", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heat Breath {@recharge}", + "body": [ + "The dragonborn exhales a wave of intense heat in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 27 ({@damage 6d8}) fire damage on a failed save, or half as much damage on a successful one. Metal objects in that area glow red-hot until the end of the dragonborn's next turn. Any creature in physical contact with a heated object at the start of its turn must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) fire damage and has disadvantage on attack rolls until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragonborn casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}, {@hit 7} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Bigby's hand}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonborn of Sardior-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonborn of Tiamat", + "source": "FTD", + "page": 185, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 20, + "dexterity": 11, + "constitution": 18, + "intelligence": 10, + "wisdom": 12, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+7", + "wis": "+4", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If the dragonborn fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonborn makes two Greataxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage plus 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Breath {@recharge}", + "body": [ + "The dragonborn exhales shadowy fire in a 30-foot cone. Each creature in that area must make a {@dc 15} Wisdom saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) necrotic damage and is {@condition frightened} of the dragonborn for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition frightened}. A {@condition frightened} creature can repeat the saving throw at end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonborn of Tiamat-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonflesh Abomination", + "source": "FTD", + "page": 187, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 5, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "saves": { + "str": "+7", + "con": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "traits": [ + { + "title": "Cloying Miasma", + "body": [ + "The abomination is surrounded by a noxious stench. At the start of the abomination's turn, any creature within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of the abomination's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The abomination regains 10 hit points at the start of its turns if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abomination makes three attacks using Claw, Acidic Spit, or a combination of them. It can replace one of the attacks with a Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acidic Spit", + "body": [ + "{@atk rw} {@hit 5} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Belch {@recharge 5}", + "body": [ + "The abomination belches forth a cloud of acidic gas in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 28 ({@damage 8d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonflesh Abomination-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonflesh Grafter", + "source": "FTD", + "page": 186, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "saves": { + "str": "+5", + "con": "+4" + }, + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The grafter makes one Claw attack and one Greatclub attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Retch {@recharge 5}", + "body": [ + "The grafter retches forth a spray of acidic bile in a 30-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonflesh Grafter-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Dragonnel", + "source": "FTD", + "page": 190, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 13, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "understands Draconic and Common but can't speak" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The dragonnel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonnel makes two Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragonnel-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Egg Hunter Adult", + "source": "FTD", + "page": 193, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d6 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 20, + "constitution": 16, + "intelligence": 3, + "wisdom": 13, + "charisma": 5, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "wis": "+4" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The egg hunter can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "If the egg hunter is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the egg hunter move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the egg hunter is animate. Dragons have disadvantage on this check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The egg hunter makes two Barbed Proboscis attacks, and it can use Torpor Spores if it's available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Barbed Proboscis", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage, and the egg hunter regains hit points equal to the necrotic damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Torpor Spores {@recharge 5}", + "body": [ + "The egg hunter releases a billow of sparkling blue spores. Each creature in a 30-foot-radius sphere centered on the egg hunter must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the creature can take either an action or a bonus action on its turn but not both, and it can't take reactions. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this egg hunter's Torpor Spores for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Rapid Adaptation", + "body": [ + "When the egg hunter takes damage, it gives itself resistance to that damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Egg Hunter Adult-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Egg Hunter Hatchling", + "source": "FTD", + "page": 193, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 28, + "formula": "8d4 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 8, + "dexterity": 17, + "constitution": 13, + "intelligence": 1, + "wisdom": 10, + "charisma": 5, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+2" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The egg hunter can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The egg hunter makes two Egg Tooth attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Egg Tooth", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, or 17 ({@damage 4d6 + 3}) piercing damage if the target is an object." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rapid Movement", + "body": [ + "The egg hunter takes the Dash or Disengage action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Egg Hunter Hatchling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Elder Brain Dragon", + "source": "FTD", + "page": 194, + "size_str": "Gargantuan", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 350, + "formula": "20d20 + 140", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 27, + "dexterity": 13, + "constitution": 25, + "intelligence": 21, + "wisdom": 19, + "charisma": 24, + "passive": 28, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+14", + "int": "+12", + "wis": "+11", + "cha": "+14" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Deep Speech", + "Draconic", + "telepathy 5 miles" + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The dragon deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack, two Claw attacks, and one Tentacle attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one creature. {@h}12 ({@damage 1d8 + 8}) psychic damage. If the target is Huge or smaller, it is {@condition grappled} (escape {@dc 18}). The dragon can have up to four targets {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tadpole Brine Breath {@recharge 5}", + "body": [ + "The dragon exhales brine in a 120-foot line that is 15 feet wide. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 55 ({@damage 10d10}) psychic damage on a failed save, or half as much damage on a successful one. On a success or failure, if the creature isn't a Construct or an Undead, it becomes infested with illithid tadpoles.", + "While infested, the creature takes 16 ({@damage 3d10}) psychic damage at the start of each of its turns. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on three of these saves. If the creature is targeted by magic that ends a curse or restores 40 hit points or more, the tadpoles infesting the creature are killed instantly, ending the effect on the creature.", + "If a Humanoid is reduced to 0 hit points while infested, the creature is stable but remains {@condition unconscious} for {@dice 6d12} hours. When the period of unconsciousness ends, the creature transforms into a {@creature mind flayer} (see the Monster Manual) with all its hit points. Casting a {@spell wish} spell on the {@condition unconscious} creature rids it of the infestation and prevents it from turning into a mind flayer." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tentacle", + "body": [ + "The dragon makes one Tentacle attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shatter Concentration (Costs 2 Actions)", + "body": [ + "The dragon targets a creature it is grappling. The target's {@status concentration} on a spell it has cast or an ability it is maintaining ends, and the target takes 19 ({@damage 3d12}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elder Brain Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Emerald Dragon Wyrmling", + "source": "FTD", + "page": 197, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 12, + "constitution": 15, + "intelligence": 14, + "wisdom": 12, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+4", + "wis": "+3", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disorienting Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of psychic dissonance in a 15-foot cone. Each creature in that area must make a {@dc 12} Intelligence saving throw. On a failed save, the creature takes 17 ({@damage 5d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d4} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Emerald Dragon Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Emerald Greatwyrm", + "source": "FTD", + "page": 201, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 28, + "dexterity": 14, + "constitution": 29, + "intelligence": 30, + "wisdom": 24, + "charisma": 25, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 26, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Gem Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "body": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The greatwyrm makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Beam (Costs 3 Actions)", + "body": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Emerald Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Eyedrake", + "source": "FTD", + "page": 199, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 16, + "dexterity": 10, + "constitution": 16, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Draconic" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The eyedrake doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antimagic Breath {@recharge}", + "body": [ + "The eyedrake emits a magic wave in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 39 ({@damage 6d12}) force damage on a failed save, or half as much damage on a successful one. Every spell of 3rd level or lower ends on creatures and objects of the eyedrake's choice in that area." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The eyedrake shoots three of the following magical eye rays at random (reroll duplicates), each ray targeting one creature it can see within 60 feet of it:", + { + "title": "1: Freezing Ray", + "body": [ + "The target must make a {@dc 14} Constitution saving throw. On a failed save, the target takes 17 ({@damage 5d6}) cold damage, and its speed is halved until the end of its next turn. On a successful save, the target takes half as much damage with no additional effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "2: Debilitating Ray", + "body": [ + "The target must succeed on a {@dc 14} Constitution saving throw or take 7 ({@damage 2d6}) thunder damage and become {@condition incapacitated} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "3: Repulsion Ray", + "body": [ + "The target must succeed on a {@dc 14} Strength saving throw or take 14 ({@damage 4d6}) force damage and be pushed up to 60 feet away from the eyedrake." + ], + "__dataclass__": "Entry" + }, + { + "title": "4: Fire Ray", + "body": [ + "The target must make a {@dc 14} Dexterity saving throw, taking 21 ({@damage 6d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "5: Paralyzing Ray", + "body": [ + "The target must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "6: Death Ray", + "body": [ + "The target must make a {@dc 14} Dexterity saving throw, taking 28 ({@damage 8d6}) necrotic damage on a failed save, or half as much damage on a successful one. The target dies if the ray reduces it to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eyedrake-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Gem Stalker", + "source": "FTD", + "page": 202, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 17, + "dexterity": 15, + "constitution": 14, + "intelligence": 15, + "wisdom": 10, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+5" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "telepathy 60 ft. understands Draconic but can't speak" + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The gem stalker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The gem stalker doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gem stalker makes four Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Crystal Dart", + "body": [ + "{@atk rs} {@hit 5} to hit, range 30 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage, and one of the following effects occurs, determined by the kind of dragon that created the gem stalker:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Amethyst", + "body": [ + "The gem stalker can teleport to an unoccupied space it can see within 30 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crystal", + "body": [ + "The gem stalker gains a number of temporary hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Emerald", + "body": [ + "The target must roll a {@dice d4} and subtract the number rolled from the next attack roll it makes before the start of the gem stalker's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapphire", + "body": [ + "The target must succeed on a {@dc 13} Strength saving throw or be pushed horizontally up to 10 feet away from the gem stalker and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Topaz", + "body": [ + "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the start of the gem stalker's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protective Link", + "body": [ + "When another creature the gem stalker can see within 30 feet of it is about to take damage, the gem stalker reduces that damage by 10 ({@dice 3d6}). The gem stalker then takes damage equal to that amount." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gem Stalker-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Ghost Dragon", + "source": "FTD", + "page": 203, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 324, + "formula": "24d12 + 168", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 20, + "dexterity": 10, + "constitution": 25, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 24, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+13", + "wis": "+8", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The ghost dragon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the ghost dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The ghost dragon doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ghost dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}32 ({@damage 6d8 + 5}) cold damage, and the target's speed is halved until the start of the dragon's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrifying Breath {@recharge}", + "body": [ + "The ghost dragon exhales shadowy mist in a 90-foot cone. Each creature in that area must make a {@dc 21} Constitution saving throw. On a failed save, the creature takes 40 ({@damage 9d8}) cold damage and is {@condition frightened} of the ghost dragon for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition frightened}.", + "While {@condition frightened} of the ghost dragon, a creature is {@condition paralyzed}. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If a creature's saving throw is successful or the effect ends for it, the creature is immune to this ghost dragon's Terrifying Breath for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ghost Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Giant Canary", + "source": "FTD", + "page": 23, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 2, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "actions": [ + { + "title": "Peck", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Canary-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Gold Greatwyrm", + "source": "FTD", + "page": 208, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "28", + "xp": 120000, + "strength": 30, + "dexterity": 16, + "constitution": 29, + "intelligence": 21, + "wisdom": 22, + "charisma": 30, + "passive": 32, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Metallic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm uses one of the following breath weapons:", + { + "title": "Elemental Breath", + "body": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapping Breath", + "body": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "metallic", + "actions_note": "", + "mythic": null, + "key": "Gold Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Green Greatwyrm", + "source": "FTD", + "page": 168, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "27", + "xp": 105000, + "strength": 30, + "dexterity": 14, + "constitution": 30, + "intelligence": 21, + "wisdom": 20, + "charisma": 26, + "passive": 31, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 21, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) poison damage. On a successful save, the creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Spear (Costs 3 Actions)", + "body": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "chromatic", + "actions_note": "", + "mythic": null, + "key": "Green Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Hoard Mimic", + "source": "FTD", + "page": 204, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d12 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 21, + "dexterity": 12, + "constitution": 17, + "intelligence": 10, + "wisdom": 16, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+6" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "False Appearance (Hoard Form Only)", + "body": [ + "If the mimic is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the mimic move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the mimic is animate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mimic makes one Bite attack and two Pseudopod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage, and the mimic adheres to the target. A creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}. Ability checks made to escape this grapple have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Caustic Mist {@recharge 5}", + "body": [ + "The mimic sprays a fine mist of acid in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw. On a failed save, the creature takes 27 ({@damage 6d8}) acid damage and is {@condition blinded} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition blinded}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "The mimic transforms into a hoard or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hoard Mimic-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Hoard Scarab", + "source": "FTD", + "page": 205, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "3d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 4, + "dexterity": 16, + "constitution": 11, + "intelligence": 3, + "wisdom": 8, + "charisma": 6, + "passive": 9, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the scarab is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the scarab move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the scarab is animate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. If the target is a creature, it has disadvantage on attack rolls until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Scale Dust (1/Day)", + "body": [ + "The scarab releases magical glittering dust from its wings. Each creature within 5 feet of the scarab must succeed on a {@dc 13} Dexterity saving throw or be outlined in blue light for 10 minutes. While outlined in this way, a creature sheds dim light in a 10-foot radius and can't benefit from being {@condition invisible}. In addition, every Dragon within 1 mile of the creature becomes aware of it and can unerringly track the creature. Casting {@spell dispel magic} on the creature ends the effect on it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hoard Scarab-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Hollow Dragon", + "source": "FTD", + "page": 206, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 241, + "formula": "21d12 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 23, + "dexterity": 12, + "constitution": 21, + "intelligence": 16, + "wisdom": 13, + "charisma": 21, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+11", + "int": "+9", + "wis": "+7", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the hollow dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reconstruction", + "body": [ + "When the hollow dragon is reduced to 0 hit points, its body breaks into nine pieces: two arms, two legs, two wings, a tail, a torso, and a head. Each piece is a Large object with AC 19, 27 hit points, and immunity to psychic and poison damage. After {@dice 1d6} days, if all pieces are still within 6 miles of each other, they all teleport to the location of the head piece and merge with it, whereupon the hollow dragon regains all its hit points and becomes active again." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hollow dragon makes one Bite attack and two Claw attacks, and it can use Sapping Presence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 9 ({@damage 2d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapping Presence", + "body": [ + "Each creature of the hollow dragon's choice within 60 feet of it must make a {@dc 19} Wisdom saving throw. On a failed save, the creature's speed is halved and it has disadvantage on attack rolls until the end of its next turn. On a successful save, the creature is immune to this hollow dragon's Sapping Presence for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Breath {@recharge 5}", + "body": [ + "The hollow dragon exhales radiant flames in a 60-foot cone. Each creature in that area must make a {@dc 19} Dexterity saving throw, taking 54 ({@damage 12d8}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The hollow dragon makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ghostly Binding (Costs 2 Actions)", + "body": [ + "The hollow dragon creates ethereal bindings around a creature it can see within 60 feet of it. The target must succeed on a {@dc 19} Strength saving throw or be {@condition restrained} until the end of the dragon's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Booming Scales (Costs 3 Actions)", + "body": [ + "A sudden loud ringing noise, painfully intense, erupts from the hollow dragon's frame. Each creature within 10 feet of the hollow dragon must make a {@dc 19} Constitution saving throw, taking 24 ({@damage 7d6}) thunder damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hollow Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Liondrake", + "source": "FTD", + "page": 207, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 15, + "constitution": 17, + "intelligence": 6, + "wisdom": 12, + "charisma": 12, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The liondrake makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood-Chilling Roar {@recharge 4}", + "body": [ + "The liondrake lets out a terrifying roar audible out to 300 feet. Any creature within 30 feet of the liondrake that can hear its roar must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the liondrake for 1 minute. A creature that fails the save by 5 or more is also {@condition paralyzed} for the same duration. A creature can repeat the saving throw at the end of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this liondrake's Blood-Chilling Roar for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Liondrake-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Metallic Peacekeeper", + "source": "FTD", + "page": 210, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 10, + "constitution": 18, + "intelligence": 14, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The peacekeeper is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Bond", + "body": [ + "While the peacekeeper is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The peacekeeper makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Calming Mist {@recharge 5}", + "body": [ + "The peacekeeper releases a calming gas in a 30-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 14} Charisma saving throw or become {@condition charmed} by the peacekeeper for 1 minute. While {@condition charmed} in this way, the creature is {@condition incapacitated} and has a speed of 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Metallic Peacekeeper-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Metallic Warbler", + "source": "FTD", + "page": 210, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Neutral Good", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 4, + "dexterity": 15, + "constitution": 12, + "intelligence": 9, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "saves": { + "dex": "+4" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The warbler is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Bond", + "body": [ + "While the warbler is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Calming Mist {@recharge 5}", + "body": [ + "The warbler releases a calming gas in a 5-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 11} Charisma saving throw or become {@condition charmed} by the warbler for 1 minute. While {@condition charmed} in this way, the creature is {@condition incapacitated} and has a speed of 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Metallic Warbler-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Moonstone Dragon Wyrmling", + "source": "FTD", + "page": 213, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 16, + "wisdom": 14, + "charisma": 17, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4", + "cha": "+5" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage plus 3 ({@damage 1d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons:", + { + "title": "Dream Breath", + "body": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 12} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moonlight Breath", + "body": [ + "The dragon exhales a beam of moonlight in a 30-foot line that is 5 feet wide. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Moonstone Dragon Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Red Greatwyrm", + "source": "FTD", + "page": 168, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "27", + "xp": 105000, + "strength": 30, + "dexterity": 14, + "constitution": 30, + "intelligence": 21, + "wisdom": 20, + "charisma": 26, + "passive": 31, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 21, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) fire damage. On a successful save, the creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Spear (Costs 3 Actions)", + "body": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "chromatic", + "actions_note": "", + "mythic": null, + "key": "Red Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Sapphire Dragon Wyrmling", + "source": "FTD", + "page": 216, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 15, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 14, + "constitution": 16, + "intelligence": 14, + "wisdom": 13, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+5", + "wis": "+3", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 5-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 3 ({@damage 1d6}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Debilitating Breath {@recharge 5}", + "body": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 15-foot cone. Each creature in that area must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell alarm}", + "{@spell Tenser's floating disk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Sapphire Dragon Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Sapphire Greatwyrm", + "source": "FTD", + "page": 201, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 28, + "dexterity": 14, + "constitution": 29, + "intelligence": 30, + "wisdom": 24, + "charisma": 25, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 26, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Gem Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "body": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The greatwyrm makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Beam (Costs 3 Actions)", + "body": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Sapphire Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Silver Greatwyrm", + "source": "FTD", + "page": 208, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 565, + "formula": "29d20 + 261", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "28", + "xp": 120000, + "strength": 30, + "dexterity": 16, + "constitution": 29, + "intelligence": 21, + "wisdom": 22, + "charisma": 30, + "passive": 32, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+17", + "int": "+13", + "wis": "+14", + "cha": "+18" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Metallic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 450 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 120,000 XP (240,000 XP total) for defeating the greatwyrm after its Metallic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d10 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm uses one of the following breath weapons:", + { + "title": "Elemental Breath", + "body": [ + "The greatwyrm exhales elemental energy in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 84 ({@damage 13d12}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapping Breath", + "body": [ + "The greatwyrm exhales gas in a 300-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failed save, the creature falls {@condition unconscious} for 1 minute. On a successful save, the creature has disadvantage on attack rolls and saving throws until the end of the greatwyrm's next turn. An {@condition unconscious} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the dragon is reduced to 0 hit points or uses its action to end it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "metallic", + "actions_note": "", + "mythic": null, + "key": "Silver Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Hoard Scarabs", + "source": "FTD", + "page": 205, + "size_str": "Medium", + "maintype": "swarm of Tiny monstrositys", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 6, + "dexterity": 16, + "constitution": 11, + "intelligence": 3, + "wisdom": 8, + "charisma": 6, + "passive": 9, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the swarm is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the swarm move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the swarm is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny scarab. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Swarm of Bites", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one creature in the swarm's space. {@h}13 ({@damage 3d6 + 3}) piercing damage, or 6 ({@damage 1d6 + 3}) piercing damage if the swarm is at half of its hit points or fewer, and the target has disadvantage on attack rolls until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Scale Dust (1/Day)", + "body": [ + "The swarm releases magical glittering dust from its wings. Each creature within 10 feet of the swarm must succeed on a {@dc 13} Dexterity saving throw or be outlined in blue light for 10 minutes. While outlined in this way, a creature sheds dim light in a 10-foot radius and can't benefit from being {@condition invisible}. In addition, every Dragon within 1 mile of the creature becomes aware of it and can unerringly track the creature. Casting {@spell dispel magic} on the creature ends the effect on it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Hoard Scarabs-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Topaz Dragon Wyrmling", + "source": "FTD", + "page": 223, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 14, + "wisdom": 13, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+3", + "wis": "+3", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Desiccating Breath {@recharge 5}", + "body": [ + "The dragon exhales yellowish necrotic energy in a 15-foot cone. Each creature in that area must make a {@dc 11} Constitution saving throw. On a failed save, the creature takes 21 ({@damage 6d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bane}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Topaz Dragon Wyrmling-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Topaz Greatwyrm", + "source": "FTD", + "page": 201, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 507, + "formula": "26d20 + 234", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 28, + "dexterity": 14, + "constitution": 29, + "intelligence": 30, + "wisdom": 24, + "charisma": 25, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 26, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+17", + "wis": "+15", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Gem Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 400 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use its Mass Telekinesis action during the next hour. Award a party an additional 90,000 XP (180,000 XP total) for defeating the greatwyrm after its Gem Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d8 + 9}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 19}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales crushing force in a 300-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 71 ({@damage 11d12}) force damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}. On a success or failure, the creature's speed becomes 0 until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mass Telekinesis (Gem Awakening Only; Recharges after a Short or Long Rest)", + "body": [ + "The greatwyrm targets any number of creatures and objects it can see within 120 feet of it. No one target can weigh more than 4,000 pounds, and objects can't be targeted if they're being worn or carried. Each targeted creature must succeed on a {@dc 26} Strength saving throw or be {@condition restrained} in the greatwyrm's telekinetic grip. At the end of a creature's turn, it can repeat the saving throw, ending the effect on itself on a success.", + "At the end of the greatwyrm's turn, it can move each creature or object it has in its telekinetic grip up to 60 feet in any direction, but not beyond 120 feet of itself. In addition, it can choose any number of creatures {@condition restrained} in this way and deal 45 ({@damage 7d12}) force damage to each of them." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The greatwyrm magically transforms into any creature that is Medium or Small, while retaining its game statistics (other than its size). This transformation ends if the greatwyrm is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Step", + "body": [ + "The greatwyrm magically teleports to an unoccupied space it can see within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The greatwyrm makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionics (Costs 2 Actions)", + "body": [ + "The greatwyrm uses Psychic Step or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Beam (Costs 3 Actions)", + "body": [ + "The greatwyrm emits a beam of psychic energy in a 90-foot line that is 10 feet wide. Each creature in that area must make a {@dc 26} Intelligence saving throw, taking 27 ({@damage 5d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The greatwyrm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 26}, {@hit 18} to hit with spell attack):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell forcecage}", + "{@spell plane shift}", + "{@spell reverse gravity}", + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Topaz Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "White Greatwyrm", + "source": "FTD", + "page": 168, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 533, + "formula": "26d20 + 260", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 60, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "27", + "xp": 105000, + "strength": 30, + "dexterity": 14, + "constitution": 30, + "intelligence": 21, + "wisdom": 20, + "charisma": 26, + "passive": 31, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 21, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+18", + "wis": "+13", + "cha": "+16" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Chromatic Awakening (Recharges after a Short or Long Rest)", + "body": [ + "If the greatwyrm would be reduced to 0 hit points, its current hit point total instead resets to 425 hit points, it recharges its Breath Weapon, and it regains any expended uses of Legendary Resistance. Additionally, the greatwyrm can now use the options in the \"Mythic Actions\" section for 1 hour. Award a party an additional 105,000 XP (210,000 XP total) for defeating the greatwyrm after its Chromatic Awakening activates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the greatwyrm fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The greatwyrm doesn't require food or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The greatwyrm makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) slashing damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 20}) and is {@condition restrained} until this grapple ends. The greatwyrm can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 26} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The greatwyrm exhales a blast of energy in a 300-foot cone. Each creature in that area must make a {@dc 26} Dexterity saving throw. On a failed save, the creature takes 78 ({@damage 12d12}) cold damage. On a successful save, the creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The greatwyrm makes one Claw or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The greatwyrm beats its wings. Each creature within 30 feet of it must succeed on a {@dc 26} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The greatwyrm can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Spear (Costs 3 Actions)", + "body": [ + "The greatwyrm creates four spears of magical force. Each spear hits a creature of the greatwyrm's choice it can see within 120 feet of it, dealing 12 ({@damage 1d8 + 8}) force damage to its target, then disappears." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "chromatic", + "actions_note": "", + "mythic": null, + "key": "White Greatwyrm-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Amethyst Dragon", + "source": "FTD", + "page": 161, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 21, + "dexterity": 12, + "constitution": 21, + "intelligence": 18, + "wisdom": 15, + "charisma": 19, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Singularity Breath {@recharge 5}", + "body": [ + "The dragon creates a shining bead of gravitational force in its mouth, then releases the energy in a 30-foot cone. Each creature in that area must make a {@dc 17} Strength saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, the creature takes half as much damage, and its speed isn't reduced." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blink}", + "{@spell dispel magic}", + "{@spell protection from evil and good}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Young Amethyst Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Crystal Dragon", + "source": "FTD", + "page": 172, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 17, + "dexterity": 12, + "constitution": 18, + "intelligence": 16, + "wisdom": 14, + "charisma": 17, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+7", + "wis": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage plus 4 ({@damage 1d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scintillating Breath {@recharge 5}", + "body": [ + "The dragon exhales a burst of brilliant radiance in a 30-foot cone. Each creature in that area must make a {@dc 15} Constitution saving throw, taking 27 ({@damage 6d8}) radiant damage on a failed save, or half as much damage on a successful one. The dragon then gains 10 temporary hit points by absorbing a portion of the radiant energy." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell guidance}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell hypnotic pattern}", + "{@spell lesser restoration}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Young Crystal Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Deep Dragon", + "source": "FTD", + "page": 175, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+6", + "wis": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 150 ft." + ], + "languages": [ + "Common", + "Draconic", + "Undercommon" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Breath {@recharge 5}", + "body": [ + "The dragon exhales a cloud of spores in a 30-foot cone. Each creature in that area must make a {@dc 14} Wisdom saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) psychic damage, and it is {@condition frightened} of the dragon for 1 minute. On a successful save, the creature takes half as much damage with no additional effects. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Deep Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Dragon Turtle", + "source": "FTD", + "page": 192, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d12 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 21, + "dexterity": 10, + "constitution": 19, + "intelligence": 10, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "saves": { + "dex": "+4", + "con": "+8", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Aquan", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon turtle can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon turtle makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 6 ({@damage 1d12}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steam Breath {@recharge 5}", + "body": [ + "The dragon turtle exhales steam in a 30-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw, taking 42 ({@damage 12d6}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Dragon Turtle-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Emerald Dragon", + "source": "FTD", + "page": 197, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 21, + "dexterity": 12, + "constitution": 19, + "intelligence": 16, + "wisdom": 14, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+7", + "wis": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disorienting Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of psychic dissonance in a 30-foot cone. Each creature in that area must make a {@dc 15} Intelligence saving throw. On a failed save, the creature takes 31 ({@damage 9d6}) psychic damage, and until the end of its next turn, when the creature makes an attack roll or an ability check, it must roll a {@dice d6} and reduce the total by the number rolled. On a successful save, the creature takes half as much damage with no additional effects." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell silent image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Young Emerald Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Moonstone Dragon", + "source": "FTD", + "page": 213, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d10 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 16, + "constitution": 17, + "intelligence": 18, + "wisdom": 17, + "charisma": 19, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+7", + "wis": "+6", + "cha": "+7" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Sylvan" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 5 ({@damage 1d10}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons:", + { + "title": "Dream Breath", + "body": [ + "The dragon exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 14} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moonlight Breath", + "body": [ + "The dragon exhales a beam of moonlight in a 60-foot line that is 5 feet wide. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 38 ({@damage 7d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The dragon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}", + "{@spell faerie fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Moonstone Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Sapphire Dragon", + "source": "FTD", + "page": 216, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 21, + "dexterity": 14, + "constitution": 20, + "intelligence": 16, + "wisdom": 15, + "charisma": 16, + "passive": 20, + "skills": { + "skills": [ + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+9", + "wis": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The dragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The dragon can burrow through solid rock at half its burrowing speed and can leave a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Debilitating Breath {@recharge 5}", + "body": [ + "The dragon exhales a pulse of high-pitched, nearly inaudible sound in a 30-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw. On a failed save, the creature takes 33 ({@damage 6d10}) thunder damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dissonant whispers}", + "{@spell hold person}", + "{@spell meld into stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Young Sapphire Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Sea Serpent", + "source": "FTD", + "page": 219, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d12 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 19, + "dexterity": 12, + "constitution": 17, + "intelligence": 11, + "wisdom": 13, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+6" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The sea serpent can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The sea serpent deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sea serpent makes one Bite attack and one Constrict or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 5 ({@damage 1d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 20 ft., one creature. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the sea serpent can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be pushed up to 20 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rime Breath {@recharge 5}", + "body": [ + "The sea serpent exhales a 30-foot cone of cold. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 38 ({@damage 7d10}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Sea Serpent-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Young Topaz Dragon", + "source": "FTD", + "page": 223, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 16, + "wisdom": 15, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+5", + "wis": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe both air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage plus 3 ({@damage 1d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Desiccating Breath {@recharge 5}", + "body": [ + "The dragon exhales yellowish necrotic energy in a 30-foot cone. Each creature in that area must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 28 ({@damage 8d6}) necrotic damage and is weakened until the end of its next turn. A weakened creature has disadvantage on Strength-based ability checks and Strength saving throws, and the creature's weapon attacks that rely on Strength deal half damage. On a successful save, the creature takes half as much damage and isn't weakened." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The dragon casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bane}", + "{@spell create or destroy water}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gem", + "actions_note": "", + "mythic": null, + "key": "Young Topaz Dragon-FTD", + "__dataclass__": "Monster" + }, + { + "name": "Anarch", + "source": "GGR", + "page": 239, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 13, + "constitution": 12, + "intelligence": 9, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the anarch can move up to its speed toward a hostile creature it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The anarch deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spiked Club", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 7 ({@damage 1d10 + 2}) piercing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Anarch-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Archon of the Triumvirate", + "source": "GGR", + "page": 192, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 20, + "dexterity": 15, + "constitution": 19, + "intelligence": 15, + "wisdom": 21, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+10", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Eye of the Law", + "body": [ + "As a bonus action, the archon can target a creature it can see within 120 feet of it and determine which laws that creature has broken in the last 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mount", + "body": [ + "If the archon isn't mounted, it can use a bonus action to magically teleport onto the creature serving as its mount, provided the archon and its mount are on the same plane of existence. When it teleports, the archon appears astride the mount along with any equipment it is wearing or carrying. While mounted and not {@condition incapacitated}, the archon can't be {@status surprised}, and both it and its mount gain advantage on Dexterity saving throws. If the archon is reduced to 0 hit points while riding its mount, the mount is reduced to 0 hit points as well." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archon makes two Hammer of Justice attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hammer of Justice", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 18 ({@damage 4d8}) force damage. If the target is a creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pacifying Presence", + "body": [ + "Each creature of the archon's choice that the archon can see within 120 feet of it must succeed on a {@dc 18} Wisdom saving throw, or else the target drops any weapons it is holding, ends its {@status concentration} on any spells or other effects, and becomes {@condition charmed} by the archon for 1 minute. The {@condition charmed} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the archon's Pacifying Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Rejoin Mount", + "body": [ + "If the archon isn't mounted, it magically teleports to its steed and mounts it as long as the archon and its steed are on the same plane of existence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Smite (Costs 2 Actions)", + "body": [ + "The archon makes a Hammer of Justice attack, and then its mount can use its reaction to make a melee weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Detention (Costs 3 Actions)", + "body": [ + "The archon targets a creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Charisma saving throw or be magically teleported to a harmless demiplane until the end of the archon's next turn, whereupon the target reappears in the space it left or the nearest unoccupied space if that space is occupied." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The archon's innate spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The archon can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell calm emotions}", + "{@spell command}", + "{@spell compelled duel}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Archon of the Triumvirate-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Arclight Phoenix", + "source": "GGR", + "page": 193, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "19d8 + 57", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 15, + "dexterity": 22, + "constitution": 17, + "intelligence": 5, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "saves": { + "dex": "+10" + }, + "dmg_resistances": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The arclight phoenix doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grounded Lightning", + "body": [ + "The first time on a turn that the arclight phoenix touches the ground, it takes 11 ({@damage 2d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The arclight phoenix sheds bright light in a 15-foot radius and dim light for an additional 15 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Form", + "body": [ + "The arclight phoenix can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the phoenix or hits it with a melee attack while within 5 feet of it takes 9 ({@damage 2d8}) lightning damage. In addition, the arclight phoenix can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 9 ({@damage 2d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crackling Death", + "body": [ + "When the arclight phoenix dies, it explodes. Each creature within 30 feet of it must make a {@dc 18} Dexterity saving throw, taking 36 ({@damage 8d8}) lightning damage on a failed save, or half as much damage on a successful one. The explosion destroys the phoenix but leaves behind a Tiny, warm egg with a mizzium shell. The egg contains the embryo of a new arclight phoenix. It hatches when it is in the area of a spell that deals lightning damage, or if a creature touches the egg and expends spell slots whose combined levels equal 13 or more. When it hatches, the egg releases a new arclight phoenix that appears in the egg's space." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Arclight Touch", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}27 ({@damage 6d8}) lightning damage, and lightning jumps from the target to one creature of the phoenix's choice that it can see within 30 feet of the target. That second creature must succeed on a {@dc 18} Dexterity saving throw or take 27 ({@damage 6d8}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Arclight Phoenix-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Aurelia", + "source": "GGR", + "page": 230, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 287, + "formula": "25d8 + 175", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 150, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 26, + "dexterity": 24, + "constitution": 25, + "intelligence": 17, + "wisdom": 25, + "charisma": 30, + "passive": 24, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+14", + "con": "+14", + "cha": "+17" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Aurelia fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Aurelia has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Aurelia makes three longsword attacks and uses Leadership." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}12 ({@damage 1d8 + 8}) slashing damage, or 13 ({@damage 1d10 + 8}) slashing damage when used with two hands, plus 27 ({@damage 6d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leadership", + "body": [ + "Aurelia utters a few inspiring words to one creature she can see within 30 feet of her. If the creature can hear her, it can add a {@dice d10} to one attack roll or saving throw it makes before the start of Aurelia's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warleader's Helix {@recharge 5}", + "body": [ + "{@atk rs} {@hit 17} to hit, range 60 ft., one creature. {@h}54 ({@damage 12d8}) radiant damage, and Aurelia can choose another creature she can see within 10 feet of the target. The second creature regains 27 ({@dice 6d8}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Aurelia adds 7 to her AC against one melee attack that would hit her. To do so, Aurelia must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unyielding", + "body": [ + "When Aurelia is subjected to an effect that would move her, knock her {@condition prone}, or both, she can use her reaction to be neither moved nor knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Command Allies", + "body": [ + "Aurelia chooses up to three creatures she can see within 30 feet of her. If a chosen creature can see or hear Aurelia, it can immediately use its reaction to make one weapon attack, with advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword Attack (Costs 2 Actions)", + "body": [ + "Aurelia makes one longsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frighten Foes (Costs 3 Actions)", + "body": [ + "Aurelia targets up to five creatures she can see within 30 feet of her. Each target must succeed on a {@dc 25} Wisdom saving throw or be {@condition frightened} of her until the end of her next turn. Any target within 5 feet of Aurelia has disadvantage on the saving throw." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "angel", + "actions_note": "", + "mythic": null, + "key": "Aurelia-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Battleforce Angel", + "source": "GGR", + "page": 189, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 12, + "constitution": 13, + "intelligence": 11, + "wisdom": 17, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The angel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The angel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The angel makes two melee attacks. It also uses Battlefield Inspiration." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands, plus 18 ({@damage 4d8}) radiant damage. If the target is within 5 feet of any of the angel's allies, the target takes an extra 2 ({@damage 1d4}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battlefield Inspiration", + "body": [ + "The angel chooses up to three creatures it can see within 30 feet of it. Until the end of the angel's next turn, each target can add a {@dice d4} to its attack rolls and saving throws." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Battleforce Angel-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Biomancer", + "source": "GGR", + "page": 256, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 10, + "dexterity": 15, + "constitution": 14, + "intelligence": 20, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+6" + }, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Bolstering Presence", + "body": [ + "The biomancer magically emanates life-giving energy within 30 feet of itself. Any ally of the biomancer that starts its turn there regains 5 ({@dice 1d10}) hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The biomancer has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The biomancer is a 16th-level Simic spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The biomancer has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell light}", + "{@spell mending}", + "{@spell poison spray}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell grease}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell alter self}", + "{@spell darkvision}", + "{@spell enlarge/reduce}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell haste}", + "{@spell protection from energy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell conjure minor elementals}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell creation}", + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell move earth}", + "{@spell wall of ice}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell prismatic spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell control weather}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Biomancer-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Blistercoil Weird", + "source": "GGR", + "page": 207, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 16, + "constitution": 15, + "intelligence": 5, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Feed on Fire", + "body": [ + "If the weird takes fire damage from a spell or other magical effect, its size increases by one category. If there isn't enough room for the weird to increase in size, it attains the maximum size possible in the space available. While the weird is Large or bigger, it makes Strength checks and saving throws with advantage. If the weird starts its turn at Gargantuan size, the weird releases energy in an explosion. Each creature within 30 feet of the weird must make a {@dc 12} Dexterity saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save, or half as much damage on a successful one. The explosion ignites flammable objects in the area that aren't being worn or carried. The weird's size then becomes Medium." + ], + "__dataclass__": "Entry" + }, + { + "title": "Form of Fire and Water", + "body": [ + "The weird can move through a space as narrow as 1 inch wide without squeezing. In addition, the weird can enter a hostile creature's space and stop there. The first time the weird enters another creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage and catches fire; until someone takes an action to douse the fire, the burning creature takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heated Body", + "body": [ + "A creature that touches the weird or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The weird sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage, or 11 ({@damage 2d8 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage if the weird is Large or bigger." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blistercoil Weird-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Blood Drinker Vampire", + "source": "GGR", + "page": 223, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 16, + "dexterity": 18, + "constitution": 17, + "intelligence": 16, + "wisdom": 13, + "charisma": 19, + "passive": 14, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+6", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vampire makes three melee attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. If the target is humanoid, it must succeed on a {@dc 15} Charisma saving throw or be {@condition charmed} by the vampire for 1 minute. While {@condition charmed} in this way, the target is infatuated with the vampire. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. The vampire can also grapple the target (escape {@dc 14}) if it is a creature and the vampire has a hand free." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The vampire adds 3 to its AC against one melee attack that would hit it. To do so, the vampire must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blood Drinker Vampire-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Blood Witch", + "source": "GGR", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 16, + "dexterity": 14, + "constitution": 15, + "intelligence": 13, + "wisdom": 9, + "charisma": 19, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal plus any one language (usually Common)" + ], + "traits": [ + { + "title": "Blood Witch Dance", + "body": [ + "The witch can use a bonus action to control the movement of one creature cursed by its {@spell hex} spell that it can see within 30 feet of it. The creature must succeed on a {@dc 15} Charisma saving throw or use its reaction to move up to 30 feet in a direction of the witch's choice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the witch's darkvision." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The witch makes two attacks: one with its longsword and one with its shortsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The witch's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The witch can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell detect magic}", + "{@spell eldritch blast} (at 11th level)", + "{@spell false life}", + "{@spell levitate} (self only)", + "{@spell mage armor} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell circle of death}", + "{@spell enthrall}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell hellish rebuke}", + "{@spell hex}", + "{@spell scorching ray} (at 3rd level)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Blood Witch-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Bloodfray Giant", + "source": "GGR", + "page": 200, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 103, + "formula": "9d12 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 23, + "dexterity": 9, + "constitution": 20, + "intelligence": 7, + "wisdom": 8, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+8", + "wis": "+2" + }, + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Chain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 20 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage. If the target is a creature, it is {@condition grappled} (escape {@dc 17}). Until the grapple ends, the target is {@condition restrained}, and the giant can't use this attack on anyone else." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Furious Defense", + "body": [ + "After a creature the giant can see is dealt damage by a foe within 20 feet of the giant, the giant makes a chain attack against that foe." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bloodfray Giant-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Borborygmos", + "source": "GGR", + "page": 238, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 270, + "formula": "20d12 + 140", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 24, + "dexterity": 11, + "constitution": 24, + "intelligence": 8, + "wisdom": 17, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+13", + "con": "+13", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "tremorsense 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Borborygmos fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poor Depth Perception", + "body": [ + "Borborygmos has disadvantage on any attack roll against a target more than 30 feet away." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "Borborygmos deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Borborygmos can use his Frightful Presence. He also makes two attacks: one with his maul and one with his stomp." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 13} to hit, range 30/120 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Borborygmos's choice that is within 60 feet of him and can see or hear him must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of him for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Borborygmos's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Borborygmos makes a weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bellow (Costs 2 Actions)", + "body": [ + "Borborygmos yells menacingly at one creature he can see within 60 feet of him. That creature must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of him for 1 minute. If the creature is already {@condition frightened}, it becomes {@condition stunned} instead. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Borborygmos's Bellow for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wide Berth (Costs 3 Actions)", + "body": [ + "Borborygmos moves up to half his speed and can move through the space of any creature smaller than Huge. The first time Borborygmos enters a creature's space during this move, the creature must make a {@dc 21} Dexterity saving throw. If the saving throw succeeds, the creature is pushed 5 feet away from Borborygmos. If the saving throw fails, that creature is knocked {@condition prone}, and Borborygmos can make a stomp attack against it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Borborygmos-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Cackler", + "source": "GGR", + "page": 195, + "size_str": "Small", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 9, + "dexterity": 16, + "constitution": 11, + "intelligence": 11, + "wisdom": 7, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 0, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Last Laugh", + "body": [ + "When the cackler dies, it releases a dying laugh that scars the minds of other nearby creatures. Each creature within 10 feet of the cackler must succeed on a {@dc 11} Wisdom saving throw or take 2 ({@damage 1d4}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mimicry", + "body": [ + "The cackler can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 11} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Chain", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The cackler's innate spellcasting ability is Charisma (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The cackler can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fire bolt}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Cackler-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Category 1 Krasis", + "source": "GGR", + "page": 210, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 15, + "constitution": 14, + "intelligence": 2, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "traits": [ + { + "title": "Amphibious", + "body": [ + "The krasis can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The krasis makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Category 1 Krasis-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Category 2 Krasis", + "source": "GGR", + "page": 211, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 14, + "constitution": 16, + "intelligence": 2, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "traits": [ + { + "title": "Amphibious", + "body": [ + "The krasis can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The krasis makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}17 ({@damage 2d12 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Category 2 Krasis-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Category 3 Krasis", + "source": "GGR", + "page": 212, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 287, + "formula": "25d12 + 125", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 23, + "dexterity": 12, + "constitution": 21, + "intelligence": 2, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "traits": [ + { + "title": "Amphibious", + "body": [ + "The krasis can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The krasis makes three attacks: one with its bite, one with its claws, and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one creature. {@h}27 ({@damage 6d6 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}33 ({@damage 6d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 19} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Category 3 Krasis-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Conclave Dryad", + "source": "GGR", + "page": 194, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Lawful Good", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 12, + "dexterity": 19, + "constitution": 14, + "intelligence": 19, + "wisdom": 20, + "charisma": 21, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+9", + "cha": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The dryad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Beasts and Plants", + "body": [ + "The dryad can communicate with beasts and plants as if they and the dryad shared a language." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dryad makes three attacks, using its vine staff, its longbow, or both." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vine Staff", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Dexterity saving throw or become {@condition restrained} by twisting vines for 1 minute. A target {@condition restrained} in this way can use an action to make a {@dc 17} Strength ({@skill Athletics}) or Dexterity ({@skill Acrobatics}) check, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 8} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Mount (1/Day)", + "body": [ + "The dryad magically summons a mount, which appears in an unoccupied space within 60 feet of the dryad. The mount remains for 8 hours, until it or the dryad dies, or until the dryad dismisses it as an action. The mount uses the stat block of an {@creature elk} (see the Monster Manual) with these changes: it is a plant instead of a beast, it has an Intelligence of 6, and it understands Sylvan but can't speak. While within 1 mile of the mount, the dryad can communicate with it telepathically." + ], + "__dataclass__": "Entry" + }, + { + "title": "Suppress Magic {@recharge 5}", + "body": [ + "The dryad targets one magic item it can see within 120 feet of it. If the magic item isn't an artifact, its magical properties are suppressed for 10 minutes, until the dryad is {@condition incapacitated} or dies, or until the dryad uses a bonus action to end the effect." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dryad's innate spellcasting ability is Charisma (spell save {@dc 17}). The dryad can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell entangle}", + "{@spell plant growth}", + "{@spell spike growth}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell moonbeam}", + "{@spell grasping vine}", + "{@spell wall of thorns}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Conclave Dryad-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Cosmotronic Blastseeker", + "source": "GGR", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 14, + "dexterity": 15, + "constitution": 16, + "intelligence": 18, + "wisdom": 9, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+5" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Empowered Spell (3/Day)", + "body": [ + "When the blastseeker rolls damage for a spell, it can reroll up to four dice of damage. It must use the new dice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tides of Chaos (1/Day)", + "body": [ + "The blastseeker makes one attack roll, ability check, or saving throw with advantage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Warhammer", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, or 7 ({@damage 1d10 + 2}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fireball}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell scorching ray}", + "{@spell shield}", + "{@spell thunderwave}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Cosmotronic Blastseeker-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Counterflux Blastseeker", + "source": "GGR", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 16, + "constitution": 15, + "intelligence": 18, + "wisdom": 11, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+2" + }, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Counterflux Overcast {@recharge 5}", + "body": [ + "The blastseeker can create an additional effect immediately after casting a spell. Roll a {@dice d6} to determine the effect:", + { + "title": "1\u20133.", + "body": [ + "The blastseeker creates a 15-foot-radius {@condition invisible} sphere centered on itself that lasts until the end of its next turn. Creatures in the sphere have disadvantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "4\u20136.", + "body": [ + "The blastseeker creates a 15-foot-radius {@condition invisible} sphere centered on itself that lasts until the end of its next turn. Creatures in the sphere have advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell mage armor} (self only)", + "{@spell scorching ray}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell protection from energy}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Counterflux Blastseeker-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Deathpact Angel", + "source": "GGR", + "page": 192, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 175, + "formula": "27d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 16, + "dexterity": 18, + "constitution": 14, + "intelligence": 19, + "wisdom": 20, + "charisma": 23, + "passive": 20, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+10", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Exploitation of the Debtors", + "body": [ + "As a bonus action, the angel targets a creature {@condition charmed} by it that it can see within 30 feet of it. The angel deals 11 ({@damage 2d10}) necrotic damage to the target, and the angel gains temporary hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The angel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The angel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The angel makes two attacks with its scythe. It can substitute Chains of Obligation for one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scythe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage plus 27 ({@damage 6d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chains of Obligation", + "body": [ + "The angel targets one creature {@condition charmed} by it that it can see within 90 feet of it. The target must succeed on a {@dc 19} Charisma saving throw or become {@condition paralyzed} for 1 minute or until it takes any damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The angel's innate spellcasting ability is Charisma (spell save {@dc 19}, {@hit 11} to hit with spell attacks). The angel can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command} (as a 2nd-level spell)", + "{@spell detect evil and good}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell raise dead}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell charm person} (as a 5th-level spell)", + "{@spell darkness}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deathpact Angel-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Devkarin Lich", + "source": "GGR", + "page": 198, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 11, + "dexterity": 16, + "constitution": 14, + "intelligence": 19, + "wisdom": 16, + "charisma": 15, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+9", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Elvish", + "Kraul" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the lich fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The lich regains 10 hit points at the start of its turn. If the lich takes fire or radiant damage, this trait doesn't function at the start of the lich's next turn. The lich dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The lich has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the lich to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the lich drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Noxious Touch", + "body": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one creature. {@h}14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 17} Constitution saving throw or be {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip", + "body": [ + "The lich casts one of its cantrips." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noxious Touch (Costs 2 Actions)", + "body": [ + "The lich uses Noxious Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disrupt Life (Costs 3 Actions)", + "body": [ + "Each creature within 30 feet of the lich must make a {@dc 17} Constitution saving throw, taking 21 ({@damage 6d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The lich is a 14th-level Golgari spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The lich has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell magic missile}", + "{@spell ray of sickness}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Melf's acid arrow}", + "{@spell ray of enfeeblement}", + "{@spell spider climb}", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell bestow curse}", + "{@spell fear}", + "{@spell vampiric touch}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell Evard's black tentacles}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell insect plague}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell circle of death}", + "{@spell create undead}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Devkarin Lich-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Druid of the Old Ways", + "source": "GGR", + "page": 239, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 20, + "charisma": 14, + "passive": 18, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+6", + "wis": "+8" + }, + "languages": [ + "Common", + "Druidic" + ], + "traits": [ + { + "title": "Siege Monster", + "body": [ + "The druid deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Beasts and Plants", + "body": [ + "The druid can communicate with beasts and plants as if they shared a language." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The druid is a 12th-level Gruul spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell resistance}", + "{@spell thorn whip}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell faerie fire}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell beast sense}", + "{@spell flame blade}", + "{@spell pass without trace}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell conjure animals}", + "{@spell dispel magic}", + "{@spell plant growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell freedom of movement}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell commune with nature}", + "{@spell conjure elemental}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell transport via plants}", + "{@spell wall of thorns}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Druid of the Old Ways-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Felidar", + "source": "GGR", + "page": 199, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 16, + "constitution": 17, + "intelligence": 10, + "wisdom": 17, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+6", + "cha": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "understands Celestial and Common but can't speak" + ], + "traits": [ + { + "title": "Bonding", + "body": [ + "The felidar can magically bond with one creature it can see, right after spending at least 1 hour observing that creature while within 30 feet of it. The bond lasts until the felidar bonds with a different creature or until the bonded creature dies. This bond has the following effects: The felidar and the bonded creature can communicate telepathically with each other at a distance of up to 100 feet. The felidar can sense the direction and distance to the bonded creature if they're on the same plane of existence. As an action, the felidar or the bonded creature can sense what the other sees and hears, during which time it loses its own sight and hearing. This effect lasts until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Sight", + "body": [ + "The felidar has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the felidar moves at least 20 feet straight toward a creature and hits it with a claw attack on the same turn, that target must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the felidar can make one claw attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The felidar makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Felidar-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Firefist", + "source": "GGR", + "page": 231, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 16, + "dexterity": 10, + "constitution": 14, + "intelligence": 11, + "wisdom": 17, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+6" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The firefist makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Guided Attack (Recharges after a Short or Long Rest)", + "body": [ + "When the firefist or one creature it can see within 30 feet of it makes an attack roll, the firefist grants a +10 bonus to that roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The firefist is a 9th-level Boros spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell heroism}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blinding smite}", + "{@spell crusader's mantle}", + "{@spell revivify}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell flame strike}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Firefist-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Firemane Angel", + "source": "GGR", + "page": 190, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 22, + "dexterity": 15, + "constitution": 17, + "intelligence": 12, + "wisdom": 14, + "charisma": 23, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "wis": "+6", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The angel doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The angel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Relentless (Recharges after a Short or Long Rest)", + "body": [ + "If the angel takes 21 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The angel makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage, or 11 ({@damage 1d10 + 6}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) fire or radiant damage (angel's choice)." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The angel's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The angel can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell compelled duel}", + "{@spell guiding bolt} (as a 5th-level spell)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell daylight}", + "{@spell fireball} (as a 6th-level spell)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Firemane Angel-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Flux Blastseeker", + "source": "GGR", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 20, + "wisdom": 9, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+8" + }, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Fluxbending Overcast {@recharge 5}", + "body": [ + "The blastseeker can create an additional effect immediately after casting a spell. Roll a {@dice d6} to determine the effect: 1-3. The blastseeker teleports, swapping places with a creature it can see within 30 feet of it. 4-6. The blastseeker and each creature within 10 feet of it must succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) thunder damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell mage armor} (self only)", + "{@spell scorching ray}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell cone of cold}", + "{@spell dimension door}", + "{@spell fireball}", + "{@spell ice storm}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Flux Blastseeker-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Fluxcharger", + "source": "GGR", + "page": 208, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 15, + "dexterity": 18, + "constitution": 15, + "intelligence": 6, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Amplify Lightning", + "body": [ + "Whenever a spell that deals lightning damage includes one or more fluxchargers in its area, the spell deals an extra 9 ({@damage 2d8}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fluxcharger makes two slam attacks or uses Arc Lightning twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arc Lightning", + "body": [ + "{@atk rs} {@hit 7} to hit, range 30 ft., one target. {@h}16 ({@damage 3d10}) lightning damage, and lightning jumps from the target to one creature of the fluxcharger's choice that it can see within 30 feet of the target. That second creature must succeed on a {@dc 15} Dexterity saving throw or take 13 ({@damage 3d8}) lightning damage. {@hom}The fluxcharger takes 5 ({@damage 1d10}) force damage after resolving the attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fluxcharger-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Flying Horror", + "source": "GGR", + "page": 203, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 20, + "constitution": 12, + "intelligence": 2, + "wisdom": 15, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Fear Frenzy", + "body": [ + "The horror has advantage on attack rolls against {@condition frightened} creatures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the horror has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 14 ({@damage 4d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightening Screech {@recharge 5}", + "body": [ + "The horror screeches. Each creature within 30 feet of it that can hear it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of it for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the horror's Frightening Screech for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flying Horror-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Frontline Medic", + "source": "GGR", + "page": 231, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 10, + "constitution": 14, + "intelligence": 10, + "wisdom": 13, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The medic is a 3rd-level Boros spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}). The medic has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mending}", + "{@spell resistance}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Frontline Medic-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Galvanic Blastseeker", + "source": "GGR", + "page": 243, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 17, + "constitution": 14, + "intelligence": 19, + "wisdom": 10, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common and Primordial", + "plus any one language" + ], + "traits": [ + { + "title": "Galvanic Overcast {@recharge 5}", + "body": [ + "When the blastseeker casts {@spell lightning bolt} or thunderwave, it can roll a die. On an odd number, the blastseeker takes 9 ({@damage 2d8}) force damage. On an even number, the spell also deals 9 ({@damage 2d8}) lightning damage to each target that fails its saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heart of the Storm", + "body": [ + "When the blastseeker casts {@spell lightning bolt} or thunderwave, all other creatures within 10 feet of the blastseeker each take 3 lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gust-Propelled Leap", + "body": [ + "The blastseeker can use a bonus action to fly up to 10 feet without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d6}) piercing damage, or 4 ({@damage 1d8}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The blastseeker's innate spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The blastseeker can innately cast the following spells, requiring no components other than its Izzet gear, which doesn't function for others:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell stoneskin}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell levitate}", + "{@spell lightning bolt}", + "{@spell thunderwave}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Galvanic Blastseeker-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Galvanice Weird", + "source": "GGR", + "page": 209, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 10, + "constitution": 17, + "intelligence": 3, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the galvanice weird dies, it explodes in a burst of ice and lightning. Each creature within 10 feet of the exploding weird must make a {@dc 13} Dexterity saving throw, taking 7 ({@damage 2d6}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 5 ({@damage 2d4}) lightning damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or lose the ability to use reactions until the start of the weird's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Galvanice Weird-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Gloamwing", + "source": "GGR", + "page": 215, + "size_str": "Large", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 16, + "constitution": 17, + "intelligence": 2, + "wisdom": 11, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "dex": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Common" + ], + "traits": [ + { + "title": "Death Link", + "body": [ + "If its specter rider is reduced to 0 hit points, the gloamwing is destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The gloamwing doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the gloamwing has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gloamwing makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gloamwing-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Golgari Shaman", + "source": "GGR", + "page": 236, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 11, + "dexterity": 15, + "constitution": 12, + "intelligence": 12, + "wisdom": 17, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The shaman has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fungal Rot", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) necrotic damage, and the target must make a {@dc 14} Constitution saving throw, taking 18 ({@damage 4d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Feed on Death", + "body": [ + "When a creature within 30 feet of the shaman drops to 0 hit points, the shaman gains 5 ({@dice 1d10}) temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The shaman is an 8th-level Golgari spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The shaman has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell poison spray}", + "{@spell shillelagh}", + "{@spell thorn whip}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell ray of sickness}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell pass without trace}", + "{@spell ray of enfeeblement}", + "{@spell spike growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}", + "{@spell plant growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell blight}", + "{@spell giant insect}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Golgari Shaman-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Guardian Giant", + "source": "GGR", + "page": 201, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 19, + "note": "{@item half plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 137, + "formula": "11d12 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 24, + "dexterity": 17, + "constitution": 22, + "intelligence": 10, + "wisdom": 18, + "charisma": 12, + "passive": 20, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+7" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Vigilant", + "body": [ + "The giant can't be {@status surprised}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes three spear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 10} to hit, reach 10 ft. or range 60/240 ft., one target. {@h}17 ({@damage 3d6 + 7}) piercing damage, or 20 ({@damage 3d8 + 7}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection", + "body": [ + "When an attacker the giant can see makes an attack roll against a creature within 10 feet of the giant, the giant can impose disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guardian Giant-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Horncaller", + "source": "GGR", + "page": 253, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 12, + "constitution": 14, + "intelligence": 10, + "wisdom": 14, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Speak with Beasts", + "body": [ + "The horncaller can communicate with beasts as if they shared a language." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The horncaller makes two melee attacks with its staff and uses One with the Worldsoul." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "One with the Worldsoul", + "body": [ + "The horncaller chooses one beast it can see within 30 feet of it. If the beast can hear the horncaller, the beast uses its reaction to make one melee attack against a target that the horncaller can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The horncaller's innate spellcasting ability is Wisdom (spell save {@dc 14}). The horncaller can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bless}", + "{@spell conjure animals}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Horncaller-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Hybrid Brute", + "source": "GGR", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 11, + "constitution": 15, + "intelligence": 8, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The hybrid can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hybrid makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Simic hybrid", + "actions_note": "", + "mythic": null, + "key": "Hybrid Brute-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Hybrid Flier", + "source": "GGR", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any one language" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hybrid makes two javelin attacks. It can replace one javelin attack with Spit Acid." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Acid", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}10 ({@damage 4d4}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Simic hybrid", + "actions_note": "", + "mythic": null, + "key": "Hybrid Flier-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Hybrid Poisoner", + "source": "GGR", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 19, + "constitution": 14, + "intelligence": 12, + "wisdom": 13, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Assassinate", + "body": [ + "During its first turn, the hybrid poisoner has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the hybrid scores against a {@status surprised} creature is a critical hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Skin", + "body": [ + "Any creature that touches the hybrid or hits it with a melee attack while within 5 feet of it takes 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Toxic Touch", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. At the end of each of the {@condition poisoned} target's turns, it must repeat the save, taking 3 ({@damage 1d6}) poison damage on a failed save, or ending the effect on itself on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Simic hybrid", + "actions_note": "", + "mythic": null, + "key": "Hybrid Poisoner-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Hybrid Shocker", + "source": "GGR", + "page": 218, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 12, + "charisma": 9, + "passive": 11, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Electrified Body", + "body": [ + "Any creature that touches the hybrid or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The hybrid sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hybrid makes two attacks: one with its shocking touch and one with its tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shocking Touch", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 15 ft., one creature. {@h}The target is {@condition grappled} (escape {@dc 11}), and the hybrid pulls the target up to 15 feet straight toward it. Until this grapple ends, the target takes 5 ({@damage 1d10}) lightning damage at the start of each of its turns, and the hybrid shocker can't use its tentacles on another creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Simic hybrid", + "actions_note": "", + "mythic": null, + "key": "Hybrid Shocker-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Hybrid Spy", + "source": "GGR", + "page": 218, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 17, + "constitution": 12, + "intelligence": 13, + "wisdom": 14, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Chameleon Skin", + "body": [ + "The hybrid has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The hybrid can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hybrid makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Simic hybrid", + "actions_note": "", + "mythic": null, + "key": "Hybrid Spy-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Indentured Spirit", + "source": "GGR", + "page": 206, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 7, + "dexterity": 13, + "constitution": 10, + "intelligence": 10, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The spirit can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Withering Touch", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Indentured Spirit-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Isperia", + "source": "GGR", + "page": 227, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 261, + "formula": "18d20 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 20, + "dexterity": 14, + "constitution": 18, + "intelligence": 23, + "wisdom": 26, + "charisma": 20, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+11", + "int": "+13", + "wis": "+15" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Sphinx" + ], + "traits": [ + { + "title": "Inscrutable", + "body": [ + "Isperia is immune to any effect that would sense her emotions or read her thoughts, as well as any divination spell that she refuses. Wisdom ({@skill Insight}) checks made to ascertain her intentions or sincerity have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Isperia fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Isperia has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Isperia makes two claw attacks. She can cast a spell with a casting time of 1 action in place of one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage. If the target is a creature, it must succeed on a {@dc 23} Wisdom saving throw or take 14 ({@damage 4d6}) psychic damage after each attack it makes against Isperia before the start of her next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Supreme Legal Authority", + "body": [ + "Isperia chooses up to three creatures she can see within 90 feet of her. Each target must succeed on a {@dc 23} Intelligence saving throw or Isperia chooses an action for that target: Attack, Cast a Spell, Dash, Disengage, Dodge, Help, Hide, Ready, Search, or Use an Object. The affected target can't take that action for 1 minute. At the end of each of the target's turns, it can end the effect on itself with a successful {@dc 23} Intelligence saving throw. A target that succeeds on the saving throw becomes immune to Isperia's Supreme Legal Authority for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw Attack", + "body": [ + "Isperia makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Isperia casts a spell of 3rd level or lower from her list of prepared spells, using a spell slot as normal." + ], + "__dataclass__": "Entry" + }, + { + "title": "Supreme Legal Authority (Costs 3 Actions)", + "body": [ + "Isperia uses Supreme Legal Authority." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Isperia's innate spellcasting ability is Wisdom (spell save {@dc 23}). Isperia can innately cast {@spell imprisonment} twice per day, requiring no material components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell imprisonment}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Isperia is a 15th-level Azorius spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 23}, {@hit 14} to hit with spell attacks). Isperia has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell ensnaring strike}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell augury}", + "{@spell calm emotions}", + "{@spell hold person}", + "{@spell silence}", + "{@spell zone of truth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell clairvoyance}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell locate creature}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dispel evil and good}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell word of recall}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell divine word}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell antimagic field}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Isperia-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Jarad Vod Savo", + "source": "GGR", + "page": 235, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "24d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 14, + "dexterity": 16, + "constitution": 16, + "intelligence": 20, + "wisdom": 16, + "charisma": 15, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+12", + "wis": "+10" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Elvish", + "Kraul" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Jarad fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Jarad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Jarad regains 25 hit points at the start of his turn. If he takes fire or radiant damage, this trait doesn't function at the start of his next turn. He dies only if he starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spore Infusion", + "body": [ + "Jarad is surrounded by a cloud of spores. As a bonus action, he can cause the spores to deal 11 ({@damage 2d10}) poison damage to a creature he can see within 10 feet of him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "Jarad has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces Jarad to 0 hit points, he must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, he drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jarad makes two attacks: one with his Noxious Touch and one with his Staff of Svogthir. He can cast a spell with a casting time of 1 action in place of one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noxious Touch", + "body": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}28 ({@damage 8d6}) poison damage, and the target must succeed on a {@dc 20} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of Svogthir", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 13 ({@damage 3d8}) poison damage and 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip", + "body": [ + "Jarad casts one of his cantrips." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noxious Touch (Costs 2 Actions)", + "body": [ + "Jarad uses Noxious Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disrupt Life (Costs 3 Actions)", + "body": [ + "Each creature within 30 feet of Jarad must make a {@dc 20} Constitution saving throw, taking 35 ({@damage 10d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Jarad is a 14th-level Golgari spellcaster. His spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). Jarad has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell ray of sickness}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Melf's acid arrow}", + "{@spell ray of enfeeblement}", + "{@spell spider climb}", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell plant growth}", + "{@spell vampiric touch}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell giant insect}", + "{@spell grasping vine}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell insect plague}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell circle of death}", + "{@spell create undead}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell forcecage}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Jarad Vod Savo-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Kraul Death Priest", + "source": "GGR", + "page": 214, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 12, + "constitution": 14, + "intelligence": 12, + "wisdom": 15, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Kraul" + ], + "traits": [ + { + "title": "Feed on Death", + "body": [ + "When a creature within 30 feet of the kraul drops to 0 hit points, the kraul or another creature of its choice within 30 feet of it gains 5 ({@dice 1d10}) temporary hit points, provided the kraul isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hive Mind", + "body": [ + "The kraul is immune to the {@condition charmed} and {@condition frightened} conditions while within 30 feet of at least one other kraul." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kraul has advantage on an attack roll against a creature if at least one of the kraul's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The kraul can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kraul makes one attack with its quarterstaff and casts one of its spells with a casting time of 1 action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, or 7 ({@damage 1d8 + 3}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The kraul's innate spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The kraul can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell ray of enfeeblement}", + "{@spell ray of sickness}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell animate dead}", + "{@spell blight}", + "{@spell vampiric touch}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "kraul", + "actions_note": "", + "mythic": null, + "key": "Kraul Death Priest-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Kraul Warrior", + "source": "GGR", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 10, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Kraul", + "understands Common but can't speak it" + ], + "traits": [ + { + "title": "Hive Mind", + "body": [ + "The kraul is immune to the {@condition charmed} and {@condition frightened} conditions while within 30 feet of at least one other kraul." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kraul has advantage on an attack roll against a creature if at least one of the kraul's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The kraul can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "kraul", + "actions_note": "", + "mythic": null, + "key": "Kraul Warrior-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Lawmage", + "source": "GGR", + "page": 228, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 13, + "dexterity": 12, + "constitution": 14, + "intelligence": 17, + "wisdom": 14, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+5" + }, + "languages": [ + "Common plus any one language" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The lawmage is an 8th-level Azorius spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The lawmage has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell friends}", + "{@spell light}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell alarm}", + "{@spell expeditious retreat}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell detect thoughts}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell slow}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell locate creature}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Lawmage-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Lazav", + "source": "GGR", + "page": 232, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 204, + "formula": "24d8 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 16, + "dexterity": 24, + "constitution": 18, + "intelligence": 22, + "wisdom": 20, + "charisma": 22, + "passive": 21, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 19, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+13", + "int": "+12", + "wis": "+11", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Thieves' cant" + ], + "traits": [ + { + "title": "Elusive", + "body": [ + "No attack roll has advantage against Lazav unless he is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Lazav fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger Savant", + "body": [ + "Lazav can use a bonus action to polymorph into a Small or Medium humanoid he has seen. His statistics, other than his size, are the same in each form. Any equipment he is wearing or carrying isn't transformed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Defenses", + "body": [ + "Unless Lazav is {@condition incapacitated}, he is immune to magic that allows other creatures to read his thoughts, determine whether he is lying, know his alignment, or know his creature type. Creatures can telepathically communicate with Lazav only if he allows it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Lazav makes three shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d6 + 7}) piercing damage plus 10 ({@damage 3d6}) psychic damage, and the target has disadvantage on the next attack roll it makes before Lazav's next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Lazav makes a weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Lazav casts one of his innate spells." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shifting Nightmare (Costs 3 Actions)", + "body": [ + "Lazav rapidly takes the form of several nightmarish creatures, lashing out at all nearby. Each creature within 10 feet of Lazav must succeed on a {@dc 21} Dexterity saving throw or take 18 ({@damage 4d8}) damage of a type chosen by Lazav: acid, cold, fire, lightning, or necrotic." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Lazav's innate spellcasting ability is Intelligence (spell save {@dc 20}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell encode thoughts|GGR} (see chapter 2)", + "{@spell freedom of movement}", + "{@spell vicious mockery} ({@damage 4d4} psychic damage)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blur}", + "{@spell confusion}", + "{@spell mirror image}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell modify memory}", + "{@spell Rary's telepathic bond}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Lazav-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Master of Cruelties", + "source": "GGR", + "page": 196, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 17, + "constitution": 16, + "intelligence": 19, + "wisdom": 16, + "charisma": 21, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Aura of Blood Lust", + "body": [ + "When any other creature starts its turn within 30 feet of the master, that creature must succeed on a {@dc 17} Wisdom saving throw, or it must immediately take the Attack action, making one melee attack against a random creature within reach. If no creatures are within reach, it makes a ranged attack against a random creature within range, throwing its weapon if necessary." + ], + "__dataclass__": "Entry" + }, + { + "title": "Feed on the Crowd", + "body": [ + "Whenever a creature within 60 feet of the master dies, the master gains 15 temporary hit points and has advantage on all attack rolls, ability checks, and saving throws until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The master has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The master makes two melee attacks with its spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 13 ({@damage 3d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Captivating Presence {@recharge}", + "body": [ + "Each creature within 120 feet of the master must succeed on a {@dc 17} Wisdom saving throw or be {@condition charmed} by the master for 1 hour. While {@condition charmed} in this way, a creature's speed is 0. If the {@condition charmed} creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. A target that succeeds on the saving throw is immune to the Captivating Presence of all masters of cruelties for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The master's innate spellcasting ability is Charisma (spell save {@dc 17}). The master can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person} (as a 3rd-level spell)", + "{@spell crown of madness}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Master of Cruelties-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Mind Drinker Vampire", + "source": "GGR", + "page": 224, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 18, + "constitution": 12, + "intelligence": 19, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+6", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the vampire can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the vampire has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. The vampire can also grapple the target (escape {@dc 13}) if it is a creature and the vampire has a hand free." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Siphon {@recharge 5}", + "body": [ + "The vampire targets a creature it can see within 30 feet of it. The target must make a {@dc 14} Intelligence saving throw, with disadvantage if the vampire has previously consumed the target's blood. On a failed save, the target takes 28 ({@damage 8d6}) psychic damage, and the vampire discerns the target's surface emotions and thoughts. On a successful save, the target takes half as much damage, and the vampire discerns the target's general emotional state but not its thoughts." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The vampire's innate spellcasting ability is Intelligence (spell save {@dc 14}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell hold person}", + "{@spell mirror image}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell gaseous form}", + "{@spell major image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mind Drinker Vampire-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Mind Mage", + "source": "GGR", + "page": 233, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "11d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 20, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+5" + }, + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "The mage wears a {@item Spies' Murmur|GGR|spies' murmur} (see chapter 5)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The mage's spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell encode thoughts|GGR} (see chapter 2)", + "{@spell friends}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell detect thoughts}", + "{@spell mage armor}", + "{@spell sleep}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate person}", + "{@spell mass suggestion}", + "{@spell modify memory}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Mind Mage-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Nightveil Specter", + "source": "GGR", + "page": 215, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 18, + "dexterity": 19, + "constitution": 16, + "intelligence": 6, + "wisdom": 17, + "charisma": 11, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Mount", + "body": [ + "If the specter isn't mounted, it can use a bonus action to magically teleport onto its gloamwing mount, provided the specter and the gloamwing are on the same plane of existence. When it teleports, the specter appears astride the gloamwing along with any equipment it is wearing or carrying. While mounted and not {@condition incapacitated}, the specter can't be {@status surprised}, and both it and its mount gain advantage on Dexterity saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The specter makes two scythe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scythe", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 13 ({@damage 3d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Twist {@recharge 5}", + "body": [ + "The specter magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Wisdom saving throw or take 22 ({@damage 5d8}) psychic damage and be {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reap Memory (3/Day)", + "body": [ + "The specter touches one {@condition incapacitated} creature and chooses 1 hour from among the past 24. Unless the creature succeeds on a {@dc 15} Intelligence saving throw, the creature loses all memory of that hour. The creature regains the memory only if the specter dies within the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nightveil Specter-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Niv-Mizzet", + "source": "GGR", + "page": 241, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 370, + "formula": "19d20 + 171", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 29, + "dexterity": 14, + "constitution": 29, + "intelligence": 30, + "wisdom": 17, + "charisma": 25, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+17", + "int": "+18", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Niv-Mizzet fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Locus of the Firemind", + "body": [ + "Niv-Mizzet can maintain {@status concentration} on two different spells at the same time. In addition, he has advantage on saving throws to maintain {@status concentration} on spells." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Niv-Mizzet has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master Chemister", + "body": [ + "When Niv-Mizzet casts a spell that deals damage, he can change the spell's damage to cold, fire, force, lightning, or thunder." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Niv-Mizzet makes three attacks: one with his bite and two with his claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d8 + 9}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d4 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}16 ({@damage 2d6 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "Niv-Mizzet exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip", + "body": [ + "Niv-Mizzet casts one of his cantrips." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "Niv-Mizzet makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "Niv-Mizzet beats his wings. Each creature within 15 feet of him must succeed on a {@dc 25} Dexterity saving throw or take 14 ({@damage 2d4 + 9}) bludgeoning damage and be knocked {@condition prone}. Niv-Mizzet can then fly up to half his flying speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dracogenius (Costs 3 Actions)", + "body": [ + "Niv-Mizzet regains a spell slot of 3rd level or lower." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Niv-Mizzet is a 20th-level Izzet spellcaster. His spellcasting ability is Intelligence (spell save {@dc 26}, {@hit 18} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}", + "{@spell unseen servant}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell enlarge/reduce}", + "{@spell flaming sphere}", + "{@spell hold person}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell lightning bolt}", + "{@spell slow}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell dimension door}", + "{@spell fabricate}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell conjure elemental}", + "{@spell polymorph}", + "{@spell wall of fire}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}", + "{@spell disintegrate}", + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell project image}", + "{@spell reverse gravity}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell control weather}", + "{@spell maze}", + "{@spell power word stun}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell prismatic wall}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Niv-Mizzet-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Nivix Cyclops", + "source": "GGR", + "page": 216, + "size_str": "Large", + "maintype": "giant", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 115, + "formula": "10d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 24, + "dexterity": 9, + "constitution": 22, + "intelligence": 7, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "saves": { + "con": "+9", + "wis": "+3" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The cyclops has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cyclops makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Vitalization", + "body": [ + "Immediately after a creature casts a spell of 1st level or higher within 120 feet of the cyclops, the cyclops can move up to twice its speed without provoking opportunity attacks. It can then make one slam attack against a target of its choice." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nivix Cyclops-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Obzedat Ghost", + "source": "GGR", + "page": 245, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "plus 1 for each other Obzedat", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 10, + "dexterity": 10, + "constitution": 13, + "intelligence": 18, + "wisdom": 20, + "charisma": 17, + "passive": 18, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Council of Five", + "body": [ + "The ghost has a trait based on who it is, as shown below:", + { + "title": "Enezesku: Enfeebling Ray", + "body": [ + "Enezesku's Innate Spellcasting trait includes {@spell ray of enfeeblement}, which he can cast at will." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fautomni: Undead Fortitude", + "body": [ + "If damage reduces Fautomni to 0 hit points, he must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, Fautomni drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Karlov: Unnatural Vigor", + "body": [ + "When Karlov regains hit points, he has advantage on attack rolls he makes on his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vuliev: Teleportation", + "body": [ + "Vuliev's Innate Spellcasting trait includes {@spell misty step}, which he can cast at will." + ], + "__dataclass__": "Entry" + }, + { + "title": "Xil Xaxosz: Lingering Spite", + "body": [ + "When Xil Xaxosz is reduced to 0 hit points, his incorporeal form explodes in a burst of necrotic energy. Each creature within 5 feet of him must make a {@dc 16} Constitution saving throw, taking 14 ({@damage 4d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Ethereal Sight", + "body": [ + "The ghost can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If the ghost fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}18 ({@damage 4d8}) necrotic damage, and the ghost regains hit points equal to half the amount of damage the target takes. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. The target dies if its hit point maximum is reduced to 0. This reduction to the target's hit point maximum lasts until the target finishes a long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "Convene the Ghost Council", + "body": [ + "The ghost summons the other four members of the Obzedat. At the start of the ghost's next turn, the other members appear in unoccupied spaces within 30 feet of the summoner. The ghosts each roll initiative when they appear." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Forced Obedience", + "body": [ + "A target that all of the Obzedat ghosts can see must succeed on a {@dc 16} Wisdom saving throw or bow until the end of its next turn. Until this bow ends, the target can't take actions or reactions, and its speed is 0 and can't be increased." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indentured Spirits (Costs 3 Actions)", + "body": [ + "The Obzedat ghosts conjure {@dice 1d6} {@creature indentured spirit|ggr|indentured spirits} (described in this chapter) within 60 feet of one of them." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The ghost's innate spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chill touch} (at 5th level, and the ghost regains hit points equal to half the amount of damage the target takes)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell sanctuary}", + "{@spell spirit guardians} (at 4th level)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Obzedat Ghost-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Orzhov Giant", + "source": "GGR", + "page": 202, + "size_str": "Large", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 23, + "dexterity": 13, + "constitution": 21, + "intelligence": 12, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "saves": { + "dex": "+4", + "con": "+8", + "wis": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Focus", + "body": [ + "As a bonus action, the giant can target a creature it can see within 30 feet of it and make that creature its focus. The target remains the giant's focus for 1 minute, or until either the target or the giant drops to 0 hit points. When the giant makes an attack roll against its focus, it adds a {@dice d4} to its attack roll. If the giant attacks a different target while it has a focus, it subtracts a {@dice d4} from its attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two greataxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage. If the Orzhov giant scores a critical hit, it rolls the damage dice three times, instead of twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Orzhov Giant-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Precognitive Mage", + "source": "GGR", + "page": 228, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 14, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 63, + "formula": "14d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 13, + "constitution": 10, + "intelligence": 18, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+3" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common plus any one language" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glimpse the Temporal Flood {@recharge 5}", + "body": [ + "The mage targets one creature within 120 feet of it that it can see. The target takes 18 ({@damage 4d8}) psychic damage, and it must succeed on a {@dc 14} Intelligence saving throw or be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Precognitive Insight (3/Day)", + "body": [ + "When the mage or a creature it can see makes an attack roll, a saving throw, or an ability check, the mage can cause the roll to be made with advantage or disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The mage's innate spellcasting ability is Intelligence (spell save {@dc 14}). It can cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell clairvoyance}", + "{@spell locate object}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Precognitive Mage-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Rakdos", + "source": "GGR", + "page": 247, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 26, + "dexterity": 15, + "constitution": 22, + "intelligence": 14, + "wisdom": 18, + "charisma": 30, + "passive": 14, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 17, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+15", + "con": "+13", + "wis": "+11", + "cha": "+17" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Captivating Presence", + "body": [ + "Any creature that starts its turn within 30 feet of Rakdos must make a {@dc 25} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by Rakdos for 1 minute or until the creature is farther than 30 feet away from him. On a successful save, the creature becomes immune to Rakdos's Captivating Presence for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cruel Entertainment", + "body": [ + "When a creature Rakdos can see within 60 feet of him is reduced to 0 hit points, Rakdos gains 25 temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Rakdos fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Rakdos has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Rakdos's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Rakdos makes two attacks with his Curtain-Call Scythe or his claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Curtain-Call Scythe", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) slashing damage plus 13 ({@damage 3d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Sadistic Revelry", + "body": [ + "Each creature within 60 feet of Rakdos that is his ally or is {@condition charmed} by him must use its reaction to move up to half its speed toward the creature closest to it that it can see, provided it isn't already within 5 feet of that creature. It then must make one melee attack against that creature if it is able to do so." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scythe (Costs 2 Actions)", + "body": [ + "Rakdos uses Curtain-Call Scythe." + ], + "__dataclass__": "Entry" + }, + { + "title": "Touch of Pain (Costs 3 Actions)", + "body": [ + "Rakdos makes a claw attack against one creature within 10 feet of him. The target must succeed on a {@dc 25} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the creature can't maintain {@status concentration} on a spell or any other effect that requires {@status concentration}. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Rakdos's spellcasting ability is Charisma (spell save {@dc 25}). He can innately cast {@spell hellish rebuke} (at 5th level) at will, requiring no material components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell hellish rebuke}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Rakdos-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Rakdos Lampooner", + "source": "GGR", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 9, + "charisma": 18, + "passive": 9, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any one language" + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The lampooner is a 4th-level Rakdos spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It knows the following bard spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell minor illusion}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell dissonant whispers}", + "{@spell silent image}", + "{@spell Tasha's hideous laughter}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell enthrall}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Rakdos Lampooner-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Rakdos Performer, Blade Juggler", + "source": "GGR", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 17, + "constitution": 12, + "intelligence": 10, + "wisdom": 8, + "charisma": 15, + "passive": 9, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+4" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Nimble", + "body": [ + "The performer can take the Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The juggler makes three dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Rakdos Performer, Blade Juggler-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Rakdos Performer, Fire Eater", + "source": "GGR", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 17, + "constitution": 12, + "intelligence": 10, + "wisdom": 8, + "charisma": 15, + "passive": 9, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+4" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Nimble", + "body": [ + "The performer can take the Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fire eater makes two attacks with its bladed chain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bladed Chain", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spew Flame {@recharge 4}", + "body": [ + "The fire eater exhales flames. Each creature in a 15-foot cone must make a {@dc 13} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Rakdos Performer, Fire Eater-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Rakdos Performer, High-Wire Acrobat", + "source": "GGR", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 17, + "constitution": 12, + "intelligence": 10, + "wisdom": 8, + "charisma": 15, + "passive": 9, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+4" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Nimble", + "body": [ + "The performer can take the Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The acrobat makes two attacks with its barbed pole." + ], + "__dataclass__": "Entry" + }, + { + "title": "Barbed Pole", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the acrobat can jump up to 20 feet. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Rakdos Performer, High-Wire Acrobat-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Reckoner", + "source": "GGR", + "page": 231, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 12, + "constitution": 15, + "intelligence": 15, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "First Strike", + "body": [ + "The reckoner has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Lightning Backlash {@recharge 5}", + "body": [ + "When a creature hits the reckoner with an attack, the attacker takes lightning damage equal to half the damage dealt by the attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The reckoner is a 5th-level Boros spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The reckoner has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell message}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell guiding bolt}", + "{@spell shield}", + "{@spell thunderwave}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Reckoner-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Rubblebelt Stalker", + "source": "GGR", + "page": 239, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "piecemeal armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Ambusher", + "body": [ + "In the first round of a combat, the stalker has advantage on attack rolls against any creature that hasn't taken a turn yet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimble Escape", + "body": [ + "The stalker can take the Disengage or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ruin Dweller", + "body": [ + "The stalker has advantage on Dexterity ({@skill Stealth}) checks made to hide in ruins, and its speed is not reduced in {@quickref difficult terrain||3} composed of rubble." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The stalker deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The stalker makes three attacks with its shortsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk m} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Rubblebelt Stalker-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Scorchbringer Guard", + "source": "GGR", + "page": 243, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 9, + "charisma": 10, + "passive": 9, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Explosive Tank", + "body": [ + "When the guard dies, or if it rolls a 1 when checking whether its Scorchbringer action recharges, the tank on its back explodes in a 10-foot radius sphere. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one. The explosion ignites flammable objects that aren't being worn or carried, and it destroys the scorchbringer." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Light Hammer", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scorchbringer {@recharge 4}", + "body": [ + "The guard's scorchbringer spouts a stream of flame in a line that is 30 feet long and 5 feet wide. Each creature in the line must make a {@dc 12} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Scorchbringer Guard-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Servitor Thrull", + "source": "GGR", + "page": 221, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 11, + "dexterity": 13, + "constitution": 14, + "intelligence": 6, + "wisdom": 6, + "charisma": 3, + "passive": 8, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Self-Sacrifice", + "body": [ + "When a creature within 5 feet of the thrull is hit by an attack, the thrull swaps places with that creature and is hit instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Servitor Thrull-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Shadow Horror", + "source": "GGR", + "page": 205, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d10 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 2, + "wisdom": 17, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The horror can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the horror can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stride", + "body": [ + "As a bonus action, the horror can step into a shadow within 5 feet of it and magically appear in an unoccupied space within 5 feet of a second shadow that is up to 60 feet away. Both shadows must be cast by a Small or larger creature or object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the horror has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The horror makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}21 ({@damage 4d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) slashing damage, and the target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} of the horror until the end of the target's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lashing Shadows {@recharge 5}", + "body": [ + "Each creature within 60 feet of the horror, except other horrors, must succeed on a {@dc 16} Dexterity saving throw or take 27 ({@damage 6d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shadow Horror-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Sire of Insanity", + "source": "GGR", + "page": 197, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 23, + "dexterity": 6, + "constitution": 19, + "intelligence": 14, + "wisdom": 19, + "charisma": 22, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+6", + "wis": "+8", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Aura of Mind Erosion", + "body": [ + "Any creature that starts its turn within 30 feet of the sire must make a {@dc 18} Wisdom saving throw. On a successful save, the creature is immune to this aura for the next 24 hours. On a failed save, the creature has disadvantage for 1 minute on Wisdom and Charisma checks and on Wisdom and Charisma saves. At the start of each of its turns, the sire can suppress this aura until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The sire has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sire makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}25 ({@damage 3d12 + 6}) piercing damage plus 16 ({@damage 3d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) slashing damage plus 9 ({@damage 2d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The sire's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The sire can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell clairvoyance}", + "{@spell crown of madness}", + "{@spell major image}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell mass suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Sire of Insanity-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Skittering Horror", + "source": "GGR", + "page": 205, + "size_str": "Huge", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 228, + "formula": "24d12 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 22, + "dexterity": 16, + "constitution": 17, + "intelligence": 2, + "wisdom": 14, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The horror can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the horror has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The horror can use its Maddening Presence and make three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 4d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}24 ({@damage 4d8 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maddening Presence", + "body": [ + "The horror targets one creature it can see within 30 feet of it. If the target can see or hear the horror, the target must make a {@dc 17} Wisdom saving throw. On a failed saving throw, the target becomes {@condition paralyzed} until the end of its next turn. If a creature's saving throw is successful, the creature is immune to the horror's Maddening Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skittering Horror-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Skyjek Roc", + "source": "GGR", + "page": 219, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d10 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 20, + "dexterity": 13, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "wis": "+2" + }, + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The roc has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The roc makes two attacks: one with its beak and one with its talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skyjek Roc-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Skyswimmer", + "source": "GGR", + "page": 220, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 216, + "formula": "16d20 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 23, + "dexterity": 15, + "constitution": 16, + "intelligence": 7, + "wisdom": 12, + "charisma": 6, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8" + }, + "traits": [ + { + "title": "Amphibious", + "body": [ + "The skyswimmer can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skyswimmer makes three attacks: one with its bite and two with its slam." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Dexterity saving throw or be swallowed by the skyswimmer. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the skyswimmer, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the skyswimmer's turns. If the skyswimmer takes 30 damage or more on a single turn from the swallowed creature, the skyswimmer must succeed on a {@dc 18} Constitution saving throw at the end of that turn or regurgitate the creature, which falls {@condition prone} in a space within 10 feet of the skyswimmer. If the skyswimmer dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 30 ft., one target. {@h}19 ({@damage 2d12 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skyswimmer-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Soldier", + "source": "GGR", + "page": 226, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Formation Tactics", + "body": [ + "The soldier has advantage on saving throws against being {@condition charmed}, {@condition frightened}, {@condition grappled}, or {@condition restrained} while it is within 5 feet of at least one ally." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The soldier makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MOT" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Soldier-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Sunder Shaman", + "source": "GGR", + "page": 202, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 20, + "note": "stone armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 15, + "constitution": 21, + "intelligence": 10, + "wisdom": 12, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+9", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Reckless", + "body": [ + "At the start of its turn, the giant can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The giant deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Camouflage", + "body": [ + "The giant has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two slam attacks. The first of those attacks that hits deals an extra 18 ({@damage 4d8}) damage if the giant has taken damage since its last turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}24 ({@damage 4d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sunder Shaman-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Thought Spy", + "source": "GGR", + "page": 233, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 11, + "dexterity": 14, + "constitution": 10, + "intelligence": 16, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of its turns, the thought spy can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thought spy makes two melee attacks, or it makes three ranged attacks with its daggers." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The thought spy's innate spellcasting ability is Intelligence (spell save {@dc 13}). The thought spy can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell encode thoughts|GGR} (see chapter 2)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blur}", + "{@spell detect thoughts}", + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Thought Spy-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Trostani", + "source": "GGR", + "page": 252, + "size_str": "Large", + "maintype": "fey", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 252, + "formula": "24d10 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 19, + "dexterity": 14, + "constitution": 20, + "intelligence": 16, + "wisdom": 30, + "charisma": 25, + "passive": 26, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+11", + "wis": "+16", + "cha": "+13" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Trostani fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Trostani has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Trostani's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Beasts and Plants", + "body": [ + "Trostani can communicate with beasts and plants as if they shared a language." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tree Stride", + "body": [ + "Once on her turn, Trostani can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Trostani takes three actions: she uses Constrict and Touch of Order, and she casts a spell with a casting time of 1 action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one creature. {@h}15 ({@damage 3d6 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}. Trostani can grapple no more than three targets at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Touch of Order", + "body": [ + "{@atk ms} {@hit 16} to hit, reach 5 ft., one creature. {@h}23 ({@damage 3d8 + 10}) radiant damage, and Trostani can choose one magic item she can see in the target's possession. Unless it's an artifact, the item's magic is suppressed until the start of Trostani's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wrath of Mat'Selesnya {@recharge 5}", + "body": [ + "Trostani conjures a momentary whirl of branches and vines at a point she can see within 60 feet of her. Each creature in a 30-foot cube on that point must make a {@dc 24} Dexterity saving throw, taking 21 ({@damage 6d6}) bludgeoning damage and 21 ({@damage 6d6}) slashing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Voice of Harmony", + "body": [ + "Trostani makes one melee attack, with advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Voice of Life", + "body": [ + "Trostani bestows 20 temporary hit points on another creature she can see within 120 feet of her." + ], + "__dataclass__": "Entry" + }, + { + "title": "Voice of Order", + "body": [ + "Trostani casts {@spell dispel magic}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chorus of the Conclave (Costs 2 Actions)", + "body": [ + "Trostani casts {@spell suggestion}. This counts as one of her daily uses of the spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Awaken Grove Guardians (Costs 3 Actions)", + "body": [ + "Trostani animates one or two trees she can see within 120 feet of her, causing them to uproot themselves and become awakened trees (see the Monster Manual for their stat blocks) for 1 minute or until Trostani uses a bonus action to end the effect. These trees understand Druidic and obey Trostani's spoken commands, but can't speak. If she issues no commands to them, the trees do nothing but follow her and take the Dodge action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Trostani's innate spellcasting ability is Wisdom (spell save {@dc 24}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dispel magic}", + "{@spell druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell bless}", + "{@spell conjure animals}", + "{@spell giant insect}", + "{@spell moonbeam}", + "{@spell plant growth}", + "{@spell spike growth}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell conjure fey}", + "{@spell mass cure wounds}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Trostani-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Undercity Medusa", + "source": "GGR", + "page": 222, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 18, + "constitution": 16, + "intelligence": 17, + "wisdom": 12, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The medusa has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Surprise Attack", + "body": [ + "During the first round of combat, the medusa has advantage on attack rolls against any creature that is {@status surprised}, and it deals an extra 10 ({@damage 3d6}) damage each time it hits such a creature with an attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The medusa makes two claw attacks. It can also use Petrifying Gaze before or after making these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Gaze", + "body": [ + "The medusa fixes its gaze on one creature within 60 feet of it that it can see and that can see its eyes. The target must make a {@dc 14} Constitution saving throw. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, a creature that fails the save begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by a {@spell greater restoration} spell or similar magic." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The medusa's innate spellcasting ability is Intelligence (spell save {@dc 14}). The medusa can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell expeditious retreat}", + "{@spell fog cloud}", + "{@spell misty step}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Undercity Medusa-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Winged Thrull", + "source": "GGR", + "page": 221, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 9, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 9, + "charisma": 8, + "passive": 9, + "saves": { + "dex": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Self-Sacrifice", + "body": [ + "When a creature within 5 feet of the thrull is hit by an attack, the thrull swaps places with that creature and is hit instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Winged Thrull-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Wurm", + "source": "GGR", + "page": 225, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 24, + "dexterity": 10, + "constitution": 22, + "intelligence": 3, + "wisdom": 12, + "charisma": 4, + "passive": 11, + "saves": { + "con": "+11", + "wis": "+6" + }, + "senses": [ + "blindsight 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Siege Monster", + "body": [ + "The wurm deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Earth Tremors", + "body": [ + "The wurm creates earth tremors as it moves overland or underground. Any creature that comes within 30 feet of the moving wurm for the first time on a turn must succeed on a {@dc 20} Dexterity saving throw or take 10 ({@damage 3d6}) bludgeoning damage and fall {@condition prone}. Any structure or object anchored to the ground that comes within 30 feet of the moving wurm for the first time on a turn takes 10 ({@damage 3d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The wurm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}24 ({@damage 5d6 + 7}) piercing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 20} Dexterity saving throw or be swallowed by the wurm. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the wurm, and takes 17 ({@damage 5d6}) acid damage at the start of each of the wurm's turns. If the wurm takes 30 damage or more on a single turn from a creature inside it, the wurm must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the wurm. If the wurm dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wurm-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Zegana", + "source": "GGR", + "page": 255, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 130, + "formula": "20d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 20, + "wisdom": 18, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+10", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Merfolk" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Zegana can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Zegana fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Zegana has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Prime Speaker's Trident", + "body": [ + "{@atk mw,rw} {@hit 10} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and the trident emits a thunderous boom. Each creature in a 15-foot cube originating from the prongs of the trident must make a {@dc 18} Constitution saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) thunder damage and is pushed 10 feet away from Zegana. If the creature is underwater, the damage is increased to 13 ({@dice 3d8}). On a successful save, the creature takes half as much damage and isn't pushed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deluge {@recharge 4}", + "body": [ + "Zegana conjures a wave of water that crashes down on an area within 120 feet of her. The area can be up to 30 feet long, up to 10 feet wide, and up to 10 feet tall. Each creature in that area must make a {@dc 18} Dexterity saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}. The water spreads out across the ground, extinguishing unprotected flames it comes in contact with, and then vanishes." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Adaptive Skin", + "body": [ + "Zegana gains resistance to one damage type of her choice-acid, fire, lightning, or thunder-until the start of her next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "Zegana makes one melee attack with the Prime Speaker's Trident." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Costs 2 Actions)", + "body": [ + "Zegana casts {@spell enlarge/reduce} on herself, using the enlarge option, without expending a spell slot." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deluge (Costs 3 Actions)", + "body": [ + "Zegana uses Deluge, if available." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Zegana is a 15th-level Simic spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell druidcraft}", + "{@spell ray of frost}", + "{@spell shape water|XGE}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell color spray}", + "{@spell expeditious retreat}", + "{@spell fog cloud}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell gust of wind}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell slow}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell control water}", + "{@spell ice storm}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell conjure elemental}", + "{@spell creation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell move earth}", + "{@spell wall of ice}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell prismatic spray}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell control weather}", + "{@spell dominate monster}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "merfolk", + "actions_note": "", + "mythic": null, + "key": "Zegana-GGR", + "__dataclass__": "Monster" + }, + { + "name": "Amphisbaena", + "source": "GoS", + "page": 230, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 18, + "constitution": 12, + "intelligence": 3, + "wisdom": 10, + "charisma": 3, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Two Heads", + "body": [ + "The amphisbaena has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The amphisbaena makes two bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 3 ({@damage 1d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Amphisbaena-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Bullywug Croaker", + "source": "GoS", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item hide armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 12, + "constitution": 12, + "intelligence": 7, + "wisdom": 15, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3" + }, + "languages": [ + "Bullywug" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The croaker can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Frogs and Toads", + "body": [ + "The croaker can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The croaker's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swamp Camouflage", + "body": [ + "The croaker has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaaar-pat (3/Day)", + "body": [ + "The croaker sings a song of marshy doom. Each chosen creature within 30 feet of the croaker that can hear the song must make a {@dc 12} Wisdom saving throw, taking 9 ({@damage 2d8}) psychic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw also has disadvantage on Constitution saving throws until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rooooo-glog (1/Day)", + "body": [ + "The croaker sings an ode to an elder froghemoth. Each bullywug within 30 feet of the croaker that can hear the song gains 10 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "bullywug", + "actions_note": "", + "mythic": null, + "key": "Bullywug Croaker-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Bullywug Royal", + "source": "GoS", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item hide armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 12, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+5", + "dex": "+3" + }, + "languages": [ + "Bullywug" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The royal can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when the royal hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frog Rider", + "body": [ + "The royal has advantage on melee attacks made while riding a frog mount." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Frogs and Toads", + "body": [ + "The royal can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The royal's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swamp Camouflage", + "body": [ + "The royal has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The royal makes two attacks: one with its royal spear and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Royal Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 10 ft. or range 20/60 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, or 12 ({@damage 2d8 + 3}) piercing damage if used with two hands to make a melee attack. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Croaked Decree (1/Day)", + "body": [ + "The royal makes a loud pronouncement. Each bullywug within 60 feet of the royal that can hear the pronouncement has advantage on its next attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WBtW" + } + ], + "subtype": "bullywug", + "actions_note": "", + "mythic": null, + "key": "Bullywug Royal-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Drowned Ascetic", + "source": "GoS", + "page": 233, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 16, + "constitution": 16, + "intelligence": 3, + "wisdom": 9, + "charisma": 5, + "passive": 9, + "saves": { + "dex": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Bottom Treader", + "body": [ + "The drowned ascetic cannot swim, and it sinks to the bottom of any body of water. It takes no penalties to its movement or attacks underwater. It is immune to the effects of being underwater at a depth greater than 100 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bound Together", + "body": [ + "The drowned ascetic shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the drowned ascetic to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned ascetic drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drowned ascetic makes three unarmed strikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Dexterous Target", + "body": [ + "The drowned ascetic adds 3 to its AC against one ranged attack that would hit it. To do so, the drowned ascetic must see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Drowned Ascetic-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Drowned Assassin", + "source": "GoS", + "page": 234, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 15, + "dexterity": 16, + "constitution": 16, + "intelligence": 9, + "wisdom": 9, + "charisma": 16, + "passive": 9, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Bottom Treader", + "body": [ + "The drowned assassin cannot swim, and it sinks to the bottom of any body of water. It takes no penalties to its movement or attacks underwater. It is immune to the effects of being underwater at a depth greater than 100 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bound Together", + "body": [ + "The drowned assassin shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the drowned assassin to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned assassin drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drowned assassin makes two hand crossbow attacks or two dagger attacks. It can then take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 9 ({@damage 2d8}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reveal (1/Day)", + "body": [ + "The drowned assassin removes its mask, revealing its rotting face. Each creature of the assassin's choice within 30 feet of it that can see the assassin must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Drowned Assassin-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Drowned Blade", + "source": "GoS", + "page": 235, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 10, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 8, + "constitution": 16, + "intelligence": 3, + "wisdom": 9, + "charisma": 5, + "passive": 9, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Bottom Treader", + "body": [ + "The drowned blade cannot swim, and it sinks to the bottom of any body of water. It takes no penalties to its movement or attacks underwater. It is immune to the effects of being underwater at a depth greater than 100 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bound Together", + "body": [ + "The drowned blade shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the drowned blade to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned blade drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drowned blade makes two rusted longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rusted Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Drowned Blade-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Drowned Master", + "source": "GoS", + "page": 235, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "21d8 + 63", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 17, + "dexterity": 12, + "constitution": 16, + "intelligence": 9, + "wisdom": 14, + "charisma": 12, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Bound Together", + "body": [ + "The drowned master shares its mind with every other drowned one within 1 mile of it, and can communicate its thoughts and observations to them instantaneously and without limitation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Aura", + "body": [ + "At the start of each of the drowned master's turns, each creature within 5 feet of it takes 5 ({@damage 1d10}) cold damage. A creature that touches the drowned master or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the drowned master to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the drowned master drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drowned master makes two attacks: one with its greatsword and one with its Life-Draining Tentacle." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 14 ({@damage 4d6}) cold damage, and the target must succeed on a {@dc 12} Constitution saving throw or contract {@disease bluerot|GoS} (see the \"Bluerot\" in notes)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life-Draining Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d6 + 3}) necrotic damage. The target must succeed on a {@dc 15} Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this effect reduces its hit point maximum to 0. This reduction lasts until the target finishes a long rest. On a failed save, the target also contracts bluerot (see the \"Bluerot\" in notes)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Ink {@recharge 5}", + "body": [ + "The drowned master discharges foul ink in front of itself in a 30-foot cone. Each creature caught in the ink must make a {@dc 15} Constitution saving throw, taking 27 ({@damage 6d8}) necrotic damage on a failed save or half as much damage on a successful one. A creature that fails this saving throw is {@condition blinded} until the end of its next turn and contracts bluerot (see the \"Bluerot\" in notes)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Drowned Master-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Giant Coral Snake", + "source": "GoS", + "page": 236, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 10 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition stunned} until the end of its next turn. On a failed save, the target begins to hallucinate and is afflicted with a {@table short-term madness|DMG} effect (determined randomly or by the DM; see \"Madness\" in chapter 8 of the {@book Dungeon Master's Guide|dmg|8|madness}). The effect lasts 10 minutes." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Coral Snake-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Giant Sea Eel", + "source": "GoS", + "page": 237, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 7, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Water Breathing", + "body": [ + "The eel can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Sea Eel-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Harpy Matriarch", + "source": "GoS", + "page": 237, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 13, + "dexterity": 16, + "constitution": 12, + "intelligence": 9, + "wisdom": 10, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Luring Maestro", + "body": [ + "While within 60 feet of the matriarch, creatures have disadvantage on saving throws against the matriarch's Luring Song." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The matriarch has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The matriarch makes two claws attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fleeting Form", + "body": [ + "The matriarch can magically disguise itself to resemble a humanoid of roughly similar size and shape for up to 1 hour. It can revert to its true form as a bonus action. This illusion does not hold up to close scrutiny." + ], + "__dataclass__": "Entry" + }, + { + "title": "Luring Song", + "body": [ + "The matriarch sings a magical melody. Every humanoid and giant within 300 feet of the matriarch that can hear the song must succeed on a {@dc 14} Wisdom saving throw or be {@condition charmed} until the song ends. The matriarch must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the matriarch is {@condition incapacitated}.", + "While {@condition charmed} by the matriarch, a target is {@condition incapacitated} and ignores the songs of other harpies. If the {@condition charmed} target is more than 5 feet away from the matriarch, the target must move on its turn toward the matriarch by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the matriarch, the target can repeat the saving throw. A {@condition charmed} target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", + "A target that successfully saves is immune to this matriarch's song for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Visage of Desire (1/Day)", + "body": [ + "The matriarch projects a vision into the minds of creatures within 30 feet of it that aren't constructs or undead, showing each creature achieving whatever it most desires. An affected creature must succeed on a {@dc 14} Wisdom saving throw or drop whatever it is holding and become {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harpy Matriarch-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Juvenile Kraken", + "source": "GoS", + "page": 238, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 24, + "dexterity": 11, + "constitution": 20, + "intelligence": 19, + "wisdom": 15, + "charisma": 17, + "passive": 12, + "saves": { + "str": "+12", + "dex": "+5", + "con": "+10", + "int": "+9", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Celestial", + "Infernal", + "Primordial", + "telepathy 60 ft. but can't speak" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kraken can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freedom of Movement", + "body": [ + "The kraken ignores {@quickref difficult terrain||3}, and magical effects can't reduce its speed or cause it to be {@condition restrained}. It can spend 5 feet of movement to escape from nonmagical restraints or being {@condition grappled}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kraken makes two tentacle attacks, each of which it can replace with a use of Fling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d8 + 7}) piercing damage. If the target is a Medium or smaller creature {@condition grappled} by the kraken, that creature is swallowed and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the kraken, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the kraken's turns. One Medium or two smaller creatures can be swallowed at the same time.", + "If the kraken takes 35 damage or more on a single turn from a creature inside it, the kraken must succeed on a {@dc 23} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in spaces within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 20}). Until the grapple ends, the target is {@condition restrained}. The kraken has ten tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fling", + "body": [ + "One Medium or smaller object held or creature {@condition grappled} by the kraken is thrown up to 40 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 13} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike", + "body": [ + "The kraken magically create a bolt of lightning, which can strike a target the kraken can see within 90 feet of it. The target must make a {@dc 18} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tentacle Attack (Costs 2 Actions)", + "body": [ + "The kraken makes one tentacle attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fling", + "body": [ + "The kraken uses Fling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ink Cloud (Costs 3 Actions)", + "body": [ + "While underwater, the kraken expels an ink cloud in a 40-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than the kraken. Each creature other than the kraken that ends its turn there must succeed on a {@dc 18} Constitution saving throw, taking 11 ({@damage 2d10}) poison damage on a failed save or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of the kraken's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Juvenile Kraken-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Koalinth", + "source": "GoS", + "page": 239, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "{@item scale mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 11, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The koalinth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Martial Advantage", + "body": [ + "Once per turn, the koalinth can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the koalinth that isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Koalinth-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Koalinth Sergeant", + "source": "GoS", + "page": 239, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "{@item scale mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 11, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The koalinth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Martial Advantage", + "body": [ + "Once per turn, the sergeant can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the sergeant that isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sergeant makes two melee attacks with its trident." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooked Net", + "body": [ + "{@atk rw} {@hit 4} to hit, range 10/30 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target is {@condition restrained}. A creature can use its action to make a {@dc 12} Strength check to free itself or another creature in a hooked net, ending the effect on a success. Dealing 5 slashing damage to the net (AC 12) frees the target without harming it and destroys the net." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spear the Helpless (2/Day)", + "body": [ + "Whenever a creature within 30 feet of the sergeant becomes {@condition restrained}, the sergeant can move its speed toward the {@condition restrained} creature. If the sergeant ends its move within reach of the {@condition restrained} creature, it can make a melee attack against it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Koalinth Sergeant-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Kysh", + "source": "GoS", + "page": 240, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 16, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Primordial" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Kysh can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Emissary of the Sea", + "body": [ + "Kysh can communicate simple ideas with amphibious and water-breathing beasts. They understand the meaning of his words, but he cannot understand them in return." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Kysh makes two melee attacks with his spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft, one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Kysh's spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He can cast the following spell, requiring only verbal components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fog cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "triton", + "actions_note": "", + "mythic": null, + "key": "Kysh-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Living Iron Statue", + "source": "GoS", + "page": 241, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 14, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The statue is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The statue makes two attacks: one with its blade and one with its hammer." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blade", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hammer", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirl {@recharge 5}", + "body": [ + "The statue can use its action to spin at the waist, targeting creatures of its choice within 10 feet of it. Each target must make a {@dc 13} Dexterity saving throw, taking 19 ({@damage 3d10 + 3}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Iron Statue-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Lizardfolk Commoner", + "source": "GoS", + "page": 241, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 10, + "constitution": 12, + "intelligence": 7, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The lizardfolk can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizardfolk Commoner-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Lizardfolk Render", + "source": "GoS", + "page": 241, + "size_str": "Large", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 10, + "constitution": 14, + "intelligence": 7, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The render has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The render can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The render makes two attacks: one with its claws and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend the Field {@recharge 5}", + "body": [ + "The render makes a claw attack against each creature of its choice within 10 feet of it. A creature hit by this attack must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SLW" + }, + { + "source": "IMR" + } + ], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizardfolk Render-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Lizardfolk Scaleshield", + "source": "GoS", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 10, + "constitution": 14, + "intelligence": 7, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The scaleshield can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scaleshield makes two melee attacks, each one with a different weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Shield", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shield Block", + "body": [ + "If an ally within 5 feet of the scaleshield is hit by an attack, the scaleshield can reduce that attack's damage by half." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizardfolk Scaleshield-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Lizardfolk Subchief", + "source": "GoS", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 12, + "constitution": 14, + "intelligence": 10, + "wisdom": 16, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5" + }, + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The subchief can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tooth Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Jaws of Semuanya {@recharge 5}", + "body": [ + "The subchief invokes the primal magic of Semuanya, summoning a spectral maw around a target it can see within 60 feet of it. The target must make a {@dc 13} Dexterity saving throw, taking 22 ({@damage 5d8}) piercing damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw is also {@condition frightened} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The subchief is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell purify food and drink}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell lesser restoration}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell bestow curse}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SLW" + } + ], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizardfolk Subchief-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Locathah", + "source": "GoS", + "page": 243, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Leviathan Will", + "body": [ + "The locathah has advantage on saving throws against being {@condition charmed}, {@condition frightened}, {@condition paralyzed}, {@condition poisoned}, {@condition stunned}, or put to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The locathah can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The locathah makes two melee attacks with its spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": "locathah", + "actions_note": "", + "mythic": null, + "key": "Locathah-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Locathah Hunter", + "source": "GoS", + "page": 243, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+4" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Leviathan Will", + "body": [ + "The hunter has advantage on saving throws against spells and effects that control its actions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The hunter can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hunter makes two attacks with its envenomed crossbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Envenomed Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "locathah", + "actions_note": "", + "mythic": null, + "key": "Locathah Hunter-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Maw of Sekolah", + "source": "GoS", + "page": 244, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d12 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 21, + "dexterity": 12, + "constitution": 17, + "intelligence": 2, + "wisdom": 14, + "charisma": 7, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin", + "telepathy 100 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the maw of Sekolah fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The maw of Sekolah can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The maw of Sekolah makes one attack with its bite and one attack with its tail smash." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Smash", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The maw of Sekolah makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speed of Sekolah", + "body": [ + "The maw of Sekolah moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Feed (Costs 2 Actions)", + "body": [ + "The ferocious spirit of Sekolah flashes through the water, tearing through the foes of the maw of Sekolah. Each creature of the maw's choosing within 60 feet of it must make a {@dc 16} Dexterity saving throw, taking 7 ({@damage 2d6}) slashing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Maw of Sekolah-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Merfolk Salvager", + "source": "GoS", + "page": 244, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The salvager can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The salvager makes two attacks with its coral rapier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Coral Rapier", + "body": [ + "{@atk m} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inject Toxin (2/Day)", + "body": [ + "{@atk m} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the creature must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "merfolk", + "actions_note": "", + "mythic": null, + "key": "Merfolk Salvager-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Minotaur Living Crystal Statue", + "source": "GoS", + "page": 245, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 9, + "constitution": 16, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "force", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The statue is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The statue makes two attacks: one with its greataxe and one gore attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Flying Shards", + "body": [ + "In response to a creature hitting the statue with a melee weapon attack, the statue deals 11 ({@damage 2d10}) piercing damage to the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Minotaur Living Crystal Statue-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Monstrous Peryton", + "source": "GoS", + "page": 245, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d10 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 19, + "dexterity": 14, + "constitution": 16, + "intelligence": 9, + "wisdom": 14, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "dex": "+6", + "wis": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common and Elvish but can't speak" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The peryton doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Sight and Smell", + "body": [ + "The peryton has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the peryton fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The peryton makes two attacks: one with its gore and one with its talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warp Shadow", + "body": [ + "The peryton chooses up to three creatures within 60 feet of it that it can see. Each creature must succeed on a {@dc 14} Wisdom saving throw or become cursed. While cursed, whenever the creature makes an attack roll, an ability check, or a saving throw, it must roll a {@dice d4} and subtract that number from the roll. A cursed creature can repeat this saving throw at the end of each of its turns, ending the effect on itself with a success. A creature that succeeds on this saving throw is immune to this peryton's Warp Shadow for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The peryton makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons Attack", + "body": [ + "The peryton makes one attack with its talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dive Attack (Costs 2 Actions)", + "body": [ + "The peryton moves up to its speed toward one target of its choosing. It then makes a gore attack that deals an extra 9 ({@damage 2d8}) piercing damage on a hit." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Monstrous Peryton-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Mr. Dory", + "source": "GoS", + "page": 246, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 13, + "dexterity": 20, + "constitution": 19, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Deep Speech", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "Mr. Dory has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Dependency", + "body": [ + "Mr. Dory takes 6 ({@damage 1d12}) acid damage at the end of every hour he goes without exposure to water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Mr. Dory makes three attacks with his rapier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage and 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye of Corruption {@recharge 5}", + "body": [ + "Mr. Dory glares at a creature he can see within 30 feet of him. The target must make a {@dc 15} Constitution saving throw. On a failed save, it takes 27 ({@damage 5d10}) necrotic damage and 27 ({@damage 5d10}) poison damage and then gains vulnerability to both necrotic and poison damage for 1 minute. On a successful save, it takes half damage and does not gain the vulnerabilities." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Mr. Dory's innate spellcasting ability is Charisma (save {@dc 15}, {@hit 7} to hit with spell attacks). Mr. Dory can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fear}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell cloudkill}", + "{@spell etherealness}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mr. Dory-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Oceanus", + "source": "GoS", + "page": 246, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 12, + "constitution": 16, + "intelligence": 11, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "Elvish" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Oceanus can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Friend of the Sea", + "body": [ + "Using gestures and sounds, Oceanus can communicate simple ideas with any beast that has an innate swimming speed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Oceanus-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Pirate Bosun", + "source": "GoS", + "page": 247, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 12, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 11, + "constitution": 13, + "intelligence": 11, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Cargo Hauler", + "body": [ + "The bosun has advantage on Strength checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sea Legs", + "body": [ + "The bosun has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Light Hammer", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hook", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 13})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Pirate Bosun-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Pirate Captain", + "source": "GoS", + "page": 247, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Flourish", + "body": [ + "The captain adds its Charisma modifier to the damage roll for its longsword attacks (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sea Legs", + "body": [ + "The captain has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The captain makes two attacks: one with its hand crossbow and one with its longsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shape Up, Ye Dog (2/Day)", + "body": [ + "Whenever a friendly creature within 30 feet of the captain that can hear it misses with an attack, the captain can yell perilous threats to allow that creature to reroll the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Pirate Captain-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Pirate Deck Wizard", + "source": "GoS", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 14, + "constitution": 14, + "intelligence": 16, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Sea Legs", + "body": [ + "The deck wizard has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The deck wizard is a 4th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell fog cloud}", + "{@spell mage armor}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell Melf's acid arrow}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Pirate Deck Wizard-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Pirate First Mate", + "source": "GoS", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Sea Legs", + "body": [ + "The first mate has advantage on ability checks and saving throws to resist being knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The first mate makes two attacks with its longsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands. If the target is a creature, the first mate can choose to deal no damage with the attack to disarm the target. The target must succeed on a {@dc 14} Strength saving throw or drop one item it is holding on the ground." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Pirate First Mate-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Rip Tide Priest", + "source": "GoS", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell sleet storm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Rip Tide Priest-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Blademaster", + "source": "GoS", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 12, + "constitution": 14, + "intelligence": 12, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The blademaster has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The blademaster can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The blademaster can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blademaster makes three attacks with its wavecutter blade, or one attack with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wavecutter Blade", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SDW" + }, + { + "source": "LR" + } + ], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Blademaster-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Champion", + "source": "GoS", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 12, + "intelligence": 12, + "wisdom": 13, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The champion has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The champion can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The champion can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes three attacks with its spear, or one attack with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Champion-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Coral Smasher", + "source": "GoS", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 12, + "constitution": 12, + "intelligence": 12, + "wisdom": 13, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The coral smasher has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The coral smasher can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The coral smasher can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The coral smasher deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The coral smasher makes two attacks with its warhammer, or one attack with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warhammer", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Coral Smasher-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Deep Diver", + "source": "GoS", + "page": 250, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 14, + "dexterity": 16, + "constitution": 15, + "intelligence": 12, + "wisdom": 13, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The deep diver has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brine Lurker", + "body": [ + "The deep diver has advantage on Dexterity ({@skill Stealth}) checks made while submerged in water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The deep diver can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lure", + "body": [ + "The deep diver can cause its lure to light up or darken at will. While the lure is lit, the deep diver sheds bright light in a 30-foot radius centered on itself and dim light for an additional 20 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The deep diver can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deep diver makes two attacks with its glaive, or one attack with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d10 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light of Sekolah", + "body": [ + "The deep diver pulses magical light from its lure. Any creature within 30 feet of the deep diver that can see the light must succeed on a {@dc 11} Wisdom saving throw or be {@condition charmed} until the end of its next turn. A creature {@condition charmed} in this way is {@condition incapacitated} as it stares at the light." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + } + ], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Deep Diver-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Hatchling Swarm", + "source": "GoS", + "page": 250, + "size_str": "Large", + "maintype": "swarm of Tiny beasts", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 18, + "constitution": 12, + "intelligence": 3, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The swarm has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Seething", + "body": [ + "Once it enters combat, the swarm deals 10 slashing damage to itself at the end of its turn if it did not make an attack on that turn. This damage ignores resistance, and it cannot reduce the swarm to 0 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and it can move through any opening large enough for a Tiny creature. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The swarm can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 0 ft., one creature in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sahuagin Hatchling Swarm-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin High Priestess", + "source": "GoS", + "page": 251, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 12, + "constitution": 14, + "intelligence": 12, + "wisdom": 16, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The high priestess has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The high priestess can breathe air and water, but she needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The high priestess can magically command any shark within 120 feet of her, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The high priestess makes two attacks with her toothsome staff, or one attack with her bite and one with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Toothsome Staff", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The high priestess is a 7th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell detect magic}", + "{@spell guiding bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon} (trident)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell fear}", + "{@spell mass healing word}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell banishment}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SDW" + } + ], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin High Priestess-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Wave Shaper", + "source": "GoS", + "page": 251, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 12, + "constitution": 12, + "intelligence": 16, + "wisdom": 14, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The wave shaper has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The wave shaper can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The wave shaper can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wave shaper makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) piercing damage plus 13 ({@damage 3d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) slashing damage plus 13 ({@damage 3d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlpool (1/Day)", + "body": [ + "The wave shaper targets a body of water at least 50 feet square and 25 feet deep, causing a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, 25 feet tall, and lasts for 1 minute or until the wave shaper is {@condition incapacitated}. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by succeeding on a {@dc 14} Strength ({@skill Athletics}) check.", + "When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a {@dc 14} Strength saving throw. On a failed save, the creature takes 9 ({@damage 2d8}) bludgeoning damage and is caught in the vortex until it ends. On a success, the creature takes half damage and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but it has disadvantage on the Strength ({@skill Athletics}) check to do so.", + "The first time each turn that an object enters the vortex, the object takes 9 ({@damage 2d8}) bludgeoning damage. This damage occurs each round it remains in the vortex." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The wave shaper's spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can cast the following spells, requiring only verbal components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell comprehend languages}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Wave Shaper-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Sanbalet", + "source": "GoS", + "page": 252, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 12, + "constitution": 11, + "intelligence": 16, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Sanbalet is a 3rd-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell minor illusion}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell color spray}", + "{@spell magic missile}", + "{@spell silent image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell magic mouth}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Sanbalet-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Shell Shark", + "source": "GoS", + "page": 252, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "shell plate armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 12, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The shark has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The shark can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shark makes two bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shell Shark-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Skeletal Alchemist", + "source": "GoS", + "page": 253, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 9, + "dexterity": 13, + "constitution": 15, + "intelligence": 14, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The skeletal alchemist has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skeletal alchemist makes two Lob Acid attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft. one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lob Acid", + "body": [ + "{@atk rw} {@hit 3} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d8 + 1}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skeletal Alchemist-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Skeletal Juggernaut", + "source": "GoS", + "page": 253, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "armor scraps", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "19d10 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 14, + "constitution": 15, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Disassemble", + "body": [ + "If the juggernaut is reduced to 0 hit points, twelve skeletons rise from its remains." + ], + "__dataclass__": "Entry" + }, + { + "title": "Falling Apart", + "body": [ + "If the juggernaut does not have all of its hit points at the start of its turn, it loses 10 hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The juggernaut makes two claws attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Avalanche of Bones {@recharge 5}", + "body": [ + "The juggernaut collapses into a large heap before quickly reforming. Each creature within 10 feet of the juggernaut must make a {@dc 14} Dexterity saving throw, taking 18 ({@damage 4d8}) bludgeoning damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw is also knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skeletal Juggernaut-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Skeletal Swarm", + "source": "GoS", + "page": 254, + "size_str": "Large", + "maintype": "swarm of Medium undeads", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "armor scraps", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 14, + "constitution": 15, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "slashing", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Deafening Clatter", + "body": [ + "Creatures are {@condition deafened} while in the swarm's space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Small humanoid. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slash", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}11 ({@damage 2d8 + 2}) slashing damage, or 6 ({@damage 1d8 + 2}) slashing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skeletal Swarm-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Skum", + "source": "GoS", + "page": 254, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 11, + "constitution": 18, + "intelligence": 7, + "wisdom": 12, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Abolethic Vassal", + "body": [ + "The skum is permanently {@condition charmed} by its aboleth master." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amphibious", + "body": [ + "The skum can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Conditioning", + "body": [ + "The skum is immune to the {@condition frightened} and {@condition charmed} conditions unless they are from effects created by an aboleth." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Dependency", + "body": [ + "The skum takes 6 ({@damage 1d12}) acid damage every 10 minutes it goes without exposure to water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skum makes three attacks: two with its trident and one with its Mind-Breaking Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind-Breaking Touch", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d8}) psychic damage, and the target has disadvantage on Wisdom saving throws until the end of the skum's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skum-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Thousand Teeth", + "source": "GoS", + "page": 256, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 2, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+6" + }, + "traits": [ + { + "title": "Hold Breath", + "body": [ + "Thousand Teeth can hold its breath for 30 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Thousand Teeth fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Thousand Teeth makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "Thousand Teeth makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lunge", + "body": [ + "Thousand Teeth moves up to half its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "Thousand Teeth makes a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thousand Teeth-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Vampiric Jade Statue", + "source": "GoS", + "page": 256, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 16, + "dexterity": 14, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "force", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The statue is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the statue fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The statue makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, that creature becomes cursed by the statue. The curse lasts for 10 minutes. While the creature is cursed, the statue has advantage on all attacks against it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Bite", + "body": [ + "The statue makes one bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Reaper", + "body": [ + "All creatures currently cursed by the statue and within 20 feet of it take 5 necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The statue moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampiric Jade Statue-GoS", + "__dataclass__": "Monster" + }, + { + "name": "Apprentice", + "source": "HoL", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d8 - 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 10, + "constitution": 9, + "intelligence": 13, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+3" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Burning Hands (1st-Level Spell; 2/Day)", + "body": [ + "You shoot forth a 15-foot cone of fire. Each creature in that area must make a {@dc 11} Dexterity saving throw. A creature takes 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one The fire ignites any flammable objects in the area that aren't being worn or carried." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Bolt (Cantrip)", + "body": [ + "{@atk rs} Ranged Spell Attack: {@hit 3} to hit, range 120 ft., one target. {@h}5 ({@damage 1d10}) fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "You cast one of the following wizard spells (spell save {@dc 11}), using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}", + { + "entry": "{@spell Fire Bolt}", + "hidden": true + } + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell grease}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + { + "entry": "{@spell Burning Hands}", + "hidden": true + } + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Apprentice-HoL", + "__dataclass__": "Monster" + }, + { + "name": "Disciple", + "source": "HoL", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "{@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 12, + "dexterity": 9, + "constitution": 10, + "intelligence": 11, + "wisdom": 13, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sacred Flame (Cantrip)", + "body": [ + "You target one creature you can see within 60 feet of you. The target must succeed on a {@dc 11} Dexterity saving throw or take 4 ({@damage 1d8}) radiant damage. The target gains no benefit from cover for this saving throw." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "You cast one the following cleric spells (spell save {@dc 11}), using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + { + "entry": "{@spell Sacred Flame}", + "hidden": true + } + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell cure wounds}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Disciple-HoL", + "__dataclass__": "Monster" + }, + { + "name": "Sneak", + "source": "HoL", + "page": 201, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "{@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 13, + "constitution": 12, + "intelligence": 11, + "wisdom": 12, + "charisma": 9, + "passive": 11, + "skills": { + "skills": [ + { + "target": "sleight of hand", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Disengage", + "body": [ + "You take the Disengage action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sneak-HoL", + "__dataclass__": "Monster" + }, + { + "name": "Squire", + "source": "HoL", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "{@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 13, + "dexterity": 10, + "constitution": 12, + "intelligence": 8, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+3" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shove", + "body": [ + "While wielding a shield, you try to shove one creature within 5 feet of you." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Squire-HoL", + "__dataclass__": "Monster" + }, + { + "name": "Ambush Drake", + "source": "HotDQ", + "page": 88, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 15, + "constitution": 14, + "intelligence": 4, + "wisdom": 11, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The drake has advantage on an attack roll against a creature if at least one of the drake's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Surprise Attack", + "body": [ + "If the drake surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 ({@damage 2d6}) damage from the attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 180 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ambush Drake-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Azbara Jos", + "source": "HotDQ", + "page": 88, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 9, + "dexterity": 16, + "constitution": 14, + "intelligence": 16, + "wisdom": 13, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3" + }, + "languages": [ + "Common", + "Draconic", + "Infernal", + "Primordial", + "Thayan" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Azbara has two {@item spell scroll (1st level)||scrolls} of {@spell mage armor}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Potent Cantrips", + "body": [ + "When Azbara casts an evocation Cantrips and misses, or the target succeeds on its saving throw, the target still takes half the cantrip's damage but suffers no other effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sculpt Spells", + "body": [ + "When Azbara casts an evocation spell that affects other creatures that he can see, he can choose a number of them equal to 1+the spell's level to succeed on their saving throws against the spell. Those creatures take no damage if they would normally take half damage from the spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Azbara is a 6th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Azbara has the following spells prepared from the wizard spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell fog cloud}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell misty step}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 180 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Azbara Jos-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Blagothkus", + "source": "HotDQ", + "page": 89, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 26, + "dexterity": 13, + "constitution": 20, + "intelligence": 16, + "wisdom": 15, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+6", + "cha": "+6" + }, + "languages": [ + "Common", + "Draconic", + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "Blagothkus has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Blagothkus attacks twice with his morningstar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": null, + "header": { + "title": "Innate Spellcasting", + "body": [ + "Blagothkus can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell fog cloud}", + "{@spell levitate}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Blagothkus is a 5th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Blagothkus has the following spells prepared from the wizard spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell misty step}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 181 + } + ], + "subtype": "cloud giant", + "actions_note": "", + "mythic": null, + "key": "Blagothkus-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Captain Othelstan", + "source": "HotDQ", + "page": 89, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "{@item splint armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 10, + "constitution": 16, + "intelligence": 13, + "wisdom": 14, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+6" + }, + "languages": [ + "Common", + "Draconic", + "Giant" + ], + "traits": [ + { + "title": "Action Surge (Recharges on a Short or Long Rest)", + "body": [ + "On his turn, Othelstan can take one additional action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tiamat's Blessing of Retribution", + "body": [ + "When Othelstan takes damage that reduces him to 0 hit points, he immediately regains 20 hit points. If he has 20 hit points or fewer at the end of his next turn, he dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Othelstan attacks twice with his flail or spear, or makes two ranged attacks with his spears." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 181 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Captain Othelstan-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Dragonclaw", + "source": "HotDQ", + "page": 89, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 9, + "dexterity": 16, + "constitution": 13, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2" + }, + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Dragon Fanatic", + "body": [ + "The dragonclaw has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonclaw can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonclaw ignores the effects of being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fanatic Advantage", + "body": [ + "Once per turn, if the dragonclaw makes a weapon attack with advantage on the attack roll and hits, it deals an extra 7 ({@damage 2d6}) damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The dragonclaw has advantage on an attack roll against a creature if at least one of the dragonclaw's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonclaw attacks twice with its scimitar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT", + "page": 89 + }, + { + "source": "ToD", + "page": 182 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Dragonclaw-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Dragonwing", + "source": "HotDQ", + "page": 90, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 16, + "constitution": 13, + "intelligence": 11, + "wisdom": 11, + "charisma": 13, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2" + }, + "dmg_resistances": [ + { + "value": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Dragon Fanatic", + "body": [ + "The dragonwing has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonwing can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonwing ignores the effects of being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fanatic Advantage", + "body": [ + "Once per turn, if the dragonwing makes a weapon attack with advantage on the attack roll and hits, the target takes an extra 7 ({@damage 2d6}) damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Flight", + "body": [ + "The dragonwing can use a bonus action to gain a flying speed of 30 feet until the end of its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The dragonwing has advantage on an attack roll against a creature if at least one of the dragonwing's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragonwing attacks twice with its scimitar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 3 ({@damage 1d6}) damage of the type to which the cultist has resistance." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT", + "page": 89 + }, + { + "source": "ToD", + "page": 183 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Dragonwing-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Dralmorrer Borngray", + "source": "HotDQ", + "page": 90, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 16, + "wisdom": 10, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Bullywug", + "Draconic", + "Elvish", + "Goblin", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Dralmorrer has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Magic", + "body": [ + "When Dralmorrer uses his action to cast a cantrip, he can also take a bonus action to make one weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weapon Bond", + "body": [ + "Provided his longsword is on the same plane Dralmorrer can take a bonus action to teleport it to his hand." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Dralmorrer attacks twice, either with his longsword or dagger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Dralmorrer is a 7th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Dralmorrer has the following spells prepared from the wizard spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell longstrider}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell magic weapon}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 184 + } + ], + "subtype": "High elf", + "actions_note": "", + "mythic": null, + "key": "Dralmorrer Borngray-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Frulam Mondath", + "source": "HotDQ", + "page": 90, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 13, + "intelligence": 11, + "wisdom": 18, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+4" + }, + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Frulam attacks twice with her halberd." + ], + "__dataclass__": "Entry" + }, + { + "title": "Halberd", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Frulam is a 5th-level spellcaster that uses Wisdom as her spellcasting ability (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Frulam has the following spells prepared from the cleric spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell healing word}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell mass healing word}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 184 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Frulam Mondath-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Guard Drake", + "source": "HotDQ", + "page": 91, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drake attacks twice, once with its bite and once with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT", + "page": 90 + }, + { + "source": "ToD", + "page": 185 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guard Drake-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Jamna Gleamsilver", + "source": "HotDQ", + "page": 91, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 17, + "constitution": 14, + "intelligence": 15, + "wisdom": 10, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Gnomish", + "Goblin", + "Sylvan" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "Jamna can take a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gnome Cunning", + "body": [ + "Jamna has advantage on Intelligence, Wisdom and Charisma saving throws against magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jamna attacks twice with her shortswords." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 9 ({@damage 1d6 + 3}) plus ({@damage 1d6}) piercing damage if the target is Medium or larger." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Jamna is a 4th-level spellcaster that uses Intelligence as her spellcasting ability (spell save {@dc 12}, {@hit 4} to hit with spell attacks). Jamna has the following spells prepared from the wizard spell list." + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell charm person}", + "{@spell color spray}", + "{@spell disguise self}", + "{@spell longstrider}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 185 + } + ], + "subtype": "gnome", + "actions_note": "", + "mythic": null, + "key": "Jamna Gleamsilver-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Langdedrosa Cyanwrath", + "source": "HotDQ", + "page": 91, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 57, + "formula": "6d12 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 13, + "constitution": 16, + "intelligence": 10, + "wisdom": 14, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+5" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Action Surge (Recharges on a Short or Long Rest)", + "body": [ + "On his turn, Langdedrosa can take one additional action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Improved Critical", + "body": [ + "Langdedrosa's weapon attacks score a critical hit on a roll of 19 or 20." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Langdedrosa attacks twice, either with his greatsword or spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "Langdedrosa breathes lightning in a 30-foot line that is 5 feet wide. Each creature in the line must make a {@dc 13} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 186 + } + ], + "subtype": "half-dragon", + "actions_note": "", + "mythic": null, + "key": "Langdedrosa Cyanwrath-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Pharblex Spattergoo", + "source": "HotDQ", + "page": 91, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 12, + "constitution": 18, + "intelligence": 11, + "wisdom": 16, + "charisma": 7, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "con": "+6" + }, + "languages": [ + "Common", + "Bullywug" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Pharblex can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Strike (3/Day)", + "body": [ + "Once per turn, when Pharblex hits with a melee attack, he can expend a use of this trait to deal an extra 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "As part of his movement and without a running start, Pharblex can long jump up to 20 feet and high jump up to 10 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swamp Camouflage", + "body": [ + "Pharblex has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Pharblex attacks twice. Once with his bite and once with his spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit. reach 5 ft. or ranged 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Pharblex is a 6th-level spellcaster that uses Wisdom as his spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Pharblex has the following spells prepared from the druid spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell healing word}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell beast sense}", + "{@spell spike growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell plant growth}", + "{@spell water walk}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 187 + } + ], + "subtype": "bullywug", + "actions_note": "", + "mythic": null, + "key": "Pharblex Spattergoo-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Rath Modar", + "source": "HotDQ", + "page": 92, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 11, + "dexterity": 16, + "constitution": 14, + "intelligence": 18, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+5" + }, + "languages": [ + "Common", + "Draconic", + "Infernal", + "Primordial", + "Thayan" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Rath has a {@item staff of fire}, and scrolls of {@spell dimension door}, {@spell feather fall}, and {@spell fireball}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Illusory Self (Recharges on a Short or Long Rest)", + "body": [ + "When a creature Rath can see makes an attack roll against him, he can interpose an illusory duplicate between the attacker and him. The attack automatically misses Rath, then the illusion dissipates." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Rath is an 11th-level spellcaster who uses Intelligence as his spellcasting ability (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Rath has the following spells prepared from the wizard spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell color spray}", + "{@spell mage armor}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell phantasmal force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell greater invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell mislead}", + "{@spell seeming}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "RoT", + "page": 91 + }, + { + "source": "ToD", + "page": 188 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Rath Modar-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Rezmir", + "source": "HotDQ", + "page": 93, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13, + { + "ac": 15, + "condition": "with the Black Dragon Mask", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with the Black Dragon Mask)", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 16, + "constitution": 16, + "intelligence": 15, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Infernal", + "Giant", + "Netherese" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Rezmir has the {@item Black Dragon Mask|hotdq}, {@item Hazirawn|hotdq}, and an {@item insignia of claws|hotdq}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amphibious", + "body": [ + "Rezmir can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dark Advantage", + "body": [ + "Once per turn, Rezmir can deal an extra 10 ({@damage 3d6}) damage when she hits with a weapon attack, provided Rezmir has advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Draconic Majesty", + "body": [ + "While wearing no armor and wearing the Black Dragon Mask, Rezmir adds her Charisma bonus to her AC (included)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immolation", + "body": [ + "When Rezmir is reduced to 0 hit points, her body disintegrates into a pile of ash." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If Rezmir fails a saving throw while wearing the Black Dragon Mask, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greatsword (Hazirawn)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) necrotic damage. If the target is a creature, it can't regain hit points for 1 minute. The target can make a {@dc 15} Constitution saving throw at the end of each of its turns, ending this effect early on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Caustic Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 90 ft., one target. {@h}18 ({@damage 4d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge 5}", + "body": [ + "Rezmir breathes acid in a 30-foot line that is 5 feet wide. Each creature in the line must make a {@dc 14} Dexterity saving throw, taking 22 ({@damage 5d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Darkness (Costs 2 Actions)", + "body": [ + "A 15-foot radius of magical darkness extends from a point Rezmir can see within 60 feet of her and spreads around corners. The darkness lasts as long as Rezmir maintains {@status concentration}, up to 1 minute. A creature with darkvision can't see through this darkness, and no natural light can illuminate it. If any of the area overlaps with a area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Melee Attack", + "body": [ + "Rezmir makes one melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hide", + "body": [ + "Rezmir takes the Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToD", + "page": 180 + } + ], + "subtype": "half-black dragon", + "actions_note": "", + "mythic": null, + "key": "Rezmir-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Talis the White", + "source": "HotDQ", + "page": 93, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item +1 scale mail}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 12, + "constitution": 14, + "intelligence": 10, + "wisdom": 16, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Talis has {@item +1 scale mail} and a {@item wand of winter|hotdq}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Talis has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Winter Strike (3/Day)", + "body": [ + "Once per turn, when Talis hits with a melee attack, she can expend a use of this trait to deal an extra 9 ({@damage 2d8}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}6 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Talis is a 9th-level spellcaster that uses Wisdom as her spellcasting ability (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Talis has the following spells prepared from the cleric spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell healing word}", + "{@spell inflict wounds}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell lesser restoration}", + "{@spell spiritual weapon} (spear)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell mass healing word}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell death ward}", + "{@spell freedom of movement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell insect plague}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 189 + } + ], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Talis the White-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Trepsin", + "source": "HotDQ", + "page": 63, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 13, + "constitution": 20, + "intelligence": 7, + "wisdom": 9, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll attacks five times, once with its bite and four times with its claws. If two or more claws hit the same target, the troll rends the target, dealing an extra {@damage 2d6} slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit +7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit +7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 79 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Trepsin-HotDQ", + "__dataclass__": "Monster" + }, + { + "name": "Auril (First Form)", + "source": "IDRotF", + "page": 275, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 14, + "dexterity": 16, + "constitution": 21, + "intelligence": 24, + "wisdom": 26, + "charisma": 28, + "passive": 26, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+12" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 1000 ft." + ], + "traits": [ + { + "title": "Divine Being", + "body": [ + "Auril can't be {@status surprised} and can't be changed into another form against her will." + ], + "__dataclass__": "Entry" + }, + { + "title": "Divine Rejuvenation", + "body": [ + "When Auril drops to 0 hit points, her body turns to slush and melts away. Auril instantly reappears in her {@creature Auril (second form)|idrotf|second form}, in an unoccupied space within 60 feet of where her first form disappeared. Her initiative count doesn't change." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day in This Form)", + "body": [ + "If Auril fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Auril has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Auril doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Auril attacks twice with her talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Touch of Frost", + "body": [ + "{@atk ms} {@hit 13} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d8}) cold damage, and the target can't take reactions until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Orb", + "body": [ + "{@atk rs} {@hit 13} to hit, range 90 ft., one creature. {@h}13 ({@damage 3d8}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Talons", + "body": [ + "Auril attacks once with her talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Auril teleports to an unoccupied space she can see within 30 feet of her." + ], + "__dataclass__": "Entry" + }, + { + "title": "Touch of Frost (Costs 2 Actions)", + "body": [ + "Auril uses Touch of Frost." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Auril's innate spellcasting ability is Charisma (spell save {@dc 21}, {@hit 13} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chromatic orb} (cold orb only; see \"Actions\" below)", + "{@spell detect magic}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell control weather}", + "{@spell detect thoughts}", + "{@spell ice storm}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Auril (First Form)-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Auril (Second Form)", + "source": "IDRotF", + "page": 277, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 16, + "dexterity": 16, + "constitution": 21, + "intelligence": 24, + "wisdom": 26, + "charisma": 28, + "passive": 26, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+12" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 1000 ft." + ], + "traits": [ + { + "title": "Divine Being", + "body": [ + "Auril can't be {@status surprised} and can't be changed into another form against her will." + ], + "__dataclass__": "Entry" + }, + { + "title": "Divine Rejuvenation", + "body": [ + "When Auril drops to 0 hit points, her body collapses into shards of ice, whereupon Auril instantly reappears in her {@creature Auril (third form)|idrotf|third form}, in an unoccupied space within 60 feet of where her second form was destroyed. Her initiative count doesn't change." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day in This Form)", + "body": [ + "If Auril fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Auril has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Auril doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Auril attacks twice with her ice morningstar or hurls three ice darts." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Morningstar", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 9 ({@damage 2d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Dart", + "body": [ + "{@atk rw} {@hit 7} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cone of Cold (Recharges after a Short or Long Rest)", + "body": [ + "Auril causes a magical blast of cold air to erupt from her hand. Each creature in a 60-foot cone must make a {@dc 21} Constitution saving throw, taking 36 ({@damage 8d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Ice Mephit (3/Day)", + "body": [ + "Auril breaks off an icicle from her body and hurls it into an unoccupied space she can see within 20 feet of her, where it magically transforms into an {@creature ice mephit} (see its entry in the Monster Manual). The mephit acts immediately after Auril in the initiative order and obeys her commands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Stasis {@recharge 5}", + "body": [ + "Auril magically creates a gem-sized ice crystal that hovers in a space within 5 feet of her. Auril then targets a creature she can see within 60 feet of the crystal. The target must succeed on a {@dc 21} Charisma saving throw or become trapped in the crystal, which is immovable. If the saving throw succeeds, the crystal shatters and nothing else happens. A creature trapped in the crystal is {@condition stunned}, has {@quickref Cover||3||total cover} against attacks and other effects outside the crystal, and takes 21 ({@damage 6d6}) cold damage at the start of each of its turns. The creature can repeat the saving throw at the end of each of its turns, freeing itself on a success. The creature is also freed if the crystal is destroyed, which is a Tiny object with AC 18, 9 hit points, and immunity to all damage except fire damage. The freed creature appears in an unoccupied space of its choice within 30 feet of the shattered crystal." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Auril makes one weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Flurry (Costs 2 Actions)", + "body": [ + "Each creature within 30 feet of Auril takes 5 ({@damage 2d4}) piercing damage from swirling ice, and nonmagical, open flames in that area are extinguished." + ], + "__dataclass__": "Entry" + }, + { + "title": "Splinter (Costs 3 Actions)", + "body": [ + "Auril uses Create Ice Mephit or causes one to ice mephit she can see within 60 feet of her to explode and die. A mephit that dies in this way does not use its Death Burst. Instead, each creature within 10 feet of the exploding mephit must succeed on a {@dc 21} Dexterity saving throw, taking 13 ({@damage 3d8}) piercing damage on a failed saving throw, and half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Auril (Second Form)-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Auril (Third Form)", + "source": "IDRotF", + "page": 278, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d6 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 1, + "dexterity": 12, + "constitution": 21, + "intelligence": 24, + "wisdom": 26, + "charisma": 28, + "passive": 26, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+12" + }, + "dmg_vulnerabilities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)", + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 1,000 ft." + ], + "traits": [ + { + "title": "Divine Being", + "body": [ + "Auril can't be {@status surprised} and can't be changed into another form against her will." + ], + "__dataclass__": "Entry" + }, + { + "title": "Divine Resurrection", + "body": [ + "When Auril drops to 0 hit points, her crystalline form shatters and her divine spark vanishes. She is dead until the next winter solstice, when she reappears at full health in a cold, remote location of her choosing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frigid Aura", + "body": [ + "So long as Auril has at least 1 hit point in this form, each creature within 10 feet of her takes 10 cold damage at the start of each of her turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (1/Day in This Form)", + "body": [ + "If Auril fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Auril has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Auril doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Auril uses Polar Ray twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Polar Ray", + "body": [ + "{@atk rs} {@hit 13} to hit, range 120 ft., one target. {@h}14 ({@damage 4d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blizzard Veil", + "body": [ + "Auril creates a magical blizzard in a 30-foot-radius sphere centered on herself. The area within the sphere is heavily obscured, and the sphere moves with Auril. The effect lasts until Auril drops to 0 hit points in this form, until she chooses to end the effect (no action required), or until her {@status concentration} is broken (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Polar Ray", + "body": [ + "Auril uses Polar Ray." + ], + "__dataclass__": "Entry" + }, + { + "title": "Intensify Aura (Costs 2 Actions)", + "body": [ + "Auril's Frigid Aura deals an extra 10 cold damage until the end of her next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Gleam (Costs 2 Actions)", + "body": [ + "Auril's form flares with a blue light. Each creature that can see Auril and is within 10 feet of her must succeed on a {@dc 17} Wisdom saving throw or be {@condition blinded} by Auril's magical gleam for 1 minute. The {@condition blinded} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Auril (Third Form)-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Avarice", + "source": "IDRotF", + "page": 269, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 8, + "dexterity": 16, + "constitution": 14, + "intelligence": 17, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Infernal", + "Orc", + "Yeti" + ], + "traits": [ + { + "title": "Icy Doom", + "body": [ + "When Avarice dies, her corpse freezes for 9 days, during which time it can't be thawed, harmed by fire, animated, or raised from the dead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Avarice wields a {@item staff of frost} with 10 charges (see \"Actions\" below)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fire Bolt (Cantrip)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}11 ({@damage 2d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of Frost", + "body": [ + "While holding this staff, Avarice can expend 1 or more of its charges to cast one of the following spells from it (spell save {@dc 14}): {@spell cone of cold} (5 charges), {@spell fog cloud} (1 charge), {@spell ice storm} (4 charges), or {@spell wall of ice} (4 charges). The staff regains {@dice 1d6 + 4} charges daily at dawn. If its last charge is expended, roll a {@dice d20}; on a 1, the staff turns to water and is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Banishing Rebuke (Recharges after a Long Rest)", + "body": [ + "When Avarice is damaged by a creature that she can see within 60 feet of her, she can banish that creature to a frigid extradimensional prison for 1 minute. While there, the creature is {@condition incapacitated} and takes 5 ({@damage 1d10}) cold damage at the start of each of its turns. At the end of each of its turns, the creature can make a {@dc 14} Charisma saving throw, escaping the prison on a success and reappearing in the space it left or in the nearest unoccupied space if that space is occupied. A creature that dies in the prison is trapped there indefinitely." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Avarice is a 10th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}; {@hit 6} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt} (see \"Actions\" below)", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell knock}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell fire shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell Bigby's hand}", + "{@spell Rary's telepathic bond}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "tiefling", + "actions_note": "", + "mythic": null, + "key": "Avarice-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Awakened White Moose", + "source": "IDRotF", + "page": 82, + "size_str": "Large", + "maintype": "beast", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 11, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "languages": [ + "Druidic" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the moose moves at least 20 feet straight toward a target and then hits it with an antlers attack on the same turn, the target takes an extra 9 ({@damage 2d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The moose has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The moose makes two attacks: one with its antlers and one with its hooves." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antlers", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Awakened White Moose-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Bjornhild Solvigsdottir", + "source": "IDRotF", + "page": 306, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 12, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 11, + "constitution": 18, + "intelligence": 14, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Yeti" + ], + "traits": [ + { + "title": "Auril's Blessing (3/Day)", + "body": [ + "When Bjornhild hits a creature with a weapon attack, the attack deals an extra 11 ({@damage 2d10}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bjornhild makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage, plus 11 ({@damage 2d10}) cold damage if Bjornhild uses Auril's Blessing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 11 ({@damage 2d10}) cold damage if Bjornhild uses Auril's Blessing." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Bjornhild Solvigsdottir-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Chardalyn Berserker", + "source": "IDRotF", + "page": 280, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 12, + "constitution": 17, + "intelligence": 9, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Chardalyn Madness", + "body": [ + "The berserker must roll a {@dice d6} at the start of each of its turns. On a 1, the berserker does nothing on its turn except speak to a nonexistent, evil master whom it has pledged to serve." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of its turn, the berserker can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The berserker attacks three times with a melee weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chardalyn Flail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chardalyn Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chardalyn Berserker-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Chardalyn Dragon", + "source": "IDRotF", + "page": 281, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 147, + "formula": "14d12 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 24, + "dexterity": 11, + "constitution": 19, + "intelligence": 10, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "saves": { + "str": "+11", + "con": "+8" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages known by its creator" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The dragon is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The dragon deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dragon doesn't require air, food, drink, or sleep, and it gains no benefit from finishing a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon uses its Malevolent Presence. It then makes three attacks: two with its claws and one with its tail. If the dragon isn't flying, it can also make one attack with its wings." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wings", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d4 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Malevolent Presence", + "body": [ + "Any creature with an Intelligence of 4 or more that is within 30 feet of the dragon must succeed on a {@dc 16} Wisdom saving throw or be {@condition charmed} by it 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Malevolent Presence for the next 24 hours. A creature {@condition charmed} in this way fixates on another creature or object that the dragon mentally chooses and must, on each of its turns, move as close as it can to that target and use its action to make a melee attack against it. If the dragon doesn't choose a target, the {@condition charmed} creature can act normally on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Breath {@recharge 5}", + "body": [ + "The dragon exhales a ray of radiant energy in a 120-foot line that is 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 31 ({@damage 7d8}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chardalyn Dragon-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Coldlight Walker", + "source": "IDRotF", + "page": 284, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 15, + "dexterity": 10, + "constitution": 17, + "intelligence": 8, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "saves": { + "int": "+2", + "wis": "+3" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Blinding Light", + "body": [ + "The walker sheds bright light in a 20-foot radius and dim light for an additional 20 feet. As a bonus action, the walker can target one creature in its bright light that it can see and force it to succeed on a {@dc 14} Constitution saving throw or be {@condition blinded} until the start of the walker's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Icy Doom", + "body": [ + "Any creature killed by the walker freezes for 9 days, during which time it can't be thawed, harmed by fire, animated, or raised from the dead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The walker doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The walker makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) bludgeoning damage plus 14 ({@damage 4d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Ray", + "body": [ + "{@atk rs} {@hit 3} to hit, range 60 ft., one target. {@h}25 ({@damage 4d10 + 3}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Coldlight Walker-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Demos Magen", + "source": "IDRotF", + "page": 300, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 14, + "constitution": 18, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Fiery End", + "body": [ + "If the magen dies, its body disintegrates in a harmless burst of fire and smoke, leaving behind anything it was wearing or carrying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The magen has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The magen doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The magen makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Demos Magen-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Dzaan's Simulacrum", + "source": "IDRotF", + "page": 270, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 24, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 11, + "constitution": 12, + "intelligence": 16, + "wisdom": 13, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3" + }, + "languages": [ + "Abyssal", + "Common", + "Giant", + "Infernal" + ], + "actions": [ + { + "title": "Shocking Grasp (Cantrip)", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one creature (the attack roll has advantage if the target is wearing armor made of metal). {@h}9 ({@damage 2d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Splash (Cantrip)", + "body": [ + "The simulacrum hurls a bubble of acid at one creature it can see within 60 feet of it, or at two such creatures that are within 5 feet of each other. A target must succeed on a {@dc 13} Dexterity saving throw or take 7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Missile (1st-Level Spell; Requires a Spell Slot)", + "body": [ + "The simulacrum creates three darts of magical force. Each dart unerringly strikes one creature the simulacrum can see within 120 feet of it, dealing 3 ({@damage 1d4 + 1}) force damage. If the simulacrum casts this spell using a 2nd-level spell slot, it creates one more dart." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The simulacrum is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}*", + "{@spell light}", + "{@spell minor illusion}", + "{@spell shocking grasp}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell magic missile}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell invisibility}", + "{@spell levitate}", + "{@spell phantasmal force}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dzaan's Simulacrum-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Fox", + "source": "IDRotF", + "page": 288, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 5, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 16, + "constitution": 11, + "intelligence": 3, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Hearing", + "body": [ + "The fox has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fox-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Frost Druid", + "source": "IDRotF", + "page": 288, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "note": "(wolf form only)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(owl form only)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 5, + "note": "(fox form only)", + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "note": "(goat form only)", + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 13, + "constitution": 16, + "intelligence": 10, + "wisdom": 16, + "charisma": 9, + "passive": 16, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+3", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft. (beast form only)" + ], + "languages": [ + "Common", + "Druidic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The druid makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Sickle (Humanoid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage plus 5 ({@damage 2d4}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul (Beast Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The druid magically polymorphs into a beast form\u2014fox, mountain goat, owl, or wolf\u2014or back into its humanoid form. Any equipment it is wearing or carrying is absorbed or borne by the beast form (the druid's choice). It reverts to its humanoid form when it dies. The druid's statistics are the same in each form, except where noted in this stat block." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Humanoid Form Only)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Humanoid Form Only)", + "body": [ + "The druid is a 9th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}; {@hit 6} to hit with spell attacks). It has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell resistance}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell fog cloud}", + "{@spell speak with animals}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell moonbeam}", + "{@spell pass without trace}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell conjure animals}", + "{@spell sleet storm}", + "{@spell wind wall}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hallucinatory terrain}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell awaken}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Frost Druid-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Frost Giant Skeleton", + "source": "IDRotF", + "page": 288, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "armor scraps", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d12 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 23, + "dexterity": 9, + "constitution": 15, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Giant but can't speak" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The skeleton doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skeleton makes two greataxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Stare", + "body": [ + "The skeleton targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 13} Constitution saving throw or take 35 ({@damage 10d6}) cold damage and be {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Giant Skeleton-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Galvan Magen", + "source": "IDRotF", + "page": 301, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 18, + "constitution": 18, + "intelligence": 12, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Fiery End", + "body": [ + "If the magen dies, its body disintegrates in a harmless burst of fire and smoke, leaving behind anything it was wearing or carrying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The magen has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The magen doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The magen makes two Shocking Touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shocking Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target (the magen has advantage on the attack roll if the target is wearing armor made of metal). {@h}7 ({@damage 1d6 + 4}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Static Discharge {@recharge 5}", + "body": [ + "The magen discharges a lightning bolt in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw (with disadvantage if the creature is wearing armor made of metal), taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Galvan Magen-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Giant Walrus", + "source": "IDRotF", + "page": 312, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "9d12 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 22, + "dexterity": 9, + "constitution": 16, + "intelligence": 3, + "wisdom": 11, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The walrus can hold its breath for 30 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The walrus makes two attacks: one with its body flop and one with its tusks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Body Flop", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tusks", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d6 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Walrus-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Vampire", + "source": "IDRotF", + "page": 290, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 18, + "constitution": 18, + "intelligence": 6, + "wisdom": 12, + "charisma": 9, + "passive": 11, + "saves": { + "dex": "+7", + "con": "+7" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Gnoll" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The vampire has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rampage", + "body": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the vampire can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "If the vampire isn't in sunlight, it can use its action to polymorph into a Large hyena or a Medium cloud of mist, or back into its true form.", + "While in hyena form, the vampire can't speak, and its walking speed is 50 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. it is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The vampire doesn't require air." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "The vampire has the following flaws:", + "{@i Enraged by Celestial.} If it hears words of Celestial spoken, the vampire must try to attack the source of those spoken words on its next turn. If these words come from multiple sources and from opposite directions, the vampire is {@condition restrained}. Otherwise, it moves to attack what it perceives to be the closest source.", + "{@i Repulsed by Perfume.} The vampire has disadvantage on melee attack rolls made against any creature wearing perfume or carrying an open container of it.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Vampire Form Only)", + "body": [ + "The vampire makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Hyena or Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. the target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws (Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Cackle (Hyena or Vampire Form Only)", + "body": [ + "The vampire emits a bone-chilling cackle. Each creature of the vampire's choice that is within 120 feet of the vampire and can hear its cackle must succeed on a {@dc 15} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the vampire's Frightful Cackle for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sickening Gaze (Hyena or Vampire Form Only)", + "body": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 15} Constitution saving throw against this magic or be {@condition poisoned} for 24 hours. A creature whose saving throw is successful is immune to this vampire's Sickening Gaze for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Gnoll Vampire-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Gnome Ceremorph", + "source": "IDRotF", + "page": 303, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "13d6 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 6, + "dexterity": 14, + "constitution": 12, + "intelligence": 19, + "wisdom": 17, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Gnomish", + "telepathy 120 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The ceremorph has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 9}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the ceremorph. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ceremorph kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Laser Pistol", + "body": [ + "{@atk rw} {@hit 5} to hit, range 40/120 ft., one target. {@h}12 ({@damage 3d6 + 2}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The ceremorph magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The ceremorph's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gnome Ceremorph-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Gnome Squidling", + "source": "IDRotF", + "page": 303, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 4, + "dexterity": 7, + "constitution": 10, + "intelligence": 4, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Deep Speech and Gnomish but can't speak", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The squidling has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one creature. {@h}5 ({@damage 2d4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 7}) and must succeed on a {@dc 7} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one {@condition incapacitated} creature {@condition grappled} by the squidling. {@h}27 ({@damage 5d10}) piercing damage. If this damage reduces the target to 0 hit points, the squidling kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Tickle {@recharge 5}", + "body": [ + "The squidling magically emits psychic energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 7} Intelligence saving throw or take 2 ({@damage 1d4}) psychic damage and be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The squidling's innate spellcasting ability is Intelligence (spell save {@dc 7}). It can innately cast {@spell levitate} at will, requiring no components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gnome Squidling-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Goliath Warrior", + "source": "IDRotF", + "page": 292, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 12, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 11, + "constitution": 16, + "intelligence": 10, + "wisdom": 15, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Mountain Born", + "body": [ + "The goliath is acclimated to high altitude, including elevations above 20,000 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Powerful Build", + "body": [ + "The goliath counts as one size larger when determining its carrying capacity and the weight it can push, drag, or lift." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The goliath makes two attacks with its greataxe or hurls two javelins." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Stone's Endurance (Recharges after a Short or Long Rest)", + "body": [ + "When the goliath takes damage, it reduces the damage taken by 9 ({@dice 1d12 + 3})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goliath", + "actions_note": "", + "mythic": null, + "key": "Goliath Warrior-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Goliath Werebear", + "source": "IDRotF", + "page": 293, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 10, + "note": "in humanoid form", + "__dataclass__": "AC" + }, + { + "value": 12, + "note": "in bear or hybrid form", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "19d8 + 76", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(40 ft. swim 30 ft. in bear or hybrid form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 10, + "constitution": 18, + "intelligence": 10, + "wisdom": 15, + "charisma": 10, + "passive": 18, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant (can't speak in bear form)" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The werebear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mountain Born", + "body": [ + "The werebear is acclimated to high altitude, including elevations above 20,000 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Powerful Build (Humanoid Form Only)", + "body": [ + "The werebear counts as one size larger when determining its carrying capacity and the weight it can push, drag, or lift." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "The werebear can use its action to polymorph into a Large bear-humanoid hybrid or into a Large polar bear, or back into its goliath form. Its statistics, other than its size and AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The werebear makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Bear or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 15} Constitution saving throw or be cursed with werebear lycanthropy, as described in the Monster Manual." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Bear or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Stone's Endurance (Recharges after a Short or Long Rest)", + "body": [ + "When the werebear takes damage, it reduces the damage taken by 10 ({@dice 1d12 + 4})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goliath, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Goliath Werebear-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Grandolpha Muzgardt", + "source": "IDRotF", + "page": 176, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 9, + "constitution": 18, + "intelligence": 13, + "wisdom": 17, + "charisma": 16, + "passive": 13, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "Grandolpha has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Grandolpha has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Poison Spray (Cantrip)", + "body": [ + "Grandolpha extends her hand toward a creature she can see within 10 feet of her and projects a puff of noxious gas from her palm. The creature must succeed on a {@dc 13} Constitution saving throw or take 13 ({@damage 2d12}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "Grandolpha's innate spellcasting ability is Wisdom (spell save {@dc 13}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell mending}", + "{@spell poison spray} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell detect magic}", + "{@spell enlarge/reduce} (self only)", + "{@spell faerie fire}", + "{@spell invisibility} (self only)", + "{@spell polymorph}", + "{@spell stoneskin} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Grandolpha Muzgardt-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Gunvald Halraggson", + "source": "IDRotF", + "page": 305, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "9d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 8, + "constitution": 18, + "intelligence": 9, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Indomitable (3/Day)", + "body": [ + "Gunvald can reroll a saving throw he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Menacing Blows (1/Turn)", + "body": [ + "Gunvald deals an extra 6 ({@damage 1d12}) damage when he hits a target with a weapon attack. If the target is a creature, it must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} until the start of Gunvald's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, Gunvald can regain 15 hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Gunvald makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage when used with two hands, plus 6 ({@damage 1d12}) slashing damage if Gunvald uses Menacing Blows." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, plus 6 ({@damage 1d12}) piercing damage if Gunvald uses Menacing Blows." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Gunvald Halraggson-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Hare", + "source": "IDRotF", + "page": 294, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 5, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 17, + "constitution": 9, + "intelligence": 2, + "wisdom": 11, + "charisma": 4, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Escape", + "body": [ + "The hare can take the Dash, Disengage, or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hare-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Hypnos Magen", + "source": "IDRotF", + "page": 301, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 34, + "formula": "4d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 14, + "constitution": 18, + "intelligence": 14, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands the languages of its creator but can't speak", + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Fiery End", + "body": [ + "If the magen dies, its body disintegrates in a harmless burst of fire and smoke, leaving behind anything it was wearing or carrying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The magen has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The magen doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Psychic Lash", + "body": [ + "The magen's eyes glow silver as it targets one creature that it can see within 60 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Suggestion", + "body": [ + "The magen casts the {@spell suggestion} spell (save {@dc 12}), requiring no material components. The target must be a creature that the magen can communicate with telepathically. If it succeeds on its saving throw, the target is immune to this magen's {@spell suggestion} spell for the next 24 hours. The magen's spellcasting ability is Intelligence." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hypnos Magen-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Ice Troll", + "source": "IDRotF", + "page": 295, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 115, + "formula": "10d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 8, + "constitution": 22, + "intelligence": 7, + "wisdom": 9, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Cold Aura", + "body": [ + "While it's alive, the troll generates an aura of bitter cold that fills the area within 10 feet of it. At the start of the troll's turn, all nonmagical flames in the aura are extinguished. Any creature that starts its turn within 10 feet of the troll takes 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The ice troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The ice troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The ice troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 9 ({@damage 2d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 9 ({@damage 2d8}) cold damage. If the target takes any of the cold damage, the target must succeed on a {@dc 15} Constitution saving throw or have disadvantage on its attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ice Troll-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Icewind Kobold", + "source": "IDRotF", + "page": 296, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 7, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 8, + "charisma": 8, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 0} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}1 ({@damage 1d6 - 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Icewind Kobold-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Icewind Kobold Zombie", + "source": "IDRotF", + "page": 297, + "size_str": "Small", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 9, + "note": "scraps of hide armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d6 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 8, + "dexterity": 6, + "constitution": 16, + "intelligence": 3, + "wisdom": 6, + "charisma": 3, + "passive": 8, + "saves": { + "wis": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The zombie doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Javelin", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Icewind Kobold Zombie-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Isarr Kronenstrom", + "source": "IDRotF", + "page": 307, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 16, + "dexterity": 16, + "constitution": 15, + "intelligence": 14, + "wisdom": 15, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "Isarr has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indomitable (3/Day)", + "body": [ + "Isarr can reroll a saving throw he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "Isarr has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Isarr makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sickle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, plus 13 ({@damage 2d12}) piercing damage if the target has no allies it can see within 10 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 100/400 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Isarr Kronenstrom-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Jarund Elkhardt", + "source": "IDRotF", + "page": 305, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 10, + "constitution": 15, + "intelligence": 12, + "wisdom": 14, + "charisma": 18, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+5" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when Jarund hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jarund makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warhammer", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, or 15 ({@damage 2d10 + 4}) bludgeoning damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and Jarund pushes the target 5 feet away from him if it's Large or smaller. Jarund then enters the space vacated by the target. If the target is pushed to within 5 feet of a creature friendly to Jarund, that creature can make an attack against the target as a reaction." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Jarund Elkhardt-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Kingsport", + "source": "IDRotF", + "page": 243, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "1d8 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 6, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "Kingsport can hold its breath for 20 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kingsport-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Knucklehead Trout", + "source": "IDRotF", + "page": 295, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 14, + "constitution": 11, + "intelligence": 1, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Water Breathing", + "body": [ + "The trout can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Knucklehead Trout-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Vampire Spawn", + "source": "IDRotF", + "page": 297, + "size_str": "Small", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d6 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 18, + "constitution": 16, + "intelligence": 8, + "wisdom": 8, + "charisma": 8, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+1" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The vampire has advantage on an attack roll against a creature if at least one of the vampire's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The vampire doesn't require air." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage when it starts its turn in running water.", + "{@i Stake to the Heart.} The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is {@condition incapacitated} in its resting place.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 5 ({@damage 2d4}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kobold Vampire Spawn-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Living Bigby's Hand", + "source": "IDRotF", + "page": 298, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "5d10 + 25", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 26, + "dexterity": 10, + "constitution": 20, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "wis": "+2" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The living spell doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Force Fist", + "body": [ + "{@atk ms} {@hit 10} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d8 + 8}) force damage. If the target is a Large or smaller creature, the living spell can move it up to 5 feet and move with it, without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Hand", + "body": [ + "The living spell attempts to grab a Huge or smaller creature within 5 feet of it. The target must succeed on a {@dc 15} Dexterity saving throw or be {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target takes 15 ({@damage 2d6 + 8}) bludgeoning damage at the start of each of its turns. The living spell can grapple only one creature at a time and can't use Force Fist until the grapple ends." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Bigby's Hand-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Living Blade of Disaster", + "source": "IDRotF", + "page": 299, + "size_str": "Small", + "maintype": "construct", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d6 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 10, + "dexterity": 16, + "constitution": 19, + "intelligence": 6, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unfettered", + "body": [ + "The living spell can move through any barrier, even a wall of magical force." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The living spell doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Force Blade", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d12}) force damage, unless the living spell rolled an 18 or higher on the {@dice d20} for the attack, in which case the attack is a critical hit that deals 78 ({@damage 12d12}) force damage instead." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Preemptive Strike", + "body": [ + "The living spell makes a melee attack against a creature that starts its turn within 5 feet of the living spell." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Blade of Disaster-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Living Demiplane", + "source": "IDRotF", + "page": 299, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 10, + "constitution": 10, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Dimensional Form", + "body": [ + "The living spell can enter another creature's space and vice versa, and it can move through a space as narrow as 1 inch wide without squeezing. The living spell can't detach from a solid surface, such as a wall, ceiling, or floor. If it has no surface to attach to, the living spell is destroyed (see \"Planar Destruction\" below)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extradimensional Chamber", + "body": [ + "When the living spell enters another creature's space (or vice versa) for the first time on a turn, the other creature must succeed on a {@dc 10} Dexterity saving throw or be pulled into the living spell's extradimensional space, an unfurnished stone chamber 30 feet in every dimension. A creature too big to fit in this space succeeds on the saving throw automatically. Creatures in the chamber never run out of breathable air. Magic that enables transit between planes, such as plane shift, can be used to escape the chamber, which has no exits otherwise. Creatures trapped inside the extradimensional chamber can't see, target, or deal damage to the living spell; however, they can damage the room around them. Each 5-foot-square section of ceiling, wall, and floor in the chamber has AC 17, 50 hit points, immunity to poison and psychic damage, and immunity to bludgeoning, piercing, and slashing damage that is nonmagical. If any section is reduced to 0 hit points, the living spell and its chamber are destroyed (see \"Planar Destruction\" below)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The living spell has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Planar Destruction", + "body": [ + "The living spell is destroyed when it or a 5-foot-square section of its extradimensional chamber is reduced to 0 hit points, or when the living spell has no surface to attach to. When the living spell is destroyed, the contents of its extradimensional chamber are expelled, appearing as close to the living spell's previous location as possible. Each expelled creature appears in a randomly determined unoccupied space, along with whatever it is wearing or carrying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The living spell doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Demiplane-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Mountain Goat", + "source": "IDRotF", + "page": 304, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 14, + "dexterity": 12, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "traits": [ + { + "title": "Charge", + "body": [ + "If the goat moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 3 ({@damage 1d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mountain Goat-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Nass Lantomir's Ghost", + "source": "IDRotF", + "page": 272, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 7, + "dexterity": 13, + "constitution": 10, + "intelligence": 17, + "wisdom": 12, + "charisma": 17, + "passive": 11, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Orc" + ], + "traits": [ + { + "title": "Ethereal Sight", + "body": [ + "The ghost can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Withering Touch", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrifying Visage", + "body": [ + "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If the target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed by a {@spell greater restoration} spell, but only if it is cast within 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One humanoid that the ghost can see within 5 feet of it must succeed on a {@dc 14} Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is {@condition incapacitated} and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies. The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The ghost is a 6th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}). The ghost has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nass Lantomir's Ghost-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Prisoner 237", + "source": "IDRotF", + "page": 160, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(10 ft. while shackled)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 9, + "dexterity": 13, + "constitution": 14, + "intelligence": 17, + "wisdom": 10, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Draconic", + "Infernal", + "Orc" + ], + "actions": [ + { + "title": "Shocking Grasp (Cantrip)", + "body": [ + "{@atk ms} {@hit 5} to hit (with advantage on the attack if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}9 ({@damage 2d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Prisoner 237 is a 5th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}; {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}*", + "{@spell message}*", + "{@spell prestidigitation}", + "{@spell shocking grasp} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell mage armor}*", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell arcane lock}*", + "{@spell detect thoughts}*", + "{@spell suggestion}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell counterspell}", + "{@spell lightning bolt}*" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Prisoner 237-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Seal", + "source": "IDRotF", + "page": 308, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 11, + "intelligence": 3, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The seal can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The seal has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Seal-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Sephek Kaltro", + "source": "IDRotF", + "page": 23, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 16, + "intelligence": 11, + "wisdom": 16, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Cold Regeneration", + "body": [ + "If the temperature around him is 0 degrees Fahrenheit or lower, Sephek regains 5 hit points at the start of his turn. If he takes fire damage, this trait doesn't function at the start of Sephek's next turn. Sephek dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Sephek attacks twice with a weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if Sephek uses the weapon with two hands, plus 5 ({@damage 2d4}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Dagger", + "body": [ + "{@atk rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 5 ({@damage 2d4}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Sephek can innately cast {@spell misty step} up to three times per day, requiring no components. His innate spellcasting ability is Charisma." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sephek Kaltro-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Snow Golem", + "source": "IDRotF", + "page": 308, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 6, + "constitution": 14, + "intelligence": 1, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Cold Absorption", + "body": [ + "Whenever the golem is subjected to cold damage, it takes no damage and instead regains a number of hit points equal to the cold damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Melt", + "body": [ + "While in an area of extreme heat, the golem loses {@dice 1d6} hit points at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The golem doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 7 ({@damage 2d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snowball", + "body": [ + "{@atk rw} {@hit 0} to hit, range 60 ft., one target. {@h}9 ({@damage 2d6 + 2}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Snow Golem-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Spellix Romwod", + "source": "IDRotF", + "page": 144, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 6, + "dexterity": 15, + "constitution": 14, + "intelligence": 15, + "wisdom": 9, + "charisma": 16, + "passive": 9, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Gnomish", + "Goblin" + ], + "traits": [ + { + "title": "Gnome Cunning", + "body": [ + "Spellix has advantage on all Intelligence, Wisdom, and Charisma saving throws against magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shocking Grasp (Cantrip)", + "body": [ + "{@atk ms} {@hit 5} to hit (with advantage on the attack roll if the target is wearing armor made of metal), reach 5 ft., one creature. {@h}4 ({@damage 1d8}) lightning damage, and the target can't take reactions until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Bolt (Cantrip)", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}5 ({@damage 1d10}) fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Spellix's spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fire bolt}*", + "{@spell mage hand}", + "{@spell shocking grasp}*" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell silent image}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell chromatic orb}", + "{@spell crown of madness}", + "{@spell shield}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gnome", + "actions_note": "", + "mythic": null, + "key": "Spellix Romwod-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Sperm Whale", + "source": "IDRotF", + "page": 309, + "size_str": "Gargantuan", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "14d20 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 26, + "dexterity": 8, + "constitution": 17, + "intelligence": 3, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "senses": [ + "blindsight 120 ft." + ], + "traits": [ + { + "title": "Echolocation", + "body": [ + "The whale can't use its blindsight while {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The whale can hold its breath for 90 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing", + "body": [ + "The whale has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The whale makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Dexterity saving throw or be swallowed by the whale. A swallowed creature has {@quickref Cover||3||total cover} against attacks and other effects outside the whale, and it takes 3 ({@damage 1d6}) acid damage at the start of each of the whale's turns. If the whale takes 30 damage or more on a single turn from a creature inside it, the whale must succeed on a {@dc 16} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the whale. If the whale dies, a swallowed creature can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}18 ({@damage 3d6 + 8}) bludgeoning damage, or 37 ({@damage 6d6 + 16}) bludgeoning damage if the target is an object." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sperm Whale-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Spitting Mimic", + "source": "IDRotF", + "page": 302, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 21, + "dexterity": 12, + "constitution": 17, + "intelligence": 9, + "wisdom": 15, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Adhesive (Object Form Only)", + "body": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 16}). Ability checks made to escape this grapple have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance (Object Form Only)", + "body": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grappler", + "body": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The mimic has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mimic attacks three times: twice with its pseudopods and once with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopods", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Acid {@recharge 5}", + "body": [ + "The mimic spits acid at one creature it can see within 30 feet of it. The target must make a {@dc 14} Dexterity saving throw, taking 32 ({@damage 9d6 + 1}) acid damage on failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Spitting Mimic-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Tomb Tapper", + "source": "IDRotF", + "page": 310, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 22, + "dexterity": 10, + "constitution": 21, + "intelligence": 14, + "wisdom": 14, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 240 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common and Undercommon but doesn't speak", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Petrified Death", + "body": [ + "A tomb tapper reduced to 0 hit points turns into a lifeless stone statue. Anything it's wearing or carrying is not transformed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sense Magic", + "body": [ + "The tomb tapper senses magic within 30 feet of it and can use an action to pinpoint the location of any creature, object, or area in that range that bears magic. This sense penetrates barriers but is blocked by a thin sheet of lead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The tomb tapper can burrow through solid rock at half its burrowing speed and leaves a 10-foot-wide, 20-foot-tall tunnel in its wake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The tomb tapper doesn't require air or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tomb tapper makes two melee attacks with its sledgehammer or with its claws. If it hits the same creature with both claws, it can pull that creature within 5 feet of its mouth and make a bite attack against it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sledgehammer", + "body": [ + "{@atk mw,rw} {@hit 10} to hit, reach 15 ft. or range 30/120 ft., one target. {@h}27 ({@damage 6d6 + 6}) bludgeoning or force damage (tomb tapper's choice). If thrown, the hammer returns to the tomb tapper at the end of its turn, landing at the tomb tapper's feet if it doesn't have a hand free to catch the weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tomb Tapper-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Vellynne Harpell", + "source": "IDRotF", + "page": 273, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "{@item bracers of defense}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 12, + "constitution": 17, + "intelligence": 18, + "wisdom": 15, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Orc" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Vellynne wears {@item bracers of defense} and carries a {@item wand of magic missiles} (see \"Actions\" below)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Vampiric Touch (3rd-Level Spell; Requires a Spell Slot)", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) necrotic damage, and Vellynne regains hit points equal to half the necrotic damage dealt. If Vellynne casts this spell using a spell slot of 4th level or higher, the necrotic damage increases by {@damage 1d6} for each slot level above 3rd." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chill Touch (Cantrip)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}9 ({@damage 2d8}) necrotic damage, and the target can't regain hit points until the start of Vellynne's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wand of Magic Missiles", + "body": [ + "While holding this wand, Vellynne can expend 1 or more of its 7 charges to cast the {@spell magic missile} spell from it. She can expend 1 charge to cast the 1st-level version of the spell. She can increase the spell slot level by one for each additional charge she expends. The wand regains {@dice 1d6 + 1} expended charges daily at dawn. If the wand's last charge is expended, roll a {@dice d20}; on a 1, the wand crumbles into ashes and is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Vellynne is an 8th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell ray of sickness}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell hold person}", + "{@spell ray of enfeeblement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell Leomund's tiny hut}", + "{@spell vampiric touch} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell arcane eye}", + "{@spell blight}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Vellynne Harpell-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Verbeeg Longstrider", + "source": "IDRotF", + "page": 311, + "size_str": "Large", + "maintype": "giant", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 15, + "constitution": 16, + "intelligence": 13, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+6", + "wis": "+5" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Simple Weapon Wielder", + "body": [ + "A simple weapon deals one extra die of its damage when the verbeeg hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The verbeeg makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, or 17 ({@damage 3d8 + 4}) piercing damage if used to make a ranged attack or used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}9 ({@damage 3d4 + 2}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The verbeeg's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell animal messenger}", + "{@spell fog cloud}", + "{@spell freedom of movement}", + "{@spell pass without trace}", + "{@spell silence}", + "{@spell water walk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Verbeeg Longstrider-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Verbeeg Marauder", + "source": "IDRotF", + "page": 311, + "size_str": "Large", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 11, + "constitution": 16, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+5" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Simple Weapon Wielder", + "body": [ + "A simple weapon deals one extra die of its damage when the verbeeg hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The verbeeg makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, or 17 ({@damage 3d8 + 4}) piercing damage if used to make a ranged attack or used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Verbeeg Marauder-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Walrus", + "source": "IDRotF", + "page": 312, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 9, + "constitution": 14, + "intelligence": 3, + "wisdom": 11, + "charisma": 4, + "passive": 10, + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The walrus can hold its breath for 10 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tusks", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Walrus-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Xardorok Sunblight", + "source": "IDRotF", + "page": 287, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 11, + "constitution": 18, + "intelligence": 12, + "wisdom": 13, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "Xardorok has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Xardorok has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Xardorok attacks twice with a weapon or casts {@spell eldritch blast} twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Gauntlet", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, or 8 ({@damage 2d4 + 3}) piercing damage while Xardorok is enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Blast (Cantrip)", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one creature. {@h}9 ({@damage 1d10 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, Xardorok magically increases in size, along with anything he is wearing or carrying. While enlarged, Xardorok is Large, doubles his damage dice on Strength-based weapon attacks (included in his attacks), and makes Strength checks and Strength saving throws with advantage. If Xardorok lacks the room to become Large, he attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility {@recharge 4}", + "body": [ + "Xardorok magically turns {@condition invisible} until he attacks, he casts a spell, he uses his Enlarge, or his {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment Xardorok wears or carries is {@condition invisible} with him." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Hellish Rebuke (2/Day)", + "body": [ + "When Xardorok is damaged by a creature within 60 feet of him that he can see, the creature that damaged him is engulfed in hellish flames and must make a {@dc 15} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Xardorok's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell eldritch blast} (see \"Actions\" below)", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell hold person}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Xardorok Sunblight-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Yeti Tyke", + "source": "IDRotF", + "page": 313, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 11, + "constitution": 12, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Yeti but can't speak" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The yeti has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snow Camouflage", + "body": [ + "The yeti has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage plus 2 ({@damage 1d4}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yeti Tyke-IDRotF", + "__dataclass__": "Monster" + }, + { + "name": "Aurumvorax", + "source": "JttRC", + "page": 105, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 13, + "constitution": 12, + "intelligence": 3, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "con": "+3" + }, + "cond_immunities": [ + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Tunneler", + "body": [ + "The aurumvorax can burrow through solid rock and metal at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aurumvorax makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. If the target is a creature wearing armor of any type, the aurumvorax regains 4 ({@dice 1d6 + 1}) hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the aurumvorax can't use its Claw attack on another target, and when it moves, it can drag the {@condition grappled} creature with it, without the aurumvorax's speed being halved." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aurumvorax-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Aurumvorax Den Leader", + "source": "JttRC", + "page": 105, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 3, + "wisdom": 13, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+4" + }, + "cond_immunities": [ + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Pack Leader", + "body": [ + "The aurumvorax's allies have advantage on attack rolls while within 10 feet of the aurumvorax, provided it isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The aurumvorax can burrow through solid rock and metal at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aurumvorax makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage. If the target is a creature wearing armor of any type, the aurumvorax gains one of the following benefits of its choice:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Frenzy", + "body": [ + "The aurumvorax has advantage on attack rolls until start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invigorate", + "body": [ + "The aurumvorax regains 6 ({@dice 1d8 + 2}) hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the aurumvorax can't use its Claw attack on another target, and when it moves, it can drag the {@condition grappled} creature with it, without the aurumvorax's speed being halved." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aurumvorax Den Leader-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Bakunawa", + "source": "JttRC", + "page": 147, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "12d20 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 21, + "dexterity": 12, + "constitution": 15, + "intelligence": 14, + "wisdom": 17, + "charisma": 16, + "passive": 21, + "saves": { + "dex": "+5", + "con": "+6", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Celestial", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The bakunawa can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the bakunawa fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bakunawa makes one Bite attack and one Storm Slam attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 7 ({@damage 2d6}) lightning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be swallowed by the bakunawa. A swallowed creature is {@condition blinded} and {@condition restrained}, and it has {@quickref Cover||3||total cover} against attacks and other effects outside the bakunawa. At the start of each of the bakunawa's turns, each swallowed creature takes 10 ({@damage 3d6}) lightning damage.", + "The bakunawa's gullet can hold up to two creatures at a time. If the bakunawa takes 30 damage or more on a single turn from a swallowed creature, the bakunawa must succeed on a {@dc 16} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 15 feet of the bakunawa. If the bakunawa dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Storm Slam", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage plus 5 ({@damage 1d10}) thunder damage, and the target is pushed up to 10 feet in a horizontal direction away from the bakunawa." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Nimble Glide", + "body": [ + "The bakunawa flies or swims up to half its speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "The bakunawa makes one Storm Slam attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strikes (Costs 3 Actions)", + "body": [ + "The bakunawa arcs lightning at up to two creatures it can see within 60 feet of itself. Each target must succeed on a {@dc 15} Dexterity saving throw or take 22 ({@damage 4d10}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bakunawa-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Haint", + "source": "JttRC", + "page": 185, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 7, + "dexterity": 15, + "constitution": 17, + "intelligence": 10, + "wisdom": 13, + "charisma": 17, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any languages it knew in life" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The haint can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The haint doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The haint makes two Sorrowful Touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sorrowful Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one creature. {@h}21 ({@damage 4d8 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The haint magically assumes the appearance of the Humanoid it was in life, while retaining its game statistics. The assumed appearance ends if the haint is reduced to 0 hit points or uses an action to end it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shared Sorrow", + "body": [ + "The haint targets one creature it can see within 60 feet of itself that is missing any hit points, sharing its own torment with this pained soul. The target must succeed on a {@dc 14} Wisdom saving throw or be {@condition incapacitated}.", + "A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the haint's Shared Sorrow for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Haint-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Pari", + "source": "JttRC", + "page": 167, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "19d8 + 95", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 20, + "dexterity": 20, + "constitution": 20, + "intelligence": 20, + "wisdom": 22, + "charisma": 22, + "passive": 21, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+11", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The pari has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The pari doesn't require food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pari makes three Mace attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage plus 14 ({@damage 4d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disorienting Futures", + "body": [ + "The pari attempts to flood the mind of one creature it can see within 60 feet of itself with visions of the future. The target must succeed on a {@dc 19} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage and have disadvantage on attack rolls until the start of the pari's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The pari casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell cure wounds} (as a 6th-level spell)", + "{@spell lesser restoration}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell commune} (as an action)", + "{@spell dispel evil and good}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pari-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Riverine", + "source": "JttRC", + "page": 133, + "size_str": "Large", + "maintype": "fey", + "alignment": "Any", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 204, + "formula": "24d10 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 20, + "dexterity": 19, + "constitution": 17, + "intelligence": 12, + "wisdom": 16, + "charisma": 21, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Aquan", + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The riverine can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the riverine fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The riverine makes two Flood Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flood Strike", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Whirlpool Step", + "body": [ + "The riverine magically teleports to an unoccupied space it can see within 30 feet of itself. Both the space it leaves and its destination must be in or on the surface of water." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Whirlpool Rush", + "body": [ + "The riverine uses its Whirlpool Step. Immediately after it teleports, each creature within 5 feet of the riverine's destination space takes 5 ({@damage 1d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raging Deluge (Costs 2 Actions)", + "body": [ + "The riverine unleashes a torrent of river water in a 30-foot line that is 5 feet wide. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 11 ({@damage 2d10}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The riverine casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell control water}", + "{@spell fog cloud}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell greater restoration}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Riverine-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Soul Shaker", + "source": "JttRC", + "page": 47, + "size_str": "Large", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d10 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 20, + "dexterity": 8, + "constitution": 18, + "intelligence": 8, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Enthralled Lure (1/Day)", + "body": [ + "The soul shaker can cast the {@spell geas} spell, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 12})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reconstruction", + "body": [ + "When the soul shaker is reduced to 0 hit points, it explodes into 7 ({@dice 1d4 + 5}) crawling claws. After 6 ({@dice 1d12}) days, if at least two of those crawling claws are alive, they teleport to the location of the soul shaker's death and merge together, whereupon the soul shaker reforms and regains all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The soul shaker doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Crushing Grasp", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). The soul shaker can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Consume Vitality", + "body": [ + "The soul shaker targets a creature it is grappling. If the target is not a Construct or an Undead, the target must succeed on a {@dc 14} Constitution saving throw or take 7 ({@damage 2d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the soul shaker regains hit points equal to that amount. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Soul Shaker-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Tlacatecolo", + "source": "JttRC", + "page": 65, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 17, + "constitution": 14, + "intelligence": 10, + "wisdom": 15, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The tlacatecolo has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tlacatecolo makes two Talon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 3}) piercing damage plus 14 ({@damage 3d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The tlacatecolo magically transforms into a Medium owl, while retaining its game statistics (other than its size). This transformation ends if the tlacatecolo is reduced to 0 hit points or if it uses its action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plague Winds (Fiend Form Only; Recharge 5-6)", + "body": [ + "The tlacatecolo emits a chilling, disease-ridden wind in a 60-foot line that is 10 feet wide. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or take 26 ({@damage 4d12}) cold damage and become {@condition poisoned}.", + "While {@condition poisoned} in this way, the creature can't regain hit points. At the end of every hour, the creature must succeed on a {@dc 13} Constitution saving throw or gain 1 level of {@condition exhaustion}. If the creature is in direct sunlight when it makes this saving throw, it automatically succeeds on the save.", + "If the creature is targeted by magic that ends a poison or disease, such as lesser restoration, while the creature isn't in direct sunlight, the effect does not end." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Tlacatecolo-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Tlexolotl", + "source": "JttRC", + "page": 119, + "size_str": "Huge", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "11d12 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 25, + "dexterity": 10, + "constitution": 17, + "intelligence": 7, + "wisdom": 13, + "charisma": 9, + "passive": 11, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "languages": [ + "Ignan" + ], + "traits": [ + { + "title": "Fire Aura", + "body": [ + "At the start of each of the tlexolotl's turns, each creature within 10 feet of it takes 7 ({@damage 2d6}) fire damage, and flammable objects in that aura that aren't being worn or carried ignite. A creature that touches the tlexolotl or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The tlexolotl sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The tlexolotl regains 10 hit points at the start of its turn. If the tlexolotl takes cold damage or is immersed in water, this trait doesn't function at the start of the tlexolotl's next turn. The tlexolotl dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tlexolotl makes one Bite attack and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}12 ({@damage 1d10 + 7}) piercing damage plus 18 ({@damage 4d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Strength saving throw or be pushed up to 10 feet away from the tlexolotl and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pyroclasm {@recharge 5}", + "body": [ + "Gouts of molten lava erupt from the tlexolotl's body. Each creature in a 30-foot-radius sphere centered on the tlexolotl must make a {@dc 15} Dexterity saving throw. On a failed saving throw, a creature takes 21 ({@damage 6d6}) fire damage and 21 ({@damage 6d6}) bludgeoning damage. On a successful saving throw, a creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tlexolotl-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Whistler", + "source": "JttRC", + "page": 221, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "24d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 13, + "dexterity": 16, + "constitution": 14, + "intelligence": 15, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Blurred Form", + "body": [ + "Attack rolls against the whistler are made with disadvantage unless the whistler is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The whistler doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The whistler makes three Psychic Swipe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Swipe", + "body": [ + "{@atk ms} {@hit 8} to hit, reach 10 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Otherworldly Melody {@recharge 5}", + "body": [ + "The whistler telepathically whistles an otherworldly melody into the minds of up to two creatures it can see within range of its telepathy. Each target must succeed on a {@dc 16} Wisdom saving throw or take 33 ({@damage 6d10}) psychic damage and become {@condition frightened} of the whistler for 1 minute. A {@condition frightened} creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Surreal Step", + "body": [ + "The whistler teleports up to 20 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Whistler-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Wynling", + "source": "JttRC", + "page": 33, + "size_str": "Tiny", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d4 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 10, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Sylvan" + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cloak of the Mountain {@recharge 4}", + "body": [ + "The wynling magically turns {@condition invisible}, along with any equipment it is wearing or carrying, for 1 minute or until it makes an attack roll." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Trickster's Flight", + "body": [ + "Immediately after a creature the wynling can see misses the wynling with an attack roll, the wynling can move up to 30 feet. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wynling-JttRC", + "__dataclass__": "Monster" + }, + { + "name": "Goblin Gang Member", + "source": "KKW", + "page": 167, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 16, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nimble Escape", + "body": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Goblin Gang Member-KKW", + "__dataclass__": "Monster" + }, + { + "name": "Krenko", + "source": "KKW", + "page": 168, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 8, + "charisma": 14, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nimble Escape", + "body": [ + "Krenko can take the Disengage or Hide action as a bonus action on each of his turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Krenko makes two attacks with his scimitar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage plus 2 ({@damage 1d4}) poison damage.." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Redirect Attack", + "body": [ + "When a creature Krenko can see targets him with an attack, Krenko chooses another goblin within 5 feet of him. The two goblins swap places, and the chosen goblin becomes the target instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Krenko-KKW", + "__dataclass__": "Monster" + }, + { + "name": "Loading Rig", + "source": "KKW", + "page": 170, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 18, + "dexterity": 11, + "constitution": 13, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The rig is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the rig must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unstable", + "body": [ + "If the rig takes damage, it must succeed on a {@dc 10} Constitution saving throw or be {@condition incapacitated} with a speed of 0 until a creature activates it with a successful {@dc 10} Intelligence ({@skill Arcana}) check made as an action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The armor makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Loading Rig-KKW", + "__dataclass__": "Monster" + }, + { + "name": "Ash Zombie", + "source": "LMoP", + "page": 31, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 6, + "constitution": 16, + "intelligence": 3, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "saves": { + "wis": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages it spoke in life but can't speak" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ash Puff", + "body": [ + "The first time the zombie takes damage, any living creature within 5 feet of the zombie must succeed on a {@dc 10} Constitution saving throw or gain disadvantage on attack rolls, saving throws, and ability checks for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on it early with a successful save." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ash Zombie-LMoP", + "__dataclass__": "Monster" + }, + { + "name": "Evil Mage", + "source": "LMoP", + "page": 57, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d8 - 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The mage is a 4th-level spellcaster that uses Intelligence as its spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks). The mage knows the following spells from the wizard's spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "RMBRE" + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Evil Mage-LMoP", + "__dataclass__": "Monster" + }, + { + "name": "Mormesk the Wraith", + "source": "LMoP", + "page": 59, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 6, + "dexterity": 16, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The wraith can move through an object or another creature, but can't stop there." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the wraith has disadvantage on attack rolls and on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}16 ({@damage 3d8 + 3}) necrotic damage, and the target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. If this attack reduces the target's hit point maximum to 0, the target dies. This reduction to the target's hit point maximum lasts until the target finishes a long rest." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mormesk the Wraith-LMoP", + "__dataclass__": "Monster" + }, + { + "name": "Nezznar the Black Spider", + "source": "LMoP", + "page": 59, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 14, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 13, + "constitution": 10, + "intelligence": 16, + "wisdom": 14, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Nezznar has a {@item spider staff|lmop}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Nezznar has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "Nezznar has disadvantage on attack rolls when he or his target is in sunlight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spider Staff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": null, + "header": { + "title": "Innate Spellcasting", + "body": [ + "Nezznar can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire} (save {@dc 12})" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Nezznar is a 4th-level spellcaster that uses Intelligence as his spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks). Nezznar has the following spells prepared from the wizard's spell list:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Nezznar the Black Spider-LMoP", + "__dataclass__": "Monster" + }, + { + "name": "Redbrand Ruffian", + "source": "LMoP", + "page": 61, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 9, + "wisdom": 9, + "charisma": 11, + "passive": 9, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ruffian makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Redbrand Ruffian-LMoP", + "__dataclass__": "Monster" + }, + { + "name": "Sildar Hallwinter", + "source": "LMoP", + "page": 61, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 10, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+3", + "con": "+3" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Sildar makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "When an attacker hits Sildar with a melee attack and Sildar can see the attacker, he can roll {@dice 1d6} and add the number rolled to his AC against the triggering attack, provided that he's wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Sildar Hallwinter-LMoP", + "__dataclass__": "Monster" + }, + { + "name": "Astral Blight", + "source": "LoX", + "page": 10, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 8, + "constitution": 14, + "intelligence": 6, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "While it has at least 1 hit point, the astral blight sheds dim light in a 10-foot radius." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The blight doesn't require air or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blight makes two Heat-Draining Vine attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heat-Draining Vine", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) radiant damage, and if the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target takes 3 ({@damage 1d6}) cold damage at the start of each of its turns. The blight has two vines, each of which can grapple one creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Astral Blight-LoX", + "__dataclass__": "Monster" + }, + { + "name": "Aarakocra", + "source": "MM", + "page": 12, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 11, + "wisdom": 12, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Aarakocra" + ], + "traits": [ + { + "title": "Dive Attack", + "body": [ + "If the aarakocra is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 3 ({@damage 1d6}) damage to the target." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Air Elemental", + "body": [ + "Five aarakocra within 30 feet of each other can magically summon an {@creature air elemental}. Each of the five must use its action and movement on three consecutive turns to perform an aerial dance and must maintain {@status concentration} while doing so (as if {@status concentration||concentrating} on a spell). When all five have finished their third turn of the dance, the elemental appears in an unoccupied space within 60 feet of them. It is friendly toward them and obeys their spoken commands. It remains for 1 hour, until it or all its summoners die, or until any of its summoners dismisses it as a bonus action. A summoner can't perform the dance again until it finishes a short rest. When the elemental returns to the Elemental Plane of Air, any aarakocra within 5 feet of it can return with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "LoX" + }, + { + "source": "QftIS" + } + ], + "subtype": "aarakocra", + "actions_note": "", + "mythic": null, + "key": "Aarakocra-MM", + "__dataclass__": "Monster" + }, + { + "name": "Aboleth", + "source": "MM", + "page": 13, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 21, + "dexterity": 9, + "constitution": 15, + "intelligence": 18, + "wisdom": 15, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+8", + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The aboleth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mucous Cloud", + "body": [ + "While underwater, the aboleth is surrounded by transformative mucus. A creature that touches the aboleth or that hits it with a melee attack while within 5 feet of it must make a {@dc 14} Constitution saving throw. On a failure, the creature is diseased for {@dice 1d4} hours. The diseased creature can breathe only underwater." + ], + "__dataclass__": "Entry" + }, + { + "title": "Probing Telepathy", + "body": [ + "If a creature communicates telepathically with the aboleth, the aboleth learns the creature's greatest desires if the aboleth can see the creature." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aboleth makes three tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by {@spell heal} or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 ({@damage 1d12}) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 3d6 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enslave (3/Day)", + "body": [ + "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The {@condition charmed} target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.", + "Whenever the {@condition charmed} target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The aboleth makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Swipe", + "body": [ + "The aboleth makes one tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Drain (Costs 2 Actions)", + "body": [ + "One creature {@condition charmed} by the aboleth takes 10 ({@damage 3d6}) psychic damage, and the aboleth regains hit points equal to the damage the creature takes." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aboleth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Abominable Yeti", + "source": "MM", + "page": 306, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 137, + "formula": "11d12 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 24, + "dexterity": 10, + "constitution": 22, + "intelligence": 9, + "wisdom": 13, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Yeti" + ], + "traits": [ + { + "title": "Fear of Fire", + "body": [ + "If the yeti takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The yeti has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snow Camouflage", + "body": [ + "The yeti has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yeti can use its Chilling Gaze and makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 7 ({@damage 2d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chilling Gaze", + "body": [ + "The yeti targets one creature it can see within 30 feet of it. If the target can see the yeti, the target must succeed on a {@dc 18} Constitution saving throw against this magic or take 21 ({@damage 6d6}) cold damage and then be {@condition paralyzed} for 1 minute, unless it is immune to cold damage. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target's saving throw is successful, or if the effect ends on it, the target is immune to this yeti's gaze for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge}", + "body": [ + "The yeti exhales a 30-foot cone of frigid air. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 45 ({@damage 10d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Abominable Yeti-MM", + "__dataclass__": "Monster" + }, + { + "name": "Acolyte", + "source": "MM", + "page": 342, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The acolyte is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The acolyte has following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SjA" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Acolyte-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Black Dragon", + "source": "MM", + "page": 88, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 23, + "dexterity": 14, + "constitution": 21, + "intelligence": 14, + "wisdom": 13, + "charisma": 17, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+10", + "wis": "+6", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge 5}", + "body": [ + "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 54 ({@damage 12d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Black Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Blue Dracolich", + "source": "MM", + "page": 84, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 25, + "dexterity": 10, + "constitution": 23, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 24, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+12", + "wis": "+8", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dracolich fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The dracolich has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dracolich can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dracolich's choice that is within 120 feet of the dracolich and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dracolich's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "The dracolich exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 20} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dracolich makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dracolich makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dracolich beats its tattered wings. Each creature within 10 feet of the dracolich must succeed on a {@dc 21} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. After beating its wings this way, the dracolich can fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Blue Dracolich-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Blue Dragon", + "source": "MM", + "page": 91, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 25, + "dexterity": 10, + "constitution": 23, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+11", + "wis": "+7", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 19} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 20} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Blue Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Brass Dragon", + "source": "MM", + "page": 105, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 14, + "wisdom": 13, + "charisma": 17, + "passive": 21, + "skills": { + "skills": [ + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+10", + "wis": "+6", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 45 ({@damage 13d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleep Breath", + "body": [ + "The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 18} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Brass Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Bronze Dragon", + "source": "MM", + "page": 108, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 212, + "formula": "17d12 + 102", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 25, + "dexterity": 10, + "constitution": 23, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 22, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+11", + "wis": "+7", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Lightning Breath", + "body": [ + "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 19} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repulsion Breath", + "body": [ + "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 19} Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 20} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "DSotDQ" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Bronze Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Copper Dragon", + "source": "MM", + "page": 112, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 184, + "formula": "16d12 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 23, + "dexterity": 12, + "constitution": 21, + "intelligence": 18, + "wisdom": 15, + "charisma": 17, + "passive": 22, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+10", + "wis": "+7", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Acid Breath", + "body": [ + "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 54 ({@damage 12d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slowing Breath", + "body": [ + "The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 18} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Copper Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Gold Dragon", + "source": "MM", + "page": 114, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 256, + "formula": "19d12 + 133", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 27, + "dexterity": 14, + "constitution": 25, + "intelligence": 16, + "wisdom": 15, + "charisma": 24, + "passive": 24, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+13", + "wis": "+8", + "cha": "+13" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 66 ({@damage 12d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weakening Breath", + "body": [ + "The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 21} 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Gold Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Green Dragon", + "source": "MM", + "page": 94, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 23, + "dexterity": 12, + "constitution": 21, + "intelligence": 18, + "wisdom": 15, + "charisma": 17, + "passive": 22, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+10", + "wis": "+7", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Breath {@recharge 5}", + "body": [ + "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 56 ({@damage 16d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "CM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Green Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Red Dragon", + "source": "MM", + "page": 98, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 256, + "formula": "19d12 + 133", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 27, + "dexterity": 10, + "constitution": 25, + "intelligence": 16, + "wisdom": 13, + "charisma": 21, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+13", + "wis": "+7", + "cha": "+11" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 63 ({@damage 18d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "GotSF" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Red Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Silver Dragon", + "source": "MM", + "page": 117, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 243, + "formula": "18d12 + 126", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 27, + "dexterity": 10, + "constitution": 25, + "intelligence": 16, + "wisdom": 13, + "charisma": 21, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+12", + "wis": "+6", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Cold Breath", + "body": [ + "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a {@dc 20} Constitution saving throw, taking 58 ({@damage 13d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Breath", + "body": [ + "The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a {@dc 20} Constitution saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Silver Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Adult White Dragon", + "source": "MM", + "page": 101, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 22, + "dexterity": 10, + "constitution": 22, + "intelligence": 8, + "wisdom": 12, + "charisma": 12, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+11", + "wis": "+6", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Ice Walk", + "body": [ + "The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost it extra movement." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 4 ({@damage 1d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 14} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw, taking 54 ({@damage 12d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 10 feet of the dragon must succeed on a {@dc 19} Dexterity saving throw or take 13 ({@damage 2d6 + 6}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult White Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Air Elemental", + "source": "MM", + "page": 124, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 20, + "constitution": 14, + "intelligence": 6, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran" + ], + "traits": [ + { + "title": "Air Form", + "body": [ + "The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elemental makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind {@recharge 4}", + "body": [ + "Each creature in the elemental's space must make a {@dc 13} Strength saving throw. On a failure, a target takes 15 ({@damage 3d8 + 2}) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked {@condition prone}. If a thrown target strikes an object, such as a wall or floor, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 13} Dexterity saving throw or take the same damage and be knocked {@condition prone}.", + "If the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Air Elemental-MM", + "__dataclass__": "Monster" + }, + { + "name": "Allosaurus", + "source": "MM", + "page": 79, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 13, + "constitution": 17, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Pounce", + "body": [ + "If the allosaurus moves at least 30 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the allosaurus can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Allosaurus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Black Dragon", + "source": "MM", + "page": 87, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 367, + "formula": "21d20 + 147", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 27, + "dexterity": 14, + "constitution": 25, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 26, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+14", + "wis": "+9", + "cha": "+11" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge 5}", + "body": [ + "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a {@dc 22} Dexterity saving throw, taking 67 ({@damage 15d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 23} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Black Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Blue Dragon", + "source": "MM", + "page": 90, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 481, + "formula": "26d20 + 208", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 29, + "dexterity": 10, + "constitution": 27, + "intelligence": 18, + "wisdom": 17, + "charisma": 21, + "passive": 27, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+15", + "wis": "+10", + "cha": "+12" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 11 ({@damage 2d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}18 ({@damage 2d8 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 20} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 23} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 24} Dexterity saving throw or take 16 ({@damage 2d6 + 9}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MOT" + }, + { + "source": "TCE" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Blue Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Brass Dragon", + "source": "MM", + "page": 104, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 27, + "dexterity": 10, + "constitution": 25, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 24, + "skills": { + "skills": [ + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+13", + "wis": "+8", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons:", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a {@dc 21} Dexterity saving throw, taking 56 ({@damage 16d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleep Breath", + "body": [ + "The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CRCotN" + }, + { + "source": "JttRC" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Brass Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Bronze Dragon", + "source": "MM", + "page": 107, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 29, + "dexterity": 10, + "constitution": 27, + "intelligence": 18, + "wisdom": 17, + "charisma": 21, + "passive": 27, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+15", + "wis": "+10", + "cha": "+12" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}18 ({@damage 2d8 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 20} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Lightning Breath", + "body": [ + "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 23} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repulsion Breath", + "body": [ + "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 23} Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 24} Dexterity saving throw or take 16 ({@damage 2d6 + 9}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Bronze Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Copper Dragon", + "source": "MM", + "page": 110, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 350, + "formula": "20d20 + 140", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 27, + "dexterity": 12, + "constitution": 25, + "intelligence": 20, + "wisdom": 17, + "charisma": 19, + "passive": 27, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+14", + "wis": "+10", + "cha": "+11" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Acid Breath", + "body": [ + "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a {@dc 22} Dexterity saving throw, taking 63 ({@damage 14d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slowing Breath", + "body": [ + "The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 22} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 23} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Copper Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Gold Dragon", + "source": "MM", + "page": 113, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 30, + "dexterity": 14, + "constitution": 29, + "intelligence": 18, + "wisdom": 17, + "charisma": 28, + "passive": 27, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+16", + "wis": "+10", + "cha": "+16" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 24} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw, taking 71 ({@damage 13d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weakening Breath", + "body": [ + "The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 24} 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Gold Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Green Dragon", + "source": "MM", + "page": 93, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 385, + "formula": "22d20 + 154", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 27, + "dexterity": 12, + "constitution": 25, + "intelligence": 20, + "wisdom": 17, + "charisma": 19, + "passive": 27, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+14", + "wis": "+10", + "cha": "+11" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Breath {@recharge 5}", + "body": [ + "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 77 ({@damage 22d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 23} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "DIP" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Green Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Red Dragon", + "source": "MM", + "page": 97, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 30, + "dexterity": 10, + "constitution": 29, + "intelligence": 18, + "wisdom": 15, + "charisma": 23, + "passive": 26, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+16", + "wis": "+9", + "cha": "+13" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Red Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Silver Dragon", + "source": "MM", + "page": 116, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 487, + "formula": "25d20 + 225", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 30, + "dexterity": 10, + "constitution": 29, + "intelligence": 18, + "wisdom": 15, + "charisma": 23, + "passive": 26, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+16", + "wis": "+9", + "cha": "+13" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Cold Breath", + "body": [ + "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 24} Constitution saving throw, taking 67 ({@damage 15d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Breath", + "body": [ + "The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a {@dc 24} Constitution saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).", + "In a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Silver Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ancient White Dragon", + "source": "MM", + "page": 100, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 333, + "formula": "18d20 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 26, + "dexterity": 10, + "constitution": 26, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+14", + "wis": "+7", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Ice Walk", + "body": [ + "The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost it extra movement." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 9 ({@damage 2d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a {@dc 16} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 72 ({@damage 16d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The dragon makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "The dragon makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "The dragon beats its wings. Each creature within 15 feet of the dragon must succeed on a {@dc 22} Dexterity saving throw or take 15 ({@damage 2d6 + 8}) bludgeoning damage and be knocked {@condition prone}. The dragon can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient White Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Androsphinx", + "source": "MM", + "page": 281, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 199, + "formula": "19d10 + 95", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 22, + "dexterity": 10, + "constitution": 20, + "intelligence": 16, + "wisdom": 18, + "charisma": 23, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+11", + "int": "+9", + "wis": "+10" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Sphinx" + ], + "traits": [ + { + "title": "Inscrutable", + "body": [ + "The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom ({@skill Insight}) checks made to ascertain the sphinx's intentions or sincerity have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The sphinx's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sphinx makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roar (3/Day)", + "body": [ + "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.", + { + "title": "First Roar", + "body": [ + "Each creature that fails a {@dc 18} Wisdom saving throw is {@condition frightened} for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Roar", + "body": [ + "Each creature that fails a {@dc 18} Wisdom saving throw is {@condition deafened} and {@condition frightened} for 1 minute. A {@condition frightened} creature is {@condition paralyzed} and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Third Roar", + "body": [ + "Each creature makes a {@dc 18} Constitution saving throw. On a failed save, a creature takes 44 ({@damage 8d10}) thunder damage and is knocked {@condition prone}. On a successful save, the creature takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw Attack", + "body": [ + "The sphinx makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport (Costs 2 Actions)", + "body": [ + "The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 3 Actions)", + "body": [ + "The sphinx casts a spell from its list of prepared spells, using a spell slot as normal." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The sphinx is a 12th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell zone of truth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell flame strike}", + "{@spell greater restoration}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell heroes' feast}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Androsphinx-MM", + "__dataclass__": "Monster" + }, + { + "name": "Animated Armor", + "source": "MM", + "page": 19, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 11, + "constitution": 13, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The armor is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the armor must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the armor remains motionless, it is indistinguishable from a normal suit of armor." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The armor makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Armor-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ankheg", + "source": "MM", + "page": 21, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 11, + "note": "while prone", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 11, + "constitution": 13, + "intelligence": 1, + "wisdom": 13, + "charisma": 6, + "passive": 11, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage plus 3 ({@damage 1d6}) acid damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the ankheg can bite only the {@condition grappled} creature and has advantage on attack rolls to do so." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Spray {@recharge}", + "body": [ + "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature {@condition grappled}. Each creature in that line must make a {@dc 13} Dexterity saving throw, taking 10 ({@damage 3d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ankheg-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ankylosaurus", + "source": "MM", + "page": 79, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d12 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 11, + "constitution": 15, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "CRCotN" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ankylosaurus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ape", + "source": "MM", + "page": 317, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ape makes two fist attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 5} to hit, range 25/50 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "CM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ape-MM", + "__dataclass__": "Monster" + }, + { + "name": "Arcanaloth", + "source": "MM", + "page": 313, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 17, + "dexterity": 12, + "constitution": 14, + "intelligence": 20, + "wisdom": 16, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+9", + "wis": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The arcanaloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The arcanaloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage. The target must make a {@dc 14} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The arcanaloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The arcanaloth's innate spellcasting ability is Charisma (spell save {@dc 15}). The arcanaloth can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell darkness}", + "{@spell heat metal}", + "{@spell invisibility} (self only)", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The arcanaloth is a 16th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The arcanaloth has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell shield}", + "{@spell Tenser's floating disk}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell phantasmal force}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fear}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell mind blank}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Arcanaloth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Archmage", + "source": "MM", + "page": 342, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 20, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": null, + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "(from stoneskin)", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "any six languages" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The archmage has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The archmage is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The archmage can cast {@spell disguise self} and {@spell invisibility} at will and has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell mage armor}*", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell fire shield}", + "{@spell stoneskin}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cone of cold}", + "{@spell scrying}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell mind blank}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell time stop}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": { + "slots": 0, + "spells": [ + "{@spell disguise self}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Archmage-MM", + "__dataclass__": "Monster" + }, + { + "name": "Assassin", + "source": "MM", + "page": 343, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 16, + "constitution": 14, + "intelligence": 13, + "wisdom": 11, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+4" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Thieves' cant plus any two languages" + ], + "traits": [ + { + "title": "Assassinate", + "body": [ + "During its first turn, the assassin has advantage on attack rolls against any creature that hasn't taken a turn. Any hit the assassin scores against a {@status surprised} creature is a critical hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If the assassin is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the assassin instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "The assassin deals an extra 14 ({@damage 4d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the assassin that isn't {@condition incapacitated} and the assassin doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The assassin makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Assassin-MM", + "__dataclass__": "Monster" + }, + { + "name": "Awakened Shrub", + "source": "MM", + "page": 317, + "size_str": "Small", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 3, + "dexterity": 8, + "constitution": 11, + "intelligence": 10, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "one language known by its creator" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the shrub remains motionless, it is indistinguishable from a normal shrub." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Rake", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Awakened Shrub-MM", + "__dataclass__": "Monster" + }, + { + "name": "Awakened Tree", + "source": "MM", + "page": 317, + "size_str": "Huge", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d12 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 6, + "constitution": 15, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "one language known by its creator" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the tree remains motionless, it is indistinguishable from a normal tree." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Awakened Tree-MM", + "__dataclass__": "Monster" + }, + { + "name": "Axe Beak", + "source": "MM", + "page": 317, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 12, + "constitution": 12, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "actions": [ + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Axe Beak-MM", + "__dataclass__": "Monster" + }, + { + "name": "Azer", + "source": "MM", + "page": 22, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 12, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "saves": { + "con": "+4" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Ignan" + ], + "traits": [ + { + "title": "Heated Body", + "body": [ + "A creature that touches the azer or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heated Weapons", + "body": [ + "When the azer hits with a metal melee weapon, it deals an extra 3 ({@damage 1d6}) fire damage (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The azer sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Warhammer", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, or 8 ({@damage 1d10 + 3}) bludgeoning damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Azer-MM", + "__dataclass__": "Monster" + }, + { + "name": "Baboon", + "source": "MM", + "page": 318, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 14, + "constitution": 11, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The baboon has advantage on an attack roll against a creature if at least one of the baboon's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Baboon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Badger", + "source": "MM", + "page": 318, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d4 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 5, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 11, + "constitution": 12, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The badger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Badger-MM", + "__dataclass__": "Monster" + }, + { + "name": "Balor", + "source": "MM", + "page": 55, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 262, + "formula": "21d12 + 126", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 26, + "dexterity": 15, + "constitution": 22, + "intelligence": 20, + "wisdom": 16, + "charisma": 22, + "passive": 13, + "saves": { + "str": "+14", + "con": "+12", + "wis": "+9", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "When the balor dies, it explodes, and each creature within 30 feet of it must make a {@dc 20} Dexterity saving throw, taking 70 ({@damage 20d6}) fire damage on a failed save, or half as much damage on a successful one. The explosion ignites flammable objects in that area that aren't being worn or carried, and it destroys the balor's weapons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Aura", + "body": [ + "At the start of each of the balor's turns, each creature within 5 feet of it takes 10 ({@damage 3d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature that touches the balor or hits it with a melee attack while within 5 feet of it takes 10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The balor has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The balor's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The balor makes two attacks: one with its longsword and one with its whip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage plus 13 ({@damage 3d8}) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whip", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 30 ft., one target. {@h}15 ({@damage 2d6 + 8}) slashing damage plus 10 ({@damage 3d6}) fire damage, and the target must succeed on a {@dc 20} Strength saving throw or be pulled up to 25 feet toward the balor." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Balor-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bandit", + "source": "MM", + "page": 343, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Lawful Alignment", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Bandit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bandit Captain", + "source": "MM", + "page": 344, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Lawful Alignment", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 16, + "constitution": 14, + "intelligence": 14, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "dex": "+5", + "wis": "+2" + }, + "languages": [ + "any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The captain makes three melee attacks: two with its scimitar and one with its dagger. Or the captain makes two ranged attacks with its daggers." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The captain adds 2 to its AC against one melee attack that would hit it. To do so, the captain must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Bandit Captain-MM", + "__dataclass__": "Monster" + }, + { + "name": "Banshee", + "source": "MM", + "page": 23, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "13d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 1, + "dexterity": 14, + "constitution": 10, + "intelligence": 12, + "wisdom": 11, + "charisma": 17, + "passive": 10, + "saves": { + "wis": "+2", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Detect Life", + "body": [ + "The banshee can magically sense the presence of living creatures up to 5 miles away that aren't undead or constructs. She knows the general direction they're in but not their exact locations." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The banshee can move through other creatures and objects as if they were {@quickref difficult terrain||3}. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Corrupting Touch", + "body": [ + "{@atk ms} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrifying Visage", + "body": [ + "Each non-undead creature within 60 feet of the banshee that can see her must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, with disadvantage if the banshee is within line of sight, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the banshee's Horrifying Visage for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wail (1/Day)", + "body": [ + "The banshee releases a mournful wail, provided that she isn't in sunlight. This wail has no effect on constructs and undead. All other creatures within 30 feet of her that can hear her must make a {@dc 13} Constitution saving throw. On a failure, a creature drops to 0 hit points. On a success, a creature takes 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Banshee-MM", + "__dataclass__": "Monster" + }, + { + "name": "Barbed Devil", + "source": "MM", + "page": 70, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 17, + "constitution": 18, + "intelligence": 12, + "wisdom": 14, + "charisma": 14, + "passive": 18, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+7", + "wis": "+5", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Barbed Hide", + "body": [ + "At the start of each of its turns, the barbed devil deals 5 ({@damage 1d10}) piercing damage to any creature grappling it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the devil's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The devil has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Flame", + "body": [ + "{@atk rs} {@hit 5} to hit, range 150 ft., one target. {@h}10 ({@damage 3d6}) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Barbed Devil-MM", + "__dataclass__": "Monster" + }, + { + "name": "Barlgura", + "source": "MM", + "page": 56, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 7, + "wisdom": 14, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Reckless", + "body": [ + "At the start of its turn, the barlgura can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Running Leap", + "body": [ + "The barlgura's long jump is up to 40 feet and its high jump is up to 20 feet when it has a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The barlgura makes three attacks: one with its bite and two with its fists." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The barlgura's spellcasting ability is Wisdom (spell save {@dc 13}). The barlgura can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell entangle}", + "{@spell phantasmal force}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell disguise self}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Barlgura-MM", + "__dataclass__": "Monster" + }, + { + "name": "Basilisk", + "source": "MM", + "page": 24, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 8, + "constitution": 15, + "intelligence": 2, + "wisdom": 8, + "charisma": 7, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Petrifying Gaze", + "body": [ + "If a creature starts its turn within 30 feet of the basilisk and the two of them can see each other, the basilisk can force the creature to make a {@dc 12} Constitution saving throw if the basilisk isn't {@condition incapacitated}. On a failed save, the creature magically begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic.", + "A creature that isn't {@status surprised} can avert its eyes to avoid the saving throw at the start of its turn. If it does so, it can't see the basilisk until the start of its next turn, when it can avert its eyes again. If it looks at the basilisk in the meantime, it must immediately make the save.", + "If the basilisk sees its reflection within 30 feet of it in bright light, it mistakes itself for a rival and targets itself with its gaze." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "PSZ" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Basilisk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bat", + "source": "MM", + "page": 318, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 15, + "constitution": 8, + "intelligence": 2, + "wisdom": 12, + "charisma": 4, + "passive": 11, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Echolocation", + "body": [ + "The bat can't use its blindsight while {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing", + "body": [ + "The bat has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bearded Devil", + "source": "MM", + "page": 70, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 15, + "constitution": 15, + "intelligence": 9, + "wisdom": 11, + "charisma": 11, + "passive": 10, + "saves": { + "str": "+5", + "con": "+4", + "wis": "+2" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the devil's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The devil has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steadfast", + "body": [ + "The devil can't be {@condition frightened} while it can see an allied creature within 30 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devil makes two attacks: one with its beard and one with its glaive." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beard", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a {@dc 12} Constitution saving throw or lose 5 ({@dice 1d10}) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 ({@damage 1d10}). Any creature can take an action to stanch the wound with a successful {@dc 12} Wisdom ({@skill Medicine}) check. The wound also closes if the target receives magical healing." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Bearded Devil-MM", + "__dataclass__": "Monster" + }, + { + "name": "Behir", + "source": "MM", + "page": 25, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 23, + "dexterity": 16, + "constitution": 18, + "intelligence": 7, + "wisdom": 14, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 90 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The behir makes two attacks: one with its bite and one to constrict." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one Large or smaller creature. {@h}17 ({@damage 2d10 + 6}) bludgeoning damage plus 17 ({@damage 2d10 + 6}) slashing damage. The target is {@condition grappled} (escape {@dc 16}) if the behir isn't already constricting a creature, and the target is {@condition restrained} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the behir, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.", + "If the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a {@dc 14} Constitution saving throw at the end of that turn or regurgitate the creature, which falls {@condition prone} in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Behir-MM", + "__dataclass__": "Monster" + }, + { + "name": "Beholder", + "source": "MM", + "page": 28, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "19d10 + 76", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 10, + "dexterity": 14, + "constitution": 18, + "intelligence": 17, + "wisdom": 15, + "charisma": 17, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+7", + "cha": "+8" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Antimagic Cone", + "body": [ + "The beholder's central eye creates an area of antimagic, as in the {@spell antimagic field} spell, in a 150-foot cone. At the start of each of its turns, the beholder decides which way the cone faces and whether the cone is active. The area works against the beholder's own eye rays." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The beholder shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "title": "1. Charm Ray", + "body": [ + "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or be {@condition charmed} by the beholder for 1 hour, or until the beholder harms the creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Paralyzing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 16} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Fear Ray", + "body": [ + "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Slowing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 16} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn, not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "5. Enervation Ray", + "body": [ + "The targeted creature must make a {@dc 16} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "6. Telekinetic Ray", + "body": [ + "If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or the beholder moves it up to 30 feet in any direction. It is {@condition restrained} by the ray's telekinetic grip until the start of the beholder's next turn or until the beholder is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is moved up to 30 feet in any direction. The beholder can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ], + "__dataclass__": "Entry" + }, + { + "title": "7. Sleep Ray", + "body": [ + "The targeted creature must succeed on a {@dc 16} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on constructs and undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "8. Petrification Ray", + "body": [ + "The targeted creature must make a {@dc 16} Dexterity saving throw. On a failed save, the creature begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "9. Disintegration Ray", + "body": [ + "If the target is a creature, it must succeed on a {@dc 16} Dexterity saving throw or take 45 ({@damage 10d8}) force damage. If this damage reduces the creature to 0 hit points, its body becomes a pile of fine gray dust.", + "If the target is a Large or smaller nonmagical object or creation of magical force, it is disintegrated without a saving throw. If the target is a Huge or larger object or creation of magical force, this ray disintegrates a 10-foot cube of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "10. Death Ray", + "body": [ + "The targeted creature must succeed on a {@dc 16} Dexterity saving throw or take 55 ({@damage 10d10}) necrotic damage. The target dies if the ray reduces it to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Eye Ray", + "body": [ + "The beholder uses one random eye ray." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Beholder-MM", + "__dataclass__": "Monster" + }, + { + "name": "Beholder Zombie", + "source": "MM", + "page": 316, + "size_str": "Large", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 8, + "constitution": 16, + "intelligence": 3, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "saves": { + "wis": "+2" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Deep Speech and Undercommon but can't speak" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Ray", + "body": [ + "The zombie uses a random magical eye ray, choosing a target that it can see within 60 feet of it.", + { + "title": "1. Paralyzing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Fear Ray", + "body": [ + "The targeted creature must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Enervation Ray", + "body": [ + "The targeted creature must make a {@dc 14} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Disintegration Ray", + "body": [ + "If the target is a creature, it must succeed on a {@dc 14} Dexterity saving throw or take 45 ({@damage 10d8}) force damage. If this damage reduces the creature to 0 hit points, its body becomes a pile of fine gray dust.", + "If the target is a Large or smaller nonmagical object or creation of magical force, it is disintegrated without a saving throw. If the target is a Huge or larger nonmagical object or creation of magical force, this ray disintegrates a 10-foot cube of it." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Beholder Zombie-MM", + "__dataclass__": "Monster" + }, + { + "name": "Berserker", + "source": "MM", + "page": 344, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Chaotic Alignment", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 12, + "constitution": 17, + "intelligence": 9, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Reckless", + "body": [ + "At the start of its turn, the berserker can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d12 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Berserker-MM", + "__dataclass__": "Monster" + }, + { + "name": "Black Bear", + "source": "MM", + "page": 318, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bear makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Black Bear-MM", + "__dataclass__": "Monster" + }, + { + "name": "Black Dragon Wyrmling", + "source": "MM", + "page": 88, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 14, + "constitution": 13, + "intelligence": 10, + "wisdom": 11, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge 5}", + "body": [ + "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a {@dc 11} Dexterity saving throw, taking 22 ({@damage 5d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Black Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Black Pudding", + "source": "MM", + "page": 241, + "size_str": "Large", + "maintype": "ooze", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 7 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 5, + "constitution": 16, + "intelligence": 1, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The pudding can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrosive Form", + "body": [ + "A creature that touches the pudding or hits it with a melee attack while within 5 feet of it takes 4 ({@damage 1d8}) acid damage. Any nonmagical weapon made of metal or wood that hits the pudding corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition made of metal or wood that hits the pudding is destroyed after dealing damage. The pudding can eat through 2-inch-thick, nonmagical wood or metal in 1 round." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The pudding can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 18 ({@damage 4d8}) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Split", + "body": [ + "When a pudding that is Medium or larger is subjected to lightning or slashing damage, it splits into two new puddings if it has at least 10 hit points. Each new pudding has hit points equal to half the original pudding's, rounded down. New puddings are one size smaller than the original pudding." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Black Pudding-MM", + "__dataclass__": "Monster" + }, + { + "name": "Blink Dog", + "source": "MM", + "page": 318, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 17, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Blink Dog", + "understands Sylvan but can't speak it" + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The dog has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport {@recharge 4}", + "body": [ + "The dog magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. Before or after teleporting, the dog can make one bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blink Dog-MM", + "__dataclass__": "Monster" + }, + { + "name": "Blood Hawk", + "source": "MM", + "page": 319, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 6, + "dexterity": 14, + "constitution": 10, + "intelligence": 3, + "wisdom": 14, + "charisma": 5, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The hawk has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The hawk has advantage on an attack roll against a creature if at least one of the hawk's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "CM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blood Hawk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Blue Dragon Wyrmling", + "source": "MM", + "page": 91, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 15, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 10, + "constitution": 15, + "intelligence": 12, + "wisdom": 11, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+4" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 3 ({@damage 1d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 12} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MOT" + }, + { + "source": "DoSI" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blue Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Blue Slaad", + "source": "MM", + "page": 276, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 20, + "dexterity": 15, + "constitution": 18, + "intelligence": 7, + "wisdom": 7, + "charisma": 9, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The slaad makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a humanoid, it must succeed on a {@dc 15} Constitution saving throw or be infected with a disease called chaos phage. While infected, the target can't regain hit points, and its hit point maximum is reduced by 10 ({@dice 3d6}) every 24 hours. If the disease reduces the target's hit point maximum to 0, the target instantly transforms into a {@creature red slaad} or, if it has the ability to cast spells of 3rd level or higher, a {@creature green slaad}. Only a {@spell wish} spell can reverse the transformation." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blue Slaad-MM", + "__dataclass__": "Monster" + }, + { + "name": "Boar", + "source": "MM", + "page": 319, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 11, + "constitution": 12, + "intelligence": 2, + "wisdom": 9, + "charisma": 5, + "passive": 9, + "traits": [ + { + "title": "Charge", + "body": [ + "If the boar moves at least 20 feet straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 3 ({@damage 1d6}) slashing damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Relentless (Recharges after a Short or Long Rest)", + "body": [ + "If the boar takes 7 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tusk", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boar-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bone Devil", + "source": "MM", + "page": 71, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 16, + "constitution": 18, + "intelligence": 13, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the devil's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The devil has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devil makes three attacks: two with its claws and one with its sting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 17 ({@damage 5d6}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Bone Devil-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bone Naga (Guardian)", + "source": "MM", + "page": 233, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 15, + "dexterity": 16, + "constitution": 12, + "intelligence": 15, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus one other language" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The naga is a 5th-level spellcaster (spell save {@dc 12}, {@hit 4} to hit with spell attacks) that needs only verbal components to cast its spells. Its spellcasting ability is Wisdom, and it has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell bestow curse}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bone Naga (Guardian)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bone Naga (Spirit)", + "source": "MM", + "page": 233, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 15, + "dexterity": 16, + "constitution": 12, + "intelligence": 15, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus one other language" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The naga is a 5th-level spellcaster (spell save {@dc 12}, {@hit 4} to hit with spell attacks) that needs only verbal components to cast its spells. Its spellcasting ability is Intelligence, and it has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "DSotDQ" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bone Naga (Spirit)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Brass Dragon Wyrmling", + "source": "MM", + "page": 106, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 15, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 10, + "constitution": 13, + "intelligence": 10, + "wisdom": 11, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 20-foot line that is 5 feet wide. Each creature in that line must make a {@dc 11} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleep Breath", + "body": [ + "The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 11} Constitution saving throw or fall {@condition unconscious} for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Brass Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bronze Dragon Wyrmling", + "source": "MM", + "page": 109, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 10, + "constitution": 15, + "intelligence": 12, + "wisdom": 11, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+4" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Lightning Breath", + "body": [ + "The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a {@dc 12} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repulsion Breath", + "body": [ + "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 12} Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DoSI" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bronze Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Brown Bear", + "source": "MM", + "page": 319, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 34, + "formula": "4d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 19, + "dexterity": 10, + "constitution": 16, + "intelligence": 2, + "wisdom": 13, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bear makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Brown Bear-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bugbear", + "source": "MM", + "page": 33, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "{@item hide armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 14, + "constitution": 13, + "intelligence": 8, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Surprise Attack", + "body": [ + "If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 ({@damage 2d6}) damage from the attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage in melee or 5 ({@damage 1d6 + 2}) piercing damage at range." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Bugbear-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bugbear Chief", + "source": "MM", + "page": 33, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 14, + "constitution": 14, + "intelligence": 11, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when the bugbear hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Surprise Attack", + "body": [ + "If the bugbear surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 7 ({@damage 2d6}) damage from the attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heart of Hruggek", + "body": [ + "The bugbear has advantage on saving throws against being {@condition charmed}, {@condition frightened}, {@condition paralyzed}, {@condition poisoned}, {@condition stunned}, or put to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bugbear makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 2d6 + 3}) piercing damage in melee or 5 ({@damage 1d6 + 3}) piercing damage at range." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "CRCotN" + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Bugbear Chief-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bulette", + "source": "MM", + "page": 34, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 11, + "constitution": 21, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Standing Leap", + "body": [ + "The bulette's long jump is up to 30 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}30 ({@damage 4d12 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deadly Leap", + "body": [ + "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a {@dc 16} Strength or Dexterity saving throw (target's choice) or be knocked {@condition prone} and take 14 ({@damage 3d6 + 4}) bludgeoning damage plus 14 ({@damage 3d6 + 4}) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked {@condition prone}, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls {@condition prone} in the bulette's space." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bulette-MM", + "__dataclass__": "Monster" + }, + { + "name": "Bullywug", + "source": "MM", + "page": 35, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item hide armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 12, + "constitution": 13, + "intelligence": 7, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Bullywug" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The bullywug can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Frogs and Toads", + "body": [ + "The bullywug can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swamp Camouflage", + "body": [ + "The bullywug has advantage on Dexterity ({@skill Stealth}) checks made to hide in swampy terrain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The bullywug's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bullywug makes two melee attacks: one with its bite and one with its spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + } + ], + "subtype": "bullywug", + "actions_note": "", + "mythic": null, + "key": "Bullywug-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cambion", + "source": "MM", + "page": 36, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Any Evil Alignment", + "ac": [ + { + "value": 19, + "note": "{@item scale mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 18, + "constitution": 16, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+6", + "int": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Fiendish Blessing", + "body": [ + "The AC of the cambion includes its Charisma bonus." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cambion makes two melee attacks or uses its Fire Ray twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Ray", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiendish Charm", + "body": [ + "One humanoid the cambion can see within 30 feet of it must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys the cambion's spoken commands. If the target suffers any harm from the cambion or another creature or receives a suicidal command from the cambion, the target can repeat the saving throw, ending the effect on itself on a success. If a target's saving throw is successful, or if the effect ends for it, the creature is immune to the cambion's Fiendish Charm for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The cambion's spellcasting ability is Charisma (spell save {@dc 14}). The cambion can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell alter self}", + "{@spell command}", + "{@spell detect magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cambion-MM", + "__dataclass__": "Monster" + }, + { + "name": "Camel", + "source": "MM", + "page": 320, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 16, + "dexterity": 8, + "constitution": 14, + "intelligence": 2, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Camel-MM", + "__dataclass__": "Monster" + }, + { + "name": "Carrion Crawler", + "source": "MM", + "page": 37, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 13, + "constitution": 16, + "intelligence": 1, + "wisdom": 12, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The carrion crawler has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The carrion crawler can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The carrion crawler makes two attacks: one with its tentacles and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}4 ({@damage 1d4 + 2}) poison damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 minute. Until this poison ends, the target is {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the poison on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Carrion Crawler-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cat", + "source": "MM", + "page": 320, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 3, + "dexterity": 15, + "constitution": 10, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The cat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cave Bear", + "source": "MM", + "page": 334, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 20, + "dexterity": 10, + "constitution": 16, + "intelligence": 2, + "wisdom": 13, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bear makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cave Bear-MM", + "__dataclass__": "Monster" + }, + { + "name": "Centaur", + "source": "MM", + "page": 38, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 9, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the centaur moves at least 30 feet straight toward a target and then hits it with a pike attack on the same turn, the target takes an extra 10 ({@damage 3d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "MOT" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Centaur-MM", + "__dataclass__": "Monster" + }, + { + "name": "Chain Devil", + "source": "MM", + "page": 72, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 15, + "constitution": 18, + "intelligence": 11, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "saves": { + "con": "+7", + "wis": "+4", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the devil's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The devil has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devil makes two attacks with its chains." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. The target is {@condition grappled} (escape {@dc 14}) if the devil isn't already grappling a creature. Until this grapple ends, the target is {@condition restrained} and takes 7 ({@damage 2d6}) piercing damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Animate Chains (Recharges after a Short or Long Rest)", + "body": [ + "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.", + "Each animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is {@condition incapacitated} or dies." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unnerving Mask", + "body": [ + "When a creature the devil can see starts its turn within 30 feet of the devil, the devil can create the illusion that it looks like one of the creature's departed loved ones or bitter enemies. If the creature can see the devil, it must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} until the end of its turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Chain Devil-MM", + "__dataclass__": "Monster" + }, + { + "name": "Chasme", + "source": "MM", + "page": 57, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d10 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 15, + "dexterity": 15, + "constitution": 12, + "intelligence": 11, + "wisdom": 14, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Drone", + "body": [ + "The chasme produces a horrid droning sound to which demons are immune. Any other creature that starts its turn with in 30 feet of the chasme must succeed on a {@dc 12} Constitution saving throw or fall {@condition unconscious} for 10 minutes. A creature that can't hear the drone automatically succeeds on the save. The effect on the creature ends if it takes damage or if another creature takes an action to splash it with holy water. If a creature's saving throw is successful or the effect ends for it, it is immune to the drone for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The chasme has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The chasme can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Proboscis", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}16 ({@damage 4d6 + 2}) piercing damage plus 24 ({@damage 7d6}) necrotic damage, and the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. If this effect reduces a creature's hit point maximum to 0, the creature dies. This reduction to a creature's hit point maximum lasts until the creature finishes a long rest or until it is affected by a spell like {@spell greater restoration}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Chasme-MM", + "__dataclass__": "Monster" + }, + { + "name": "Chimera", + "source": "MM", + "page": 39, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 11, + "constitution": 19, + "intelligence": 3, + "wisdom": 14, + "charisma": 10, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horns", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 31 ({@damage 7d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chimera-MM", + "__dataclass__": "Monster" + }, + { + "name": "Chuul", + "source": "MM", + "page": 40, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 10, + "constitution": 16, + "intelligence": 5, + "wisdom": 11, + "charisma": 5, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Deep Speech but can't speak" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The chuul can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sense Magic", + "body": [ + "The chuul senses magic within 120 feet of it at will. This trait otherwise works like the {@spell detect magic} spell but isn't itself magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pincer", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. The target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature and the chuul doesn't have two other creatures {@condition grappled}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "One creature {@condition grappled} by the chuul must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 minute. Until this poison ends, the target is {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chuul-MM", + "__dataclass__": "Monster" + }, + { + "name": "Clay Golem", + "source": "MM", + "page": 168, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 9, + "constitution": 18, + "intelligence": 3, + "wisdom": 8, + "charisma": 1, + "passive": 9, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Acid Absorption", + "body": [ + "Whenever the golem is subjected to acid damage, it takes no damage and instead regains a number of hit points equal to the acid damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Berserk", + "body": [ + "Whenever the golem starts its turn with 60 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the {@spell greater restoration} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Haste {@recharge 5}", + "body": [ + "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clay Golem-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cloaker", + "source": "MM", + "page": 41, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 17, + "dexterity": 15, + "constitution": 12, + "intelligence": 13, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Damage Transfer", + "body": [ + "While attached to a creature, the cloaker takes only half the damage dealt to it (rounded down). and that creature takes the other half." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the cloaker remains motionless without its underside exposed, it is indistinguishable from a dark leather cloak." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Sensitivity", + "body": [ + "While in bright light, the cloaker has disadvantage on attack rolls and Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cloaker makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is {@condition blinded} and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a {@dc 16} Strength check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moan", + "body": [ + "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phantasms (Recharges after a Short or Long Rest)", + "body": [ + "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.", + "Whenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.", + "A duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cloaker-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cloud Giant", + "source": "MM", + "page": 154, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Good (50%) or Neutral Evil (50%)", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 27, + "dexterity": 10, + "constitution": 22, + "intelligence": 12, + "wisdom": 16, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+7", + "cha": "+7" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The giant has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two morningstar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The giant's innate spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell control weather}", + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cloud Giant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cockatrice", + "source": "MM", + "page": 42, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 6, + "dexterity": 12, + "constitution": 12, + "intelligence": 2, + "wisdom": 13, + "charisma": 5, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw against being magically {@condition petrified}. On a failed save, the creature begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "MOT" + }, + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cockatrice-MM", + "__dataclass__": "Monster" + }, + { + "name": "Commoner", + "source": "MM", + "page": 345, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Commoner-MM", + "__dataclass__": "Monster" + }, + { + "name": "Constrictor Snake", + "source": "MM", + "page": 320, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d10 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 14, + "constitution": 12, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "senses": [ + "blindsight 10 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the creature is {@condition restrained}, and the snake can't constrict another target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Constrictor Snake-MM", + "__dataclass__": "Monster" + }, + { + "name": "Copper Dragon Wyrmling", + "source": "MM", + "page": 111, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 14, + "wisdom": 11, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Acid Breath", + "body": [ + "The dragon exhales acid in a 20-foot line that is 5 feet wide. Each creature in that line must make a {@dc 11} Dexterity saving throw, taking 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slowing Breath", + "body": [ + "The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 11} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Copper Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Couatl", + "source": "MM", + "page": 43, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 20, + "constitution": 17, + "intelligence": 18, + "wisdom": 20, + "charisma": 18, + "passive": 15, + "saves": { + "con": "+5", + "wis": "+7", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Weapons", + "body": [ + "The couatl's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shielded Mind", + "body": [ + "The couatl is immune to scrying and to any effect that would sense its emotions, read its thoughts, or detect its location." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 24 hours. Until this poison ends, the target is {@condition unconscious}. Another creature can use an action to shake the target awake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one Medium or smaller creature. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the couatl can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).", + "In a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The couatl's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring only verbal components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell bless}", + "{@spell create food and water}", + "{@spell cure wounds}", + "{@spell lesser restoration}", + "{@spell protection from poison}", + "{@spell sanctuary}", + "{@spell shield}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dream}", + "{@spell greater restoration}", + "{@spell scrying}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "PSX" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Couatl-MM", + "__dataclass__": "Monster" + }, + { + "name": "Crab", + "source": "MM", + "page": 320, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 11, + "constitution": 10, + "intelligence": 1, + "wisdom": 8, + "charisma": 2, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The crab can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Crab-MM", + "__dataclass__": "Monster" + }, + { + "name": "Crawling Claw", + "source": "MM", + "page": 44, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 13, + "dexterity": 14, + "constitution": 11, + "intelligence": 5, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Turn Immunity", + "body": [ + "The claw is immune to effects that turn undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning or slashing damage (claw's choice)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Crawling Claw-MM", + "__dataclass__": "Monster" + }, + { + "name": "Crocodile", + "source": "MM", + "page": 320, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 10, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The crocodile can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the crocodile can't bite another target" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Crocodile-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cult Fanatic", + "source": "MM", + "page": 345, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "The fanatic has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fanatic makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The fanatic is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The fanatic has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Cult Fanatic-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cultist", + "source": "MM", + "page": 345, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 10, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "The cultist has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Cultist-MM", + "__dataclass__": "Monster" + }, + { + "name": "Cyclops", + "source": "MM", + "page": 45, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 22, + "dexterity": 11, + "constitution": 20, + "intelligence": 8, + "wisdom": 6, + "charisma": 10, + "passive": 8, + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Poor Depth Perception", + "body": [ + "The cyclops has disadvantage on any attack roll against a target more than 30 feet away." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cyclops makes two greatclub attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 30/120 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cyclops-MM", + "__dataclass__": "Monster" + }, + { + "name": "Dao", + "source": "MM", + "page": 143, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "15d10 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 23, + "dexterity": 12, + "constitution": 24, + "intelligence": 12, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "saves": { + "int": "+5", + "wis": "+5", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "Earth Glide", + "body": [ + "The dao can burrow through nonmagical, unworked earth and stone. While doing so, the dao doesn't disturb the material it moves through." + ], + "__dataclass__": "Entry" + }, + { + "title": "Elemental Demise", + "body": [ + "If the dao dies, its body disintegrates into crystalline powder, leaving behind only equipment the dao was wearing or carrying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The dao has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Dao makes two fist attacks or two maul attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}20 ({@damage 4d6 + 6}) bludgeoning damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 18} Strength check or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dao's innate spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell stone shape}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell passwall}", + "{@spell move earth}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell conjure elemental} ({@creature earth elemental} only)", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell phantasmal killer}", + "{@spell plane shift}", + "{@spell wall of stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dao-MM", + "__dataclass__": "Monster" + }, + { + "name": "Darkmantle", + "source": "MM", + "page": 46, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 12, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Echolocation", + "body": [ + "The darkmantle can't use its blindsight while {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the darkmantle remains motionless, it is indistinguishable from a cave formation such as a stalactite or stalagmite." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Crush", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also {@condition blinded} and unable to breathe while the darkmantle is attached in this way.", + "While attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.", + "A creature can detach the darkmantle by making a successful {@dc 13} Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement." + ], + "__dataclass__": "Entry" + }, + { + "title": "Darkness Aura (1/Day)", + "body": [ + "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains {@status concentration}, up to 10 minutes (as if {@status concentration||concentrating} on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Darkmantle-MM", + "__dataclass__": "Monster" + }, + { + "name": "Death Dog", + "source": "MM", + "page": 321, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 14, + "constitution": 14, + "intelligence": 3, + "wisdom": 13, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Two-Headed", + "body": [ + "The dog has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dog makes two bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw against disease or become {@condition poisoned} until the disease is cured. Every 24 hours that elapse, the creature must repeat the saving throw, reducing its hit point maximum by 5 ({@dice 1d10}) on a failure. This reduction lasts until the disease is cured. The creature dies if the disease reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "MOT" + }, + { + "source": "LoX" + }, + { + "source": "AATM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Death Dog-MM", + "__dataclass__": "Monster" + }, + { + "name": "Death Knight", + "source": "MM", + "page": 47, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "19d8 + 95", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 20, + "dexterity": 11, + "constitution": 20, + "intelligence": 12, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "saves": { + "dex": "+6", + "wis": "+9", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The death knight has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Marshal Undead", + "body": [ + "Unless the death knight is {@condition incapacitated}, it and undead creatures of its choice within 60 feet of it have advantage on saving throws against features that turn undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The death knight makes three longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage if used with two hands, plus 18 ({@damage 4d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellfire Orb (1/Day)", + "body": [ + "The death knight hurls a magical ball of fire that explodes at a point it can see within 120 feet of it. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 18} Dexterity saving throw. The sphere spreads around corners. A creature takes 35 ({@damage 10d6}) fire damage and 35 ({@damage 10d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The death knight adds 6 to its AC against one melee attack that would hit it. To do so, the death knight must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The death knight is a 19th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It has the following paladin spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell compelled duel}", + "{@spell searing smite}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell magic weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell elemental weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell staggering smite}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell destructive wave} (necrotic)" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Death Knight-MM", + "__dataclass__": "Monster" + }, + { + "name": "Death Slaad", + "source": "MM", + "page": 278, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 20, + "dexterity": 15, + "constitution": 19, + "intelligence": 15, + "wisdom": 10, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The slaad can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The slaad's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The slaad makes three attacks: one with its bite and two with its claws or greatsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Slaad Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws (Slaad Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The slaad's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The slaad can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell invisibility} (self only)", + "{@spell mage hand}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fear}", + "{@spell fireball}", + "{@spell fly}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell cloudkill}", + "{@spell plane shift}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "VEoR" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Death Slaad-MM", + "__dataclass__": "Monster" + }, + { + "name": "Death Tyrant", + "source": "MM", + "page": 29, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "25d10 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 10, + "dexterity": 14, + "constitution": 14, + "intelligence": 19, + "wisdom": 15, + "charisma": 19, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+5", + "con": "+7", + "int": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Negative Energy Cone", + "body": [ + "The death tyrant's central eye emits an {@condition invisible}, magical 150-foot cone of negative energy. At the start of each of its turns, the tyrant decides which way the cone faces and whether the cone is active.", + "Any creature in that area can't regain hit points. Any humanoid that dies there becomes a {@creature zombie} under the tyrant's command. The dead humanoid retains its place in the initiative order and animates at the start of its next turn, provided that its body hasn't been completely destroyed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The death tyrant shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "title": "1. Charm Ray", + "body": [ + "The targeted creature must succeed on a {@dc 17} Wisdom saving throw or be {@condition charmed} by the death tyrant for 1 hour, or until the death tyrant harms the creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Paralyzing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Fear Ray", + "body": [ + "The targeted creature must succeed on a {@dc 17} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Slowing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 17} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn, not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "5. Enervation Ray", + "body": [ + "The targeted creature must make a {@dc 17} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "6. Telekinetic Ray", + "body": [ + "If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or the death tyrant moves it up to 30 feet in any direction. It is {@condition restrained} by the ray's telekinetic grip until the start of the death tyrant's next turn or until the death tyrant is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is moved up to 30 feet in any direction. The death tyrant can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ], + "__dataclass__": "Entry" + }, + { + "title": "7. Sleep Ray", + "body": [ + "The targeted creature must succeed on a {@dc 17} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on constructs and undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "8. Petrification Ray", + "body": [ + "The targeted creature must make a {@dc 17} Dexterity saving throw. On a failed save, the creature begins to turn to stone and is {@condition restrained}. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "9. Disintegration Ray", + "body": [ + "If the target is a creature, it must succeed on a {@dc 17} Dexterity saving throw or take 45 ({@damage 10d8}) force damage. If this damage reduces the creature to 0 hit points, its body becomes a pile of fine gray dust.", + "If the target is a Large or smaller nonmagical object or creation of magical force, it is disintegrated without a saving throw. If the target is a Huge or larger object or creation of magical force, this ray disintegrates a 10-foot cube of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "10. Death Ray", + "body": [ + "The targeted creature must succeed on a {@dc 17} Dexterity saving throw or take 55 ({@damage 10d10}) necrotic damage. The target dies if the ray reduces it to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Eye Ray", + "body": [ + "The death tyrant uses one random eye ray." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Death Tyrant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Deep Gnome (Svirfneblin)", + "source": "MM", + "page": 164, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 14, + "constitution": 14, + "intelligence": 12, + "wisdom": 10, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Gnomish", + "Terran", + "Undercommon" + ], + "traits": [ + { + "title": "Stone Camouflage", + "body": [ + "The gnome has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gnome Cunning", + "body": [ + "The gnome has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisoned Dart", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success" + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The gnome's innate spellcasting ability is Intelligence (spell save {@dc 11}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell nondetection} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blindness/deafness}", + "{@spell blur}", + "{@spell disguise self}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": "gnome", + "actions_note": "", + "mythic": null, + "key": "Deep Gnome (Svirfneblin)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Deer", + "source": "MM", + "page": 321, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 11, + "dexterity": 16, + "constitution": 11, + "intelligence": 2, + "wisdom": 14, + "charisma": 5, + "passive": 12, + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "DIP" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deer-MM", + "__dataclass__": "Monster" + }, + { + "name": "Demilich", + "source": "MM", + "page": 48, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 80, + "formula": "32d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 1, + "dexterity": 20, + "constitution": 10, + "intelligence": 20, + "wisdom": 17, + "charisma": 20, + "passive": 13, + "saves": { + "con": "+6", + "int": "+11", + "wis": "+9", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from magic weapons", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "traits": [ + { + "title": "Avoidance", + "body": [ + "If the demilich is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the demilich fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Immunity", + "body": [ + "The demilich is immune to effects that turn undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Howl {@recharge 5}", + "body": [ + "The demilich emits a bloodcurdling howl. Each creature within 30 feet of the demilich that can hear the howl must succeed on a {@dc 15} Constitution saving throw or drop to 0 hit points. On a successful save, the creature is {@condition frightened} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "The demilich targets up to three creatures that it can see within 10 feet of it. Each target must succeed on a {@dc 19} Constitution saving throw or take 21 ({@damage 6d6}) necrotic damage, and the demilich regains hit points equal to the total damage dealt to all targets." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Flight", + "body": [ + "The demilich flies up to half its flying speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cloud of Dust", + "body": [ + "The demilich magically swirls its dusty remains. Each creature within 10 feet of the demilich, including around a corner, must succeed on a {@dc 15} Constitution saving throw or be {@condition blinded} until the end of the demilich's next turn. A creature that succeeds on the saving throw is immune to this effect until the end of the demilich's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Energy Drain (Costs 2 Actions)", + "body": [ + "Each creature with in 30 feet of the demilich must make a {@dc 15} Constitution saving throw. On a failed save, the creature's hit point maximum is magically reduced by 10 ({@dice 3d6}). If a creature's hit point maximum is reduced to 0 by this effect, the creature dies. A creature's hit point maximum can be restored with the {@spell greater restoration} spell or similar magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vile Curse (Costs 3 Actions)", + "body": [ + "The demilich targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 15} Wisdom saving throw or be magically cursed. Until the curse ends, the target has disadvantage on attack rolls and saving throws. The target can repeat the saving throw at the end of each of its turns, ending the curse on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Demilich-MM", + "__dataclass__": "Monster" + }, + { + "name": "Deva", + "source": "MM", + "page": 16, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 17, + "wisdom": 20, + "charisma": 20, + "passive": 19, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+9", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Angelic Weapons", + "body": [ + "The deva's weapon attacks are magical. When the deva hits with any weapon, the weapon deals an extra {@damage 4d8} radiant damage (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The deva has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deva makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing Touch (3/Day)", + "body": [ + "The deva touches another creature. The target magically regains 20 ({@dice 4d8 + 2}) hit points and is freed from any curse, disease, poison, blindness, or deafness." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).", + "In a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The deva's spellcasting ability is Charisma (spell save {@dc 17}). The deva can innately cast the following spells, requiring only verbal components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell commune}", + "{@spell raise dead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deva-MM", + "__dataclass__": "Monster" + }, + { + "name": "Dire Wolf", + "source": "MM", + "page": 321, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d10 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 15, + "constitution": 15, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dire Wolf-MM", + "__dataclass__": "Monster" + }, + { + "name": "Displacer Beast", + "source": "MM", + "page": 81, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 6, + "wisdom": 12, + "charisma": 8, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Avoidance", + "body": [ + "If the displacer beast is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Displacement", + "body": [ + "The displacer beast projects a magical illusion that makes it appear to be standing near its actual location, causing attack rolls against it to have disadvantage. If it is hit by an attack, this trait is disrupted until the end of its next turn. This trait is also disrupted while the displacer beast is {@condition incapacitated} or has a speed of 0." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The displacer beast makes two attacks with its tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 3 ({@damage 1d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Displacer Beast-MM", + "__dataclass__": "Monster" + }, + { + "name": "Djinni", + "source": "MM", + "page": 144, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "14d10 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 21, + "dexterity": 15, + "constitution": 22, + "intelligence": 15, + "wisdom": 16, + "charisma": 20, + "passive": 13, + "saves": { + "dex": "+6", + "wis": "+7", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Auran" + ], + "traits": [ + { + "title": "Elemental Demise", + "body": [ + "If the djinni dies, its body disintegrates into a warm breeze, leaving behind only equipment the djinni was wearing or carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The djinni makes three scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 3 ({@damage 1d6}) lightning or thunder damage (djinni's choice)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Whirlwind", + "body": [ + "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains {@status concentration} (as if {@status concentration||concentrating} on a spell). Any creature but the djinni that enters the whirlwind must succeed on a {@dc 18} Strength saving throw or be {@condition restrained} by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures {@condition restrained} by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.", + "A creature can use its action to free a creature {@condition restrained} by the whirlwind, including itself, by succeeding on a {@dc 18} Strength check. If the check succeeds, the creature is no longer {@condition restrained} and moves to the nearest space outside the whirlwind." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The djinni's innate spellcasting ability is Charisma (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell create food and water} (can create wine instead of water)", + "{@spell tongues}", + "{@spell wind walk}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell conjure elemental} ({@creature air elemental} only)", + "{@spell creation}", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell plane shift}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Djinni-MM", + "__dataclass__": "Monster" + }, + { + "name": "Doppelganger", + "source": "MM", + "page": 82, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ambusher", + "body": [ + "In the first round of a combat, the doppelganger has advantage on attack rolls against any creature it {@status surprised}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Surprise Attack", + "body": [ + "If the doppelganger surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 ({@damage 3d6}) damage from the attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The doppelganger makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Read Thoughts", + "body": [ + "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's {@status concentration} isn't broken (as if {@status concentration||concentrating} on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom ({@skill Insight}) and Charisma ({@skill Deception}, {@skill Intimidation}, and {@skill Persuasion}) checks against the target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Doppelganger-MM", + "__dataclass__": "Monster" + }, + { + "name": "Draft Horse", + "source": "MM", + "page": 321, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 12, + "intelligence": 2, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Draft Horse-MM", + "__dataclass__": "Monster" + }, + { + "name": "Dragon Turtle", + "source": "MM", + "page": 119, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 341, + "formula": "22d20 + 110", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 25, + "dexterity": 10, + "constitution": 20, + "intelligence": 10, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "saves": { + "dex": "+6", + "con": "+11", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Aquan", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon turtle can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}26 ({@damage 3d12 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d8 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}26 ({@damage 3d12 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steam Breath {@recharge 5}", + "body": [ + "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 52 ({@damage 15d6}) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dragon Turtle-MM", + "__dataclass__": "Monster" + }, + { + "name": "Dretch", + "source": "MM", + "page": 57, + "size_str": "Small", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 11, + "dexterity": 11, + "constitution": 12, + "intelligence": 5, + "wisdom": 8, + "charisma": 3, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "telepathy 60 ft. (works only with creatures that understand Abyssal)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dretch makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fetid Cloud (1/Day)", + "body": [ + "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} until the start of its next turn. While {@condition poisoned} in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Dretch-MM", + "__dataclass__": "Monster" + }, + { + "name": "Drider", + "source": "MM", + "page": 120, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 16, + "constitution": 18, + "intelligence": 13, + "wisdom": 14, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drider has advantage on saving throws against being {@condition charmed}, and magic can't put the drider to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The drider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drider has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The drider ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d4}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drider's innate spellcasting ability is Wisdom (spell save {@dc 13}). The drider can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "CRCotN" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Drider-MM", + "__dataclass__": "Monster" + }, + { + "name": "Drow", + "source": "MM", + "page": 128, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 11, + "wisdom": 11, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 11}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow-MM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Elite Warrior", + "source": "MM", + "page": 128, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 13, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 13, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+5", + "wis": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The drow adds 3 to its AC against one melee attack that would hit it. To do so, the drow must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Elite Warrior-MM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Mage", + "source": "MM", + "page": 129, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 9, + "dexterity": 14, + "constitution": 10, + "intelligence": 17, + "wisdom": 13, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands, plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Demon (1/Day)", + "body": [ + "The drow magically summons a {@creature quasit}, or attempts to summon a {@creature shadow demon} with a {@chance 50|50 percent|50% summoning chance} chance of success. The summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The drow is a 10th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The drow has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell alter self}", + "{@spell misty step}", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Evard's black tentacles}", + "{@spell greater invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cloudkill}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Mage-MM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Priestess of Lolth", + "source": "MM", + "page": 129, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 13, + "wisdom": 17, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+6", + "cha": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes two scourge attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scourge", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 17 ({@damage 5d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Demon (1/Day)", + "body": [ + "The drow attempts to magically summon a {@creature yochlol} with a {@chance 30|30 percent|30% summoning chance} chance of success. If the attempt fails, the drow takes 5 ({@damage 1d10}) psychic damage. Otherwise, the summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 15}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The drow is a 10th-level spellcaster. Her spellcasting ability is Wisdom (save {@dc 14}, {@hit 6} to hit with spell attacks). The drow has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell poison spray}", + "{@spell resistance}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell cure wounds}", + "{@spell detect poison and disease}", + "{@spell ray of sickness}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell protection from poison}", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell conjure animals} (2 {@creature giant spider|mm|giant spiders})", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell freedom of movement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell insect plague}", + "{@spell mass cure wounds}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Priestess of Lolth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Druid", + "source": "MM", + "page": 346, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Druidic plus any two languages" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, 4 ({@damage 1d8}) bludgeoning damage if wielded with two hands, or 6 ({@damage 1d8 + 2}) bludgeoning damage with {@spell shillelagh}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The druid is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Druid-MM", + "__dataclass__": "Monster" + }, + { + "name": "Dryad", + "source": "MM", + "page": 121, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 12, + "constitution": 11, + "intelligence": 14, + "wisdom": 15, + "charisma": 18, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The dryad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Beasts and Plants", + "body": [ + "The dryad can communicate with beasts and plants as if they shared a language." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tree Stride", + "body": [ + "Once on her turn, the dryad can use 10 feet of her movement to step magically into one living tree within her reach and emerge from a second living tree within 60 feet of the first tree, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be large or bigger." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit ({@hit 6} to hit with shillelagh), reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage with shillelagh." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Charm", + "body": [ + "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed}. The {@condition charmed} creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.", + "Each time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.", + "The dryad can have no more than one humanoid and up to three beasts {@condition charmed} at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dryad's innate spellcasting ability is Charisma (spell save {@dc 14}). The dryad can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell entangle}", + "{@spell goodberry}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell barkskin}", + "{@spell pass without trace}", + "{@spell shillelagh}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dryad-MM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar", + "source": "MM", + "page": 122, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar-MM", + "__dataclass__": "Monster" + }, + { + "name": "Duodrone", + "source": "MM", + "page": 225, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 11, + "dexterity": 13, + "constitution": 12, + "intelligence": 6, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron" + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The duodrone can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the duodrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duodrone makes two fist attacks or two javelin attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Duodrone-MM", + "__dataclass__": "Monster" + }, + { + "name": "Dust Mephit", + "source": "MM", + "page": 215, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 5, + "dexterity": 14, + "constitution": 10, + "intelligence": 9, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "Terran" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the mephit dies, it explodes in a burst of dust. Each creature within 5 feet of it must then succeed on a {@dc 10} Constitution saving throw or be {@condition blinded} for 1 minute. A {@condition blinded} creature can repeat the saving throw on each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Breath {@recharge}", + "body": [ + "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (1/Day)", + "body": [ + "The mephit can innately cast {@spell sleep}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dust Mephit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Eagle", + "source": "MM", + "page": 322, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 6, + "dexterity": 15, + "constitution": 10, + "intelligence": 2, + "wisdom": 14, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The eagle has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CM" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eagle-MM", + "__dataclass__": "Monster" + }, + { + "name": "Earth Elemental", + "source": "MM", + "page": 124, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "12d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 8, + "constitution": 20, + "intelligence": 5, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "Earth Glide", + "body": [ + "The elemental can burrow through nonmagical, unworked earth and stone. While doing so, the elemental doesn't disturb the material it moves through." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The elemental deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elemental makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Earth Elemental-MM", + "__dataclass__": "Monster" + }, + { + "name": "Efreeti", + "source": "MM", + "page": 145, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 22, + "dexterity": 12, + "constitution": 24, + "intelligence": 16, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Ignan" + ], + "traits": [ + { + "title": "Elemental Demise", + "body": [ + "If the efreeti dies, its body disintegrates in a flash of fire and puff of smoke, leaving behind only equipment the efreeti was wearing or carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The efreeti makes two scimitar attacks or uses its Hurl Flame twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Flame", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}17 ({@damage 5d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The efreeti's innate spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell conjure elemental} ({@creature fire elemental} only)", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell plane shift}", + "{@spell wall of fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Efreeti-MM", + "__dataclass__": "Monster" + }, + { + "name": "Elephant", + "source": "MM", + "page": 322, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 22, + "dexterity": 9, + "constitution": 17, + "intelligence": 3, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "traits": [ + { + "title": "Trampling Charge", + "body": [ + "If the elephant moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the elephant can make one stomp attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d8 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one {@condition prone} creature. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elephant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Elk", + "source": "MM", + "page": 322, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d10 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 16, + "dexterity": 10, + "constitution": 12, + "intelligence": 2, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "traits": [ + { + "title": "Charge", + "body": [ + "If the elk moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one {@condition prone} creature. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Empyrean", + "source": "MM", + "page": 130, + "size_str": "Huge", + "maintype": "celestial", + "alignment": "Chaotic Good (75%) or Neutral Evil (25%)", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 313, + "formula": "19d12 + 190", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 30, + "dexterity": 21, + "constitution": 30, + "intelligence": 21, + "wisdom": 22, + "charisma": 27, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+17", + "int": "+12", + "wis": "+13", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the empyrean fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The empyrean has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The empyrean's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}31 ({@damage 6d6 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or be {@condition stunned} until the end of the empyrean's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt", + "body": [ + "{@atk rs} {@hit 15} to hit, range 600 ft., one target. {@h}24 ({@damage 7d6}) damage of one of the following types (empyrean's choice): acid, cold, fire, force, lightning, radiant, or thunder." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The empyrean makes one attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolster", + "body": [ + "The empyrean bolsters all nonhostile creatures within 120 feet of it until the end of its next turn. Bolstered creatures can't be {@condition charmed} or {@condition frightened}, and they gain advantage on ability checks and saving throws until the end of the empyrean's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trembling Strike (Costs 2 Actions)", + "body": [ + "The empyrean strikes the ground with its maul, triggering an earth tremor. All other creatures on the ground within 60 feet of the empyrean must succeed on a {@dc 25} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The empyrean's innate spellcasting ability is Charisma (spell save {@dc 23}, {@hit 15} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell greater restoration}", + "{@spell pass without trace}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell commune}", + "{@spell dispel evil and good}", + "{@spell earthquake}", + "{@spell fire storm}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Empyrean-MM", + "__dataclass__": "Monster" + }, + { + "name": "Erinyes", + "source": "MM", + "page": 73, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 18, + "dexterity": 16, + "constitution": 18, + "intelligence": 14, + "wisdom": 14, + "charisma": 18, + "passive": 12, + "saves": { + "dex": "+7", + "con": "+8", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Hellish Weapons", + "body": [ + "The erinyes's weapon attacks are magical and deal an extra 13 ({@damage 3d8}) poison damage on a hit (included in the attacks)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The erinyes has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The erinyes makes three attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands, plus 13 ({@damage 3d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 13 ({@damage 3d8}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned}. The poison lasts until it is removed by the {@spell lesser restoration} spell or similar magic." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The erinyes adds 4 to its AC against one melee attack that would hit it. To do so, the erinyes must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Erinyes-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ettercap", + "source": "MM", + "page": 131, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 15, + "constitution": 13, + "intelligence": 7, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The ettercap can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the ettercap knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The ettercap ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ettercap makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 4 ({@damage 1d8}) poison damage. The target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web {@recharge 5}", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/60 ft., one Large or smaller creature. {@h}The creature is {@condition restrained} by webbing. As an action, the {@condition restrained} creature can make a {@dc 11} Strength check, escaping from the webbing on a success. The effect ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, is vulnerable to fire damage and immune to bludgeoning, poison and psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ettercap-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ettin", + "source": "MM", + "page": 132, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 21, + "dexterity": 8, + "constitution": 17, + "intelligence": 6, + "wisdom": 10, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant", + "Orc" + ], + "traits": [ + { + "title": "Two Heads", + "body": [ + "The ettin has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wakeful", + "body": [ + "When one of the ettin's heads is asleep, its other head is awake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ettin makes two attacks: one with its battleaxe and one with its morningstar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ettin-MM", + "__dataclass__": "Monster" + }, + { + "name": "Faerie Dragon (Blue)", + "source": "MM", + "page": 133, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "The Colors of Age", + "body": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ], + "__dataclass__": "Entry" + }, + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell major image}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Faerie Dragon (Blue)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Faerie Dragon (Green)", + "source": "MM", + "page": 133, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "The Colors of Age", + "body": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ], + "__dataclass__": "Entry" + }, + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Faerie Dragon (Green)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Faerie Dragon (Indigo)", + "source": "MM", + "page": 133, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "The Colors of Age", + "body": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ], + "__dataclass__": "Entry" + }, + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell hallucinatory terrain}", + "{@spell mage hand}", + "{@spell major image}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Faerie Dragon (Indigo)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Faerie Dragon (Orange)", + "source": "MM", + "page": 133, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "The Colors of Age", + "body": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ], + "__dataclass__": "Entry" + }, + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Faerie Dragon (Orange)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Faerie Dragon (Red)", + "source": "MM", + "page": 133, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "The Colors of Age", + "body": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ], + "__dataclass__": "Entry" + }, + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CM" + }, + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Faerie Dragon (Red)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Faerie Dragon (Violet)", + "source": "MM", + "page": 133, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "The Colors of Age", + "body": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ], + "__dataclass__": "Entry" + }, + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell hallucinatory terrain}", + "{@spell mage hand}", + "{@spell major image}", + "{@spell minor illusion}", + "{@spell mirror image}", + "{@spell polymorph}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Faerie Dragon (Violet)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Faerie Dragon (Yellow)", + "source": "MM", + "page": 133, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "The Colors of Age", + "body": [ + "A faerie dragon's scales change hue as it ages, moving through all the colors of the rainbow. All faerie dragons have innate spellcasting ability, gaining new spells as they mature.", + "Red\u20145 years or less", + "Orange\u20146\u201310 years", + "Yellow\u201411\u201320 years", + "Green\u201421\u201330 years", + "Blue\u201431\u201340 years", + "Indigo\u201441\u201350 years", + "Violet\u201451 years or more", + "A green or older faerie dragon's CR increases to 2." + ], + "__dataclass__": "Entry" + }, + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, the dragon can magically turn {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the dragon wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, the dragon can magically communicate with any other faerie dragon within 60 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The faerie dragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "The dragon exhales a puff of euphoria gas at one creature within 5 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + "1\u20134. The target takes no action or bonus action and uses all of its movement to move in a random direction.", + "5\u20136. The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dragon's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell color spray}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell mirror image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Faerie Dragon (Yellow)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Fire Elemental", + "source": "MM", + "page": 125, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 17, + "constitution": 16, + "intelligence": 6, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ignan" + ], + "traits": [ + { + "title": "Fire Form", + "body": [ + "The elemental can move through a space as narrow as 1 inch wide without squeezing. A creature that touches the elemental or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage. In addition, the elemental can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage and catches fire; until someone takes an action to douse the fire, the creature takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The elemental sheds bright light in a 30-foot radius and dim light in an additional 30 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Susceptibility", + "body": [ + "For every 5 feet the elemental moves in water, or for every gallon of water splashed on it, it takes 1 cold damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elemental makes two touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Touch", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fire Elemental-MM", + "__dataclass__": "Monster" + }, + { + "name": "Fire Giant", + "source": "MM", + "page": 154, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "13d12 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 25, + "dexterity": 9, + "constitution": 23, + "intelligence": 10, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+10", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "GotSF" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fire Giant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Fire Snake", + "source": "MM", + "page": 265, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 14, + "constitution": 11, + "intelligence": 7, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Ignan but can't speak" + ], + "traits": [ + { + "title": "Heated Body", + "body": [ + "A creature that touches the snake or hits it with a melee attack while within 5 feet of it takes 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The snake makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fire Snake-MM", + "__dataclass__": "Monster" + }, + { + "name": "Flameskull", + "source": "MM", + "page": 134, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d4 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 1, + "dexterity": 17, + "constitution": 14, + "intelligence": 16, + "wisdom": 10, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "The flameskull sheds either dim light in a 15-foot radius, or bright light in a 15-foot radius and dim light for an additional 15 feet. It can switch between the options as an action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The flameskull has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If the flameskull is destroyed, it regains all its hit points in 1 hour unless holy water is sprinkled on its remains or a {@spell dispel magic} or {@spell remove curse} spell is cast on them." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The flameskull uses Fire Ray twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Ray", + "body": [ + "{@atk rs} {@hit 5} to hit, range 30 ft., one target. {@h}10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The flameskull is a 5th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It requires no somatic or material components to cast its spells. The flameskull has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell blur}", + "{@spell flaming sphere}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flameskull-MM", + "__dataclass__": "Monster" + }, + { + "name": "Flesh Golem", + "source": "MM", + "page": 169, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 9, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Berserk", + "body": [ + "Whenever the golem starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the golem goes berserk. On each of its turns while berserk, the golem attacks the nearest creature it can see. If no creature is near enough to move to and attack, the golem attacks an object, with preference for an object smaller than itself. Once the golem goes berserk, it continues to do so until it is destroyed or regains all its hit points.", + "The golem's creator, if within 60 feet of the berserk golem, can try to calm it by speaking firmly and persuasively. The golem must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the golem ceases being berserk. If it takes damage while still at 40 hit points or fewer, the golem might go berserk again." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion of Fire", + "body": [ + "If the golem takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Absorption", + "body": [ + "Whenever the golem is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flesh Golem-MM", + "__dataclass__": "Monster" + }, + { + "name": "Flumph", + "source": "MM", + "page": 135, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 6, + "dexterity": 15, + "constitution": 10, + "intelligence": 14, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Undercommon but can't speak", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Advanced Telepathy", + "body": [ + "The flumph can perceive the content of any telepathic communication used within 60 feet of it, and it can't be {@status surprised} by creatures with any form of telepathy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Prone Deficiency", + "body": [ + "If the flumph is knocked {@condition prone}, roll a die. On an odd result, the flumph lands upside-down and is {@condition incapacitated}. At the end of each of its turns, the flumph can make a {@dc 10} Dexterity saving throw, righting itself and ending the {@condition incapacitated} condition if it succeeds." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Shroud", + "body": [ + "The flumph is immune to any effect that would sense its emotions or read its thoughts, as well as all divination spells." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tendrils", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 2 ({@damage 1d4}) acid damage. At the end of each of its turns, the target must make a {@dc 10} Constitution saving throw, taking 2 ({@damage 1d4}) acid damage on a failure or ending the recurring acid damage on a success. A {@spell lesser restoration} spell cast on the target also ends the recurring acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench Spray (1/Day)", + "body": [ + "Each creature in a 15-foot cone originating from the flumph must succeed on a {@dc 10} Dexterity saving throw or be coated in a foul-smelling liquid. A coated creature exudes a horrible stench for {@dice 1d4} hours. The coated creature is {@condition poisoned} as long as the stench lasts, and other creatures are {@condition poisoned} while with in 5 feet of the coated creature. A creature can remove the stench on itself by using a short rest to bathe in water, alcohol, or vinegar." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flumph-MM", + "__dataclass__": "Monster" + }, + { + "name": "Flying Snake", + "source": "MM", + "page": 322, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "2d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 4, + "dexterity": 18, + "constitution": 11, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The snake doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}1 piercing damage plus 7 ({@damage 3d4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flying Snake-MM", + "__dataclass__": "Monster" + }, + { + "name": "Flying Sword", + "source": "MM", + "page": 20, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 15, + "constitution": 11, + "intelligence": 1, + "wisdom": 5, + "charisma": 1, + "passive": 7, + "saves": { + "dex": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The sword is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the sword must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the sword remains motionless and isn't flying, it is indistinguishable from a normal sword." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flying Sword-MM", + "__dataclass__": "Monster" + }, + { + "name": "Fomorian", + "source": "MM", + "page": 136, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 149, + "formula": "13d12 + 65", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 23, + "dexterity": 10, + "constitution": 20, + "intelligence": 9, + "wisdom": 14, + "charisma": 6, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant", + "Undercommon" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fomorian attacks twice with its greatclub or makes one greatclub attack and uses Evil Eye once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evil Eye", + "body": [ + "The fomorian magically forces a creature it can see within 60 feet of it to make a {@dc 14} Charisma saving throw. The creature takes 27 ({@damage 6d8}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Curse of the Evil Eye (Recharges after a Short or Long Rest)", + "body": [ + "With a stare, the fomorian uses Evil Eye, but on a failed save, the creature is also cursed with magical deformities. While deformed, the creature has its speed halved and has disadvantage on ability checks, saving throws, and attacks based on Strength or Dexterity.", + "The transformed creature can repeat the saving throw whenever it finishes a long rest, ending the effect on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fomorian-MM", + "__dataclass__": "Monster" + }, + { + "name": "Frog", + "source": "MM", + "page": 322, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 13, + "constitution": 8, + "intelligence": 1, + "wisdom": 8, + "charisma": 3, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The frog can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The frog's long jump is up to 10 feet and its high jump is up to 5 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "CoS" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frog-MM", + "__dataclass__": "Monster" + }, + { + "name": "Frost Giant", + "source": "MM", + "page": 155, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "patchwork armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 23, + "dexterity": 9, + "constitution": 21, + "intelligence": 9, + "wisdom": 10, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+3", + "cha": "+4" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two greataxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Giant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Galeb Duhr", + "source": "MM", + "page": 139, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "9d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "note": "(30 ft. when rolling, 60 ft. rolling downhill)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 14, + "constitution": 20, + "intelligence": 11, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the galeb duhr remains motionless, it is indistinguishable from a normal boulder." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rolling Charge", + "body": [ + "If the galeb duhr rolls at least 20 feet straight toward a target and then hits it with a slam attack on the same turn, the target takes an extra 7 ({@damage 2d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Animate Boulders (1/Day)", + "body": [ + "The galeb duhr magically animates up to two boulders it can see within 60 feet of it. A boulder has statistics like those of a galeb duhr, except it has Intelligence 1 and Charisma 1, it can't be {@condition charmed} or {@condition frightened}, and it lacks this action option. A boulder remains animated as long as the galeb duhr maintains {@status concentration}, up to 1 minute (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Galeb Duhr-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gargoyle", + "source": "MM", + "page": 140, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 11, + "constitution": 16, + "intelligence": 6, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gargoyle makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gargoyle-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gas Spore", + "source": "MM", + "page": 138, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 5 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d10 - 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 10, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 5, + "dexterity": 1, + "constitution": 3, + "intelligence": 1, + "wisdom": 1, + "charisma": 1, + "passive": 5, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "The gas spore explodes when it drops to 0 hit points. Each creature within 20 feet of it must succeed on a {@dc 15} Constitution saving throw or take 10 ({@damage 3d6}) poison damage and become infected with a disease on a failed save. Creatures immune to the {@condition poisoned} condition are immune to this disease.", + "Spores invade an infected creature's system, killing the creature in a number of hours equal to {@dice 1d12} + the creature's Constitution score, unless the disease is removed. In half that time, the creature becomes {@condition poisoned} for the rest of the duration. After the creature dies, it sprouts {@dice 2d4} Tiny gas spores that grow to full size in 7 days." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eerie Resemblance", + "body": [ + "The gas spore resembles a beholder. A creature that can see the gas spore can discern its true nature with a successful {@dc 15} Intelligence ({@skill Nature}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Touch", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one creature. {@h}1 poison damage, and the creature must succeed on a {@dc 10} Constitution saving throw or become infected with the disease described in the Death Burst trait." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gas Spore-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gelatinous Cube", + "source": "MM", + "page": 242, + "size_str": "Large", + "maintype": "ooze", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 6 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 3, + "constitution": 20, + "intelligence": 1, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Ooze Cube", + "body": [ + "The cube takes up its entire space. Other creatures can enter the space, but a creature that does so is subjected to the cube's Engulf and has disadvantage on the saving throw.", + "Creatures inside the cube can be seen but have {@quickref Cover||3||total cover}.", + "A creature within 5 feet of the cube can take an action to pull a creature or object out of the cube. Doing so requires a successful {@dc 12} Strength check, and the creature making the attempt takes 10 ({@damage 3d6}) acid damage.", + "The cube can hold only one Large creature or up to four Medium or smaller creatures inside it at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Transparent", + "body": [ + "Even when the cube is in plain sight, it takes a successful {@dc 15} Wisdom ({@skill Perception}) check to spot a cube that has neither moved nor attacked. A creature that tries to enter the cube's space while unaware of the cube is {@status surprised} by the cube." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Engulf", + "body": [ + "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a {@dc 12} Dexterity saving throw.", + "On a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.", + "On a failed save, the cube enters the creature's space, and the creature takes 10 ({@damage 3d6}) acid damage and is engulfed. The engulfed creature can't breathe, is {@condition restrained}, and takes 21 ({@damage 6d6}) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.", + "An engulfed creature can try to escape by taking an action to make a {@dc 12} Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gelatinous Cube-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ghast", + "source": "MM", + "page": 148, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 17, + "constitution": 10, + "intelligence": 11, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Stench", + "body": [ + "Any creature that starts its turn within 5 feet of the ghast must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} until the start of its next turn. On a successful saving throw, the creature is immune to the ghast's Stench for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Defiance", + "body": [ + "The ghast and any ghouls within 30 feet of it have advantage on saving throws against effects that turn undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage. If the target is a creature other than an undead, it must succeed on a {@dc 10} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ghast-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ghost", + "source": "MM", + "page": 147, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 7, + "dexterity": 13, + "constitution": 10, + "intelligence": 10, + "wisdom": 12, + "charisma": 17, + "passive": 11, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any languages it knew in life" + ], + "traits": [ + { + "title": "Ethereal Sight", + "body": [ + "The ghost can see 60 feet into the Ethereal Plane when it is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The ghost can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Withering Touch", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrifying Visage", + "body": [ + "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If the save fails by 5 or more, the target also ages {@dice 1d4 \u00d7 10} years. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the {@condition frightened} condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a {@spell greater restoration} spell, but only within 24 hours of it occurring." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One humanoid that the ghost can see within 5 feet of it must succeed on a {@dc 13} Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is {@condition incapacitated} and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the {@spell dispel evil and good} spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ghost-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ghoul", + "source": "MM", + "page": 148, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 15, + "constitution": 10, + "intelligence": 7, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a {@dc 10} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "DIP" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ghoul-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Ape", + "source": "MM", + "page": 323, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 23, + "dexterity": 14, + "constitution": 18, + "intelligence": 7, + "wisdom": 12, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ape makes two fist attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 50/100 ft., one target. {@h}30 ({@damage 7d6 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "GHLoE" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Ape-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Badger", + "source": "MM", + "page": 323, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 10, + "constitution": 15, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The badger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The badger makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Badger-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Bat", + "source": "MM", + "page": 323, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 16, + "constitution": 11, + "intelligence": 2, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Echolocation", + "body": [ + "The bat can't use its blindsight while {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing", + "body": [ + "The bat has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "PSX" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Bat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Boar", + "source": "MM", + "page": 323, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 10, + "constitution": 16, + "intelligence": 2, + "wisdom": 7, + "charisma": 5, + "passive": 8, + "traits": [ + { + "title": "Charge", + "body": [ + "If the boar moves at least 20 feet straight toward a target and then hits it with a tusk attack on the same turn, the target takes an extra 7 ({@damage 2d6}) slashing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Relentless (Recharges after a Short or Long Rest)", + "body": [ + "If the boar takes 10 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tusk", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Boar-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Centipede", + "source": "MM", + "page": 323, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d6 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 5, + "dexterity": 14, + "constitution": 12, + "intelligence": 1, + "wisdom": 7, + "charisma": 3, + "passive": 8, + "senses": [ + "blindsight 30 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or take 10 ({@damage 3d6}) poison damage. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Centipede-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Constrictor Snake", + "source": "MM", + "page": 324, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d12 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 14, + "constitution": 12, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 10 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the creature is {@condition restrained}, and the snake can't constrict another target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Constrictor Snake-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Crab", + "source": "MM", + "page": 324, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 13, + "dexterity": 15, + "constitution": 11, + "intelligence": 1, + "wisdom": 9, + "charisma": 3, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The crab can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 11}). The crab has two claws, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Crab-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Crocodile", + "source": "MM", + "page": 324, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "9d12 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 21, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The crocodile can hold its breath for 30 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The crocodile makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d10 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}, and the crocodile can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target not {@condition grappled} by the crocodile. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Crocodile-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Eagle", + "source": "MM", + "page": 324, + "size_str": "Large", + "maintype": "beast", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 17, + "constitution": 13, + "intelligence": 8, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Giant Eagle", + "understands Common and Auran but can't speak them" + ], + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The eagle has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eagle makes two attacks: one with its beak and one with its talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Eagle-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Elk", + "source": "MM", + "page": 325, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d12 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 16, + "constitution": 14, + "intelligence": 7, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Giant Elk", + "understands Common, Elvish, Sylvan but can't speak them" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the elk moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one {@condition prone} creature. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Elk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Fire Beetle", + "source": "MM", + "page": 325, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d6 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 10, + "constitution": 12, + "intelligence": 1, + "wisdom": 7, + "charisma": 3, + "passive": 8, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "The beetle sheds bright light in a 10-foot radius and dim light for an additional 10 ft.." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "PSX" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Fire Beetle-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Frog", + "source": "MM", + "page": 325, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 13, + "constitution": 11, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The frog can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The frog's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the target is {@condition restrained}, and the frog can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The frog makes one bite attack against a Small or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the frog, and it takes 5 ({@damage 2d4}) acid damage at the start of each of the frog's turns. The frog can have only one target swallowed at a time. If the frog dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "PSA" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Frog-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Goat", + "source": "MM", + "page": 326, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 17, + "dexterity": 11, + "constitution": 12, + "intelligence": 3, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "traits": [ + { + "title": "Charge", + "body": [ + "If the goat moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 5 ({@damage 2d4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "SLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CoS" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Goat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Hyena", + "source": "MM", + "page": 326, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 2, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Rampage", + "body": [ + "When the hyena reduces a creature to 0 hit points with a melee attack on its turn, the hyena can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Hyena-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Lizard", + "source": "MM", + "page": 326, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSA" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Lizard-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Octopus", + "source": "MM", + "page": 326, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 13, + "constitution": 13, + "intelligence": 4, + "wisdom": 10, + "charisma": 4, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "While out of water, the octopus can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Underwater Camouflage", + "body": [ + "The octopus has advantage on Dexterity ({@skill Stealth}) checks made while underwater." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The octopus can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage. If the target is a creature, it is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}, and the octopus can't use its tentacles on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ink Cloud (Recharges after a Short or Long Rest)", + "body": [ + "A 20-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Octopus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Owl", + "source": "MM", + "page": 327, + "size_str": "Large", + "maintype": "beast", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 13, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant Owl", + "understands Common, Elvish, and Sylvan but can't speak them" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Sight", + "body": [ + "The owl has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Owl-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Poisonous Snake", + "source": "MM", + "page": 327, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 18, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 10 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Poisonous Snake-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Rat", + "source": "MM", + "page": 327, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 7, + "dexterity": 15, + "constitution": 11, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The rat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The rat has advantage on an attack roll against a creature if at least one of the rat's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Rat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Scorpion", + "source": "MM", + "page": 327, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 13, + "constitution": 15, + "intelligence": 1, + "wisdom": 9, + "charisma": 3, + "passive": 9, + "senses": [ + "blindsight 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scorpion makes three attacks: two with its claws and one with its sting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}). The scorpion has two claws, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target must make a {@dc 12} Constitution saving throw, taking 22 ({@damage 4d10}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSA" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Scorpion-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Sea Horse", + "source": "MM", + "page": 328, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 15, + "constitution": 11, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "traits": [ + { + "title": "Charge", + "body": [ + "If the sea horse moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The sea horse can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "JttRC" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Sea Horse-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Shark", + "source": "MM", + "page": 328, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 23, + "dexterity": 11, + "constitution": 21, + "intelligence": 1, + "wisdom": 10, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The shark can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "LR" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSX" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Shark-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Spider", + "source": "MM", + "page": 328, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 16, + "constitution": 12, + "intelligence": 2, + "wisdom": 11, + "charisma": 4, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The spider ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 9 ({@damage 2d8}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web {@recharge 5}", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one creature. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 12} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSX" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Spider-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Toad", + "source": "MM", + "page": 329, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 13, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The toad can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The toad's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 5 ({@damage 1d10}) poison damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, and the toad can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The toad makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the toad, and it takes 10 ({@damage 3d6}) acid damage at the start of each of the toad's turns. The toad can have only one target swallowed at a time.", + "If the toad dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Toad-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Vulture", + "source": "MM", + "page": 329, + "size_str": "Large", + "maintype": "beast", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 10, + "constitution": 15, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Keen Sight and Smell", + "body": [ + "The vulture has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vulture makes two attacks: one with its beak and one with its talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Vulture-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Wasp", + "source": "MM", + "page": 329, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "actions": [ + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Wasp-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Weasel", + "source": "MM", + "page": 329, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 16, + "constitution": 10, + "intelligence": 4, + "wisdom": 12, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The weasel has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Weasel-MM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Wolf Spider", + "source": "MM", + "page": 330, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 16, + "constitution": 13, + "intelligence": 3, + "wisdom": 12, + "charisma": 4, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The spider ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 7 ({@damage 2d6}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "PSX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Wolf Spider-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gibbering Mouther", + "source": "MM", + "page": 157, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 10, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 8, + "constitution": 16, + "intelligence": 3, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Aberrant Ground", + "body": [ + "The ground in a 10-foot radius around the mouther is doughlike {@quickref difficult terrain||3}. Each creature that starts its turn in that area must succeed on a {@dc 10} Strength saving throw or have its speed reduced to 0 until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gibbering", + "body": [ + "The mouther babbles incoherently while it can see any creature and isn't {@condition incapacitated}. Each creature that starts its turn within 20 feet of the mouther and can hear the gibbering must succeed on a {@dc 10} Wisdom saving throw. On a failure, the creature can't take reactions until the start of its next turn and rolls a {@dice d8} to determine what it does during its turn. On a 1 to 4, the creature does nothing. On a 5 or 6, the creature takes no action or bonus action and uses all its movement to move in a randomly determined direction. On a 7 or 8, the creature makes a melee attack against a randomly determined creature within its reach or does nothing if it can't make such an attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}17 ({@damage 5d6}) piercing damage. If the target is Medium or smaller, it must succeed on a {@dc 10} Strength saving throw or be knocked {@condition prone}. If the target is killed by this damage, it is absorbed into the mouther." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Spittle {@recharge 5}", + "body": [ + "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a {@dc 13} Dexterity saving throw or be {@condition blinded} until the end of the mouther's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gibbering Mouther-MM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Knight", + "source": "MM", + "page": 160, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 16, + "dexterity": 14, + "constitution": 15, + "intelligence": 14, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "saves": { + "con": "+5", + "int": "+5", + "wis": "+5" + }, + "languages": [ + "Gith" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes two silver greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 10 ({@damage 3d6}) psychic damage. This is a magic weapon attack. On a critical hit against a target in an astral body (as with the {@spell astral projection} spell), the githyanki can cut the silvery cord that tethers the target to its material body, instead of dealing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Knight-MM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Warrior", + "source": "MM", + "page": 160, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 14, + "constitution": 12, + "intelligence": 13, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "saves": { + "con": "+3", + "int": "+3", + "wis": "+3" + }, + "languages": [ + "Gith" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage plus 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githyanki's innate spellcasting ability is Intelligence. It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Warrior-MM", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Monk", + "source": "MM", + "page": 161, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 15, + "constitution": 12, + "intelligence": 13, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+3", + "dex": "+4", + "int": "+3", + "wis": "+4" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes two unarmed strikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) psychic damage. This is a magic weapon attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githzerai's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Monk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Zerth", + "source": "MM", + "page": 161, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 13, + "dexterity": 18, + "constitution": 15, + "intelligence": 16, + "wisdom": 17, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "dex": "+7", + "int": "+6", + "wis": "+6" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes two unarmed strikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) psychic damage. This is a magic weapon attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githzerai's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell phantasmal killer}", + "{@spell plane shift}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Zerth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Glabrezu", + "source": "MM", + "page": 58, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 15, + "constitution": 21, + "intelligence": 19, + "wisdom": 17, + "charisma": 16, + "passive": 13, + "saves": { + "str": "+9", + "con": "+9", + "wis": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The glabrezu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pincer", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 15}). The glabrezu has two pincers, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The glabrezu's spellcasting ability is Intelligence (spell save {@dc 16}). The glabrezu can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell fly}", + "{@spell power word stun}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Glabrezu-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gladiator", + "source": "MM", + "page": 346, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "dex": "+5", + "con": "+6" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "The gladiator has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when the gladiator hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gladiator makes three melee attacks or two ranged attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. and range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield Bash", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The gladiator adds 3 to its AC against one melee attack that would hit it. To do so, the gladiator must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Gladiator-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll", + "source": "MM", + "page": 163, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item hide armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 12, + "constitution": 11, + "intelligence": 6, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Gnoll" + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": "gnoll", + "actions_note": "", + "mythic": null, + "key": "Gnoll-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Fang of Yeenoghu", + "source": "MM", + "page": 163, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 15, + "constitution": 15, + "intelligence": 10, + "wisdom": 11, + "charisma": 13, + "passive": 10, + "saves": { + "con": "+4", + "wis": "+2", + "cha": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Gnoll" + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gnoll makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "subtype": "gnoll", + "actions_note": "", + "mythic": null, + "key": "Gnoll Fang of Yeenoghu-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Pack Lord", + "source": "MM", + "page": 163, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 8, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Gnoll" + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gnoll makes two attacks, either with its glaive or its longbow, and uses its Incite Rampage if it can." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incite Rampage {@recharge 5}", + "body": [ + "One creature the gnoll can see within 30 feet of it can use its reaction to make a melee attack if it can hear the gnoll and has the Rampage trait." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "subtype": "gnoll", + "actions_note": "", + "mythic": null, + "key": "Gnoll Pack Lord-MM", + "__dataclass__": "Monster" + }, + { + "name": "Goat", + "source": "MM", + "page": 330, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 12, + "dexterity": 10, + "constitution": 11, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "traits": [ + { + "title": "Charge", + "body": [ + "If the goat moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 2 ({@damage 1d4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 10} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The goat has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Goat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Goblin", + "source": "MM", + "page": 166, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 8, + "charisma": 8, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nimble Escape", + "body": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Goblin-MM", + "__dataclass__": "Monster" + }, + { + "name": "Goblin Boss", + "source": "MM", + "page": 166, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 8, + "charisma": 10, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nimble Escape", + "body": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The goblin makes two attacks with its scimitar. The second attack has disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Redirect Attack", + "body": [ + "When a creature the goblin can see targets it with an attack, the goblin chooses another goblin within 5 feet of it. The two goblins swap places, and the chosen goblin becomes the target instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Goblin Boss-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gold Dragon Wyrmling", + "source": "MM", + "page": 115, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 14, + "constitution": 17, + "intelligence": 14, + "wisdom": 11, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+5", + "wis": "+2", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weakening Breath", + "body": [ + "The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 13} 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gold Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gorgon", + "source": "MM", + "page": 171, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 11, + "constitution": 18, + "intelligence": 2, + "wisdom": 12, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Trampling Charge", + "body": [ + "If the gorgon moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the gorgon can make one attack with its hooves against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Breath {@recharge 5}", + "body": [ + "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw. On a failed save, a target begins to turn to stone and is {@condition restrained}. The {@condition restrained} target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "WBtW" + }, + { + "source": "LoX" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gorgon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Goristro", + "source": "MM", + "page": 59, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 310, + "formula": "23d12 + 161", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 25, + "dexterity": 11, + "constitution": 25, + "intelligence": 6, + "wisdom": 13, + "charisma": 14, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+13", + "dex": "+6", + "con": "+13", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the goristro moves at least 15 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 38 ({@damage 7d10}) piercing damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pushed up to 20 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Labyrinthine Recall", + "body": [ + "The goristro can perfectly recall any path it has traveled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The goristro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The goristro deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The goristro makes three attacks: two with its fists and one with its hoof." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hoof", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}45 ({@damage 7d10 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Goristro-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gray Ooze", + "source": "MM", + "page": 243, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 6, + "constitution": 16, + "intelligence": 1, + "wisdom": 6, + "charisma": 2, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The ooze can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrode Metal", + "body": [ + "Any nonmagical weapon made of metal that hits the ooze corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition made of metal that hits the ooze is destroyed after dealing damage.", + "The ooze can eat through 2-inch-thick, nonmagical metal in 1 round." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the ooze remains motionless, it is indistinguishable from an oily pool or wet rock." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gray Ooze-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gray Slaad", + "source": "MM", + "page": 277, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 17, + "dexterity": 17, + "constitution": 16, + "intelligence": 13, + "wisdom": 8, + "charisma": 14, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The slaad can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The slaad's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The slaad makes three attacks: one with its bite and two with its claws or greatsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Slaad Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws (Slaad Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The slaad's innate spellcasting ability is Charisma (spell save {@dc 14}). The slaad can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell invisibility} (self only)", + "{@spell mage hand}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell fear}", + "{@spell fly}", + "{@spell fireball}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Gray Slaad-MM", + "__dataclass__": "Monster" + }, + { + "name": "Green Dragon Wyrmling", + "source": "MM", + "page": 95, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 14, + "wisdom": 11, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+3", + "wis": "+2", + "cha": "+3" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Breath {@recharge 5}", + "body": [ + "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a {@dc 11} Constitution saving throw, taking 21 ({@damage 6d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Green Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Green Hag", + "source": "MM", + "page": 177, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 12, + "constitution": 16, + "intelligence": 13, + "wisdom": 14, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Sylvan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The hag can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mimicry", + "body": [ + "The hag can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illusory Appearance", + "body": [ + "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.", + "The changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a {@dc 20} Intelligence ({@skill Investigation}) check to discern that the hag is disguised." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisible Passage", + "body": [ + "The hag magically turns {@condition invisible} until she attacks or casts a spell, or until her {@status concentration} ends (as if {@status concentration||concentrating} on a spell). While {@condition invisible}, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is {@condition invisible} with her." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 12}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell minor illusion}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Green Hag-MM", + "__dataclass__": "Monster" + }, + { + "name": "Green Slaad", + "source": "MM", + "page": 277, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 11, + "wisdom": 8, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The slaad can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The slaad makes three attacks: one with its bite and two with its claws or staff. Alternatively, it uses its Hurl Flame twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Slaad Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Slaad Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Flame", + "body": [ + "{@atk rs} {@hit 4} to hit, range 60 ft., one target. {@h}10 ({@damage 3d6}) fire damage. The fire ignites flammable objects that aren't being worn or carried." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The slaad's innate spellcasting ability is Charisma (spell save {@dc 12}). The slaad can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fireball}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell fear}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Green Slaad-MM", + "__dataclass__": "Monster" + }, + { + "name": "Grell", + "source": "MM", + "page": 172, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 11, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "Grell" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The grell makes two attacks: one with its tentacles and one with its beak." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 minute. The {@condition poisoned} target is {@condition paralyzed}, and it can repeat the saving throw at the end of each of its turns, ending the effect on a success.", + "The target is also {@condition grappled} (escape {@dc 15}). If the target is Medium or smaller, it is also {@condition restrained} until this grapple ends. While grappling the target, the grell has advantage on attack rolls against it and can 't use this attack against other targets. When the grell moves, any Medium or smaller target it is grappling moves with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grell-MM", + "__dataclass__": "Monster" + }, + { + "name": "Grick", + "source": "MM", + "page": 173, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 14, + "constitution": 11, + "intelligence": 3, + "wisdom": 14, + "charisma": 5, + "passive": 12, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Stone Camouflage", + "body": [ + "The grick has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grick-MM", + "__dataclass__": "Monster" + }, + { + "name": "Grick Alpha", + "source": "MM", + "page": 173, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 16, + "constitution": 15, + "intelligence": 4, + "wisdom": 14, + "charisma": 9, + "passive": 12, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Stone Camouflage", + "body": [ + "The grick has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The grick makes two attacks: one with its tail and one with its tentacles. If it hits with its tentacles, the grick can make one beak attack against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grick Alpha-MM", + "__dataclass__": "Monster" + }, + { + "name": "Griffon", + "source": "MM", + "page": 174, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 2, + "wisdom": 13, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The griffon has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The griffon makes two attacks: one with its beak and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Griffon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Grimlock", + "source": "MM", + "page": 175, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 16, + "dexterity": 12, + "constitution": 12, + "intelligence": 9, + "wisdom": 8, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. or 10 ft. while deafened (blind beyond this radius)" + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Blind Senses", + "body": [ + "The grimlock can't use its blindsight while {@condition deafened} and unable to smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "The grimlock has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Camouflage", + "body": [ + "The grimlock has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spiked Bone Club", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "PaBTSO" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "grimlock", + "actions_note": "", + "mythic": null, + "key": "Grimlock-MM", + "__dataclass__": "Monster" + }, + { + "name": "Guard", + "source": "MM", + "page": 347, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Guard-MM", + "__dataclass__": "Monster" + }, + { + "name": "Guardian Naga", + "source": "MM", + "page": 234, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 18, + "constitution": 16, + "intelligence": 16, + "wisdom": 19, + "charisma": 18, + "passive": 14, + "saves": { + "dex": "+8", + "con": "+7", + "int": "+7", + "wis": "+8", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common" + ], + "traits": [ + { + "title": "Rejuvenation", + "body": [ + "If it dies, the naga returns to life in {@dice 1d6} days and regains all its hit points. Only a {@spell wish} spell can prevent this trait from functioning." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}8 ({@damage 1d8 + 4}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Poison", + "body": [ + "{@atk rw} {@hit 8} to hit, range 15/30 ft., one creature. {@h}The target must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The naga is an 11th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell clairvoyance}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell flame strike}", + "{@spell geas}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "AATM" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guardian Naga-MM", + "__dataclass__": "Monster" + }, + { + "name": "Gynosphinx", + "source": "MM", + "page": 282, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 18, + "wisdom": 18, + "charisma": 18, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Sphinx" + ], + "traits": [ + { + "title": "Inscrutable", + "body": [ + "The sphinx is immune to any effect that would sense its emotions or read its thoughts, as well as any divination spell that it refuses. Wisdom ({@skill Insight}) checks made to ascertain the sphinx's intentions or sincerity have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The sphinx's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sphinx makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw Attack", + "body": [ + "The sphinx makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport (Costs 2 Actions)", + "body": [ + "The sphinx magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 3 Actions)", + "body": [ + "The sphinx casts a spell from its list of prepared spells, using a spell slot as normal." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The sphinx is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It requires no material components to cast its spells. The sphinx has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell locate object}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell remove curse}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell greater invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell legend lore}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gynosphinx-MM", + "__dataclass__": "Monster" + }, + { + "name": "Half-Ogre (Ogrillon)", + "source": "MM", + "page": 238, + "size_str": "Large", + "maintype": "giant", + "alignment": "Any Chaotic Alignment", + "ac": [ + { + "value": 12, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 10, + "constitution": 14, + "intelligence": 7, + "wisdom": 9, + "charisma": 10, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Half-Ogre (Ogrillon)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Half-Red Dragon Veteran", + "source": "MM", + "page": 180, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 24 ({@damage 7d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "GoS" + }, + { + "source": "SLW" + }, + { + "source": "IMR" + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Half-Red Dragon Veteran-MM", + "__dataclass__": "Monster" + }, + { + "name": "Harpy", + "source": "MM", + "page": 181, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 13, + "constitution": 12, + "intelligence": 7, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The harpy makes two attacks: one with its claws and one with its club." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Luring Song", + "body": [ + "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a {@dc 11} Wisdom saving throw or be {@condition charmed} until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is {@condition incapacitated}.", + "While {@condition charmed} by the harpy, a target is {@condition incapacitated} and ignores the songs of other harpies. If the {@condition charmed} target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, a target can repeat the saving throw. A creature can also repeat the saving throw at the end of each of its turns. If a creature's saving throw is successful, the effect ends on it.", + "A target that successfully saves is immune to this harpy's song for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "DoSI" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harpy-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hawk", + "source": "MM", + "page": 330, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 5, + "dexterity": 16, + "constitution": 8, + "intelligence": 2, + "wisdom": 14, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The hawk has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hawk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hell Hound", + "source": "MM", + "page": 182, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 12, + "constitution": 14, + "intelligence": 6, + "wisdom": 13, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Infernal but can't speak it" + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The hound has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The hound has advantage on an attack roll against a creature if at least one of the hound's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The hound exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hell Hound-MM", + "__dataclass__": "Monster" + }, + { + "name": "Helmed Horror", + "source": "MM", + "page": 183, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The helmed horror has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Immunity", + "body": [ + "The helmed horror is immune to three spells chosen by its creator. Typical immunities include {@spell fireball}, {@spell heat metal}, and {@spell lightning bolt}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The helmed horror makes two longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Helmed Horror-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hezrou", + "source": "MM", + "page": 60, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 19, + "dexterity": 17, + "constitution": 20, + "intelligence": 5, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "saves": { + "str": "+7", + "con": "+8", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The hezrou has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench", + "body": [ + "Any creature that starts its turn within 10 feet of the hezrou must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of its next turn. On a successful saving throw, the creature is immune to the hezrou's stench for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hezrou makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Hezrou-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hill Giant", + "source": "MM", + "page": 155, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 21, + "dexterity": 8, + "constitution": 19, + "intelligence": 5, + "wisdom": 9, + "charisma": 6, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two greatclub attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hill Giant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hippogriff", + "source": "MM", + "page": 184, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 13, + "constitution": 13, + "intelligence": 2, + "wisdom": 12, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The hippogriff has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hippogriff makes two attacks: one with its beak and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hippogriff-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hobgoblin", + "source": "MM", + "page": 186, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Martial Advantage", + "body": [ + "Once per turn, the hobgoblin can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Hobgoblin-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hobgoblin Captain", + "source": "MM", + "page": 186, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 14, + "constitution": 14, + "intelligence": 12, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Martial Advantage", + "body": [ + "Once per turn, the hobgoblin can deal an extra 10 ({@damage 3d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hobgoblin makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leadership (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the hobgoblin can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand the hobgoblin. A creature can benefit from only one Leadership die at a time. This effect ends if the hobgoblin is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Hobgoblin Captain-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hobgoblin Warlord", + "source": "MM", + "page": 187, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 14, + "constitution": 16, + "intelligence": 14, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "saves": { + "int": "+5", + "wis": "+3", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Martial Advantage", + "body": [ + "Once per turn, the hobgoblin can deal an extra 14 ({@damage 4d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hobgoblin makes three melee attacks. Alternatively, it can make two ranged attacks with its javelins." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield Bash", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage. If the target is Large or smaller, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leadership (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the hobgoblin can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand the hobgoblin. A creature can benefit from only one Leadership die at a time. This effect ends if the hobgoblin is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The hobgoblin adds 3 to its AC against one melee attack that would hit it. To do so, the hobgoblin must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Hobgoblin Warlord-MM", + "__dataclass__": "Monster" + }, + { + "name": "Homunculus", + "source": "MM", + "page": 188, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "2d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 15, + "constitution": 11, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Telepathic Bond", + "body": [ + "While the homunculus is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}1 piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} for 1 minute. If the saving throw fails by 5 or more, the target is instead {@condition poisoned} for 5 ({@dice 1d10}) minutes and {@condition unconscious} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Homunculus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hook Horror", + "source": "MM", + "page": 189, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 10, + "constitution": 15, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Hook Horror" + ], + "traits": [ + { + "title": "Echolocation", + "body": [ + "The hook horror can't use its blindsight while {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing", + "body": [ + "The hook horror has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hook horror makes two hook attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hook", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hook Horror-MM", + "__dataclass__": "Monster" + }, + { + "name": "Horned Devil", + "source": "MM", + "page": 74, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 22, + "dexterity": 17, + "constitution": 21, + "intelligence": 12, + "wisdom": 16, + "charisma": 17, + "passive": 13, + "saves": { + "str": "+10", + "dex": "+7", + "wis": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the devil's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The devil has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fork", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a {@dc 17} Constitution saving throw or lose 10 ({@dice 3d6}) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 ({@damage 3d6}). Any creature can take an action to stanch the wound with a successful {@dc 12} Wisdom ({@skill Medicine}) check. The wound also closes if the target receives magical healing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Flame", + "body": [ + "{@atk rs} {@hit 7} to hit, range 150 ft., one target. {@h}14 ({@damage 4d6}) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Horned Devil-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hunter Shark", + "source": "MM", + "page": 330, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 13, + "constitution": 15, + "intelligence": 1, + "wisdom": 10, + "charisma": 4, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The shark has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The shark can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "EGW" + }, + { + "source": "PSX" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hunter Shark-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hydra", + "source": "MM", + "page": 190, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 2, + "wisdom": 10, + "charisma": 7, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The hydra can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiple Heads", + "body": [ + "The hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, and knocked {@condition unconscious}.", + "Whenever the hydra takes 25 or more damage in a single turn, one of its heads dies. If all its heads die, the hydra dies.", + "At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The hydra regains 10 hit points for each head regrown in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reactive Heads", + "body": [ + "For each head the hydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wakeful", + "body": [ + "While the hydra sleeps, at least one of its heads is awake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hydra makes as many bite attacks as it has heads." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "PSZ" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hydra-MM", + "__dataclass__": "Monster" + }, + { + "name": "Hyena", + "source": "MM", + "page": 331, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "1d8 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 11, + "dexterity": 13, + "constitution": 12, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The hyena has advantage on an attack roll against a creature if at least one of the hyena's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "CM" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hyena-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ice Devil", + "source": "MM", + "page": 75, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "19d10 + 76", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 21, + "dexterity": 14, + "constitution": 18, + "intelligence": 18, + "wisdom": 15, + "charisma": 18, + "passive": 12, + "saves": { + "dex": "+7", + "con": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the devil's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The devil has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devil makes three attacks: one with its bite, one with its claws, and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wall of Ice {@recharge}", + "body": [ + "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.", + "When the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is {@condition incapacitated}. The creature then makes a {@dc 17} Dexterity saving throw, taking 35 ({@damage 10d6}) cold damage on a failed save, or half as much damage on a successful one.", + "The wall lasts for 1 minute or until the devil is {@condition incapacitated} or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a {@dc 17} Constitution saving throw, taking 17 ({@damage 5d6}) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Ice Devil-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ice Mephit", + "source": "MM", + "page": 215, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 7, + "dexterity": 13, + "constitution": 10, + "intelligence": 9, + "wisdom": 11, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "Auran" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the mephit dies, it explodes in a burst of jagged ice. Each creature within 5 feet of it must make a {@dc 10} Dexterity saving throw, taking 4 ({@damage 1d8}) slashing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the mephit remains motionless, it is indistinguishable from an ordinary shard of ice." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) slashing damage plus 2 ({@damage 1d4}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frost Breath {@recharge}", + "body": [ + "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw, taking 5 ({@damage 2d4}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (1/Day)", + "body": [ + "The mephit can innately cast {@spell fog cloud}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fog cloud}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ice Mephit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Imp", + "source": "MM", + "page": 76, + "size_str": "Tiny", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 6, + "dexterity": 17, + "constitution": 13, + "intelligence": 11, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "Common" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The imp can use its action to polymorph into a beast form that resembles a rat (speed 20 ft.), a raven (20 ft., fly 60 ft.), or a spider (20 ft., climb 20 ft.), or back into its true form. Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the imp's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The imp has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Sting (Bite in Beast Form)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility", + "body": [ + "The imp magically turns {@condition invisible} until it attacks, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the imp wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Imp-MM", + "__dataclass__": "Monster" + }, + { + "name": "Incubus", + "source": "MM", + "page": 285, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 8, + "dexterity": 17, + "constitution": 13, + "intelligence": 15, + "wisdom": 12, + "charisma": 20, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Telepathic Bond", + "body": [ + "The fiend ignores the range restriction on its telepathy when communicating with a creature it has {@condition charmed}. The two don't even need to be on the same plane of existence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "The fiend can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Without wings, the fiend loses its flying speed. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw (Fiend Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "One humanoid the fiend can see within 30 feet of it must succeed on a {@dc 15} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.", + "The fiend can have only one target {@condition charmed} at a time. If it charms another, the effect on the previous target ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Draining Kiss", + "body": [ + "The fiend kisses a creature {@condition charmed} by it or a willing creature. The target must make a {@dc 15} Constitution saving throw against this magic, taking 32 ({@damage 5d10 + 5}) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "GHLoE" + }, + { + "source": "CoA" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Incubus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Intellect Devourer", + "source": "MM", + "page": 191, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d4 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 6, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Deep Speech but can't speak", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Detect Sentience", + "body": [ + "The intellect devourer can sense the presence and location of any creature within 300 feet of it that has an Intelligence of 3 or higher, regardless of interposing barriers, unless the creature is protected by a {@spell mind blank} spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The intellect devourer makes one attack with its claws and uses Devour Intellect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devour Intellect", + "body": [ + "The intellect devourer targets one creature it can see within 10 feet of it that has a brain. The target must succeed on a {@dc 12} Intelligence saving throw against this magic or take 11 ({@damage 2d10}) psychic damage. Also on a failure, roll {@dice 3d6}: If the total equals or exceeds the target's Intelligence score, that score is reduced to 0. The target is {@condition stunned} until it regains at least one point of Intelligence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Body Thief", + "body": [ + "The intellect devourer initiates an Intelligence contest with an {@condition incapacitated} humanoid within 5 feet of it that isn't protected by {@spell protection from evil and good}. If it wins the contest, the intellect devourer magically consumes the target's brain, teleports into the target's skull, and takes control of the target's body. While inside a creature, the intellect devourer has {@quickref Cover||3||total cover} against attacks and other effects originating outside its host. The intellect devourer retains its Intelligence, Wisdom, and Charisma scores, as well as its understanding of Deep Speech, its telepathy, and its traits. It otherwise adopts the target's statistics. It knows everything the creature knew, including spells and languages.", + "If the host body dies, the intellect devourer must leave it. A {@spell protection from evil and good} spell cast on the body drives the intellect devourer out. The intellect devourer is also forced out if the target regains its devoured brain by means of a {@spell wish}. By spending 5 feet of its movement, the intellect devourer can voluntarily leave the body, teleporting to the nearest unoccupied space within 5 feet of it. The body then dies, unless its brain is restored within 1 round." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Intellect Devourer-MM", + "__dataclass__": "Monster" + }, + { + "name": "Invisible Stalker", + "source": "MM", + "page": 192, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 19, + "constitution": 14, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "understands Common but doesn't speak it" + ], + "traits": [ + { + "title": "Invisibility", + "body": [ + "The stalker is {@condition invisible}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Faultless Tracker", + "body": [ + "The stalker is given a quarry by its summoner. The stalker knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The stalker also knows the location of its summoner." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The stalker makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Invisible Stalker-MM", + "__dataclass__": "Monster" + }, + { + "name": "Iron Golem", + "source": "MM", + "page": 170, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 24, + "dexterity": 9, + "constitution": 20, + "intelligence": 3, + "wisdom": 11, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Fire Absorption", + "body": [ + "Whenever the golem is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sword", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d10 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Breath {@recharge 5}", + "body": [ + "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Iron Golem-MM", + "__dataclass__": "Monster" + }, + { + "name": "Jackal", + "source": "MM", + "page": 331, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 15, + "constitution": 11, + "intelligence": 3, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The jackal has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The jackal has advantage on an attack roll against a creature if at least one of the jackal's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Jackal-MM", + "__dataclass__": "Monster" + }, + { + "name": "Jackalwere", + "source": "MM", + "page": 193, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 15, + "constitution": 11, + "intelligence": 13, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common (can't speak in jackal form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The jackalwere can use its action to polymorph into a specific Medium human or a jackal-humanoid hybrid, or back into its true form (that of a Small jackal). Other than its size, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "The jackalwere has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The jackalwere has advantage on an attack roll against a creature if at least one of the jackalwere's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite (Jackal or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Human or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleep Gaze", + "body": [ + "The jackalwere gazes at one creature it can see within 30 feet of it. The target must make a {@dc 10} Wisdom saving throw. On a failed save, the target succumbs to a magical slumber, falling {@condition unconscious} for 10 minutes or until someone uses an action to shake the target awake. A creature that successfully saves against the effect is immune to this jackalwere's gaze for the next 24 hours. Undead and creatures immune to being {@condition charmed} aren't affected by it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "QftIS" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Jackalwere-MM", + "__dataclass__": "Monster" + }, + { + "name": "Kenku", + "source": "MM", + "page": 194, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 16, + "constitution": 10, + "intelligence": 11, + "wisdom": 10, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "understands Auran and Common but speaks only through the use of its Mimicry trait" + ], + "traits": [ + { + "title": "Ambusher", + "body": [ + "In the first round of a combat, the kenku has advantage on attack rolls against any creature it {@status surprised}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mimicry", + "body": [ + "The kenku can mimic any sounds it has heard, including voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "subtype": "kenku", + "actions_note": "", + "mythic": null, + "key": "Kenku-MM", + "__dataclass__": "Monster" + }, + { + "name": "Killer Whale", + "source": "MM", + "page": 331, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d12 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 10, + "constitution": 13, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 120 ft." + ], + "traits": [ + { + "title": "Echolocation", + "body": [ + "The whale can't use its blindsight while {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The whale can hold its breath for 30 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing", + "body": [ + "The whale has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}21 ({@damage 5d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Killer Whale-MM", + "__dataclass__": "Monster" + }, + { + "name": "Knight", + "source": "MM", + "page": 347, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "saves": { + "con": "+4", + "wis": "+2" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "The knight has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The knight makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leadership (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the knight can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand the knight. A creature can benefit from only one Leadership die at a time. This effect ends if the knight is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The knight adds 2 to its AC against one melee attack that would hit it. To do so, the knight must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Knight-MM", + "__dataclass__": "Monster" + }, + { + "name": "Kobold", + "source": "MM", + "page": 195, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "2d6 - 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 7, + "dexterity": 15, + "constitution": 9, + "intelligence": 8, + "wisdom": 7, + "charisma": 8, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "DoSI" + }, + { + "source": "GHLoE" + }, + { + "source": "CoA" + } + ], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Kobold-MM", + "__dataclass__": "Monster" + }, + { + "name": "Kraken", + "source": "MM", + "page": 197, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 472, + "formula": "27d20 + 189", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 30, + "dexterity": 11, + "constitution": 25, + "intelligence": 22, + "wisdom": 18, + "charisma": 20, + "passive": 14, + "saves": { + "str": "+17", + "dex": "+7", + "con": "+14", + "int": "+13", + "wis": "+11" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Celestial", + "Infernal", + "Primordial", + "telepathy 120 ft. but can't speak" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kraken can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freedom of Movement", + "body": [ + "The kraken ignores {@quickref difficult terrain||3}, and magical effects can't reduce its speed or cause it to be {@condition restrained}. It can spend 5 feet of movement to escape from nonmagical restraints or being {@condition grappled}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The kraken deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d8 + 10}) piercing damage. If the target is a Large or smaller creature {@condition grappled} by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the kraken, and it takes 42 ({@damage 12d6}) acid damage at the start of each of the kraken's turns. If the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a {@dc 25} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 30 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}. The kraken has ten tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fling", + "body": [ + "One Large or smaller object held or creature {@condition grappled} by the kraken is thrown up to 60 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 18} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm", + "body": [ + "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a {@dc 23} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tentacle Attack or Fling", + "body": [ + "The kraken makes one tentacle attack or uses its Fling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm (Costs 2 Actions)", + "body": [ + "The kraken uses Lightning Storm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ink Cloud (Costs 3 Actions)", + "body": [ + "While underwater, the kraken expels an ink cloud in a 60-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than the kraken. Each creature other than the kraken that ends its turn there must succeed on a {@dc 23} Constitution saving throw, taking 16 ({@damage 3d10}) poison damage on a failed save, or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of the kraken's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Kraken-MM", + "__dataclass__": "Monster" + }, + { + "name": "Kuo-toa", + "source": "MM", + "page": 199, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 10, + "constitution": 11, + "intelligence": 11, + "wisdom": 10, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kuo-toa can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Otherworldly Perception", + "body": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slippery", + "body": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Net", + "body": [ + "{@atk rw} {@hit 3} to hit, range 5/15 ft., one Large or smaller creature. {@h}The target is {@condition restrained}. A creature can use its action to make a {@dc 10} Strength check to free itself or another creature in a net, ending the effect on a success. Dealing 5 slashing damage to the net (AC 10) frees the target without harming it and destroys the net." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Sticky Shield", + "body": [ + "When a creature misses the kuo-toa with a melee weapon attack, the kuo-toa uses its sticky shield to catch the weapon. The attacker must succeed on a {@dc 11} Strength saving throw, or the weapon becomes stuck to the kuo-toa's shield. If the weapon's wielder can't or won't let go of the weapon, the wielder is {@condition grappled} while the weapon is stuck. While stuck, the weapon can't be used. A creature can pull the weapon free by taking an action to make a {@dc 11} Strength check and succeeding." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + } + ], + "subtype": "kuo-toa", + "actions_note": "", + "mythic": null, + "key": "Kuo-toa-MM", + "__dataclass__": "Monster" + }, + { + "name": "Kuo-toa Archpriest", + "source": "MM", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 14, + "constitution": 16, + "intelligence": 13, + "wisdom": 16, + "charisma": 14, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kuo-toa can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Otherworldly Perception", + "body": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slippery", + "body": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kuo-toa makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scepter", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The kuo-toa is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The kuo-toa has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell spirit guardians}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell control water}", + "{@spell divination}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell mass cure wounds}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "CoA" + } + ], + "subtype": "kuo-toa", + "actions_note": "", + "mythic": null, + "key": "Kuo-toa Archpriest-MM", + "__dataclass__": "Monster" + }, + { + "name": "Kuo-toa Monitor", + "source": "MM", + "page": 198, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor, Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 12, + "wisdom": 14, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kuo-toa can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Otherworldly Perception", + "body": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slippery", + "body": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "The kuo-toa adds its Wisdom modifier to its armor class." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kuo-toa makes one bite attack and two unarmed strikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 3 ({@damage 1d6}) lightning damage, and the target can't take reactions until the end of the kuo-toa's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "CoA" + } + ], + "subtype": "kuo-toa", + "actions_note": "", + "mythic": null, + "key": "Kuo-toa Monitor-MM", + "__dataclass__": "Monster" + }, + { + "name": "Kuo-toa Whip", + "source": "MM", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 12, + "wisdom": 14, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kuo-toa can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Otherworldly Perception", + "body": [ + "The kuo-toa can sense the presence of any creature within 30 feet of it that is {@condition invisible} or on the Ethereal Plane. It can pinpoint such a creature that is moving." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slippery", + "body": [ + "The kuo-toa has advantage on ability checks and saving throws made to escape a grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kuo-toa has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kuo-toa makes two attacks: one with its bite and one with its pincer staff." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pincer Staff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the kuo-toa can't use its pincer staff on another target." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The kuo-toa is a 2nd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The kuo-toa has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bane}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + } + ], + "subtype": "kuo-toa", + "actions_note": "", + "mythic": null, + "key": "Kuo-toa Whip-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lamia", + "source": "MM", + "page": 201, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d10 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 13, + "constitution": 15, + "intelligence": 14, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Intoxicating Touch", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one creature. {@h}The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The lamia's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell disguise self} (any humanoid form)", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell geas}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell mirror image}", + "{@spell scrying}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lamia-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lemure", + "source": "MM", + "page": 76, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 7 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 5, + "constitution": 11, + "intelligence": 1, + "wisdom": 11, + "charisma": 3, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Infernal but can't speak" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the lemure's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellish Rejuvenation", + "body": [ + "A lemure that dies in the Nine Hells comes back to life with all its hit points in {@dice 1d10} days unless it is killed by a good-aligned creature with a {@spell bless} spell cast on that creature or its remains are sprinkled with holy water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "PSI" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Lemure-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lich", + "source": "MM", + "page": 202, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any Evil Alignment", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 11, + "dexterity": 16, + "constitution": 16, + "intelligence": 20, + "wisdom": 14, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 19, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+12", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common plus up to five other languages" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the lich fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If it has a phylactery, a destroyed lich gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The lich has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Paralyzing Touch", + "body": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip", + "body": [ + "The lich casts a cantrip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Touch (Costs 2 Actions)", + "body": [ + "The lich uses its Paralyzing Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightening Gaze (Costs 2 Actions)", + "body": [ + "The lich fixes its gaze on one creature it can see within 10 feet of it. The target must succeed on a {@dc 18} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the lich's gaze for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disrupt Life (Costs 3 Actions)", + "body": [ + "Each non-undead creature within 20 feet of the lich must make a {@dc 18} Constitution saving throw against this magic, taking 21 ({@damage 6d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The lich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). The lich has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lich-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lion", + "source": "MM", + "page": 331, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 15, + "constitution": 13, + "intelligence": 3, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The lion has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The lion has advantage on an attack roll against a creature if at least one of the lion's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the lion moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the lion can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Running Leap", + "body": [ + "With a 10-foot running start, the lion can long jump up to 25 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lion-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lizard", + "source": "MM", + "page": 332, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 11, + "constitution": 10, + "intelligence": 1, + "wisdom": 8, + "charisma": 3, + "passive": 9, + "senses": [ + "darkvision 30 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lizard-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lizard King", + "source": "MM", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 11, + "wisdom": 11, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+2" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The lizardfolk can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Skewer", + "body": [ + "Once per turn, when the lizardfolk makes a melee attack with its trident and hits, the target takes an extra 10 ({@damage 3d6}) damage, and the lizardfolk gains temporary hit points equal to the extra damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lizardfolk makes two attacks: one with its bite and one with its claws or trident or two melee attacks with its trident." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "TCE" + } + ], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizard King-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lizard Queen", + "source": "MM", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 11, + "wisdom": 11, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+2" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The lizardfolk can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Skewer", + "body": [ + "Once per turn, when the lizardfolk makes a melee attack with its trident and hits, the target takes an extra 10 ({@damage 3d6}) damage, and the lizardfolk gains temporary hit points equal to the extra damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lizardfolk makes two attacks: one with its bite and one with its claws or trident or two melee attacks with its trident." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizard Queen-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lizardfolk", + "source": "MM", + "page": 204, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 10, + "constitution": 13, + "intelligence": 7, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The lizardfolk can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lizardfolk makes two melee attacks, each one with a different weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Club", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Shield", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizardfolk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Lizardfolk Shaman", + "source": "MM", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 10, + "constitution": 13, + "intelligence": 10, + "wisdom": 15, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Draconic" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The lizardfolk can hold its breath for 15 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Lizardfolk Form Only)", + "body": [ + "The lizardfolk makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 7 ({@damage 1d10 + 2}) piercing damage in {@creature crocodile} form. If the lizardfolk is in crocodile form and the target is a Large or smaller creature, the target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the lizardfolk can't bite another target. If the lizardfolk reverts to its true form, the grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws (Lizardfolk Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape (Recharges after a Short or Long Rest)", + "body": [ + "The lizardfolk magically polymorphs into a {@creature crocodile}, remaining in that form for up to 1 hour. It can revert to its true form as a bonus action. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Lizardfolk Form Only)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Lizardfolk Form Only)", + "body": [ + "The lizardfolk is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The lizardfolk has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell thorn whip}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell fog cloud}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell heat metal}", + "{@spell spike growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell conjure animals} (reptiles only)", + "{@spell plant growth}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + } + ], + "subtype": "lizardfolk", + "actions_note": "", + "mythic": null, + "key": "Lizardfolk Shaman-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mage", + "source": "MM", + "page": 347, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell aarakocra armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The mage has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Mage-MM", + "__dataclass__": "Monster" + }, + { + "name": "Magma Mephit", + "source": "MM", + "page": 216, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 8, + "dexterity": 12, + "constitution": 12, + "intelligence": 7, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ignan", + "Terran" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the mephit dies, it explodes in a burst of lava. Each creature within 5 feet of it must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the mephit remains motionless, it is indistinguishable from an ordinary mound of magma." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d4 + 1}) slashing damage plus 2 ({@damage 1d4}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge}", + "body": [ + "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (1/Day)", + "body": [ + "The mephit can innately cast {@spell heat metal} (spell save {@dc 10}), requiring no material components. Its innate spellcasting ability is Charisma." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell heat metal}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "SjA" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Magma Mephit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Magmin", + "source": "MM", + "page": 212, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 7, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ignan" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the magmin dies, it explodes in a burst of fire and magma. Each creature within 10 feet of it must make a {@dc 11} Dexterity saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one. Flammable objects that aren't being worn or carried in that area are ignited." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ignited Illumination", + "body": [ + "As a bonus action, the magmin can set itself ablaze or extinguish its flames. While ablaze, the magmin sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Touch", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 ({@damage 1d6}) fire damage at the end of each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Magmin-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mammoth", + "source": "MM", + "page": 332, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 24, + "dexterity": 9, + "constitution": 21, + "intelligence": 3, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "traits": [ + { + "title": "Trampling Charge", + "body": [ + "If the mammoth moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the mammoth can make one stomp attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}25 ({@damage 4d8 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one {@condition prone} creature. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mammoth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Manes", + "source": "MM", + "page": 60, + "size_str": "Small", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 9, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 9, + "constitution": 13, + "intelligence": 3, + "wisdom": 8, + "charisma": 4, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Manes-MM", + "__dataclass__": "Monster" + }, + { + "name": "Manticore", + "source": "MM", + "page": 213, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 16, + "constitution": 17, + "intelligence": 7, + "wisdom": 12, + "charisma": 8, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Tail Spike Regrowth", + "body": [ + "The manticore has twenty-four tail spikes. Used spikes regrow when the manticore finishes a long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Spike", + "body": [ + "{@atk rw} {@hit 5} to hit, range 100/200 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Manticore-MM", + "__dataclass__": "Monster" + }, + { + "name": "Marid", + "source": "MM", + "page": 146, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 229, + "formula": "17d10 + 136", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 90, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 22, + "dexterity": 12, + "constitution": 26, + "intelligence": 18, + "wisdom": 17, + "charisma": 18, + "passive": 13, + "saves": { + "dex": "+5", + "wis": "+7", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Aquan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The marid can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Elemental Demise", + "body": [ + "If the marid dies, its body disintegrates into a burst of water and foam, leaving behind only equipment the marid was wearing or carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The marid makes two trident attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 10} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage, or 15 ({@damage 2d8 + 6}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Jet", + "body": [ + "The marid magically shoots water in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw. On a failure, a target takes 21 ({@damage 6d6}) bludgeoning damage and, if it is Huge or smaller, is pushed up to 20 feet away from the marid and knocked {@condition prone}. On a success, a target takes half the bludgeoning damage, but is neither pushed nor knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The marid's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell create or destroy water}", + "{@spell detect evil and good}", + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell purify food and drink}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell tongues}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell conjure elemental} ({@creature water elemental} only)", + "{@spell control water}", + "{@spell gaseous form}", + "{@spell invisibility}", + "{@spell plane shift}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Marid-MM", + "__dataclass__": "Monster" + }, + { + "name": "Marilith", + "source": "MM", + "page": 61, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 18, + "dexterity": 20, + "constitution": 20, + "intelligence": 18, + "wisdom": 16, + "charisma": 20, + "passive": 13, + "saves": { + "str": "+9", + "con": "+10", + "wis": "+8", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The marilith has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The marilith's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reactive", + "body": [ + "The marilith can take one reaction on every turn in combat." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The marilith can make seven attacks: six with its longswords and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}15 ({@damage 2d10 + 4}) bludgeoning damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The marilith adds 5 to its AC against one melee attack that would hit it. To do so, the marilith must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Marilith-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mastiff", + "source": "MM", + "page": 332, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "1d8 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 13, + "dexterity": 14, + "constitution": 12, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The mastiff has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mastiff-MM", + "__dataclass__": "Monster" + }, + { + "name": "Medusa", + "source": "MM", + "page": 214, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 10, + "dexterity": 15, + "constitution": 16, + "intelligence": 12, + "wisdom": 13, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Petrifying Gaze", + "body": [ + "When a creature that can see the medusa's eyes starts its turn within 30 feet of the medusa, the medusa can force it to make a {@dc 14} Constitution saving throw if the medusa isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, a creature that fails the save begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the {@spell greater restoration} spell or other magic.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the medusa until the start of its next turn, when it can avert its eyes again. If the creature looks at the medusa in the meantime, it must immediately make the save.", + "If the medusa sees itself reflected on a polished surface within 30 feet of it and in an area of bright light, the medusa is, due to its curse, affected by its own gaze." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The medusa makes either three melee attacks\u2014one with its snake hair and two with its shortsword\u2014or two ranged attacks with its longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snake Hair", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Medusa-MM", + "__dataclass__": "Monster" + }, + { + "name": "Merfolk", + "source": "MM", + "page": 218, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 13, + "constitution": 12, + "intelligence": 11, + "wisdom": 11, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The merfolk can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d6}) piercing damage, or 4 ({@damage 1d8}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + } + ], + "subtype": "merfolk", + "actions_note": "", + "mythic": null, + "key": "Merfolk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Merrow", + "source": "MM", + "page": 219, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 10, + "constitution": 15, + "intelligence": 8, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Aquan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The merrow can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The merrow makes two attacks: one with its bite and one with its claws or harpoon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harpoon", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "DSotDQ" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Merrow-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mezzoloth", + "source": "MM", + "page": 313, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 11, + "constitution": 16, + "intelligence": 7, + "wisdom": 10, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The mezzoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The mezzoloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mezzoloth makes two attacks: one with its claws and one with its trident." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage when held with two claws and used to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The mezzoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The mezzoloth's innate spellcasting ability is Charisma (spell save {@dc 11}). The mezzoloth can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell cloudkill}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell darkness}", + "{@spell dispel magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Mezzoloth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mimic", + "source": "MM", + "page": 220, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 5, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Adhesive (Object Form Only)", + "body": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 13}). Ability checks made to escape this grapple have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance (Object Form Only)", + "body": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grappler", + "body": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Mimic-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mind Flayer", + "source": "MM", + "page": 222, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 12, + "constitution": 12, + "intelligence": 19, + "wisdom": 17, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the mind flayer. {@h}The target takes 55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The mind flayer magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The mind flayer's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mind Flayer-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mind Flayer Arcanist", + "source": "MM", + "page": 222, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 12, + "constitution": 12, + "intelligence": 19, + "wisdom": 17, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the mind flayer. {@h}The target takes 55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The mind flayer magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The mind flayer's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The mind flayer is a 10th-level spellcaster. Its spellcasting ability is Intelligence (save {@dc 15}, {@hit 7} to hit with spell attacks). The mind flayer has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell invisibility}", + "{@spell ray of enfeeblement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell lightning bolt}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell hallucinatory terrain}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell telekinesis}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mind Flayer Arcanist-MM", + "__dataclass__": "Monster" + }, + { + "name": "Minotaur", + "source": "MM", + "page": 223, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "9d10 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 11, + "constitution": 16, + "intelligence": 6, + "wisdom": 16, + "charisma": 9, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the minotaur moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Labyrinthine Recall", + "body": [ + "The minotaur can perfectly recall any path it has traveled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of its turn, the minotaur can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CRCotN" + }, + { + "source": "PSZ" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Minotaur-MM", + "__dataclass__": "Monster" + }, + { + "name": "Minotaur Skeleton", + "source": "MM", + "page": 273, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 11, + "constitution": 15, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the skeleton moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Minotaur Skeleton-MM", + "__dataclass__": "Monster" + }, + { + "name": "Monodrone", + "source": "MM", + "page": 224, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "1d8 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 13, + "constitution": 12, + "intelligence": 4, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron" + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The monodrone can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the monodrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Monodrone-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mud Mephit", + "source": "MM", + "page": 216, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 12, + "constitution": 12, + "intelligence": 9, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "Terran" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the mephit dies, it explodes in a burst of sticky mud. Each Medium or smaller creature within 5 feet of it must succeed on a {@dc 11} Dexterity saving throw or be {@condition restrained} until the end of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the mephit remains motionless, it is indistinguishable from an ordinary mound of mud." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fists", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mud Breath {@recharge}", + "body": [ + "The mephit belches viscid mud onto one creature within 5 feet of it. If the target is Medium or smaller, it must succeed on a {@dc 11} Dexterity saving throw or be {@condition restrained} 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mud Mephit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mule", + "source": "MM", + "page": 333, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 14, + "dexterity": 10, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "traits": [ + { + "title": "Beast of Burden", + "body": [ + "The mule is considered to be a Large animal for the purpose of determining its carrying capacity." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The mule has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "KftGV" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mule-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mummy", + "source": "MM", + "page": 228, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 8, + "constitution": 15, + "intelligence": 6, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "saves": { + "wis": "+2" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mummy can use its Dreadful Glare and makes one attack with its rotting fist." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotting Fist", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Glare", + "body": [ + "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a {@dc 11} Wisdom saving throw against this magic or become {@condition frightened} until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mummy-MM", + "__dataclass__": "Monster" + }, + { + "name": "Mummy Lord", + "source": "MM", + "page": 229, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 11, + "wisdom": 18, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+5", + "wis": "+9", + "cha": "+8" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The mummy lord has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "A destroyed mummy lord gains a new body in 24 hours if its heart is intact, regaining all its hit points and becoming active again. The new body appears within 5 feet of the mummy lord's heart." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mummy can use its Dreadful Glare and makes one attack with its rotting fist." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotting Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Glare", + "body": [ + "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a {@dc 16} Wisdom saving throw against this magic or become {@condition frightened} until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The mummy lord makes one attack with its rotting fist or uses its Dreadful Glare." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Dust", + "body": [ + "Blinding dust and sand swirls magically around the mummy lord. Each creature within 5 feet of the mummy lord must succeed on a {@dc 16} Constitution saving throw or be {@condition blinded} until the end of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blasphemous Word (Costs 2 Actions)", + "body": [ + "The mummy lord utters a blasphemous word. Each non-undead creature within 10 feet of the mummy lord that can hear the magical utterance must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the end of the mummy lord's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Channel Negative Energy (Costs 2 Actions)", + "body": [ + "The mummy lord magically unleashes negative energy. Creatures within 60 feet of the mummy lord, including ones behind barriers and around corners, can't regain hit points until the end of the mummy lord's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind of Sand (Costs 2 Actions)", + "body": [ + "The mummy lord magically transforms into a whirlwind of sand, moves up to 60 feet, and reverts to its normal form. While in whirlwind form, the mummy lord is immune to all damage, and it can't be {@condition grappled}, {@condition petrified}, knocked {@condition prone}, {@condition restrained}, or {@condition stunned}. Equipment worn or carried by the mummy lord remain in its possession." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The mummy lord is a 10th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The mummy lord has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell divination}", + "{@spell guardian of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell insect plague}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell harm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mummy Lord-MM", + "__dataclass__": "Monster" + }, + { + "name": "Myconid Adult", + "source": "MM", + "page": 232, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 10, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 7, + "passive": 11, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Distress Spores", + "body": [ + "When the myconid takes damage, all other myconids within 240 feet of it can sense its pain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sun Sickness", + "body": [ + "While in sunlight, the myconid has disadvantage on ability checks, attack rolls, and saving throws. The myconid dies if it spends more than 1 hour in direct sunlight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) bludgeoning damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pacifying Spores (3/Day)", + "body": [ + "The myconid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 11} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapport Spores", + "body": [ + "A 20-foot radius of spores extends from the myconid. These spores can go around corners and affect only creatures with an Intelligence of 2 or higher that aren't undead, constructs, or elementals. Affected creatures can communicate telepathically with one another while they are within 30 feet of each other. The effect lasts for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Myconid Adult-MM", + "__dataclass__": "Monster" + }, + { + "name": "Myconid Sovereign", + "source": "MM", + "page": 232, + "size_str": "Large", + "maintype": "plant", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 10, + "constitution": 14, + "intelligence": 13, + "wisdom": 15, + "charisma": 10, + "passive": 12, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Distress Spores", + "body": [ + "When the myconid takes damage, all other myconids within 240 feet of it can sense its pain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sun Sickness", + "body": [ + "While in sunlight, the myconid has disadvantage on ability checks, attack rolls, and saving throws. The myconid dies if it spends more than 1 hour in direct sunlight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myconid uses either its Hallucination Spores or its Pacifying Spores, then makes a fist attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 3d4 + 1}) bludgeoning damage plus 7 ({@damage 3d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Animating Spores (3/Day)", + "body": [ + "The myconid targets one corpse of a humanoid or a Large or smaller beast within 5 feet of it and releases spores at the corpse. In 24 hours, the corpse rises as a spore servant. The corpse stays animated for {@dice 1d4 + 1} weeks or until destroyed, and it can't be animated again in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hallucination Spores", + "body": [ + "The myconid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The {@condition poisoned} target is {@condition incapacitated} while it hallucinates. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pacifying Spores", + "body": [ + "The myconid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 12} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapport Spores", + "body": [ + "A 30-foot radius of spores extends from the myconid. These spores can go around corners and affect only creatures with an Intelligence of 2 or higher that aren't undead, constructs, or elementals. Affected creatures can communicate telepathically with one another while they are within 30 feet of each other. The effect lasts for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Myconid Sovereign-MM", + "__dataclass__": "Monster" + }, + { + "name": "Myconid Sprout", + "source": "MM", + "page": 230, + "size_str": "Small", + "maintype": "plant", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 10, + "constitution": 10, + "intelligence": 8, + "wisdom": 11, + "charisma": 5, + "passive": 10, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Distress Spores", + "body": [ + "When the myconid takes damage, all other myconids within 240 feet of it can sense its pain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sun Sickness", + "body": [ + "While in sunlight, the myconid has disadvantage on ability checks, attack rolls, and saving throws. The myconid dies if it spends more than 1 hour in direct sunlight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) bludgeoning damage plus 2 ({@damage 1d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapport Spores (3/Day)", + "body": [ + "A 10-foot radius of spores extends from the myconid. These spores can go around corners and affect only creatures with an Intelligence of 2 or higher that aren't undead, constructs, or elementals. Affected creatures can communicate telepathically with one another while they are within 30 feet of each other. The effect lasts for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "DoSI" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Myconid Sprout-MM", + "__dataclass__": "Monster" + }, + { + "name": "Nalfeshnee", + "source": "MM", + "page": 62, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 184, + "formula": "16d10 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 21, + "dexterity": 10, + "constitution": 22, + "intelligence": 19, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "saves": { + "con": "+11", + "int": "+9", + "wis": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The nalfeshnee has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}32 ({@damage 5d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horror Nimbus {@recharge 5}", + "body": [ + "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Nalfeshnee-MM", + "__dataclass__": "Monster" + }, + { + "name": "Needle Blight", + "source": "MM", + "page": 32, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 12, + "constitution": 13, + "intelligence": 4, + "wisdom": 8, + "charisma": 3, + "passive": 9, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common but can't speak" + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Needles", + "body": [ + "{@atk rw} {@hit 3} to hit, range 30/60 ft., one target. {@h}8 ({@damage 2d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "DIP" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Needle Blight-MM", + "__dataclass__": "Monster" + }, + { + "name": "Night Hag", + "source": "MM", + "page": 178, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 16, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "Primordial" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The hag has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Night Hag Items", + "body": [ + "A night hag carries two very rare magic items that she must craft for herself. If either object is lost, the night hag will go to great lengths to retrieve it, as creating a new tool takes time and effort.", + "Heartstone: This lustrous black gem allows a night hag to become ethereal while it is in her possession. The touch of a heartstone also cures any disease. Crafting a heartstone takes 30 days.", + "Soul Bag: When an evil humanoid dies as a result of a night hag's Nightmare Haunting, the hag catches the soul in this black sack made of stitched flesh. A soul bag can hold only one evil soul at a time, and only the night hag who crafted the bag can catch a soul with it. Crafting a soul bag takes 7 days and a humanoid sacrifice (whose flesh is used to make the bag)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws (Hag Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Haunting (1/Day)", + "body": [ + "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A {@spell protection from evil and good} spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 ({@dice 1d10}). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the {@spell greater restoration} spell or similar magic." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell ray of enfeeblement}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Night Hag-MM", + "__dataclass__": "Monster" + }, + { + "name": "Nightmare", + "source": "MM", + "page": 235, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 13, + "charisma": 15, + "passive": 11, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands Abyssal, Common, and Infernal but can't speak " + ], + "traits": [ + { + "title": "Confer Fire Resistance", + "body": [ + "The nightmare can grant resistance to fire damage to anyone riding it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The nightmare sheds bright light in a 10-foot radius and dim light for an additional 10 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ethereal Stride", + "body": [ + "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nightmare-MM", + "__dataclass__": "Monster" + }, + { + "name": "Noble", + "source": "MM", + "page": 348, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 11, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any two languages" + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The noble adds 2 to its AC against one melee attack that would hit it. To do so, the noble must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Noble-MM", + "__dataclass__": "Monster" + }, + { + "name": "Nothic", + "source": "MM", + "page": 236, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 16, + "constitution": 16, + "intelligence": 13, + "wisdom": 10, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The nothic has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nothic makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotting Gaze", + "body": [ + "The nothic targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 12} Constitution saving throw against this magic or take 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weird Insight", + "body": [ + "The nothic targets one creature it can see within 30 feet of it. The target must contest its Charisma ({@skill Deception}) check against the nothic's Wisdom ({@skill Insight}) check. If the nothic wins, it magically learns one fact or secret about the target. The target automatically wins if it is immune to being {@condition charmed}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nothic-MM", + "__dataclass__": "Monster" + }, + { + "name": "Nycaloth", + "source": "MM", + "page": 314, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 11, + "constitution": 19, + "intelligence": 12, + "wisdom": 10, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The nycaloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The nycaloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nycaloth makes two melee attacks, or it makes one melee attack and teleports before or after the attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or take 5 ({@damage 2d4}) slashing damage at the start of each of its turns due to a fiendish wound. Each time the nycaloth hits the wounded target with this attack, the damage dealt by the wound increases by 5 ({@damage 2d4}). Any creature can take an action to stanch the wound with a successful {@dc 13} Wisdom ({@skill Medicine}) check. The wound also closes if the target receives magical healing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The nycaloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The nycaloth's innate spellcasting ability is Charisma. The nycaloth can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Nycaloth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ochre Jelly", + "source": "MM", + "page": 243, + "size_str": "Large", + "maintype": "ooze", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 6, + "constitution": 14, + "intelligence": 2, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The jelly can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The jelly can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage plus 3 ({@damage 1d6}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Split", + "body": [ + "When a jelly that is Medium or larger is subjected to lightning or slashing damage, it splits into two new jellies if it has at least 10 hit points. Each new jelly has hit points equal to half the original jelly's, rounded down. New jellies are one size smaller than the original jelly." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ochre Jelly-MM", + "__dataclass__": "Monster" + }, + { + "name": "Octopus", + "source": "MM", + "page": 333, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 15, + "constitution": 11, + "intelligence": 3, + "wisdom": 10, + "charisma": 4, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "While out of water, the octopus can hold its breath for 30 minutes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Underwater Camouflage", + "body": [ + "The octopus has advantage on Dexterity ({@skill Stealth}) checks made while underwater." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The octopus can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage, and the target is {@condition grappled} (escape {@dc 10}). Until this grapple ends, the octopus can't use its tentacles on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ink Cloud (Recharges after a Short or Long Rest)", + "body": [ + "A 5-foot-radius cloud of ink extends all around the octopus if it is underwater. The area is heavily obscured for 1 minute, although a significant current can disperse the ink. After releasing the ink, the octopus can use the Dash action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Octopus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ogre", + "source": "MM", + "page": 237, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "SjA" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSZ" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Zombie", + "source": "MM", + "page": 316, + "size_str": "Large", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "9d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 6, + "constitution": 18, + "intelligence": 3, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "saves": { + "wis": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common and Giant but can't speak" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Zombie-MM", + "__dataclass__": "Monster" + }, + { + "name": "Oni", + "source": "MM", + "page": 239, + "size_str": "Large", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 11, + "constitution": 16, + "intelligence": 14, + "wisdom": 12, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+6", + "wis": "+4", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Magic Weapons", + "body": [ + "The oni's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The oni regains 10 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oni makes two attacks, either with its claws or its glaive." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Oni Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage in Small or Medium form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The oni's innate spellcasting ability is Charisma (spell save {@dc 13}). The oni can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell cone of cold}", + "{@spell gaseous form}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSZ" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Oni-MM", + "__dataclass__": "Monster" + }, + { + "name": "Orc", + "source": "MM", + "page": 246, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 12, + "constitution": 16, + "intelligence": 7, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d12 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + } + ], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc-MM", + "__dataclass__": "Monster" + }, + { + "name": "Orc Eye of Gruumsh", + "source": "MM", + "page": 247, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "{@item ring mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 12, + "constitution": 17, + "intelligence": 9, + "wisdom": 13, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gruumsh's Fury", + "body": [ + "The orc deals an extra 4 ({@damage 1d8}) damage when it hits with a weapon attack (included in the attacks)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 1d6 + 3} plus {@damage 1d8}) piercing damage, or 12 ({@damage 2d8 + 3}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The orc is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The orc has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell command}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell augury}", + "{@spell spiritual weapon} (spear)" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc Eye of Gruumsh-MM", + "__dataclass__": "Monster" + }, + { + "name": "Orc War Chief", + "source": "MM", + "page": 246, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 12, + "constitution": 18, + "intelligence": 11, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+6", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gruumsh's Fury", + "body": [ + "The orc deals an extra 4 ({@damage 1d8}) damage when it hits with a weapon attack (included in the attacks)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The orc makes two attacks with its greataxe or its spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 1d12 + 4} plus {@damage 1d8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}12 ({@damage 1d6 + 4} plus {@damage 1d8}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battle Cry (1/Day)", + "body": [ + "Each creature of the war chief's choice that is within 30 feet of it, can hear it, and not already affected by Battle Cry gain advantage on attack rolls until the start of the war chief's next turn. The war chief can then make one attack as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + } + ], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc War Chief-MM", + "__dataclass__": "Monster" + }, + { + "name": "Orog", + "source": "MM", + "page": 247, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 12, + "constitution": 18, + "intelligence": 12, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orog can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The orog makes two greataxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + } + ], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orog-MM", + "__dataclass__": "Monster" + }, + { + "name": "Otyugh", + "source": "MM", + "page": 248, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 11, + "constitution": 19, + "intelligence": 6, + "wisdom": 13, + "charisma": 6, + "passive": 11, + "saves": { + "con": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Otyugh" + ], + "traits": [ + { + "title": "Limited Telepathy", + "body": [ + "The otyugh can magically transmit simple messages and images to any creature within 120 feet of it that can understand a language. This form of telepathy doesn't allow the receiving creature to telepathically respond." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The otyugh makes three attacks: one with its bite and two with its tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw against disease or become {@condition poisoned} until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 ({@dice 1d10}) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 4 ({@damage 1d8}) piercing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 13}) and {@condition restrained} until the grapple ends. The otyugh has two tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle Slam", + "body": [ + "The otyugh slams creatures {@condition grappled} by it into each other or a solid surface. Each creature must succeed on a {@dc 14} Constitution saving throw or take 10 ({@damage 2d6 + 3}) bludgeoning damage and be {@condition stunned} until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Otyugh-MM", + "__dataclass__": "Monster" + }, + { + "name": "Owl", + "source": "MM", + "page": 333, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 3, + "dexterity": 13, + "constitution": 8, + "intelligence": 2, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The owl doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Sight", + "body": [ + "The owl has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Owl-MM", + "__dataclass__": "Monster" + }, + { + "name": "Owlbear", + "source": "MM", + "page": 249, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 20, + "dexterity": 12, + "constitution": 17, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Sight and Smell", + "body": [ + "The owlbear has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The owlbear makes two attacks: one with its beak and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "DoSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Owlbear-MM", + "__dataclass__": "Monster" + }, + { + "name": "Panther", + "source": "MM", + "page": 333, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 15, + "constitution": 10, + "intelligence": 3, + "wisdom": 14, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The panther has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the panther moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the panther can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Panther-MM", + "__dataclass__": "Monster" + }, + { + "name": "Pegasus", + "source": "MM", + "page": 250, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 15, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+4", + "cha": "+3" + }, + "languages": [ + "understands Celestial", + "Common", + "Elvish", + "and Sylvan but can't speak" + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ERLW" + }, + { + "source": "MOT" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pegasus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Pentadrone", + "source": "MM", + "page": 226, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d10 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron" + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The pentadrone can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the pentadrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pentadrone makes five arm attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arm", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralysis Gas {@recharge 5}", + "body": [ + "The pentadrone exhales a 30-foot cone of gas. Each creature in that area must succeed on a {@dc 11} Constitution saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pentadrone-MM", + "__dataclass__": "Monster" + }, + { + "name": "Peryton", + "source": "MM", + "page": 251, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 12, + "constitution": 13, + "intelligence": 9, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands Common and Elvish but can't speak" + ], + "traits": [ + { + "title": "Dive Attack", + "body": [ + "If the peryton is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 9 ({@damage 2d8}) damage to the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The peryton doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Sight and Smell", + "body": [ + "The peryton has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The peryton makes one gore attack and one talon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Peryton-MM", + "__dataclass__": "Monster" + }, + { + "name": "Phase Spider", + "source": "MM", + "page": 334, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d10 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 15, + "constitution": 12, + "intelligence": 6, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Ethereal Jaunt", + "body": [ + "As a bonus action, the spider can magically shift from the Material Plane to the Ethereal Plane, or vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The spider ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d10 + 2}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 18 ({@damage 4d8}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Phase Spider-MM", + "__dataclass__": "Monster" + }, + { + "name": "Piercer", + "source": "MM", + "page": 252, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 5, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 13, + "constitution": 16, + "intelligence": 1, + "wisdom": 7, + "charisma": 3, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the piercer remains motionless on the ceiling, it is indistinguishable from a normal stalactite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The piercer can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Drop", + "body": [ + "{@atk mw} {@hit 3} to hit, one creature directly underneath the piercer. {@h}3 ({@damage 1d6}) piercing damage per 10 feet fallen, up to 21 ({@damage 6d6}). Miss: The piercer takes half the normal falling damage for the distance fallen." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Piercer-MM", + "__dataclass__": "Monster" + }, + { + "name": "Pit Fiend", + "source": "MM", + "page": 77, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 300, + "formula": "24d10 + 168", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 26, + "dexterity": 14, + "constitution": 24, + "intelligence": 22, + "wisdom": 18, + "charisma": 24, + "passive": 14, + "saves": { + "dex": "+8", + "con": "+13", + "wis": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Fear Aura", + "body": [ + "Any creature hostile to the pit fiend that starts its turn within 20 feet of the pit fiend must make a {@dc 21} Wisdom saving throw, unless the pit fiend is {@condition incapacitated}. On a failed save, the creature is {@condition frightened} until the start of its next turn. If a creature's saving throw is successful, the creature is immune to the pit fiend's Fear Aura for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The pit fiend has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The pit fiend's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) piercing damage. The target must succeed on a {@dc 21} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target can't regain hit points, and it takes 21 ({@damage 6d6}) poison damage at the start of each of its turns. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d6 + 8}) bludgeoning damage plus 21 ({@damage 6d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The pit fiend's spellcasting ability is Charisma (spell save {@dc 21}). The pit fiend can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell hold monster}", + "{@spell wall of fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Pit Fiend-MM", + "__dataclass__": "Monster" + }, + { + "name": "Pixie", + "source": "MM", + "page": 253, + "size_str": "Tiny", + "maintype": "fey", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 2, + "dexterity": 20, + "constitution": 8, + "intelligence": 10, + "wisdom": 14, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Sylvan" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The pixie has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Superior Invisibility", + "body": [ + "The pixie magically turns {@condition invisible} until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the pixie wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The pixie's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring only its pixie dust as a component:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dancing lights}", + "{@spell detect evil and good}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell entangle}", + "{@spell fly}", + "{@spell phantasmal force}", + "{@spell polymorph}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pixie-MM", + "__dataclass__": "Monster" + }, + { + "name": "Planetar", + "source": "MM", + "page": 17, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 24, + "dexterity": 20, + "constitution": 24, + "intelligence": 19, + "wisdom": 22, + "charisma": 25, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "wis": "+11", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Angelic Weapons", + "body": [ + "The planetar's weapon attacks are magical. When the planetar hits with any weapon, the weapon deals an extra {@damage 5d8} radiant damage (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Divine Awareness", + "body": [ + "The planetar knows if it hears a lie." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The planetar has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The planetar makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}21 ({@damage 4d6 + 7}) slashing damage plus 22 ({@damage 5d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing Touch (4/Day)", + "body": [ + "The planetar touches another creature. The target magically regains 30 ({@dice 6d8 + 3}) hit points and is freed from any curse, disease, poison, blindness, or deafness." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The planetar's spellcasting ability is Charisma (spell save {@dc 20}). The planetar can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell flame strike}", + "{@spell raise dead}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell commune}", + "{@spell control weather}", + "{@spell insect plague}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Planetar-MM", + "__dataclass__": "Monster" + }, + { + "name": "Plesiosaurus", + "source": "MM", + "page": 80, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The plesiosaurus can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Plesiosaurus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Poisonous Snake", + "source": "MM", + "page": 334, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 2, + "dexterity": 16, + "constitution": 11, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "senses": [ + "blindsight 10 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage, and the target must make a {@dc 10} Constitution saving throw, taking 5 ({@damage 2d4}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "IMR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Poisonous Snake-MM", + "__dataclass__": "Monster" + }, + { + "name": "Polar Bear", + "source": "MM", + "page": 334, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 20, + "dexterity": 10, + "constitution": 16, + "intelligence": 2, + "wisdom": 13, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The bear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bear makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Polar Bear-MM", + "__dataclass__": "Monster" + }, + { + "name": "Poltergeist", + "source": "MM", + "page": 279, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 1, + "dexterity": 14, + "constitution": 11, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The poltergeist can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the poltergeist has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility", + "body": [ + "The poltergeist is {@condition invisible}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Forceful Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Thrust", + "body": [ + "The poltergeist targets a creature or unattended object within 30 feet of it. A creature must be Medium or smaller to be affected by this magic, and an object can weigh up to 150 pounds.", + "If the target is a creature, the poltergeist makes a Charisma check contested by the target's Strength check. If the poltergeist wins the contest, the poltergeist hurls the target up to 30 feet in any direction, including upward. If the target then comes into contact with a hard surface or heavy object, the target takes {@damage 1d6} damage per 10 feet moved.", + "If the target is an object that isn't being worn or carried, the poltergeist hurls it up to 30 feet in any direction. The poltergeist can use the object as a ranged weapon, attacking one creature along the object's path ({@hit 4} to hit) and dealing 5 ({@damage 2d4}) bludgeoning damage on a hit." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Poltergeist-MM", + "__dataclass__": "Monster" + }, + { + "name": "Pony", + "source": "MM", + "page": 335, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 15, + "dexterity": 10, + "constitution": 13, + "intelligence": 2, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pony-MM", + "__dataclass__": "Monster" + }, + { + "name": "Priest", + "source": "MM", + "page": 348, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 10, + "constitution": 12, + "intelligence": 13, + "wisdom": 16, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any two languages" + ], + "traits": [ + { + "title": "Divine Eminence", + "body": [ + "As a bonus action, the priest can expend a spell slot to cause its melee weapon attacks to magically deal an extra 10 ({@damage 3d6}) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If the priest expends a spell slot of 2nd level or higher, the extra damage increases by {@damage 1d6} for each level above 1st." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). The priest has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell guiding bolt}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Priest-MM", + "__dataclass__": "Monster" + }, + { + "name": "Pseudodragon", + "source": "MM", + "page": 254, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d4 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 15, + "constitution": 13, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "understands Common and Draconic but can't speak" + ], + "traits": [ + { + "title": "Keen Senses", + "body": [ + "The pseudodragon has advantage on Wisdom ({@skill Perception}) checks that rely on sight, hearing, or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The pseudodragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "The pseudodragon can magically communicate simple ideas, emotions, and images telepathically with any creature within 100 feet of it that can understand a language." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or become {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target falls {@condition unconscious} for the same duration, or until it takes damage or another creature uses an action to shake it awake." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pseudodragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Pteranodon", + "source": "MM", + "page": 80, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 15, + "constitution": 10, + "intelligence": 2, + "wisdom": 9, + "charisma": 5, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Flyby", + "body": [ + "The pteranodon doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "WBtW" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pteranodon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Purple Worm", + "source": "MM", + "page": 255, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 247, + "formula": "15d20 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 28, + "dexterity": 7, + "constitution": 22, + "intelligence": 1, + "wisdom": 8, + "charisma": 4, + "passive": 9, + "saves": { + "con": "+11", + "wis": "+4" + }, + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Tunneler", + "body": [ + "The worm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The worm makes two attacks: one with its bite and one with its stinger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the worm, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the worm's turns.", + "If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Stinger", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one creature. {@h}19 ({@damage 3d6 + 9}) piercing damage, and the target must make a {@dc 19} Constitution saving throw, taking 42 ({@damage 12d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Purple Worm-MM", + "__dataclass__": "Monster" + }, + { + "name": "Quadrone", + "source": "MM", + "page": 226, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron" + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The quadrone can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the quadrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quadrone makes two fist attacks or four shortbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Quadrone-MM", + "__dataclass__": "Monster" + }, + { + "name": "Quaggoth", + "source": "MM", + "page": 256, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 12, + "constitution": 16, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Wounded Fury", + "body": [ + "While it has 10 hit points or fewer, the quaggoth has advantage on attack rolls. In addition, it deals an extra 7 ({@damage 2d6}) damage to any target it hits with a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quaggoth makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + } + ], + "subtype": "quaggoth", + "actions_note": "", + "mythic": null, + "key": "Quaggoth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Quaggoth Spore Servant", + "source": "MM", + "page": 230, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 12, + "constitution": 16, + "intelligence": 2, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spore servant makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Quaggoth Spore Servant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Quaggoth Thonot", + "source": "MM", + "page": 256, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 12, + "constitution": 16, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Wounded Fury", + "body": [ + "While it has 10 hit points or fewer, the quaggoth has advantage on attack rolls. In addition, it deals an extra 7 ({@damage 2d6}) damage to any target it hits with a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quaggoth makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The quaggoth's innate spellcasting ability is Wisdom (spell save {@dc 11}). The quaggoth can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell feather fall}", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell cure wounds}", + "{@spell enlarge/reduce}", + "{@spell heat metal}", + "{@spell mirror image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "IDRotF" + } + ], + "subtype": "quaggoth", + "actions_note": "", + "mythic": null, + "key": "Quaggoth Thonot-MM", + "__dataclass__": "Monster" + }, + { + "name": "Quasit", + "source": "MM", + "page": 63, + "size_str": "Tiny", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "3d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 5, + "dexterity": 17, + "constitution": 10, + "intelligence": 7, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The quasit can use its action to polymorph into a beast form that resembles a bat (speed 10 feet fly 40 ft.), a centipede (40 ft., climb 40 ft.), or a toad (40 ft., swim 40 ft.), or back into its true form. Its statistics are the same in each form, except for the speed changes noted. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The quasit has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw (Bite in Beast Form)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or take 5 ({@damage 2d4}) poison damage and become {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scare (1/Day)", + "body": [ + "One creature of the quasit's choice within 20 feet of it must succeed on a {@dc 10} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility", + "body": [ + "The quasit magically turns {@condition invisible} until it attacks or uses Scare, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the quasit wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Quasit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Quipper", + "source": "MM", + "page": 335, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 16, + "constitution": 9, + "intelligence": 1, + "wisdom": 7, + "charisma": 2, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The quipper has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The quipper can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "PSA" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Quipper-MM", + "__dataclass__": "Monster" + }, + { + "name": "Rakshasa", + "source": "MM", + "page": 257, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 14, + "dexterity": 17, + "constitution": 18, + "intelligence": 13, + "wisdom": 16, + "charisma": 20, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": [ + "piercing" + ], + "note": "from magic weapons wielded by good creatures", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Limited Magic Immunity", + "body": [ + "The rakshasa can't be affected or detected by spells of 6th level or lower unless it wishes to be. It has advantage on saving throws against all other spells and magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The rakshasa makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a {@spell remove curse} spell or similar magic." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The rakshasa's innate spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The rakshasa can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell invisibility}", + "{@spell major image}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate person}", + "{@spell fly}", + "{@spell plane shift}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "ERLW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rakshasa-MM", + "__dataclass__": "Monster" + }, + { + "name": "Rat", + "source": "MM", + "page": 335, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 11, + "constitution": 9, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The rat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Raven", + "source": "MM", + "page": 335, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 14, + "constitution": 8, + "intelligence": 2, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Mimicry", + "body": [ + "The raven can mimic simple sounds it has heard, such as a person whispering, a baby crying, or an animal chittering. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Raven-MM", + "__dataclass__": "Monster" + }, + { + "name": "Red Dragon Wyrmling", + "source": "MM", + "page": 98, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 12, + "wisdom": 11, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+5", + "wis": "+2", + "cha": "+4" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 24 ({@damage 7d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "DSotDQ" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Red Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Red Slaad", + "source": "MM", + "page": 276, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 12, + "constitution": 16, + "intelligence": 6, + "wisdom": 6, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Slaad", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The slaad regains 10 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The slaad makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 14} Constitution saving throw or be infected with a disease\u2014a minuscule slaad egg.", + "A humanoid host can carry only one slaad egg to term at a time. Over three months, the egg moves to the chest cavity, gestates, and forms a {@creature slaad tadpole}. In the 24-hour period before giving birth, the host starts to feel unwell, its speed is halved, and it has disadvantage on attack rolls, ability checks, and saving throws. At birth, the tadpole chews its way through vital organs and out of the host's chest in 1 round, killing the host in the process.", + "If the disease is cured before the tadpole's emergence, the unborn slaad is disintegrated." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "IDRotF" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Red Slaad-MM", + "__dataclass__": "Monster" + }, + { + "name": "Reef Shark", + "source": "MM", + "page": 336, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 13, + "constitution": 13, + "intelligence": 1, + "wisdom": 10, + "charisma": 4, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The shark has advantage on an attack roll against a creature if at least one of the shark's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The shark can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Reef Shark-MM", + "__dataclass__": "Monster" + }, + { + "name": "Remorhaz", + "source": "MM", + "page": 258, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 24, + "dexterity": 13, + "constitution": 21, + "intelligence": 4, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Heated Body", + "body": [ + "A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes 10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}40 ({@damage 6d10 + 7}) piercing damage plus 10 ({@damage 3d6}) fire damage. If the target is a creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the remorhaz can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the remorhaz, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the remorhaz's turns.", + "If the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a {@dc 15} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Remorhaz-MM", + "__dataclass__": "Monster" + }, + { + "name": "Revenant", + "source": "MM", + "page": 259, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 13, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "saves": { + "str": "+7", + "con": "+7", + "wis": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The revenant regains 10 hit points at the start of its turn. If the revenant takes fire or radiant damage, this trait doesn't function at the start of the revenant's next turn. The revenant's body is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "When the revenant's body is destroyed, its soul lingers. After 24 hours, the soul inhabits and animates another humanoid corpse on the same plane of existence and regains all its hit points. While the soul is bodiless, a {@spell wish} spell can be used to force the soul to go to the afterlife and not return." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Immunity", + "body": [ + "The revenant is immune to effects that turn undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vengeful Tracker", + "body": [ + "The revenant knows the distance to and direction of any creature against which it seeks revenge, even if the creature and the revenant are on different planes of existence. If the creature being tracked by the revenant dies, the revenant knows." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The revenant makes two fist attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. If the target is a creature against which the revenant has sworn vengeance, the target takes an extra 14 ({@damage 4d6}) bludgeoning damage. Instead of dealing damage, the revenant can grapple the target (escape {@dc 14}) provided the target is Large or smaller." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vengeful Glare", + "body": [ + "The revenant targets one creature it can see within 30 feet of it and against which it has sworn vengeance. The target must make a {@dc 15} Wisdom saving throw. On a failure, the target is {@condition paralyzed} until the revenant deals damage to it, or until the end of the revenant's next turn. When the paralysis ends, the target is {@condition frightened} of the revenant for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, with disadvantage if it can see the revenant, ending the {@condition frightened} condition on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Revenant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Rhinoceros", + "source": "MM", + "page": 336, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 21, + "dexterity": 8, + "constitution": 15, + "intelligence": 2, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "traits": [ + { + "title": "Charge", + "body": [ + "If the rhinoceros moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "IDRotF" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rhinoceros-MM", + "__dataclass__": "Monster" + }, + { + "name": "Riding Horse", + "source": "MM", + "page": 336, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d10 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 16, + "dexterity": 10, + "constitution": 12, + "intelligence": 2, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Riding Horse-MM", + "__dataclass__": "Monster" + }, + { + "name": "Roc", + "source": "MM", + "page": 260, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 248, + "formula": "16d20 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 28, + "dexterity": 10, + "constitution": 20, + "intelligence": 3, + "wisdom": 10, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+9", + "wis": "+4", + "cha": "+3" + }, + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The roc has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The roc makes two attacks: one with its beak and one with its talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}27 ({@damage 4d8 + 9}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}23 ({@damage 4d6 + 9}) slashing damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained}, and the roc can't use its talons on another target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Roc-MM", + "__dataclass__": "Monster" + }, + { + "name": "Roper", + "source": "MM", + "page": 261, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 8, + "constitution": 17, + "intelligence": 7, + "wisdom": 16, + "charisma": 6, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the roper remains motionless, it is indistinguishable from a normal cave formation, such as a stalagmite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Tendrils", + "body": [ + "The roper can have up to six tendrils at a time. Each tendril can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a tendril deals no damage to the roper, which can extrude a replacement tendril on its next turn. A tendril can also be broken if a creature takes an action and succeeds on a {@dc 15} Strength check against it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The roper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tendril", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 50 ft., one creature. {@h}The target is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target is {@condition restrained} and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reel", + "body": [ + "The roper pulls each creature {@condition grappled} by it up to 25 feet straight toward it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Roper-MM", + "__dataclass__": "Monster" + }, + { + "name": "Rug of Smothering", + "source": "MM", + "page": 20, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 14, + "constitution": 10, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The rug is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the rug must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "Damage Transfer", + "body": [ + "While it is grappling a creature, the rug takes only half the damage dealt to it, and the creature {@condition grappled} by the rug takes the other half." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the rug remains motionless, it is indistinguishable from a normal rug." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Smother", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature. {@h}The creature is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, {@condition blinded}, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rug of Smothering-MM", + "__dataclass__": "Monster" + }, + { + "name": "Rust Monster", + "source": "MM", + "page": 262, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 13, + "intelligence": 2, + "wisdom": 13, + "charisma": 6, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Iron Scent", + "body": [ + "The rust monster can pinpoint, by scent, the location of ferrous metal within 30 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rust Metal", + "body": [ + "Any nonmagical weapon made of metal that hits the rust monster corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Non magical ammunition made of metal that hits the rust monster is destroyed after dealing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antennae", + "body": [ + "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a {@dc 11} Dexterity saving throw to avoid the rust monster's touch.", + "If the object touched is either metal armor or a metal shield being worn or carried, it takes a permanent and cumulative \u22121 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rust Monster-MM", + "__dataclass__": "Monster" + }, + { + "name": "Saber-Toothed Tiger", + "source": "MM", + "page": 336, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 3, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The tiger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the tiger moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the tiger can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CoS" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Saber-Toothed Tiger-MM", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin", + "source": "MM", + "page": 263, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 11, + "constitution": 12, + "intelligence": 12, + "wisdom": 13, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "SatO" + } + ], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin-MM", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Baron", + "source": "MM", + "page": 264, + "size_str": "Large", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "9d10 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 15, + "constitution": 16, + "intelligence": 14, + "wisdom": 13, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+6", + "int": "+5", + "wis": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sahuagin makes three attacks: one with his bite and two with his claws or trident." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Baron-MM", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Priestess", + "source": "MM", + "page": 264, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 11, + "constitution": 12, + "intelligence": 12, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The sahuagin has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The sahuagin can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The sahuagin can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sahuagin makes two melee attacks: one with her bite and one with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The sahuagin is a 6th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell detect magic}", + "{@spell guiding bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon} (trident)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell mass healing word}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + } + ], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Priestess-MM", + "__dataclass__": "Monster" + }, + { + "name": "Salamander", + "source": "MM", + "page": 266, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ignan" + ], + "traits": [ + { + "title": "Heated Body", + "body": [ + "A creature that touches the salamander or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heated Weapons", + "body": [ + "Any metal melee weapon the salamander wields deals an extra 3 ({@damage 1d6}) fire damage on a hit (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The salamander makes two attacks: one with its spear and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "GotSF" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Salamander-MM", + "__dataclass__": "Monster" + }, + { + "name": "Satyr", + "source": "MM", + "page": 267, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 16, + "constitution": 11, + "intelligence": 12, + "wisdom": 10, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The satyr has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Satyr-MM", + "__dataclass__": "Monster" + }, + { + "name": "Scarecrow", + "source": "MM", + "page": 268, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 11, + "dexterity": 13, + "constitution": 11, + "intelligence": 10, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the scarecrow remains motionless, it is indistinguishable from an ordinary, inanimate scarecrow." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scarecrow makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage. If the target is a creature, it must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} until the end of the scarecrow's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrifying Glare", + "body": [ + "The scarecrow targets one creature it can see within 30 feet of it. If the target can see the scarecrow, the target must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition frightened} until the end of the scarecrow's next turn. The {@condition frightened} target is {@condition paralyzed}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "WDH" + }, + { + "source": "CM" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Scarecrow-MM", + "__dataclass__": "Monster" + }, + { + "name": "Scorpion", + "source": "MM", + "page": 337, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 11, + "constitution": 8, + "intelligence": 1, + "wisdom": 8, + "charisma": 2, + "passive": 9, + "senses": [ + "blindsight 10 ft." + ], + "actions": [ + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}1 piercing damage, and the target must make a {@dc 9} Constitution saving throw, taking 4 ({@damage 1d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "PSX" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Scorpion-MM", + "__dataclass__": "Monster" + }, + { + "name": "Scout", + "source": "MM", + "page": 349, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Keen Hearing and Sight", + "body": [ + "The scout has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scout makes two melee attacks or two ranged attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, ranged 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Scout-MM", + "__dataclass__": "Monster" + }, + { + "name": "Sea Hag", + "source": "MM", + "page": 179, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 13, + "constitution": 16, + "intelligence": 12, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The hag can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrific Appearance", + "body": [ + "Any humanoid that starts its turn within 30 feet of the hag and can see the hag's true form must make a {@dc 11} Wisdom saving throw. On a failed save, the creature is {@condition frightened} for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the hag is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Horrific Appearance for the next 24 hours.", + "Unless the target is {@status surprised} or the revelation of the hag's true form is sudden, the target can avert its eyes and avoid making the initial saving throw. Until the start of its next turn, a creature that averts its eyes has disadvantage on attack rolls against the hag." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Glare", + "body": [ + "The hag targets one {@condition frightened} creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a {@dc 11} Wisdom saving throw against this magic or drop to 0 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illusory Appearance", + "body": [ + "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.", + "The changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a {@dc 16} Intelligence ({@skill Investigation}) check to discern that the hag is disguised." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sea Hag-MM", + "__dataclass__": "Monster" + }, + { + "name": "Sea Horse", + "source": "MM", + "page": 337, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 12, + "constitution": 8, + "intelligence": 1, + "wisdom": 10, + "charisma": 2, + "passive": 10, + "traits": [ + { + "title": "Water Breathing", + "body": [ + "The sea horse can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sea Horse-MM", + "__dataclass__": "Monster" + }, + { + "name": "Shadow", + "source": "MM", + "page": 269, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 6, + "dexterity": 14, + "constitution": 13, + "intelligence": 6, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The shadow can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the shadow can take the Hide action as a bonus action. Its stealth bonus is also improved to +6." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Weakness", + "body": [ + "While in sunlight, the shadow has disadvantage on attack rolls, ability checks, and saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Strength Drain", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d6 + 2}) necrotic damage, and the target's Strength score is reduced by {@dice 1d4}. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.", + "If a non-evil humanoid dies from this attack, a new shadow rises from the corpse {@dice 1d4} hours later." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "SjA" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shadow-MM", + "__dataclass__": "Monster" + }, + { + "name": "Shadow Demon", + "source": "MM", + "page": 64, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 1, + "dexterity": 17, + "constitution": 12, + "intelligence": 14, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+4" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The demon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Sensitivity", + "body": [ + "While in bright light, the demon has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the demon can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) psychic damage or, if the demon had advantage on the attack roll, 17 ({@damage 4d6 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Shadow Demon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Shambling Mound", + "source": "MM", + "page": 270, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Lightning Absorption", + "body": [ + "Whenever the shambling mound is subjected to lightning damage, it takes no damage and regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is {@condition grappled} (escape {@dc 14}), and the shambling mound uses its Engulf on it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Engulf", + "body": [ + "The shambling mound engulfs a Medium or smaller creature {@condition grappled} by it. The engulfed target is {@condition blinded}, {@condition restrained}, and unable to breathe, and it must succeed on a {@dc 14} Constitution saving throw at the start of each of the mound's turns or take 13 ({@damage 2d8 + 4}) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "BMT" + }, + { + "source": "HFStCM" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shambling Mound-MM", + "__dataclass__": "Monster" + }, + { + "name": "Shield Guardian", + "source": "MM", + "page": 271, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 8, + "constitution": 18, + "intelligence": 7, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "understands commands given in any language but can't speak" + ], + "traits": [ + { + "title": "Bound", + "body": [ + "The shield guardian is magically bound to an amulet. As long as the guardian and its amulet are on the same plane of existence, the amulet's wearer can telepathically call the guardian to travel to it, and the guardian knows the distance and direction to the amulet. If the guardian is within 60 feet of the amulet's wearer, half of any damage the wearer takes (rounded up) is transferred to the guardian." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The shield guardian regains 10 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Storing", + "body": [ + "A spellcaster who wears the shield guardian's amulet can cause the guardian to store one spell of 4th level or lower. To do so, the wearer must cast the spell on the guardian. The spell has no effect but is stored within the guardian. When commanded to do so by the wearer or when a situation arises that was predefined by the spellcaster, the guardian casts the stored spell with any parameters set by the original caster, requiring no components. When the spell is cast or a new spell is stored, any previously stored spell is lost." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The guardian makes two fist attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shield", + "body": [ + "When a creature makes an attack against the wearer of the guardian's amulet, the guardian grants a +2 bonus to the wearer's AC if the guardian is within 5 feet of the wearer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CRCotN" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shield Guardian-MM", + "__dataclass__": "Monster" + }, + { + "name": "Shrieker", + "source": "MM", + "page": 138, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 5 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 1, + "constitution": 10, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the shrieker remains motionless, it is indistinguishable from an ordinary fungus." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shriek", + "body": [ + "When bright light or a creature is within 30 feet of the shrieker, it emits a shriek audible within 300 feet of it. The shrieker continues to shriek until the disturbance moves out of range and for {@dice 1d4} of the shrieker's turns afterward." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "PaBTSO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shrieker-MM", + "__dataclass__": "Monster" + }, + { + "name": "Silver Dragon Wyrmling", + "source": "MM", + "page": 118, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 12, + "wisdom": 11, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+5", + "wis": "+2", + "cha": "+4" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Cold Breath", + "body": [ + "The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a {@dc 13} Constitution saving throw, taking 18 ({@damage 4d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Breath", + "body": [ + "The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Silver Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Skeleton", + "source": "MM", + "page": 272, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "armor scraps", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 14, + "constitution": 15, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages it spoke in life but can't speak" + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skeleton-MM", + "__dataclass__": "Monster" + }, + { + "name": "Slaad Tadpole", + "source": "MM", + "page": 276, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "4d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 7, + "dexterity": 15, + "constitution": 10, + "intelligence": 3, + "wisdom": 5, + "charisma": 3, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Slaad but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The slaad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Slaad Tadpole-MM", + "__dataclass__": "Monster" + }, + { + "name": "Smoke Mephit", + "source": "MM", + "page": 217, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "Ignan" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the mephit dies, it leaves behind a cloud of smoke that fills a 5-foot-radius sphere centered on its space. The sphere is heavily obscured. Wind disperses the cloud, which otherwise lasts for 1 minute." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cinder Breath {@recharge}", + "body": [ + "The mephit exhales a 15-foot cone of smoldering ash. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw or be {@condition blinded} until the end of the mephit's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (1/Day)", + "body": [ + "The mephit can innately cast {@spell dancing lights}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Smoke Mephit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Solar", + "source": "MM", + "page": 18, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 243, + "formula": "18d10 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 150, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 26, + "dexterity": 22, + "constitution": 26, + "intelligence": 25, + "wisdom": 25, + "charisma": 30, + "passive": 24, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+14", + "wis": "+14", + "cha": "+17" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Angelic Weapons", + "body": [ + "The solar's weapon attacks are magical. When the solar hits with any weapon, the weapon deals an extra {@damage 6d8} radiant damage (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Divine Awareness", + "body": [ + "The solar knows if it hears a lie." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The solar has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The solar makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) slashing damage plus 27 ({@damage 6d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slaying Longbow", + "body": [ + "{@atk rw} {@hit 13} to hit, range 150/600 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage plus 27 ({@damage 6d8}) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a {@dc 15} Constitution saving throw or die." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flying Sword", + "body": [ + "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing Touch (4/Day)", + "body": [ + "The solar touches another creature. The target magically regains 40 ({@dice 8d8 + 4}) hit points and is freed from any curse, disease, poison, blindness, or deafness." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Teleport", + "body": [ + "The solar magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Searing Burst (Costs 2 Actions)", + "body": [ + "The solar emits magical, divine energy. Each creature of its choice in a 10-foot radius must make a {@dc 23} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage plus 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Gaze (Costs 3 Actions)", + "body": [ + "The solar targets one creature it can see within 30 feet of it. If the target can see it, the target must succeed on a {@dc 15} Constitution saving throw or be {@condition blinded} until magic such as the {@spell lesser restoration} spell removes the blindness." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The solar's spellcasting ability is Charisma (spell save {@dc 25}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell resurrection}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell commune}", + "{@spell control weather}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Solar-MM", + "__dataclass__": "Monster" + }, + { + "name": "Spectator", + "source": "MM", + "page": 30, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 14, + "constitution": 14, + "intelligence": 13, + "wisdom": 14, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The spectator shoots up to two of the following magical eye rays at one or two creatures it can see within 90 feet of it. It can use each ray only once on a turn.", + { + "title": "1. Confusion Ray", + "body": [ + "The target must succeed on a {@dc 13} Wisdom saving throw, or it can't take reactions until the end of its next turn. On its turn, the target can't move, and it uses its action to make a melee or ranged attack against a randomly determined creature within range. If the target can't attack, it does nothing on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Paralyzing Ray", + "body": [ + "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Fear Ray", + "body": [ + "The target must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the spectator is visible to the target, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Wounding Ray", + "body": [ + "The target must make a {@dc 13} Constitution saving throw, taking 16 ({@damage 3d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Food and Water", + "body": [ + "The spectator magically creates enough food and water to sustain itself for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Reflection", + "body": [ + "If the spectator makes a successful saving throw against a spell, or a spell attack misses it, the spectator can choose another creature (including the spellcaster) it can see within 30 feet of it. The spell targets the chosen creature instead of the spectator. If the spell forced a saving throw, the chosen creature makes its own save. If the spell was an attack, the attack roll is rerolled against the chosen creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LMoP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "RMBRE" + }, + { + "source": "IDRotF" + }, + { + "source": "SjA" + }, + { + "source": "KftGV" + }, + { + "source": "PaBTSO" + }, + { + "source": "ToFW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spectator-MM", + "__dataclass__": "Monster" + }, + { + "name": "Specter", + "source": "MM", + "page": 279, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 1, + "dexterity": 14, + "constitution": 11, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The specter can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the specter has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Life Drain", + "body": [ + "{@atk ms} {@hit 4} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) necrotic damage. The target must succeed on a {@dc 10} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Specter-MM", + "__dataclass__": "Monster" + }, + { + "name": "Spider", + "source": "MM", + "page": 337, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 14, + "constitution": 8, + "intelligence": 1, + "wisdom": 10, + "charisma": 2, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The spider ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}1 piercing damage, and the target must succeed on a {@dc 9} Constitution saving throw or take 2 ({@damage 1d4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "PSX" + }, + { + "source": "KftGV" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spider-MM", + "__dataclass__": "Monster" + }, + { + "name": "Spined Devil", + "source": "MM", + "page": 78, + "size_str": "Small", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 11, + "wisdom": 14, + "charisma": 8, + "passive": 12, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the devil's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The devil doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Spines", + "body": [ + "The devil has twelve tail spines. Used spines regrow by the time the devil finishes a long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The devil has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devil makes two attacks: one with its bite and one with its fork or two with its tail spines." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}5 ({@damage 2d4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fork", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Spine", + "body": [ + "{@atk rw} {@hit 4} to hit, range 20/80 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "BGDIA" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Spined Devil-MM", + "__dataclass__": "Monster" + }, + { + "name": "Spirit Naga", + "source": "MM", + "page": 234, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 17, + "constitution": 14, + "intelligence": 16, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "saves": { + "dex": "+6", + "con": "+5", + "wis": "+5", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Rejuvenation", + "body": [ + "If it dies, the naga returns to life in {@dice 1d6} days and regains all its hit points. Only a {@spell wish} spell can prevent this trait from functioning." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must make a {@dc 13} Constitution saving throw, taking 31 ({@damage 7d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The naga is a 10th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks), and it needs only verbal components to cast its spells. It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lightning bolt}", + "{@spell water breathing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dominate person}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "PaBTSO" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spirit Naga-MM", + "__dataclass__": "Monster" + }, + { + "name": "Sprite", + "source": "MM", + "page": 283, + "size_str": "Tiny", + "maintype": "fey", + "alignment": "Neutral Good", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 3, + "dexterity": 18, + "constitution": 10, + "intelligence": 14, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 40/160 ft., one target. {@h}1 piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or become {@condition poisoned} for 1 minute. If its saving throw result is 5 or lower, the {@condition poisoned} target falls {@condition unconscious} for the same duration, or until it takes damage or another creature takes an action to shake it awake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heart Sight", + "body": [ + "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a {@dc 10} Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility", + "body": [ + "The sprite magically turns {@condition invisible} until it attacks or casts a spell, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment the sprite wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sprite-MM", + "__dataclass__": "Monster" + }, + { + "name": "Spy", + "source": "MM", + "page": 349, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 15, + "constitution": 10, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any two languages" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of its turns, the spy can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "The spy deals an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the spy that isn't {@condition incapacitated} and the spy doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spy makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Spy-MM", + "__dataclass__": "Monster" + }, + { + "name": "Steam Mephit", + "source": "MM", + "page": 217, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 5, + "dexterity": 11, + "constitution": 10, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "Ignan" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the mephit dies, it explodes in a cloud of steam. Each creature within 5 feet of the mephit must succeed on a {@dc 10} Dexterity saving throw or take 4 ({@damage 1d8}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d4}) slashing damage plus 2 ({@damage 1d4}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steam Breath {@recharge}", + "body": [ + "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a {@dc 10} Dexterity saving throw, taking 4 ({@damage 1d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (1/Day)", + "body": [ + "The mephit can innately cast {@spell blur}, requiring no material components. Its innate spellcasting ability is Charisma." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell blur}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "ToFW" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Steam Mephit-MM", + "__dataclass__": "Monster" + }, + { + "name": "Stirge", + "source": "MM", + "page": 284, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 4, + "dexterity": 16, + "constitution": 11, + "intelligence": 2, + "wisdom": 8, + "charisma": 6, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Blood Drain", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 ({@dice 1d4 + 3}) hit points due to blood loss.", + "The stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "DoSI" + }, + { + "source": "KftGV" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stirge-MM", + "__dataclass__": "Monster" + }, + { + "name": "Stone Giant", + "source": "MM", + "page": 156, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 23, + "dexterity": 15, + "constitution": 20, + "intelligence": 10, + "wisdom": 12, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+8", + "wis": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Stone Camouflage", + "body": [ + "The giant has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two greatclub attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Rock Catching", + "body": [ + "If a rock or similar object is hurled at the giant, the giant can, with a successful {@dc 10} Dexterity saving throw, catch the missile and take no bludgeoning damage from it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "MOT" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Giant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Stone Golem", + "source": "MM", + "page": 170, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 22, + "dexterity": 9, + "constitution": 20, + "intelligence": 3, + "wisdom": 11, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The golem has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slow {@recharge 5}", + "body": [ + "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a {@dc 17} Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Golem-MM", + "__dataclass__": "Monster" + }, + { + "name": "Storm Giant", + "source": "MM", + "page": 156, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 230, + "formula": "20d12 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 29, + "dexterity": 14, + "constitution": 20, + "intelligence": 16, + "wisdom": 18, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+14", + "con": "+10", + "wis": "+9", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The giant can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}30 ({@damage 6d6 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 14} to hit, range 60/240 ft., one target. {@h}35 ({@damage 4d12 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike {@recharge 5}", + "body": [ + "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a {@dc 17} Dexterity saving throw, taking 54 ({@damage 12d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The giant's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell feather fall}", + "{@spell levitate}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell control weather}", + "{@spell water breathing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Storm Giant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Succubus", + "source": "MM", + "page": 285, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 8, + "dexterity": 17, + "constitution": 13, + "intelligence": 15, + "wisdom": 12, + "charisma": 20, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Telepathic Bond", + "body": [ + "The fiend ignores the range restriction on its telepathy when communicating with a creature it has {@condition charmed}. The two don't even need to be on the same plane of existence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "The fiend can use its action to polymorph into a Small or Medium humanoid, or back into its true form. Without wings, the fiend loses its flying speed. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw (Fiend Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "One humanoid the fiend can see within 30 feet of it must succeed on a {@dc 15} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.", + "The fiend can have only one target {@condition charmed} at a time. If it charms another, the effect on the previous target ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Draining Kiss", + "body": [ + "The fiend kisses a creature {@condition charmed} by it or a willing creature. The target must make a {@dc 15} Constitution saving throw against this magic, taking 32 ({@damage 5d10 + 5}) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Etherealness", + "body": [ + "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CRCotN" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "CoA" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Succubus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Bats", + "source": "MM", + "page": 337, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 5, + "dexterity": 15, + "constitution": 10, + "intelligence": 2, + "wisdom": 12, + "charisma": 4, + "passive": 11, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Echolocation", + "body": [ + "The swarm can't use its blindsight while {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing", + "body": [ + "The swarm has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny bat. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one creature in the swarm's space. {@h}5 ({@damage 2d4}) piercing damage, or 2 ({@damage 1d4}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "AATM" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Bats-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Beetles", + "source": "MM", + "page": 338, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 5, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 1, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Beetles-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Centipedes", + "source": "MM", + "page": 338, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 1, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer.", + "A creature reduced to 0 hit points by a swarm of centipedes is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "WDMM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Centipedes-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Insects", + "source": "MM", + "page": 338, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 1, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "LoX" + }, + { + "source": "PSX" + }, + { + "source": "PSA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Insects-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Poisonous Snakes", + "source": "MM", + "page": 338, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 8, + "dexterity": 18, + "constitution": 11, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny snake. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 0 ft., one creature in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, or 3 ({@damage 1d6}) piercing damage if the swarm has half of its hit points or fewer. The target must make a {@dc 10} Constitution saving throw, taking 14 ({@damage 4d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "JttRC" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Poisonous Snakes-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Quippers", + "source": "MM", + "page": 338, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 28, + "formula": "8d8 - 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 16, + "constitution": 9, + "intelligence": 1, + "wisdom": 7, + "charisma": 2, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The swarm has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny quipper. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "The swarm can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one creature in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "LR" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSA" + }, + { + "source": "GHLoE" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Quippers-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Rats", + "source": "MM", + "page": 339, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 24, + "formula": "7d8 - 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 9, + "dexterity": 11, + "constitution": 9, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The swarm has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 0 ft., one target in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, or 3 ({@damage 1d6}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Rats-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Ravens", + "source": "MM", + "page": 339, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 24, + "formula": "7d8 - 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 14, + "constitution": 8, + "intelligence": 3, + "wisdom": 12, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny raven. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Beaks", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, or 3 ({@damage 1d6}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Ravens-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Spiders", + "source": "MM", + "page": 338, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 1, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the swarm knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The swarm ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "MOT" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Spiders-MM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Wasps", + "source": "MM", + "page": 338, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 1, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "WBtW" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Wasps-MM", + "__dataclass__": "Monster" + }, + { + "name": "Tarrasque", + "source": "MM", + "page": 286, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 25, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 676, + "formula": "33d20 + 330", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "30", + "xp": 155000, + "strength": 30, + "dexterity": 11, + "constitution": 30, + "intelligence": 3, + "wisdom": 11, + "charisma": 11, + "passive": 10, + "saves": { + "int": "+5", + "wis": "+9", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the tarrasque fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The tarrasque has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reflective Carapace", + "body": [ + "Any time the tarrasque is targeted by a {@spell magic missile} spell, a line spell, or a spell that requires a ranged attack roll, roll a {@dice d6}. On a 1 to 5, the tarrasque is unaffected. On a 6, the tarrasque is unaffected, and the effect is reflected back at the caster as though it originated from the tarrasque, turning the caster into the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The tarrasque deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}36 ({@damage 4d12 + 10}) piercing damage. If the target is a creature, it is {@condition grappled} (escape {@dc 20}). Until this grapple ends, the target is {@condition restrained}, and the tarrasque can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}28 ({@damage 4d8 + 10}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horns", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}32 ({@damage 4d10 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}24 ({@damage 4d6 + 10}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 20} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the tarrasque, and it takes 56 ({@damage 16d6}) acid damage at the start of each of the tarrasque's turns.", + "If the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 30 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The tarrasque makes one claw attack or tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The tarrasque moves up to half its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chomp (Costs 2 Actions)", + "body": [ + "The tarrasque makes one bite attack or uses its Swallow." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "LoX" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Tarrasque-MM", + "__dataclass__": "Monster" + }, + { + "name": "Thri-kreen", + "source": "MM", + "page": 288, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 15, + "constitution": 13, + "intelligence": 8, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Thri-kreen" + ], + "traits": [ + { + "title": "Chameleon Carapace", + "body": [ + "The thri-kreen can change the color of its carapace to match the color and texture of its surroundings. As a result, it has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The thri-kreen's long jump is up to 30 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thri-kreen makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 minute. If the saving throw fails by 5 or more, the target is also {@condition paralyzed} while {@condition poisoned} in this way. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "QftIS" + } + ], + "subtype": "thri-kreen", + "actions_note": "", + "mythic": null, + "key": "Thri-kreen-MM", + "__dataclass__": "Monster" + }, + { + "name": "Thug", + "source": "MM", + "page": 350, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 11, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thug makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CoS" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "KftGV" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Thug-MM", + "__dataclass__": "Monster" + }, + { + "name": "Tiger", + "source": "MM", + "page": 339, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d10 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 15, + "constitution": 14, + "intelligence": 3, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The tiger has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the tiger moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the tiger can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tiger-MM", + "__dataclass__": "Monster" + }, + { + "name": "Treant", + "source": "MM", + "page": 289, + "size_str": "Huge", + "maintype": "plant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 23, + "dexterity": 8, + "constitution": 21, + "intelligence": 12, + "wisdom": 16, + "charisma": 12, + "passive": 13, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the treant remains motionless, it is indistinguishable from a normal tree." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The treant deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The treant makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 10} to hit, range 60/180 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Animate Trees (1/Day)", + "body": [ + "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a {@creature treant}, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Treant-MM", + "__dataclass__": "Monster" + }, + { + "name": "Tribal Warrior", + "source": "MM", + "page": 350, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 12, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 13, + "dexterity": 11, + "constitution": 12, + "intelligence": 8, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "languages": [ + "any one language" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The warrior has advantage on an attack roll against a creature if at least one of the warrior's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Tribal Warrior-MM", + "__dataclass__": "Monster" + }, + { + "name": "Triceratops", + "source": "MM", + "page": 80, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d12 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 22, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 11, + "charisma": 5, + "passive": 10, + "traits": [ + { + "title": "Trampling Charge", + "body": [ + "If the triceratops moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the triceratops can make one stomp attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}24 ({@damage 4d8 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition prone} creature. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "ToFW" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Triceratops-MM", + "__dataclass__": "Monster" + }, + { + "name": "Tridrone", + "source": "MM", + "page": 225, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 13, + "constitution": 12, + "intelligence": 9, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron" + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The tridrone can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the tridrone dies, its body disintegrates into dust, leaving behind its weapons and anything else it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tridrone makes three fist attacks or three javelin attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "KftGV" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tridrone-MM", + "__dataclass__": "Monster" + }, + { + "name": "Troglodyte", + "source": "MM", + "page": 290, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 6, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Troglodyte" + ], + "traits": [ + { + "title": "Chameleon Skin", + "body": [ + "The troglodyte has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench", + "body": [ + "Any creature other than a troglodyte that starts its turn within 5 feet of the troglodyte must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all troglodytes for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the troglodyte has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troglodyte makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": "troglodyte", + "actions_note": "", + "mythic": null, + "key": "Troglodyte-MM", + "__dataclass__": "Monster" + }, + { + "name": "Troll", + "source": "MM", + "page": 291, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 13, + "constitution": 20, + "intelligence": 7, + "wisdom": 9, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "PSZ" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Troll-MM", + "__dataclass__": "Monster" + }, + { + "name": "Twig Blight", + "source": "MM", + "page": 32, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d6 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 6, + "dexterity": 13, + "constitution": 12, + "intelligence": 4, + "wisdom": 8, + "charisma": 3, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the blight remains motionless, it is indistinguishable from a dead shrub." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "RMBRE" + }, + { + "source": "WBtW" + }, + { + "source": "PSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "DIP" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Twig Blight-MM", + "__dataclass__": "Monster" + }, + { + "name": "Tyrannosaurus Rex", + "source": "MM", + "page": 80, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "13d12 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 25, + "dexterity": 10, + "constitution": 19, + "intelligence": 2, + "wisdom": 12, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}33 ({@damage 4d12 + 7}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the tyrannosaurus can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "SatO" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tyrannosaurus Rex-MM", + "__dataclass__": "Monster" + }, + { + "name": "Ultroloth", + "source": "MM", + "page": 314, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 16, + "dexterity": 16, + "constitution": 18, + "intelligence": 18, + "wisdom": 15, + "charisma": 19, + "passive": 17, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The ultroloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The ultroloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ultroloth can use its Hypnotic Gaze and makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hypnotic Gaze", + "body": [ + "The ultroloth's eyes sparkle with opalescent light as it targets one creature it can see within 30 feet of it. If the target can see the ultroloth, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} until the end of the ultroloth's next turn. The {@condition charmed} target is {@condition stunned}. If the target's saving throw is successful, the target is immune to the ultroloth's gaze for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The ultroloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The ultroloth's innate spellcasting ability is Charisma (spell save {@dc 17}). The ultroloth can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dimension door}", + "{@spell fear}", + "{@spell wall of fire}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell fire storm}", + "{@spell mass suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Ultroloth-MM", + "__dataclass__": "Monster" + }, + { + "name": "Umber Hulk", + "source": "MM", + "page": 292, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 13, + "constitution": 16, + "intelligence": 9, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "senses": [ + "darkvision 120 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Umber Hulk" + ], + "traits": [ + { + "title": "Confusing Gaze", + "body": [ + "When a creature starts its turn within 30 feet of the umber hulk and is able to see the umber hulk's eyes, the umber hulk can magically force it to make a {@dc 15} Charisma saving throw, unless the umber hulk is {@condition incapacitated}.", + "On a failed saving throw, the creature can't take reactions until the start of its next turn and rolls a {@dice d8} to determine what it does during that turn. On a 1 to 4, the creature does nothing. On a 5 or 6, the creature takes no action but uses all its movement to move in a random direction. On a 7 or 8, the creature makes one melee attack against a random creature, or it does nothing if no creature is within reach.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see the umber hulk until the start of its next turn, when it can avert its eyes again. If the creature looks at the umber hulk in the meantime, it must immediately make the save." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The umber hulk can burrow through solid rock at half its burrowing speed and leaves a 5 foot-wide, 8-foot-high tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The umber hulk makes three attacks: two with its claws and one with its mandibles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mandibles", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "IMR" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Umber Hulk-MM", + "__dataclass__": "Monster" + }, + { + "name": "Unicorn", + "source": "MM", + "page": 294, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 11, + "wisdom": 17, + "charisma": 16, + "passive": 13, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Elvish", + "Sylvan", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the unicorn moves at least 20 feet straight toward a target and then hits it with a horn attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The unicorn has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The unicorn's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The unicorn makes two attacks: one with its hooves and one with its horn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horn", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing Touch (3/Day)", + "body": [ + "The unicorn touches another creature with its horn. The target magically regains 11 ({@dice 2d8 + 2}) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport (1/Day)", + "body": [ + "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Hooves", + "body": [ + "The unicorn makes one attack with its hooves." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shimmering Shield (Costs 2 Actions)", + "body": [ + "The unicorn creates a shimmering, magical field around itself or another creature it can see within 60 feet of it. The target gains a +2 bonus to AC until the end of the unicorn's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heal Self (Costs 3 Actions)", + "body": [ + "The unicorn magically regains 11 ({@dice 2d8 + 2}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The unicorn's innate spellcasting ability is Charisma (spell save {@dc 14}). The unicorn can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}", + "{@spell druidcraft}", + "{@spell pass without trace}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}", + "{@spell dispel evil and good}", + "{@spell entangle}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Unicorn-MM", + "__dataclass__": "Monster" + }, + { + "name": "Vampire", + "source": "MM", + "page": 297, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 17, + "wisdom": 15, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "If the vampire isn't in sunlight or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the vampire fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misty Escape", + "body": [ + "When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.", + "While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then {@condition paralyzed} until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage if it ends its turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Vampire Form Only)", + "body": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike (Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 18})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Bat or Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under the vampire's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by the vampire. The {@condition charmed} target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.", + "Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Children of the Night (1/Day)", + "body": [ + "The vampire magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, the vampire can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The vampire moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "The vampire makes one unarmed strike." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "The vampire makes one bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Vampire-MM", + "__dataclass__": "Monster" + }, + { + "name": "Vampire Spawn", + "source": "MM", + "page": 298, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 16, + "constitution": 16, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage when it ends its turn in running water.", + "{@i Stake to the Heart.} The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is {@condition incapacitated} in its resting place.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}8 ({@damage 2d4 + 3}) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 13})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "AATM" + }, + { + "source": "GHLoE" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampire Spawn-MM", + "__dataclass__": "Monster" + }, + { + "name": "Vampire Spellcaster", + "source": "MM", + "page": 298, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 17, + "wisdom": 15, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "If the vampire isn't in sunlight or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the vampire fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misty Escape", + "body": [ + "When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.", + "While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then {@condition paralyzed} until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage if it ends its turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Vampire Form Only)", + "body": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike (Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 18})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Bat or Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under the vampire's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by the vampire. The {@condition charmed} target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.", + "Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Children of the Night (1/Day)", + "body": [ + "The vampire magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, the vampire can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The vampire moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "The vampire makes one unarmed strike." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "The vampire makes one bite attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The vampire is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The vampire has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell fog cloud}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell gust of wind}", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell bestow curse}", + "{@spell nondetection}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell greater invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell dominate person}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "RoT" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Vampire Spellcaster-MM", + "__dataclass__": "Monster" + }, + { + "name": "Vampire Warrior", + "source": "MM", + "page": 298, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 17, + "wisdom": 15, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "If the vampire isn't in sunlight or running water, it can use its action to polymorph into a Tiny bat or a Medium cloud of mist, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies.", + "While in mist form, the vampire can't take any actions, speak, or manipulate objects. It is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and it can't pass through water. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to all nonmagical damage, except the damage it takes from sunlight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the vampire fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misty Escape", + "body": [ + "When it drops to 0 hit points outside its resting place, the vampire transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that it isn't in sunlight or running water. If it can't transform, it is destroyed.", + "While it has 0 hit points in mist form, it can't revert to its vampire form, and it must reach its resting place within 2 hours or be destroyed. Once in its resting place, it reverts to its vampire form. It is then {@condition paralyzed} until it regains at least 1 hit point. After spending 1 hour in its resting place with 0 hit points, it regains 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vampire regains 20 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "The vampire has the following flaws:", + "{@i Forbiddance.} The vampire can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} The vampire takes 20 acid damage if it ends its turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into the vampire's heart while the vampire is {@condition incapacitated} in its resting place, the vampire is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vampire makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack (Vampire Form Only)", + "body": [ + "The vampire makes two attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike (Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape {@dc 18})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Bat or Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by the vampire, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under the vampire's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by the vampire. The {@condition charmed} target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.", + "Each time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Children of the Night (1/Day)", + "body": [ + "The vampire magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, the vampire can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The vampire moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "The vampire makes one unarmed strike." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "The vampire makes one bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Vampire Warrior-MM", + "__dataclass__": "Monster" + }, + { + "name": "Veteran", + "source": "MM", + "page": 350, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "SjA" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Veteran-MM", + "__dataclass__": "Monster" + }, + { + "name": "Vine Blight", + "source": "MM", + "page": 32, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 8, + "constitution": 14, + "intelligence": 5, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the blight remains motionless, it is indistinguishable from a tangle of vines." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage, and a Large or smaller target is {@condition grappled} (escape {@dc 12}). Until this grapple ends, the target is {@condition restrained}, and the blight can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entangling Plants {@recharge 5}", + "body": [ + "Grasping roots and vines sprout in a 15-foot radius centered on the blight, withering away after 1 minute. For the duration, that area is {@quickref difficult terrain||3} for nonplant creatures. In addition, each creature of the blight's choice in that area when the plants appear must succeed on a {@dc 12} Strength saving throw or become {@condition restrained}. A creature can use its action to make a {@dc 12} Strength check, freeing itself or another entangled creature within reach on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "PSI" + }, + { + "source": "DIP" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vine Blight-MM", + "__dataclass__": "Monster" + }, + { + "name": "Violet Fungus", + "source": "MM", + "page": 138, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 5 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 3, + "dexterity": 1, + "constitution": 10, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the violet fungus remains motionless, it is indistinguishable from an ordinary fungus." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fungus makes {@dice 1d4} Rotting Touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotting Touch", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 10 ft., one creature. {@h}4 ({@damage 1d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "GoS" + }, + { + "source": "DoSI" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Violet Fungus-MM", + "__dataclass__": "Monster" + }, + { + "name": "Vrock", + "source": "MM", + "page": 64, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 17, + "dexterity": 15, + "constitution": 18, + "intelligence": 8, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "saves": { + "dex": "+5", + "wis": "+4", + "cha": "+2" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The vrock has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vrock makes two attacks: one with its beak and one with its talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spores {@recharge}", + "body": [ + "A 15-foot-radius 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 {@condition poisoned}. While {@condition poisoned} in this way, a target takes 5 ({@damage 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." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Screech (1/Day)", + "body": [ + "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 {@condition stunned} until the end of the vrock's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "CRCotN" + }, + { + "source": "PSI" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Vrock-MM", + "__dataclass__": "Monster" + }, + { + "name": "Vulture", + "source": "MM", + "page": 339, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "1d8 + 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 7, + "dexterity": 10, + "constitution": 13, + "intelligence": 2, + "wisdom": 12, + "charisma": 4, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Sight and Smell", + "body": [ + "The vulture has advantage on Wisdom ({@skill Perception}) checks that rely on sight or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The vulture has advantage on an attack roll against a creature if at least one of the vulture's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vulture-MM", + "__dataclass__": "Monster" + }, + { + "name": "Warhorse", + "source": "MM", + "page": 340, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 18, + "dexterity": 12, + "constitution": 13, + "intelligence": 2, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "traits": [ + { + "title": "Trampling Charge", + "body": [ + "If the horse moves at least 20 feet straight toward a creature and then hits it with a hooves attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the horse can make another attack with its hooves against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "DSotDQ" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warhorse-MM", + "__dataclass__": "Monster" + }, + { + "name": "Warhorse Skeleton", + "source": "MM", + "page": 273, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "barding scraps", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 18, + "dexterity": 12, + "constitution": 15, + "intelligence": 2, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "SKT" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warhorse Skeleton-MM", + "__dataclass__": "Monster" + }, + { + "name": "Water Elemental", + "source": "MM", + "page": 125, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 90, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 5, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan" + ], + "traits": [ + { + "title": "Water Form", + "body": [ + "The elemental can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freeze", + "body": [ + "If the elemental takes cold damage, it partially freezes; its speed is reduced by 20 feet until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elemental makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whelm {@recharge 4}", + "body": [ + "Each creature in the elemental's space must make a {@dc 15} Strength saving throw. On a failure, a target takes 13 ({@damage 2d8 + 4}) bludgeoning damage. If it is Large or smaller, it is also {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained} and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.", + "The elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target {@condition grappled} by it takes 13 ({@damage 2d8 + 4}) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a {@dc 14} Strength check and succeeding." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Water Elemental-MM", + "__dataclass__": "Monster" + }, + { + "name": "Water Weird", + "source": "MM", + "page": 299, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d10 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 16, + "constitution": 13, + "intelligence": 11, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "languages": [ + "understands Aquan but doesn't speak" + ], + "traits": [ + { + "title": "Invisible in Water", + "body": [ + "The water weird is {@condition invisible} while fully immersed in water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Bound", + "body": [ + "The water weird dies if it leaves the water to which it is bound or if that water is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}13 ({@damage 3d6 + 3}) bludgeoning damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 13}) and pulled 5 feet toward the water weird. Until this grapple ends, the target is {@condition restrained}, the water weird tries to drown it, and the water weird can't constrict another target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "PaBTSO" + }, + { + "source": "LK" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Water Weird-MM", + "__dataclass__": "Monster" + }, + { + "name": "Weasel", + "source": "MM", + "page": 340, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 3, + "dexterity": 16, + "constitution": 8, + "intelligence": 2, + "wisdom": 12, + "charisma": 3, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The weasel has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IDRotF" + }, + { + "source": "WBtW" + }, + { + "source": "PaBTSO" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Weasel-MM", + "__dataclass__": "Monster" + }, + { + "name": "Werebear", + "source": "MM", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 10, + "note": "in humanoid form", + "__dataclass__": "AC" + }, + { + "value": 11, + "note": "in bear or hybrid form", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(40 ft., climb 30 ft. in bear or hybrid form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 11, + "wisdom": 12, + "charisma": 12, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common (can't speak in bear form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The werebear can use its action to polymorph into a Large bear-humanoid hybrid or into a Large bear, or back into its true form, which is humanoid. Its statistics, other than its size and AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The werebear has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Bear or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 14} Constitution saving throw or be cursed with werebear lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Bear or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "KftGV" + } + ], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Werebear-MM", + "__dataclass__": "Monster" + }, + { + "name": "Wereboar", + "source": "MM", + "page": 209, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 10, + "note": "in humanoid form", + "__dataclass__": "AC" + }, + { + "value": 11, + "note": "in boar or hybrid form", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(40 ft. in boar form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 10, + "constitution": 15, + "intelligence": 10, + "wisdom": 11, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common (can't speak in boar form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The wereboar can use its action to polymorph into a boar-humanoid hybrid or into a boar, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charge (Boar or Hybrid Form Only)", + "body": [ + "If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes an extra 7 ({@damage 2d6}) slashing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Relentless (Recharges after a Short or Long Rest)", + "body": [ + "If the wereboar takes 14 damage or less that would reduce it to 0 hit points, it is reduced to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Humanoid or Hybrid Form Only)", + "body": [ + "The wereboar makes two attacks, only one of which can be with its tusks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tusks (Boar or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage. If the target is a humanoid, it must succeed on a {@dc 12} Constitution saving throw or be cursed with wereboar lycanthropy." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "BMT" + } + ], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Wereboar-MM", + "__dataclass__": "Monster" + }, + { + "name": "Wererat", + "source": "MM", + "page": 209, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft. (rat form only)" + ], + "languages": [ + "Common (can't speak in rat form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The wererat can use its action to polymorph into a rat-humanoid hybrid or into a giant rat, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The wererat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Humanoid or Hybrid Form Only)", + "body": [ + "The wererat makes two attacks, only one of which can be a bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Rat or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 11} Constitution saving throw or be cursed with wererat lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "WDH" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "CM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Wererat-MM", + "__dataclass__": "Monster" + }, + { + "name": "Weretiger", + "source": "MM", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(40 ft. in tiger form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 13, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common (can't speak in tiger form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The weretiger can use its action to polymorph into a tiger-humanoid hybrid or into a tiger, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "The weretiger has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce (Tiger or Hybrid Form Only)", + "body": [ + "If the weretiger moves at least 15 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the weretiger can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Humanoid or Hybrid Form Only)", + "body": [ + "In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Tiger or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 13} Constitution saving throw or be cursed with weretiger lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Tiger or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "EGW" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + } + ], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Weretiger-MM", + "__dataclass__": "Monster" + }, + { + "name": "Werewolf", + "source": "MM", + "page": 211, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "in humanoid form", + "__dataclass__": "AC" + }, + { + "value": 12, + "note": "in wolf or hybrid form", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(40 ft. in wolf form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common (can't speak in wolf form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "The werewolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Humanoid or Hybrid Form Only)", + "body": [ + "The werewolf makes two attacks: two with its spear (humanoid form) or one with its bite and one with its claws (hybrid form)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Wolf or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 12} Constitution saving throw or be cursed with werewolf lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws (Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear (Humanoid Form Only)", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "IMR" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "BMT" + }, + { + "source": "VEoR" + } + ], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Werewolf-MM", + "__dataclass__": "Monster" + }, + { + "name": "White Dragon Wyrmling", + "source": "MM", + "page": 102, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 15, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 5, + "wisdom": 10, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+2" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 22 ({@damage 5d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "White Dragon Wyrmling-MM", + "__dataclass__": "Monster" + }, + { + "name": "Wight", + "source": "MM", + "page": 300, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 14, + "constitution": 16, + "intelligence": 10, + "wisdom": 13, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A humanoid slain by this attack rises 24 hours later as a {@creature zombie} under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "DSotDQ" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wight-MM", + "__dataclass__": "Monster" + }, + { + "name": "Will-o'-Wisp", + "source": "MM", + "page": 301, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 19 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "9d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 1, + "dexterity": 28, + "constitution": 10, + "intelligence": 13, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Consume Life", + "body": [ + "As a bonus action, the will-o'-wisp can target one creature it can see within 5 feet of it that has 0 hit points and is still alive. The target must succeed on a {@dc 10} Constitution saving throw against this magic or die. If the target dies, the will-o'-wisp regains 10 ({@dice 3d6}) hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ephemeral", + "body": [ + "The will-o'-wisp can't wear or carry anything." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The will-o'-wisp can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Variable Illumination", + "body": [ + "The will-o'-wisp sheds bright light in a 5 to 20-foot radius and dim light for an additional number of ft. equal to the chosen radius. The will-o'-wisp can alter the radius as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shock", + "body": [ + "{@atk ms} {@hit 4} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility", + "body": [ + "The will-o'-wisp and its light magically become {@condition invisible} until it attacks or uses its Consume Life, or until its {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "BGDIA" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "WBtW" + }, + { + "source": "CRCotN" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "PSI" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Will-o'-Wisp-MM", + "__dataclass__": "Monster" + }, + { + "name": "Winged Kobold", + "source": "MM", + "page": 195, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "3d6 - 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 16, + "constitution": 9, + "intelligence": 8, + "wisdom": 7, + "charisma": 8, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dropped Rock", + "body": [ + "{@atk rw} {@hit 5} to hit, one target directly below the kobold. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "ToA" + }, + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "DoSI" + } + ], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Winged Kobold-MM", + "__dataclass__": "Monster" + }, + { + "name": "Winter Wolf", + "source": "MM", + "page": 340, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 14, + "intelligence": 7, + "wisdom": 12, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant", + "Winter Wolf" + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snow Camouflage", + "body": [ + "The wolf has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The wolf exhales a blast of freezing wind in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 18 ({@damage 4d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "IDRotF" + }, + { + "source": "KftGV" + }, + { + "source": "GHLoE" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Winter Wolf-MM", + "__dataclass__": "Monster" + }, + { + "name": "Wolf", + "source": "MM", + "page": 341, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 15, + "constitution": 12, + "intelligence": 3, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The wolf has advantage on an attack roll against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 11} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "HotDQ" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "GoS" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "LK" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wolf-MM", + "__dataclass__": "Monster" + }, + { + "name": "Worg", + "source": "MM", + "page": 341, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 13, + "constitution": 13, + "intelligence": 7, + "wisdom": 11, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Goblin", + "Worg" + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The worg has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "ERLW" + }, + { + "source": "IDRotF" + }, + { + "source": "CM" + }, + { + "source": "BMT" + }, + { + "source": "DoDk" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Worg-MM", + "__dataclass__": "Monster" + }, + { + "name": "Wraith", + "source": "MM", + "page": 302, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 6, + "dexterity": 16, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The wraith can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the wraith has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}21 ({@damage 4d8 + 3}) necrotic damage. The target must succeed on a {@dc 14} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Specter", + "body": [ + "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a {@creature specter} in the space of its corpse or in the nearest unoccupied space. The {@creature specter} is under the wraith's control. The wraith can have no more than seven specters under its control at one time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "EGW" + }, + { + "source": "MOT" + }, + { + "source": "IDRotF" + }, + { + "source": "TCE" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wraith-MM", + "__dataclass__": "Monster" + }, + { + "name": "Wyvern", + "source": "MM", + "page": 303, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 10, + "constitution": 16, + "intelligence": 5, + "wisdom": 12, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stinger", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage. The target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "PotA" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "BGDIA" + }, + { + "source": "CM" + }, + { + "source": "JttRC" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wyvern-MM", + "__dataclass__": "Monster" + }, + { + "name": "Xorn", + "source": "MM", + "page": 304, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 73, + "formula": "7d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 17, + "dexterity": 10, + "constitution": 22, + "intelligence": 11, + "wisdom": 10, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "Earth Glide", + "body": [ + "The xorn can burrow through nonmagical, unworked earth and stone. While doing so, the xorn doesn't disturb the material it moves through." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Camouflage", + "body": [ + "The xorn has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Treasure Sense", + "body": [ + "The xorn can pinpoint, by scent, the location of precious metals and stones, such as coins and gems, within 60 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The xorn makes three claw attacks and one bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "WDMM" + }, + { + "source": "PaBTSO" + }, + { + "source": "SatO" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Xorn-MM", + "__dataclass__": "Monster" + }, + { + "name": "Yeti", + "source": "MM", + "page": 305, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 8, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Yeti" + ], + "traits": [ + { + "title": "Fear of Fire", + "body": [ + "If the yeti takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The yeti has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snow Camouflage", + "body": [ + "The yeti has advantage on Dexterity ({@skill Stealth}) checks made to hide in snowy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yeti can use its Chilling Gaze and makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chilling Gaze", + "body": [ + "The yeti targets one creature it can see within 30 feet of it. If the target can see the yeti, the target must succeed on a {@dc 13} Constitution saving throw against this magic or take 10 ({@damage 3d6}) cold damage and then be {@condition paralyzed} for 1 minute, unless it is immune to cold damage. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target's saving throw is successful, or if the effect ends on it, the target is immune to the Chilling Gaze of all yetis (but not abominable yetis) for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "TftYP" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + }, + { + "source": "LoX" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yeti-MM", + "__dataclass__": "Monster" + }, + { + "name": "Yochlol", + "source": "MM", + "page": 65, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 15, + "dexterity": 14, + "constitution": 18, + "intelligence": 13, + "wisdom": 15, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+5", + "wis": "+6", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yochlol can use its action to polymorph into a form that resembles a female drow or giant spider, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yochlol has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The yochlol can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The yochlol ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yochlol makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam (Bite in Spider Form)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft. (10 feet in demon form), one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning (piercing in spider form) damage plus 21 ({@damage 6d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mist Form", + "body": [ + "The yochlol transforms into toxic mist or reverts to its true form. Any equipment it is wearing or carrying is also transformed. It reverts to its true form if it dies.", + "While in mist form, the yochlol is {@condition incapacitated} and can't speak. It has a flying speed of 30 feet, can hover, and can pass through any space that isn't airtight. It has advantage on Strength, Dexterity, and Constitution saving throws, and it is immune to nonmagical damage.", + "While in mist form, the yochlol can enter a creature's space and stop there. Each time that creature starts its turn with the yochlol in its space, the creature must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of its next turn. While {@condition poisoned} in this way, the target is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The yochlol's spellcasting ability is Charisma (spell save {@dc 14}). The yochlol can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "EGW" + }, + { + "source": "CRCotN" + }, + { + "source": "PaBTSO" + }, + { + "source": "VEoR" + } + ], + "subtype": "demon, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Yochlol-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Black Dragon", + "source": "MM", + "page": 88, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 14, + "constitution": 17, + "intelligence": 12, + "wisdom": 11, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+6", + "wis": "+3", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge 5}", + "body": [ + "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 49 ({@damage 11d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "GoS" + }, + { + "source": "BGDIA" + }, + { + "source": "LK" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Black Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Blue Dragon", + "source": "MM", + "page": 91, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 152, + "formula": "16d10 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 21, + "dexterity": 10, + "constitution": 19, + "intelligence": 14, + "wisdom": 13, + "charisma": 17, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+8", + "wis": "+5", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 16} Dexterity saving throw, taking 55 ({@damage 10d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "RoT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "MOT" + }, + { + "source": "DSotDQ" + }, + { + "source": "LK" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Blue Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Brass Dragon", + "source": "MM", + "page": 105, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 12, + "wisdom": 11, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+6", + "wis": "+3", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 42 ({@damage 12d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleep Breath", + "body": [ + "The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 14} Constitution saving throw or fall {@condition unconscious} for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Brass Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Bronze Dragon", + "source": "MM", + "page": 108, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 21, + "dexterity": 10, + "constitution": 19, + "intelligence": 14, + "wisdom": 13, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+7", + "wis": "+4", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Lightning Breath", + "body": [ + "The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a {@dc 15} Dexterity saving throw, taking 55 ({@damage 10d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repulsion Breath", + "body": [ + "The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 15} Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "CM" + }, + { + "source": "DoDk" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Bronze Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Copper Dragon", + "source": "MM", + "page": 112, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 12, + "constitution": 17, + "intelligence": 16, + "wisdom": 13, + "charisma": 15, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+6", + "wis": "+4", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Acid Breath", + "body": [ + "The dragon exhales acid in a 40-foot line that is 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 40 ({@damage 9d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slowing Breath", + "body": [ + "The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 14} Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Copper Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Gold Dragon", + "source": "MM", + "page": 115, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 14, + "constitution": 21, + "intelligence": 16, + "wisdom": 13, + "charisma": 20, + "passive": 19, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+9", + "wis": "+5", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Fire Breath", + "body": [ + "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw, taking 55 ({@damage 10d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weakening Breath", + "body": [ + "The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 17} 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Gold Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Green Dragon", + "source": "MM", + "page": 94, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 19, + "dexterity": 12, + "constitution": 17, + "intelligence": 16, + "wisdom": 13, + "charisma": 15, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+6", + "wis": "+4", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The dragon can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Breath {@recharge 5}", + "body": [ + "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a {@dc 14} Constitution saving throw, taking 42 ({@damage 12d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "WDMM" + }, + { + "source": "BGDIA" + }, + { + "source": "RMBRE" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "LK" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Green Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Red Dragon", + "source": "MM", + "page": 98, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 14, + "wisdom": 11, + "charisma": 19, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+9", + "wis": "+4", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw, taking 56 ({@damage 16d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "JttRC" + }, + { + "source": "LoX" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "LK" + }, + { + "source": "SatO" + }, + { + "source": "BMT" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Red Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Red Shadow Dragon", + "source": "MM", + "page": 85, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 14, + "wisdom": 11, + "charisma": 19, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+10", + "wis": "+5", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Living Shadow", + "body": [ + "While in dim light or darkness, the dragon has resistance to damage that isn't force, psychic, or radiant." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the dragon can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the dragon has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 3 ({@damage 1d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Breath {@recharge 5}", + "body": [ + "The dragon exhales shadowy fire in a 30-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 56 ({@damage 16d6}) necrotic damage on a failed save, or half as much damage on a successful one. A humanoid reduced to 0 hit points by this damage dies, and an undead {@creature shadow} rises from its corpse and acts immediately after the dragon in the initiative count. The shadow is under the dragon's control." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "AATM" + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Red Shadow Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Remorhaz", + "source": "MM", + "page": 258, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 13, + "constitution": 17, + "intelligence": 3, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Heated Body", + "body": [ + "A creature that touches the remorhaz or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d10 + 4}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "EGW" + }, + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Remorhaz-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young Silver Dragon", + "source": "MM", + "page": 118, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 14, + "wisdom": 11, + "charisma": 19, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+9", + "wis": "+4", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "The dragon uses one of the following breath weapons.", + { + "title": "Cold Breath", + "body": [ + "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 54 ({@damage 12d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Breath", + "body": [ + "The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 17} Constitution saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SKT" + }, + { + "source": "DSotDQ" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Silver Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Young White Dragon", + "source": "MM", + "page": 101, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 10, + "constitution": 18, + "intelligence": 6, + "wisdom": 11, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+7", + "wis": "+3", + "cha": "+4" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Ice Walk", + "body": [ + "The dragon can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost it extra movement." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 4 ({@damage 1d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 10d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "DIP" + }, + { + "source": "IDRotF" + }, + { + "source": "LK" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young White Dragon-MM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Abomination", + "source": "MM", + "page": 308, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 16, + "constitution": 17, + "intelligence": 17, + "wisdom": 15, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Large snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Abomination Form Only)", + "body": [ + "The yuan-ti makes two ranged attacks or three melee attacks, but can use its bite and constrict attacks only once each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, and the yuan-ti can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Abomination Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow (Abomination Form Only)", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Abomination Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Abomination Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 15}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "RoT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "CM" + } + ], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Abomination-MM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Malison (Type 1)", + "source": "MM", + "page": 309, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Malison Type", + "body": [ + "The yuan-ti has one of the following types:", + { + "title": "Type 1:", + "body": [ + "Human body with snake head" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 2:", + "body": [ + "Human head and body with snakes for arms" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 3:", + "body": [ + "Human head and upper body with a serpentine lower body instead of legs" + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes two ranged attacks or two melee attacks, but can use its bite only once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow (Yuan-ti Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "CM" + } + ], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Malison (Type 1)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Malison (Type 2)", + "source": "MM", + "page": 309, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Malison Type", + "body": [ + "The yuan-ti has one of the following types:", + { + "title": "Type 1:", + "body": [ + "Human body with snake head" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 2:", + "body": [ + "Human head and body with snakes for arms" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 3:", + "body": [ + "Human head and upper body with a serpentine lower body instead of legs" + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes two bite attacks using its snake arms." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + } + ], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Malison (Type 2)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Malison (Type 3)", + "source": "MM", + "page": 309, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Malison Type", + "body": [ + "The yuan-ti has one of the following types:", + { + "title": "Type 1:", + "body": [ + "Human body with snake head" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 2:", + "body": [ + "Human head and body with snakes for arms" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 3:", + "body": [ + "Human head and upper body with a serpentine lower body instead of legs" + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes two ranged attacks or two melee attacks, but can constrict only once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Snake Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, and the yuan-ti can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow (Yuan-ti Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "CM" + } + ], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Malison (Type 3)-MM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Pureblood", + "source": "MM", + "page": 310, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 11, + "dexterity": 12, + "constitution": 11, + "intelligence": 13, + "wisdom": 12, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yuan-ti makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The yuan-ti's spellcasting ability is Charisma (spell save {@dc 12}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell poison spray}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "HotDQ" + }, + { + "source": "RoT" + }, + { + "source": "SKT" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "CM" + }, + { + "source": "PSI" + } + ], + "subtype": "yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Pureblood-MM", + "__dataclass__": "Monster" + }, + { + "name": "Zombie", + "source": "MM", + "page": 316, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 6, + "constitution": 16, + "intelligence": 3, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "saves": { + "wis": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages it spoke in life but can't speak" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoS" + }, + { + "source": "LMoP" + }, + { + "source": "PotA" + }, + { + "source": "RoT" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + }, + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "BGDIA" + }, + { + "source": "ERLW" + }, + { + "source": "RMBRE" + }, + { + "source": "EGW" + }, + { + "source": "TCE" + }, + { + "source": "WBtW" + }, + { + "source": "JttRC" + }, + { + "source": "DoSI" + }, + { + "source": "DSotDQ" + }, + { + "source": "KftGV" + }, + { + "source": "PSI" + }, + { + "source": "HftT" + }, + { + "source": "PaBTSO" + }, + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + }, + { + "source": "BMT" + }, + { + "source": "GHLoE" + }, + { + "source": "DoDk" + }, + { + "source": "VEoR" + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zombie-MM", + "__dataclass__": "Monster" + }, + { + "name": "Abjurer Wizard", + "source": "MPMM", + "page": 260, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 9, + "dexterity": 14, + "constitution": 14, + "intelligence": 18, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+5" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abjurer makes three Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Blast", + "body": [ + "Each creature in a 20-foot cube originating from the abjurer must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage and is pushed up to 10 feet away from the abjurer. On a successful save, a creature takes half as much damage and isn't pushed." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Arcane Ward {@recharge 4}", + "body": [ + "When the abjurer or a creature it can see within 30 feet of it takes damage, the abjurer magically creates a protective barrier around itself or the other creature. The barrier reduces the damage to the protected creature by 26 ({@damage 4d10 + 4}), to a minimum of 0, and then vanishes." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The abjurer casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell lightning bolt}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell arcane lock}", + "{@spell banishment}", + "{@spell globe of invulnerability}", + "{@spell invisibility}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 209 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Abjurer Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Kruthik", + "source": "MPMM", + "page": 169, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 16, + "constitution": 15, + "intelligence": 7, + "wisdom": 12, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Kruthik" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kruthik makes two Stab or Spike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spike", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 212 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Kruthik-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Adult Oblex", + "source": "MPMM", + "page": 198, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 8, + "dexterity": 19, + "constitution": 16, + "intelligence": 19, + "wisdom": 12, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "one", + "__dataclass__": "SkillList" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "cha": "+5" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "languages": [ + "Common plus two more languages" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion to Fire", + "body": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The oblex doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oblex makes two pseudopod attacks, and it uses Eat Memories." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eat Memories", + "body": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 15} Wisdom saving throw or take 18 ({@damage 4d8}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, Oozes, Plants, and Undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from its ability checks and attack rolls. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "The oblex learns all the languages a memory-drained target knows and gains all its skill proficiencies." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Sulfurous Impersonation", + "body": [ + "The oblex extrudes a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 1d4 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. The simulacrum is an extension of the oblex, meaning that the oblex occupies its space and the simulacrum's space simultaneously. The tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex and the simulacrum. The simulacrum disappears if the tether is severed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The oblex casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell detect thoughts}", + "{@spell hypnotic pattern}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 218 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Oblex-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Air Elemental Myrmidon", + "source": "MPMM", + "page": 122, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 9, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "one language of its creator's choice" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes three Flail attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike {@recharge}", + "body": [ + "The myrmidon makes one Flail attack. On a hit, the target takes an extra 18 ({@damage 4d8}) lightning damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the myrmidon's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 202 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Air Elemental Myrmidon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Alhoon", + "source": "MPMM", + "page": 43, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 15, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 11, + "dexterity": 12, + "constitution": 16, + "intelligence": 19, + "wisdom": 17, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The alhoon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The alhoon has advantage on saving throws against any effect that turns Undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The alhoon makes two Chilling Grasp or Arcane Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chilling Grasp", + "body": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) cold damage, and the alhoon regains 14 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The alhoon magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Negate Spell (3/Day)", + "body": [ + "The alhoon targets one creature it can see within 60 feet of it that is casting a spell. If the spell is 3rd level or lower, the spell fails, but any spell slots or charges are not wasted." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The alhoon casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell globe of invulnerability}", + "{@spell invisibility}", + "{@spell modify memory}", + "{@spell plane shift} (self only)", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 172 + }, + { + "source": "CoA" + } + ], + "subtype": "mind flayer, wizard", + "actions_note": "", + "mythic": null, + "key": "Alhoon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Alkilith", + "source": "MPMM", + "page": 44, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d8 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 12, + "dexterity": 19, + "constitution": 22, + "intelligence": 6, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+10" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Abyssal Rift", + "body": [ + "If the alkilith surrounds a door, window, or similar opening continuously for {@dice 6d6} days, the opening becomes a permanent portal to a random layer of the Abyss." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amorphous", + "body": [ + "The alkilith can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "If the alkilith is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the alkilith move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the alkilith isn't ordinary slime or fungus." + ], + "__dataclass__": "Entry" + }, + { + "title": "Foment Confusion", + "body": [ + "Any creature that isn't a demon that starts its turn within 30 feet of the alkilith must succeed on a {@dc 18} Wisdom saving throw, or it hears a faint buzzing in its head for a moment and has disadvantage on its next attack roll, saving throw, or ability check.", + "If the saving throw against Foment Confusion fails by 5 or more, the creature is instead subjected to the {@spell confusion} spell for 1 minute (no {@status concentration} required by the alkilith). While under the effect of that confusion, the creature is immune to Foment Confusion." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The alkilith has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The alkilith can climb difficult surfaces, such as upside down on ceilings, without making an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The alkilith doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The alkilith makes three Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}18 ({@damage 4d6 + 4}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 130 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Alkilith-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Allip", + "source": "MPMM", + "page": 45, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 6, + "dexterity": 17, + "constitution": 10, + "intelligence": 17, + "wisdom": 15, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The allip can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The allip doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Maddening Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Howling Babble {@recharge}", + "body": [ + "Each creature within 30 feet of the allip that can hear it must make a {@dc 14} Wisdom saving throw. On a failed save, a target takes 12 ({@damage 2d8 + 3}) psychic damage, and it is {@condition stunned} until the end of its next turn. On a successful save, it takes half as much damage and isn't {@condition stunned}. Constructs and Undead are immune to this effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whispers of Compulsion", + "body": [ + "The allip chooses up to three creatures it can see within 60 feet of it. Each target must succeed on a {@dc 14} Wisdom saving throw, or it takes 12 ({@damage 2d8 + 3}) psychic damage and must use its reaction to make a melee weapon attack against one creature of the allip's choice that the allip can see. Constructs and Undead are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 116 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Allip-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Amnizu", + "source": "MPMM", + "page": 46, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 11, + "dexterity": 13, + "constitution": 16, + "intelligence": 20, + "wisdom": 12, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+9", + "wis": "+7", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Infernal", + "telepathy 1,000 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the amnizu's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The amnizu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The amnizu uses Blinding Rot or Forgetfulness, if available. It also makes two Taskmaster Whip attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Taskmaster Whip", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage plus 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blinding Rot", + "body": [ + "The amnizu targets one or two creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 19} Wisdom saving throw or take 26 ({@damage 4d12}) necrotic damage and be {@condition blinded} until the start of the amnizu's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forgetfulness {@recharge}", + "body": [ + "The amnizu targets one creature it can see within 60 feet of it. That creature must succeed on a {@dc 18} Intelligence saving throw or take 26 ({@damage 4d12}) psychic damage and become {@condition stunned} for 1 minute. A {@condition stunned} creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target is {@condition stunned} for the full minute, it forgets everything it sensed, experienced, and learned during the last 5 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Instinctive Charm", + "body": [ + "When a creature within 60 feet of the amnizu makes an attack roll against it, and another creature is within the attack's range, the attacker must make a {@dc 19} Wisdom saving throw. On a failed save, the attacker must target the creature that is closest to it, not including the amnizu or itself. If multiple creatures are closest, the attacker chooses which one to target. If the saving throw is successful, the attacker is immune to the amnizu's Instinctive Charm for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The amnizu casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dominate monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 164 + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Amnizu-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Angry Sorrowsworn", + "source": "MPMM", + "page": 222, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 17, + "dexterity": 10, + "constitution": 19, + "intelligence": 8, + "wisdom": 13, + "charisma": 6, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Two Heads", + "body": [ + "The sorrowsworn has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rising Anger", + "body": [ + "If another creature deals damage to the sorrowsworn, the sorrowsworn's attack rolls have advantage until the end of its next turn, and the first time it hits with a Hook attack on its next turn, the attack's target takes an extra 19 ({@damage 3d12}) psychic damage.", + "On its turn, the sorrowsworn has disadvantage on attack rolls if no other creature has dealt damage to it since the end of its last turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sorrowsworn makes two Hook attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hook", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d12 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 231 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Angry Sorrowsworn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Annis Hag", + "source": "MPMM", + "page": 47, + "size_str": "Large", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 21, + "dexterity": 12, + "constitution": 14, + "intelligence": 13, + "wisdom": 14, + "charisma": 15, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant", + "Sylvan" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The annis makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crushing Hug", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}36 ({@damage 9d6 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. Until the grapple ends, the target takes 36 ({@damage 9d6 + 5}) bludgeoning damage at the start of each of the hag's turns. The hag can't make attacks while grappling a creature in this way." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The hag casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell disguise self} (including the form of a Medium Humanoid)", + "{@spell Fog cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 159 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Annis Hag-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Apprentice Wizard", + "source": "MPMM", + "page": 259, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 14, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 120 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 12})" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 209 + }, + { + "source": "SjA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Apprentice Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Archdruid", + "source": "MPMM", + "page": 48, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 154, + "formula": "28d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 14, + "dexterity": 14, + "constitution": 12, + "intelligence": 12, + "wisdom": 20, + "charisma": 11, + "passive": 19, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+9" + }, + "languages": [ + "Druidic plus any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archdruid makes three Staff or Wildfire attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 21 ({@damage 6d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wildfire", + "body": [ + "{@atk rs} {@hit 9} to hit, range 120 ft., one target. {@h}26 ({@damage 6d6 + 5}) fire damage, and the target is {@condition blinded} until the start of the druid's next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape (2/Day)", + "body": [ + "The archdruid magically transforms into a Beast or an Elemental with a challenge rating of 6 or less and can remain in that form for up to 9 hours. The archdruid can choose whether its equipment falls to the ground, melds with its new form, or is worn by the new form. The archdruid reverts to its true form if it dies or falls {@condition unconscious}. The archdruid can revert to its true form using a bonus action.", + "While in a new form, the archdruid's stat block is replaced by the stat block of that form, except the archdruid keeps its current hit points, its hit point maximum, this bonus action, its languages and ability to speak, and its Spellcasting action.", + "The new form's attacks count as magical for the purpose of overcoming resistances and immunity to nonmagical attacks." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The archdruid casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell beast sense}", + "{@spell entangle}", + "{@spell speak with animals}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell dominate beast}", + "{@spell faerie fire}", + "{@spell tree stride}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell commune with nature} (as an action)", + "{@spell mass cure wounds}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 210 + } + ], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Archdruid-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Archer", + "source": "MPMM", + "page": 49, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 18, + "constitution": 16, + "intelligence": 11, + "wisdom": 13, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archer makes two Shortsword or Longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Archer's Eye (3/Day)", + "body": [ + "Immediately after making an attack roll or a damage roll with a ranged weapon, the archer can roll a {@dice d10} and add the number rolled to the total." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 210 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Archer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Armanite", + "source": "MPMM", + "page": 50, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 21, + "dexterity": 18, + "constitution": 21, + "intelligence": 8, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The armanite has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The armanite makes one Claw attack, one Hooves attack, and one Serrated Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 9 ({@damage 2d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Serrated Tail", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Lance {@recharge 5}", + "body": [ + "The armanite looses a bolt of lightning in a line that is 60 feet long and 10 feet wide. Each creature in the line must make a {@dc 15} Dexterity saving throw, taking 36 ({@damage 8d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 131 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Armanite-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Astral Dreadnought", + "source": "MPMM", + "page": 51, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 28, + "dexterity": 7, + "constitution": 25, + "intelligence": 5, + "wisdom": 14, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Antimagic Cone", + "body": [ + "The dreadnought's eye creates an area of antimagic, as in the {@spell antimagic field} spell, in a 150-foot cone. At the start of each of its turns, it decides which way the cone faces. The cone doesn't function while the eye is closed or while the dreadnought is {@condition blinded}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Astral Entity", + "body": [ + "The dreadnought can't leave the Astral Plane, nor can it be banished or otherwise transported out of that plane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Demiplanar Donjon", + "body": [ + "Anything the dreadnought swallows is transported to a demiplane that can be entered by no other means except a {@spell wish} spell or the dreadnought's Bite and Donjon Visit. A creature can leave the demiplane only by using magic that enables planar travel, such as the {@spell plane shift} spell. The demiplane resembles a stone cave roughly 1,000 feet in diameter with a ceiling 100 feet high. Like a stomach, it contains the remains of past meals. The dreadnought can't be harmed from within the demiplane. If the dreadnought dies, the demiplane disappears, and everything inside it appears around the dreadnought's corpse. The demiplane is otherwise indestructible." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dreadnought fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sever Silver Cord", + "body": [ + "If the dreadnought scores a critical hit against a creature traveling by means of the {@spell astral projection} spell, the dreadnought can cut the target's silver cord instead of dealing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dreadnought doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dreadnought makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}36 ({@damage 5d10 + 9}) force damage. If the target is a Huge or smaller creature and this damage reduces it to 0 hit points or it is {@condition incapacitated}, the dreadnought swallows it. The swallowed target, along with everything it is wearing and carrying, appears in an unoccupied space on the floor of the Demiplanar Donjon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d6 + 9}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The dreadnought makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Donjon Visit (Costs 2 Actions)", + "body": [ + "One Huge or smaller creature that the dreadnought can see within 60 feet of it must succeed on a {@dc 19} Charisma saving throw or be teleported to an unoccupied space on the floor of the Demiplanar Donjon. At the end of the target's next turn, it reappears in the space it left or in the nearest unoccupied space if that space is occupied." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Projection (Costs 3 Actions)", + "body": [ + "Each creature within 60 feet of the dreadnought must make a {@dc 19} Wisdom saving throw, taking 26 ({@damage 4d10 + 4}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 117 + }, + { + "source": "VEoR" + } + ], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Astral Dreadnought-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Aurochs", + "source": "MPMM", + "page": 71, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "4d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 20, + "dexterity": 10, + "constitution": 19, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage. If the aurochs moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 9 ({@damage 2d8}) piercing damage, and the target must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone} if it is a creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 207 + } + ], + "subtype": "cattle", + "actions_note": "", + "mythic": null, + "key": "Aurochs-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Autumn Eladrin", + "source": "MPMM", + "page": 115, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 12, + "dexterity": 16, + "constitution": 16, + "intelligence": 14, + "wisdom": 17, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Enchanting Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by the eladrin for 1 minute. On a successful save, the creature becomes immune to any eladrin's Enchanting Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eladrin makes two Longsword or Longbow attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fey Step {@recharge 4}", + "body": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Foster Peace", + "body": [ + "If a creature {@condition charmed} by the eladrin hits with an attack roll while within 60 feet of the eladrin, the eladrin magically causes the attack to miss, provided the eladrin can see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The eladrin casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell cure wounds} (as a 5th-level spell)", + "{@spell lesser restoration}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell greater restoration}", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 195 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Autumn Eladrin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Babau", + "source": "MPMM", + "page": 52, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 16, + "constitution": 16, + "intelligence": 11, + "wisdom": 12, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The babau makes two Claw attacks. It can replace one attack with a use of Spellcasting or Weakening Gaze." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage plus 2 ({@damage 1d4}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weakening Gaze", + "body": [ + "The babau targets one creature that it can see within 20 feet of it. The target must make a {@dc 13} Constitution saving throw. On a failed save, the target deals only half damage with weapon attacks that use Strength for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The babau casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 11}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell dispel magic}", + "{@spell fear}", + "{@spell heat metal}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 136 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Babau-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Bael", + "source": "MPMM", + "page": 54, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 24, + "dexterity": 17, + "constitution": 20, + "intelligence": 21, + "wisdom": 24, + "charisma": 24, + "passive": 23, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+11", + "int": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Dread", + "body": [ + "Any creature, other than a devil, that starts its turn within 10 feet of Bael must succeed on a {@dc 22} Wisdom saving throw or be {@condition frightened} of him until the start of its next turn. A creature succeeds on this saving throw automatically if Bael wishes it or if he is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Bael fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Bael have advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Bael regains 20 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Bael dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bael makes two Hellish Morningstar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellish Morningstar", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}16 ({@damage 2d8 + 7}) force damage plus 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Command", + "body": [ + "Each of Bael's allies within 60 feet of him can't be {@condition charmed} or {@condition frightened} until the end of his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Bael teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Fiendish Magic", + "body": [ + "Bael uses Spellcasting or Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Command", + "body": [ + "Bael uses Infernal Command." + ], + "__dataclass__": "Entry" + }, + { + "title": "Attack (Costs 2 Actions)", + "body": [ + "Bael makes one Hellish Morningstar attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Bael casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium)", + "{@spell charm person}", + "{@spell detect magic}", + "{@spell invisibility}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 170 + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Bael-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Balhannoth", + "source": "MPMM", + "page": 55, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 17, + "dexterity": 8, + "constitution": 18, + "intelligence": 6, + "wisdom": 15, + "charisma": 8, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 500 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Deep Speech", + "telepathy 1 mile" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the balhannoth fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The balhannoth makes one Bite attack and two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) and is moved up to 5 feet toward the balhannoth. Until this grapple ends, the target is {@condition restrained}, and the balhannoth can't use this tentacle against other targets. The balhannoth has four tentacles." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Bite", + "body": [ + "The balhannoth makes one Bite attack against one creature it has {@condition grappled}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The balhannoth teleports, along with any equipment it is wearing or carrying and any creatures it has {@condition grappled}, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vanish", + "body": [ + "The balhannoth magically becomes {@condition invisible} for up to 10 minutes or until immediately after it makes an attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 119 + }, + { + "source": "RtG", + "page": 31 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Balhannoth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Banderhobb", + "source": "MPMM", + "page": 56, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 11, + "wisdom": 14, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Common and the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Resonant Connection", + "body": [ + "If the banderhobb has even a tiny piece of a creature or an object in its possession, such as a lock of hair or a splinter of wood, it knows the most direct route to that creature or object if it is within 1 mile of the banderhobb." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The banderhobb makes one Bite attack and one Tongue attack. It can replace one attack with a use of Shadow Step." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the banderhobb can't use its Bite attack or Tongue attack on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one creature. {@h}10 ({@damage 3d6}) necrotic damage, and the target must make a {@dc 16} Strength saving throw. On a failed save, the target is pulled to a space within 5 feet of the banderhobb." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Step", + "body": [ + "The banderhobb teleports up to 30 feet to an unoccupied space of dim light or darkness that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one Medium or smaller creature {@condition grappled} by the banderhobb. {@h}15 ({@damage 3d6 + 5}) piercing damage. The creature is also swallowed, and the grapple ends. The swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the banderhobb, and it takes 10 ({@damage 3d6}) necrotic damage at the start of each of the banderhobb's turns. A creature reduced to 0 hit points in this way stops taking the necrotic damage and becomes stable.", + "The banderhobb can have only one creature swallowed at a time. While the banderhobb isn't {@condition incapacitated}, it can regurgitate the creature at any time (no action required) in a space within 5 feet of it. The creature exits {@condition prone}. If the banderhobb dies, it likewise regurgitates a swallowed creature." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the banderhobb takes the {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 122 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Banderhobb-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Baphomet", + "source": "MPMM", + "page": 58, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 319, + "formula": "22d12 + 176", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 30, + "dexterity": 14, + "constitution": 26, + "intelligence": 18, + "wisdom": 24, + "charisma": 16, + "passive": 24, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+15", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Labyrinthine Recall", + "body": [ + "Baphomet can perfectly recall any path he has traveled, and he is immune to the {@spell maze} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Baphomet fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Baphomet has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Baphomet makes one Bite attack, one Gore attack, and one Heartcleaver attack. He also uses Frightful Presence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) piercing damage. If Baphomet moved at least 10 feet straight toward the target immediately before the hit, the target takes an extra 16 ({@damage 3d10}) piercing damage. If the target is a creature, it must succeed on a {@dc 25} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heartcleaver", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Baphomet's choice within 120 feet of him and aware of him must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. These later saves have disadvantage if Baphomet is within line of sight of the creature.", + "If a creature succeeds on any of these saves or the effect ends on it, the creature is immune to Baphomet's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Heartcleaver Attack", + "body": [ + "Baphomet makes one Heartcleaver attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charge (Costs 2 Actions)", + "body": [ + "Baphomet moves up to his speed without provoking {@action opportunity attack||opportunity attacks}, then makes a Gore attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Baphomet casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell dominate beast}", + "{@spell maze}", + "{@spell wall of stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 143 + }, + { + "source": "CoA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Baphomet-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Bard", + "source": "MPMM", + "page": 59, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+3" + }, + "languages": [ + "any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bard makes two Shortsword or Shortbow attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cacophony {@recharge 4}", + "body": [ + "Each creature in a 15-foot cube originating from the bard must make a {@dc 12} Constitution saving throw. On a failed save, a creature takes 9 ({@damage 2d8}) thunder damage and is pushed up to 10 feet away from the bard. On a successful save, a creature takes half as much damage and isn't pushed." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Taunt (2/Day)", + "body": [ + "The bard targets one creature within 30 feet of it. If the target can hear the bard, the target must succeed on a {@dc 12} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of the bard's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The bard casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell invisibility}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 211 + }, + { + "source": "AATM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Barghest", + "source": "MPMM", + "page": 60, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "note": "(30 ft. in goblin form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 15, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Goblin", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Fire Banishment", + "body": [ + "When the barghest starts its turn engulfed in flames that are at least 10 feet high or wide, it must succeed on a {@dc 15} Charisma saving throw or be instantly banished to Gehenna" + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Feeding", + "body": [ + "The barghest can feed on the corpse of a Fey or Humanoid it killed within the past 10 minutes. This feeding takes at least 1 minute, and it destroys the corpse. The victim's soul is trapped in the barghest for 24 hours, after which time it is digested and the person is incapable of being revived. If the barghest dies before the soul is digested, the soul is released. While a soul is trapped in the barghest, any magic that tries to restore the soul to life has a {@chance 50} chance of failing and being wasted." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The barghest makes one Bite attack and one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The barghest transforms into a Small goblin or back into its true form. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. The barghest reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The barghest casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell levitate}", + "{@spell minor illusion}", + "{@spell pass without trace}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell dimension door}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 123 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Barghest-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Berbalang", + "source": "MPMM", + "page": 61, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "14d8 - 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 16, + "constitution": 9, + "intelligence": 17, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The berbalang makes one Bite attack and one", + "Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 4 ({@damage 1d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Spectral Duplicate (Recharges after a Short or Long Rest)", + "body": [ + "The berbalang creates one spectral duplicate of itself in an unoccupied space it can see within 60 feet of it. While the duplicate exists, the berbalang is {@condition unconscious}. A berbalang can have only one duplicate at a time. The duplicate disappears when it or the berbalang drops to 0 hit points or when the berbalang dismisses it (no action required).", + "The duplicate has the same statistics and knowledge as the berbalang, and everything experienced by the duplicate is known by the berbalang. All damage dealt by the duplicate's attacks is psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The berbalang casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell speak with dead}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 120 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Berbalang-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Bheur Hag", + "source": "MPMM", + "page": 62, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover, Graystaff magic)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 13, + "dexterity": 16, + "constitution": 14, + "intelligence": 12, + "wisdom": 13, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Control Weather (1/Day)", + "body": [ + "The hag can cast the {@spell control weather} spell, requiring no material components and using Charisma as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Graystaff Magic", + "body": [ + "The hag carries a graystaff, a magic staff. The hag can use its flying speed only while astride the staff. If the staff is lost or destroyed, the hag must craft another, which takes a year and a day. Only a bheur hag can use a graystaff" + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Walk", + "body": [ + "The hag can move across and climb icy surfaces without needing to make an ability check, and {@quickref difficult terrain||3} composed of ice or snow doesn't cost the hag extra moment." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hag makes two Slam or Frost Shard attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) bludgeoning damage plus 18 ({@damage 4d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frost Shard", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}30 ({@damage 6d8 + 3}) cold damage, and the target's speed is reduced by 10 feet until the start of the hag's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrific Feast", + "body": [ + "The hag feeds on the corpse of one enemy within reach that died within the past minute. Each creature of the hag's choice that is within 60 feet and able to see the feeding must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of the hag for 1 minute. While {@condition frightened} in this way, a creature is {@condition incapacitated}, can't understand what others say, can't read, and speaks only in gibberish. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Horrific Feast for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "While holding or riding the graystaff, the hag casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell cone of cold}", + "{@spell ice storm}", + "{@spell wall of ice}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 160 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bheur Hag-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Black Abishai", + "source": "MPMM", + "page": 38, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 17, + "constitution": 14, + "intelligence": 13, + "wisdom": 16, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes one Bite attack and two Scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the abishai takes the {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Creeping Darkness {@recharge}", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Creeping Darkness {@recharge}", + "body": [ + "The abishai casts {@spell darkness} at a point within 120 feet of it, requiring no spell components or {@status concentration}. Wisdom is its spellcasting ability for this spell. While the spell persists, the abishai can move the area of darkness up to 60 feet as a bonus action." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 160 + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Black Abishai-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Blackguard", + "source": "MPMM", + "page": 63, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 11, + "constitution": 18, + "intelligence": 11, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+5" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blackguard makes three attacks, using Glaive, Shortbow, or both." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage plus 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Aspect (Recharges after a Short or Long Rest)", + "body": [ + "Each enemy within 30 feet of the blackguard must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of the blackguard for 1 minute. If a {@condition frightened} target ends its turn more than 30 feet away from the blackguard, the target can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Smite", + "body": [ + "Immediately after the blackguard hits a target with an attack roll, the blackguard can force that target to make a {@dc 13} Constitution saving throw. On a failed save, the target suffers one of the following effects of the blackguard's choice:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Blind", + "body": [ + "The target is {@condition blinded} for 1 minute. The {@condition blinded} target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shove", + "body": [ + "The target is pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The blackguard casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell command}", + "{@spell dispel magic}", + "{@spell find steed}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 211 + } + ], + "subtype": "paladin", + "actions_note": "", + "mythic": null, + "key": "Blackguard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Blue Abishai", + "source": "MPMM", + "page": 39, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 15, + "dexterity": 14, + "constitution": 17, + "intelligence": 22, + "wisdom": 23, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes three Bite or Lightning Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage plus 14 ({@damage 4d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike", + "body": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}36 ({@damage 8d8}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Teleport", + "body": [ + "The abishai teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space that it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The abishai casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell charm person}", + "{@spell dispel magic}", + "{@spell greater invisibility}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 161 + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil, wizard", + "actions_note": "", + "mythic": null, + "key": "Blue Abishai-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Bodak", + "source": "MPMM", + "page": 64, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 15, + "dexterity": 16, + "constitution": 15, + "intelligence": 7, + "wisdom": 12, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "the languages it knew in life" + ], + "traits": [ + { + "title": "Death Gaze", + "body": [ + "When a creature that can see the bodak's eyes starts its turn within 30 feet of the bodak, the bodak can force it to make a {@dc 13} Constitution saving throw if the bodak isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is reduced to 0 hit points unless it is immune to the {@condition frightened} condition. Otherwise, a creature takes 16 ({@damage 3d10}) psychic damage on a failed save.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it has disadvantage on attack rolls against the bodak until the start of its next turn. If the creature looks at the bodak in the meantime, that creature must immediately make the saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "The bodak takes 5 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The bodak doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Gaze", + "body": [ + "One creature that the bodak can see within 60 feet of it must make a {@dc 13} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aura of Annihilation", + "body": [ + "The bodak activates or deactivates this deathly aura. While active, the aura deals 5 necrotic damage to any creature that ends its turn within 30 feet of the bodak. Undead and Fiends ignore this effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 127 + }, + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bodak-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Boggle", + "source": "MPMM", + "page": 65, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 8, + "dexterity": 18, + "constitution": 13, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Sylvan" + ], + "actions": [ + { + "title": "Pummel", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oil Puddle", + "body": [ + "The boggle creates a puddle of nonflammable oil. The puddle is 1 inch deep and covers the ground in the boggle's space. The puddle is {@quickref difficult terrain||3} for all creatures except boggles and lasts for 1 hour. The oil has one of the following additional effects of the boggle's choice:", + { + "title": "Slippery Oil", + "body": [ + "Any non-boggle creature that enters the puddle or starts its turn there must succeed on a {@dc 11} Dexterity saving throw or fall {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sticky Oil", + "body": [ + "Any non-boggle creature that enters the puddle or starts its turn there must succeed on a {@dc 11} Strength saving throw or be {@condition restrained}. On its turn, a creature can use an action to try to extricate itself, ending the effect and moving into the nearest unoccupied space of its choice with a successful {@dc 11} Strength check." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Boggle Oil", + "body": [ + "The boggle excretes nonflammable oil from its pores, giving itself one of the following benefits of its choice until it uses this bonus action again:", + { + "title": "Slippery Oil", + "body": [ + "The boggle has advantage on Dexterity ({@skill Acrobatics}) checks made to escape bonds and end grapples, and it can move through openings large enough for a Tiny creature without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sticky Oil", + "body": [ + "The boggle has advantage on Strength ({@skill Athletics}) checks made to grapple and any ability check made to maintain a hold on another creature, a surface, or an object. The boggle can also climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Dimensional Rift", + "body": [ + "The boggle creates an {@condition invisible} and immobile rift within an opening or frame it can see within 5 feet of it, provided that the space is no bigger than 10 feet on any side. The dimensional rift bridges the distance between that space and a point within 30 feet of it that the boggle can see or specify by distance and direction (such as \"30 feet straight up\"). While next to the rift, the boggle can see through it and is considered to be next to the destination as well, and anything the boggle puts through the rift (including a portion of its body) emerges at the destination. Only the boggle can use the rift, and it lasts until the end of the boggle's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 128 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boggle-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Boneclaw", + "source": "MPMM", + "page": 66, + "size_str": "Large", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 16, + "constitution": 15, + "intelligence": 13, + "wisdom": 15, + "charisma": 9, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+6", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus one language spoken by its master" + ], + "traits": [ + { + "title": "Rejuvenation", + "body": [ + "While its master lives, a destroyed boneclaw gains a new body in {@dice 1d10} hours, with all its hit points. The new body appears within 1 mile of the boneclaw's master." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The boneclaw doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The boneclaw makes two Piercing Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Piercing Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}20 ({@damage 3d10 + 4}) piercing damage plus 11 ({@damage 2d10}) necrotic damage. If the target is a creature, the boneclaw can pull the target up to 10 feet toward itself, and the target is {@condition grappled} (escape {@dc 14}). The boneclaw has two claws. While a claw grapples a target, the claw can attack only that target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Jump {@recharge 5}", + "body": [ + "If the boneclaw is in dim light or darkness, each creature of the boneclaw's choice within 15 feet of it must succeed on a {@dc 14} Constitution saving throw or take 34 ({@damage 5d12 + 2}) necrotic damage.", + "The boneclaw then teleports up to 60 feet to an unoccupied space it can see. It can bring one creature it's grappling, teleporting that creature to an unoccupied space it can see within 5 feet of its destination. The destination spaces of this teleportation must be in dim light or darkness." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the boneclaw takes the {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deadly Reach", + "body": [ + "In response to a creature entering a space within 15 feet of it, the boneclaw makes one Piercing Claw attack against that creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 121 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boneclaw-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Brontosaurus", + "source": "MPMM", + "page": 95, + "size_str": "Gargantuan", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 121, + "formula": "9d20 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 21, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "saves": { + "con": "+6" + }, + "actions": [ + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}27 ({@damage 5d8 + 5}) bludgeoning damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}32 ({@damage 6d8 + 5}) bludgeoning damage" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 139 + } + ], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Brontosaurus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Bulezau", + "source": "MPMM", + "page": 67, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 14, + "constitution": 17, + "intelligence": 8, + "wisdom": 9, + "charisma": 6, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Rotting Presence", + "body": [ + "When any creature that isn't a demon starts its turn within 30 feet of the bulezau, that creature must succeed on a {@dc 13} Constitution saving throw or take 3 ({@damage 1d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The bulezau's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The bulezau has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Barbed Tail", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage plus 4 ({@damage 1d8}) necrotic damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned} until the disease ends. While {@condition poisoned} in this way, the target sports festering boils, coughs up flies, and sheds rotting skin, and the target must repeat the saving throw after every 24 hours that elapse. On a successful save, the disease ends. On a failed save, the target's hit point maximum is reduced by 4 ({@dice 1d8}). The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 131 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Bulezau-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Cadaver Collector", + "source": "MPMM", + "page": 68, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 21, + "dexterity": 14, + "constitution": 20, + "intelligence": 5, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The collector has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The collector doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The collector makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 16 ({@damage 3d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Breath {@recharge 5}", + "body": [ + "The collector releases paralyzing gas in a 30-foot cone. Each creature in that area must make a successful {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. A {@condition paralyzed} creature repeats the saving throw at the end of each of its turns, ending the effect on itself with a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Summon Specters (Recharges after a Short or Long Rest)", + "body": [ + "The collector calls up the enslaved spirits of those it has slain; {@dice 1d4} {@creature specter||specters} (without Sunlight Sensitivity) arise in unoccupied spaces within 15 feet of it. The specters act right after the collector on the same initiative count and fight until they're destroyed. They disappear when the collector is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 122 + }, + { + "source": "AATM" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cadaver Collector-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Canoloth", + "source": "MPMM", + "page": 69, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 5, + "wisdom": 17, + "charisma": 12, + "passive": 19, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Dimensional Lock", + "body": [ + "Other creatures can't teleport to or from a space within 60 feet of the canoloth. Any attempt to do so is wasted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The canoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Uncanny Senses", + "body": [ + "The canoloth can't be {@status surprised} unless it's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The canoloth makes one Bite or Tongue attack and one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 18 ({@damage 4d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 30 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage plus 7 ({@damage 2d6}) acid damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}), pulled up to 30 feet toward the canoloth, and {@condition restrained} until the grapple ends. The canoloth can grapple one target at a time with its tongue." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 247 + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Canoloth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Catoblepas", + "source": "MPMM", + "page": 70, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 12, + "constitution": 21, + "intelligence": 3, + "wisdom": 14, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Stench", + "body": [ + "Any creature other than a catoblepas that starts its turn within 10 feet of the catoblepas must succeed on a {@dc 16} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the Stench of any catoblepas for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}21 ({@damage 5d6 + 4}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the start of the catoblepas's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Ray {@recharge 5}", + "body": [ + "The catoblepas targets one creature it can see within 30 feet of it. The target must make a {@dc 16} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the target instead takes 64 necrotic damage. The target dies if reduced to 0 hit points by this ray." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 129 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Catoblepas-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Cave Fisher", + "source": "MPMM", + "page": 73, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 3, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Flammable Blood", + "body": [ + "If the cave fisher drops to half its hit points or fewer, it gains vulnerability to fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The cave fisher can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cave fisher makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Retract Filament", + "body": [ + "One Large or smaller creature {@condition grappled} by the cave fisher's Adhesive Filament must make a {@dc 13} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the cave fisher, and the cave fisher makes one Claw attack against it. Anyone else who was attached to the filament is released. Until the grapple ends on the target, the cave fisher can't use Adhesive Filament." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Adhesive Filament", + "body": [ + "The cave fisher extends a sticky filament up to 60 feet, and the filament adheres to anything that touches it. A creature the filament adheres to is {@condition grappled} by the cave fisher (escape {@dc 13}), and ability checks made to escape this grapple have disadvantage. The filament can be attacked (AC 15; 5 hit points; immunity to poison and psychic damage). A weapon that fails to sever it becomes stuck to it, requiring an action and a successful {@dc 13} Strength check to pull free. Destroying the filament deals no damage to the cave fisher. The filament crumbles away if the cave fisher takes this bonus action again." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 130 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cave Fisher-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Champion", + "source": "MPMM", + "page": 74, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 14, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+6" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Indomitable (2/Day)", + "body": [ + "The champion rerolls a failed saving throw." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes three Greatsword or Shortbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage, plus 7 ({@damage 2d6}) slashing damage if the champion has more than half of its total hit points remaining." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 7 ({@damage 2d6}) piercing damage if the champion has more than half of its total hit points remaining." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "The champion regains 20 hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 212 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Champion-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Chitine", + "source": "MPMM", + "page": 75, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The chitine has advantage on saving throws against being {@condition charmed}, and magic can't put the chitine to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the chitine has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the chitine knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The chitine ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chitine makes three Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 131 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chitine-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Choker", + "source": "MPMM", + "page": 76, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 4, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Aberrant Quickness (Recharges after a Short or Long Rest)", + "body": [ + "The choker can take an extra action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boneless", + "body": [ + "The choker can move through and occupy a space as narrow as 4 inches wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The choker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The choker makes two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the choker can't use this tentacle on another target. The choker has two tentacles. If this attack is a critical hit, the target also can't breathe or speak until the grapple ends." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 123 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Choker-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Choldrith", + "source": "MPMM", + "page": 77, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 16, + "constitution": 12, + "intelligence": 11, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The choldrith has advantage on saving throws against being {@condition charmed}, and magic can't put the choldrith to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The choldrith can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the choldrith has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the choldrith knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The choldrith ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web {@recharge 5}", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one Large or smaller creature. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 11} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; 5 hit points; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Spectral Dagger (Recharges after a Short or Long Rest)", + "body": [ + "The choldrith conjures a floating, spectral dagger within 60 feet of itself. The choldrith can make a melee spell attack ({@hit 4} to hit) against one creature within 5 feet of the dagger. On a hit, the target takes 6 ({@damage 1d8 + 2}) force damage.", + "The dagger lasts for 1 minute. As a bonus action on later turns, the choldrith can move the dagger up to 20 feet and repeat the attack against one creature within 5 feet of the dagger." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The choldrith casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bane}", + "{@spell hold person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 132 + } + ], + "subtype": "cleric", + "actions_note": "", + "mythic": null, + "key": "Choldrith-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Clockwork Bronze Scout", + "source": "MPMM", + "page": 79, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 16, + "constitution": 11, + "intelligence": 3, + "wisdom": 14, + "charisma": 1, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Earth Armor", + "body": [ + "The clockwork doesn't provoke {@action opportunity attack||opportunity attacks} when it burrows." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The clockwork doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Flare (Recharges after a Short or Long Rest)", + "body": [ + "Each creature in contact with the ground within 15 feet of the clockwork must make a {@dc 13} Dexterity saving throw, taking 14 ({@damage 4d6}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 125 + }, + { + "source": "RtG", + "page": 32 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clockwork Bronze Scout-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Clockwork Iron Cobra", + "source": "MPMM", + "page": 79, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The clockwork doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or suffer one random effect (roll a {@dice d6}):", + { + "title": "1\u20132: Confusion", + "body": [ + "On its next turn, the target must use its action to make one weapon attack against a random creature it can see within 30 feet of it, using whatever weapon it has in hand and moving beforehand if necessary to get in range. If it's holding no weapon, it makes an unarmed strike. If no creature is visible within 30 feet, it takes the {@action Dash} action, moving toward the nearest creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "3\u20134: Paralysis", + "body": [ + "The target is {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "5\u20136: Poison", + "body": [ + "The target takes 13 ({@damage 3d8}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 125 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clockwork Iron Cobra-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Clockwork Oaken Bolter", + "source": "MPMM", + "page": 80, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 18, + "constitution": 15, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The clockwork doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The clockwork makes two Lancing Bolt attacks or one Lancing Bolt attack and one Harpoon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lancing Bolt", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 100/400 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harpoon", + "body": [ + "{@atk rw} {@hit 7} to hit, range 50/200 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 12}). While {@condition grappled} in this way, a creature's speed isn't reduced, but it can move only in directions that bring it closer to the clockwork. A creature takes 5 ({@damage 1d10}) slashing damage if it escapes from the grapple or if it tries and fails. The clockwork can grapple only one creature at a time with its harpoon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Explosive Bolt {@recharge 5}", + "body": [ + "The clockwork launches an explosive charge at a point within 120 feet. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Reel In", + "body": [ + "The clockwork pulls the creature {@condition grappled} by its Harpoon up to 20 feet closer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 126 + }, + { + "source": "RtG", + "page": 33 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clockwork Oaken Bolter-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Clockwork Stone Defender", + "source": "MPMM", + "page": 80, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The clockwork has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The clockwork doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and if the target is Large or smaller, it is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Intercept Attack", + "body": [ + "In response to another creature within 5 feet of it being hit by an attack roll, the clockwork gives that creature a +5 bonus to its AC against that attack, potentially causing a miss. To use this ability, the clockwork must be able to see the creature and the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 126 + }, + { + "source": "RtG", + "page": 35 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clockwork Stone Defender-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Cloud Giant Smiling One", + "source": "MPMM", + "page": 81, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 250, + "formula": "20d12 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 26, + "dexterity": 12, + "constitution": 22, + "intelligence": 15, + "wisdom": 16, + "charisma": 17, + "passive": 21, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+6", + "cha": "+7" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Control Weather (8th-level Spell)", + "body": [ + "The giant can cast the {@spell control weather} spell, requiring no material components and using Charisma as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Slam attacks or two Telekinetic Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 5 ({@damage 1d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Strike", + "body": [ + "{@atk rs} {@hit 7} to hit, range 240 ft., one target. {@h}25 ({@damage 4d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The giant magically transforms to look and feel like a Beast or a Humanoid it has seen or to return to its true form. Any equipment the giant is wearing or carrying is absorbed by the new form. Its statistics, other than its size, don't change. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Cloud Step {@recharge 4}", + "body": [ + "The giant teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell invisibility}", + "{@spell silent image}", + "{@spell suggestion}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell gaseous form}", + "{@spell major image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 146 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cloud Giant Smiling One-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Conjurer Wizard", + "source": "MPMM", + "page": 260, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "13d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The conjurer makes three Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 8} to hit, reach 5 ft. or range 120 ft., one target. {@h}19 ({@damage 3d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Benign Transportation {@recharge 4}", + "body": [ + "The conjurer teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space that it can see. If it instead chooses a space within range that is occupied by a willing Small or Medium creature, they both teleport, swapping places." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Elemental (1/Day)", + "body": [ + "The conjurer magically summons an {@creature air elemental}, an {@creature earth elemental}, a {@creature fire elemental}, or a {@creature water elemental}. The elemental appears in an unoccupied space within 60 feet of the conjurer, whom it obeys. It takes its turn immediately after the conjurer. It lasts for 1 hour, until it or the conjurer dies, or until the conjurer dismisses it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The conjurer casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fireball}", + "{@spell mage armor}", + "{@spell unseen servant}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell fly}", + "{@spell stinking cloud}", + "{@spell web}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 212 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Conjurer Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Corpse Flower", + "source": "MPMM", + "page": 82, + "size_str": "Large", + "maintype": "plant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 14, + "dexterity": 14, + "constitution": 16, + "intelligence": 7, + "wisdom": 15, + "charisma": 3, + "passive": 12, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Corpses", + "body": [ + "When first encountered, a corpse flower contains the corpses of {@dice 1d6 + 3} Humanoids. A corpse flower can hold the remains of up to nine Humanoids. These remains have {@quickref Cover||3||total cover} against attacks and other effects outside the corpse flower. If the corpse flower dies, the corpses within it can be pulled free." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The corpse flower can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench of Death", + "body": [ + "Each creature that starts its turn within 10 feet of the corpse flower or one of its zombies must make a {@dc 14} Constitution saving throw, unless the creature is a Construct or an Undead. On a failed save, the creature is {@condition poisoned} until the start of its next turn. On a successful save, the creature is immune to the Stench of Death of all corpse flowers for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The corpse flower makes three Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harvest the Dead", + "body": [ + "The corpse flower swallows one unsecured Humanoid corpse within 10 feet of it, along with any equipment the corpse is wearing or carrying." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Digest", + "body": [ + "The corpse flower digests one corpse in its body and instantly regains 11 ({@dice 2d10}) hit points. Nothing of the digested corpse remains. Any equipment on the corpse is expelled from the corpse flower in its space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reanimate", + "body": [ + "The corpse flower animates one corpse in its body, turning it into a {@creature zombie}. The zombie appears in an unoccupied space within 5 feet of the corpse flower and acts immediately after it in the initiative order. The zombie acts as an ally of the corpse flower but isn't under its control, and the flower's stench clings to it (see Stench of Death)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 127 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Corpse Flower-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Cranium Rat", + "source": "MPMM", + "page": 83, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 14, + "constitution": 10, + "intelligence": 4, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Telepathic Shroud", + "body": [ + "The cranium rat is immune to any effect that would sense its emotions or read its thoughts, as well as to all divination spells." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Illumination", + "body": [ + "The cranium rat sheds dim light from its exposed brain in a 5-foot radius or extinguishes the light." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 133 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cranium Rat-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Darkling", + "source": "MPMM", + "page": 84, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 9, + "dexterity": 16, + "constitution": 12, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Death Flash", + "body": [ + "When the darkling dies, nonmagical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area must succeed on a {@dc 10} Constitution saving throw or be {@condition blinded} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Sensitivity", + "body": [ + "While in bright light, the darkling has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 134 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Darkling-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Darkling Elder", + "source": "MPMM", + "page": 84, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 17, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Death Burn", + "body": [ + "When the darkling elder dies, magical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area must make a {@dc 11} Constitution saving throw. On a failed save, the creature takes 7 ({@damage 2d6}) radiant damage and is {@condition blinded} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition blinded}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The darkling elder makes two Scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Darkness (Recharges after a Short or Long Rest)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Darkness (Recharges after a Short or Long Rest)", + "body": [ + "The darkling elder casts {@spell darkness}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 134 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Darkling Elder-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Death Kiss", + "source": "MPMM", + "page": 85, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 142, + "formula": "15d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Lightning Blood", + "body": [ + "A creature within 5 feet of the death kiss takes 5 ({@damage 1d10}) lightning damage whenever it hits the death kiss with a melee attack that deals piercing or slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The death kiss makes three Tentacle attacks. Up to three of these attacks can be replaced by Blood Drain\u2014one replacement per tentacle grappling a creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Huge or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the death kiss can't use the same tentacle on another target. The death kiss has ten tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Drain", + "body": [ + "One creature {@condition grappled} by a tentacle of the death kiss must make a {@dc 16} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) lightning damage, and the death kiss regains half as many hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 124 + } + ], + "subtype": "beholder", + "actions_note": "", + "mythic": null, + "key": "Death Kiss-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Deathlock", + "source": "MPMM", + "page": 86, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 11, + "dexterity": 15, + "constitution": 10, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+4", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Turn Resistance", + "body": [ + "The deathlock has advantage on saving throws against any effect that turns Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The deathlock doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deathlock makes two Deathly Claw or Grave Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deathly Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grave Bolt", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The deathlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell hunger of Hadar}", + "{@spell invisibility}", + "{@spell spider climb}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 128 + }, + { + "source": "AATM" + }, + { + "source": "BMT" + } + ], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Deathlock-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Deathlock Mastermind", + "source": "MPMM", + "page": 87, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 16, + "constitution": 12, + "intelligence": 15, + "wisdom": 12, + "charisma": 17, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the deathlock's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The deathlock has advantage on saving throws against any effect that turns Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The deathlock doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deathlock makes two Deathly Claw or Grave Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deathly Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3} necrotic damage)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grave Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}13 ({@damage 3d8}) necrotic damage. If the target is Large or smaller, it must succeed on a {@dc 16} Strength saving throw or become {@condition restrained} as shadowy tendrils wrap around it for 1 minute. A {@condition restrained} target can use its action to repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The deathlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 129 + }, + { + "source": "AATM" + } + ], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Deathlock Mastermind-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Deathlock Wight", + "source": "MPMM", + "page": 87, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 14, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the deathlock has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The deathlock doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deathlock makes two Life Drain or Grave Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d8 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0.", + "A Humanoid slain by this attack rises 24 hours later as a {@creature zombie} under the deathlock's control, unless the Humanoid is restored to life or its body is destroyed. The deathlock can have no more than twelve zombies under its control at one time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grave Bolt", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}12 ({@damage 2d8 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The deathlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fear}", + "{@spell hold person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 129 + } + ], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Deathlock Wight-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Deep Roth\u00e9", + "source": "MPMM", + "page": 71, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Beast of Burden", + "body": [ + "The roth\u00e9 is considered to be one size larger for the purpose of determining its carrying capacity." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the roth\u00e9 moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Dancing Lights", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Dancing Lights", + "body": [ + "The roth\u00e9 casts {@spell dancing lights}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 208 + } + ], + "subtype": "cattle", + "actions_note": "", + "mythic": null, + "key": "Deep Roth\u00e9-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Deep Scion", + "source": "MPMM", + "page": 88, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(20 ft. and swim 40 ft. in hybrid form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Aquan", + "Common", + "thieves' cant" + ], + "traits": [ + { + "title": "Amphibious (Hybrid Form Only)", + "body": [ + "The deep scion can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deep scion makes two Battleaxe attacks, or it makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Screech (Hybrid Form Only; Recharges after a Short or Long Rest)", + "body": [ + "The deep scion emits a terrible scream audible within 300 feet. Creatures within 30 feet of the deep scion must succeed on a {@dc 13} Wisdom saving throw or be {@condition stunned} until the end of the deep scion's next turn. In water, the psychic screech also telepathically transmits the deep scion's memories of the last 24 hours to its master, regardless of distance, so long as it and its master are in the same body of water." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The deep scion transforms into a hybrid form (humanoid-piscine) or back into its true form, which is humanlike. Its statistics, other than its speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. The deep scion reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 135 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deep Scion-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Deinonychus", + "source": "MPMM", + "page": 95, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 15, + "constitution": 14, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Pounce", + "body": [ + "If the deinonychus moves at least 20 feet straight toward a creature and then hits it with a Claw attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the deinonychus can make one Bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deinonychus makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 139 + } + ], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Deinonychus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Demogorgon", + "source": "MPMM", + "page": 90, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 464, + "formula": "32d12 + 256", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 29, + "dexterity": 14, + "constitution": 26, + "intelligence": 20, + "wisdom": 17, + "charisma": 25, + "passive": 29, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 19, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+16", + "wis": "+11", + "cha": "+15" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Demogorgon fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Demogorgon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Two Heads", + "body": [ + "Demogorgon has advantage on saving throws against being {@condition blinded}, {@condition deafened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Demogorgon makes two Tentacle attacks. He can replace one attack with a use of Gaze." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) force damage. If the target is a creature, it must succeed on a {@dc 23} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gaze", + "body": [ + "Demogorgon turns his magical gaze toward one creature he can see within 120 feet of him. The target must succeed on a {@dc 23} Wisdom saving throw or suffer one of the following effects (choose one or roll a {@dice d6}):", + { + "title": "1\u20132: Beguiling Gaze", + "body": [ + "The target is {@condition stunned} until the start of Demogorgon's next turn or until Demogorgon is no longer within line of sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "3\u20134: Confusing Gaze", + "body": [ + "The target suffers the effect of the {@spell confusion} spell without making a saving throw. The effect lasts until the start of Demogorgon's next turn. Demogorgon doesn't need to concentrate on the spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "5\u20136: Hypnotic Gaze", + "body": [ + "The target is {@condition charmed} by Demogorgon until the start of Demogorgon's next turn. Demogorgon chooses how the {@condition charmed} target uses its action, reaction, and movement." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Gaze", + "body": [ + "Demogorgon uses Gaze and must use either Beguiling Gaze or Confusing Gaze." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage plus 11 ({@damage 2d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Demogorgon uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Demogorgon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell project image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 144 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Demogorgon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Derro", + "source": "MPMM", + "page": 91, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 5, + "charisma": 9, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The derro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooked Spear", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage. If the target is Medium or smaller, the derro can choose to deal no damage and knock it {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 158 + }, + { + "source": "QftIS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Derro-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Derro Savant", + "source": "MPMM", + "page": 92, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 5, + "charisma": 14, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The derro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Beam", + "body": [ + "The derro launches a brilliant beam of magical energy in a 5-foot-wide line that is 60 feet long. Each creature in the line must make a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The derro casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell invisibility}", + "{@spell sleep}", + "{@spell spider climb}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 159 + } + ], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Derro Savant-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Devourer", + "source": "MPMM", + "page": 93, + "size_str": "Large", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 13, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "A devourer doesn't require air, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devourer makes two Claw attacks and can use either Imprison Soul or Soul Rend, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 21 ({@damage 6d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Imprison Soul", + "body": [ + "The devourer chooses a living Humanoid with 0 hit points that it can see within 30 feet of it. That creature is teleported inside the devourer's ribcage and imprisoned there. While imprisoned in this way, the creature is {@condition restrained} and has disadvantage on death saving throws. If the creature dies while imprisoned, the devourer regains 25 hit points and immediately recharges Soul Rend. Additionally, at the start of its next turn, the devourer regurgitates the slain creature as a bonus action, and the creature becomes an undead. If the victim had 2 or fewer Hit Dice, it becomes a {@creature zombie}. If it had 3 to 5 Hit Dice, it becomes a {@creature ghoul}. Otherwise, it becomes a {@creature wight}. A devourer can imprison only one creature at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Rend {@recharge}", + "body": [ + "The devourer creates a vortex of life-draining energy in a 20-foot radius centered on itself. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 44 ({@damage 8d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 138 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Devourer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Dhergoloth", + "source": "MPMM", + "page": 94, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 10, + "constitution": 19, + "intelligence": 7, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "saves": { + "str": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The dhergoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dhergoloth makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flailing Claws {@recharge 5}", + "body": [ + "The dhergoloth moves up to its speed in a straight line and targets each creature within 5 feet of it during its movement. Each target must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 3d12 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The dhergoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The dhergoloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 10}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell fear}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 248 + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Dhergoloth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Dimetrodon", + "source": "MPMM", + "page": 95, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 10, + "constitution": 15, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 139 + } + ], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Dimetrodon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Dire Troll", + "source": "MPMM", + "page": 246, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 22, + "dexterity": 15, + "constitution": 21, + "intelligence": 9, + "wisdom": 11, + "charisma": 5, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+2" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, it regains only 5 hit points at the start of its next turn. The troll dies only if it is hit by an attack that deals 10 or more acid or fire damage while the troll has 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + " The troll makes one Bite attack and four Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind of Claws {@recharge 5}", + "body": [ + "Each creature within 10 feet of the troll must make a {@dc 19} Dexterity saving throw, taking 44 ({@damage 8d10}) slashing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 243 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dire Troll-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Diviner Wizard", + "source": "MPMM", + "page": 261, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "20d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 18, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The diviner makes three Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Overwhelming Revelation {@recharge 5}", + "body": [ + "The diviner magically creates a burst of illumination in a 10-foot-radius sphere centered on a point within 120 feet of it. Each creature in that area must make a {@dc 15} Wisdom saving throw. On a failed save, a creature takes 45 ({@damage 10d8}) psychic damage and is {@condition stunned} until the end of the diviner's next turn. On a successful save, the creature takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Portent (3/Day)", + "body": [ + "When the diviner or a creature it can see makes an attack roll, a saving throw, or an ability check, the diviner rolls a {@dice d20} and chooses whether to use that roll in place of the {@dice d20} rolled for the attack roll, saving throw, or ability check. " + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The diviner casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell arcane eye}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell fly}", + "{@spell lightning bolt}", + "{@spell locate object}", + "{@spell mage armor}", + "{@spell Rary's telepathic bond}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 213 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Diviner Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Dolphin", + "source": "MPMM", + "page": 97, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 14, + "dexterity": 13, + "constitution": 13, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The dolphin can hold its breath for 20 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage. If the dolphin moved at least 30 feet straight toward the target immediately before the hit, the target takes an extra 3 ({@damage 1d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 208 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dolphin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Dolphin Delighter", + "source": "MPMM", + "page": 97, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 13, + "constitution": 13, + "intelligence": 11, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+5" + }, + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Aquan", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The dolphin can hold its breath for 20 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dolphin makes two Dazzling Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dazzling Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage plus 7 ({@damage 2d6}) psychic damage, and the target is {@condition blinded} until the start of the dolphin's next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Delightful Light {@recharge 5}", + "body": [ + "The dolphin magically emanates light in a 10-foot radius for a moment. The dolphin and each creature of its choice in that light gain 11 ({@dice 2d10}) temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Leap", + "body": [ + "The dolphin teleports up to 30 feet to an unoccupied space it can see. Immediately before teleporting, the dolphin can choose one creature within 5 feet of it. That creature can teleport with the dolphin, appearing in an unoccupied space within 5 feet of the dolphin's destination space." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dolphin Delighter-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Draegloth", + "source": "MPMM", + "page": 98, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 20, + "dexterity": 15, + "constitution": 18, + "intelligence": 13, + "wisdom": 11, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The draegloth has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draegloth makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The draegloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell darkness}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell faerie fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 141 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Draegloth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Arachnomancer", + "source": "MPMM", + "page": 99, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 11, + "dexterity": 17, + "constitution": 14, + "intelligence": 19, + "wisdom": 14, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+9", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon", + "can speak with spiders" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The drow can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The drow ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes three attacks, using Bite, Poisonous Touch, Web, or a combination of them. One attack can be replaced by a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Spider Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 31 ({@damage 7d8}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Touch (Humanoid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}35 ({@damage 10d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web (Spider Form Only; {@recharge 5})", + "body": [ + "{@atk rw} {@hit 8} to hit, range 30/60 ft., one target. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 15} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape (Recharges after a Short or Long Rest)", + "body": [ + "The drow magically transforms into a Large spider, remaining in that form for up to 1 hour, or back into its true form. Its statistics, other than its size, are the same in each form. It can speak and cast spells while in spider form. Any equipment it is wearing or carrying in Humanoid form melds into the spider form. It can't activate, use, wield, or otherwise benefit from any of its equipment. It reverts to its Humanoid form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The drow casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell dispel magic}", + "{@spell etherealness}", + "{@spell faerie fire}", + "{@spell fly}", + "{@spell insect plague}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 182 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Arachnomancer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Favored Consort", + "source": "MPMM", + "page": 100, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 240, + "formula": "32d8 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 15, + "dexterity": 20, + "constitution": 16, + "intelligence": 18, + "wisdom": 15, + "charisma": 18, + "passive": 18, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+9", + "cha": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes three Scimitar or Arcane Eruption attacks. The drow can replace one of the attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 27 ({@damage 6d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Eruption", + "body": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}36 ({@damage 8d8}) force damage, and the drow can push the target up to 10 feet away if it is a Large or smaller creature." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protective Shield (3/Day)", + "body": [ + "When the drow or a creature within 10 feet of it is hit by an attack roll, the drow gives the target a +5 bonus to its AC until the start of the drow's next turn, which can cause the triggering attack roll to miss." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The drow casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dimension door}", + "{@spell fireball}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 183 + } + ], + "subtype": "elf, wizard", + "actions_note": "", + "mythic": null, + "key": "Drow Favored Consort-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Drow House Captain", + "source": "MPMM", + "page": 101, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 14, + "dexterity": 19, + "constitution": 15, + "intelligence": 12, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+6", + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes two Scimitar attacks and one Whip or Hand Crossbow attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whip", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Battle Command", + "body": [ + "Choose one creature within 30 feet of the drow that the drow can see. If the chosen creature can see or hear the drow, that creature can use its reaction to make one melee attack or to take the {@action Dodge} or {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The drow adds 3 to its AC against one melee attack roll that would hit it. To do so, the drow must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The drow casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 184 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow House Captain-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Inquisitor", + "source": "MPMM", + "page": 102, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 11, + "dexterity": 15, + "constitution": 14, + "intelligence": 16, + "wisdom": 21, + "charisma": 20, + "passive": 20, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+10", + "cha": "+10" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Discern Lie", + "body": [ + "The drow discerns when a creature in earshot speaks a lie in a language the drow knows." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes three Death Lance attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Lance", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 18 ({@damage 4d8}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Spectral Dagger (Recharges after a Short or Long Rest)", + "body": [ + "The drow conjures a floating, spectral dagger within 60 feet of itself. The drow can make a melee spell attack ({@hit 10} to hit) against one creature within 5 feet of the dagger. On a hit, the target takes 9 ({@damage 1d8 + 5}) force damage.", + "The dagger lasts for 1 minute. As a bonus action on later turns, the drow can move the dagger up to 20 feet and repeat the attack against one creature within 5 feet of the dagger." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The drow's casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell message}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell levitate} (self only)", + "{@spell silence}", + "{@spell suggestion}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 184 + } + ], + "subtype": "cleric, elf", + "actions_note": "", + "mythic": null, + "key": "Drow Inquisitor-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Matron Mother", + "source": "MPMM", + "page": 104, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|PHB|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 247, + "formula": "33d8 + 99", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 12, + "dexterity": 18, + "constitution": 16, + "intelligence": 17, + "wisdom": 21, + "charisma": 22, + "passive": 21, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+11", + "cha": "+12" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "The drow wields a {@item tentacle rod}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes two Demon Staff attacks or one Demon Staff attack and three Tentacle Rod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Demon Staff", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if used with two hands, plus 14 ({@damage 4d6}) psychic damage. The target must succeed on a {@dc 19} Wisdom saving throw or become {@condition frightened} of the drow for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle Rod", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one creature. {@h}3 ({@damage 1d6}) bludgeoning damage. If the target is hit three times by the {@item tentacle rod|DMG|rod} on one turn, the target must succeed on a {@dc 15} Constitution saving throw or suffer the following effects for 1 minute: the target's speed is halved, it has disadvantage on Dexterity saving throws, and it can't use reactions. Moreover, on each of its turns, it can take either an action or a bonus action, but not both. At the end of each of its turns, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Divine Flame (2/Day)", + "body": [ + "A 10-foot-radius, 40-foot-high column of divine fire sprouts in an area up to 120 feet away from the drow. Each creature in the column must make a {@dc 20} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage and 14 ({@damage 4d6}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Lolth's Fickle Favor", + "body": [ + "The drow bestows the Spider Queen's blessing on one ally she can see within 30 feet of her. The ally takes 7 ({@damage 2d6}) psychic damage but has advantage on the next attack roll it makes before the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Servant (1/Day)", + "body": [ + "The drow magically summons a {@creature glabrezu} or a {@creature yochlol}. The summoned creature appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Compel Demon", + "body": [ + "An allied demon within 30 feet of the drow uses its reaction to make one attack against a target of the drow's choice that she can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Demon Staff", + "body": [ + "The drow makes one Demon Staff attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The drow uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The drow casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell banishment}", + "{@spell blade barrier}", + "{@spell cure wounds}", + "{@spell hold person}", + "{@spell plane shift}", + "{@spell silence}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell gate}", + "{@spell levitate} (self only)", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 186 + } + ], + "subtype": "cleric, elf", + "actions_note": "", + "mythic": null, + "key": "Drow Matron Mother-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Drow Shadowblade", + "source": "MPMM", + "page": 105, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 14, + "dexterity": 21, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+7", + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the drow's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes three Shadow Sword attacks. One of the attacks can be replaced by a Hand Crossbow attack. The drow can also use Spellcasting to cast darkness." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Sword", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 30/60 ft., one target. {@h}27 ({@damage 7d6 + 5}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 9} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Step", + "body": [ + "While in dim light or darkness, the drow teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see that is also in dim light or darkness. It then has advantage on the first melee attack it makes before the end of the turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The drow casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell darkness}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 187 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Shadowblade-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Despot", + "source": "MPMM", + "page": 107, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 20, + "dexterity": 5, + "constitution": 19, + "intelligence": 15, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "saves": { + "con": "+8", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The duergar has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Engine", + "body": [ + "When the duergar suffers a critical hit or is reduced to 0 hit points, psychic energy erupts from its frame to deal 14 ({@damage 4d6}) psychic damage to each creature within 5 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes two Iron Fist attacks and two Stomping Foot attacks. After one of the attacks, the duergar can move up to its speed without provoking {@action opportunity attack||opportunity attacks}. It can replace one of the attacks with a use of Flame Jet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Iron Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}23 ({@damage 4d8 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be pushed up to 30 feet away in a straight line and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomping Foot", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, or 21 ({@damage 3d10 + 5}) to a {@condition prone} target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Jet", + "body": [ + "The duergar spews flames in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 16} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The duergar casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell stinking cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 188 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Despot-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Hammerer", + "source": "MPMM", + "page": 112, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 7, + "constitution": 12, + "intelligence": 5, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "traits": [ + { + "title": "Siege Monster", + "body": [ + "The hammerer deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hammerer makes one Claw attack and one Hammer attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hammer", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Engine of Pain", + "body": [ + "Immediately after a creature within 5 feet of the hammerer hits it with an attack roll, the hammerer makes a Hammer attack against that creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 188 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Hammerer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Kavalrachni", + "source": "MPMM", + "page": 107, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Cavalry Training", + "body": [ + "When the duergar hits a target with a melee attack while mounted, the mount can use its reaction to make one melee attack against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes two War Pick attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shared Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it. While the {@condition invisible} duergar is mounted, the mount is {@condition invisible} as well. The invisibility ends early on the mount immediately after it attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 189 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Kavalrachni-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Mind Master", + "source": "MPMM", + "page": 108, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 17, + "constitution": 14, + "intelligence": 15, + "wisdom": 10, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes two Mind-Poison Dagger attacks. It can replace one attack with a use of Mind Mastery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind-Poison Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage, or 1 piercing damage plus 10 ({@damage 3d6}) psychic damage while under the effect of Reduce." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility {@recharge 4}", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Mastery", + "body": [ + "The duergar targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 12} Intelligence saving throw, or the duergar causes it to use its reaction, if available, either to make one weapon attack against another creature the duergar can see or to move up to 10 feet in a direction of the duergar's choice. Creatures that can't be {@condition charmed} are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Reduce (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically decreases in size, along with anything it is wearing or carrying. While reduced, the duergar is Tiny, reduces its weapon damage to 1, and makes attack rolls, ability checks, and saving throws with disadvantage if they use Strength. It gains a +5 bonus to all Dexterity ({@skill Stealth}) checks and a +5 bonus to its AC. It can also take a bonus action on each of its turns to take the {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 189 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Mind Master-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Screamer", + "source": "MPMM", + "page": 111, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 7, + "constitution": 12, + "intelligence": 5, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The screamer makes one Drill attack, and it uses Sonic Scream." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drill", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sonic Scream", + "body": [ + "The screamer emits destructive energy in a 15-foot cube. Each creature in that area must succeed on a {@dc 11} Strength saving throw or take 7 ({@damage 2d6}) thunder damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Engine of Pain", + "body": [ + "Immediately after a creature within 5 feet of the screamer hits it with an attack roll, the screamer makes a Drill attack against that creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 190 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Screamer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Soulblade", + "source": "MPMM", + "page": 109, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 16, + "constitution": 10, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Soulblade", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) force damage, or 13 ({@damage 3d6 + 3}) force damage while under the effect of Enlarge." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 190 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Soulblade-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Stone Guard", + "source": "MPMM", + "page": 110, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phalanx Formation", + "body": [ + "The duergar has advantage on attack rolls and Dexterity saving throws while standing within 5 feet of an ally wielding a {@item shield|PHB}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes two Shortsword or Javelin attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while under the effect of Enlarge." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while under the effect of Enlarge." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 191 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Stone Guard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Warlord", + "source": "MPMM", + "page": 111, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 11, + "constitution": 17, + "intelligence": 12, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes three Psychic-Attuned Hammer or Javelin attacks and uses Call to Attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic-Attuned Hammer", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage, or 15 ({@damage 2d10 + 4}) bludgeoning damage while under the effect of Enlarge, plus 5 ({@damage 1d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while under the effect of Enlarge." + ], + "__dataclass__": "Entry" + }, + { + "title": "Call to Attack", + "body": [ + "Up to three allies within 120 feet of this duergar that can hear it can each use their reaction to make one weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility {@recharge 4}", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Scouring Instruction", + "body": [ + "When an ally that the duergar can see makes a {@dice d20} roll, the duergar can roll a {@dice d6}, and the ally can add the number rolled to the {@dice d20} by taking 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 192 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Warlord-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Xarrorn", + "source": "MPMM", + "page": 111, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against spells and the {@condition charmed}, {@condition paralyzed}, and {@condition poisoned} conditions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fire Lance", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage, or 16 ({@damage 2d12 + 3}) piercing damage while under the effect of Enlarge, plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Spray {@recharge 5}", + "body": [ + "From its fire lance, the duergar shoots a 15-foot cone of fire or a line of fire 30 feet long and 5 feet wide. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it forces a creature to make a saving throw, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 193 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Xarrorn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Dybbuk", + "source": "MPMM", + "page": 113, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 6, + "dexterity": 19, + "constitution": 16, + "intelligence": 16, + "wisdom": 15, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The dybbuk can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The dybbuk has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) necrotic damage. If the target is a creature, its hit point maximum is also reduced by 3 ({@dice 1d6}). This reduction lasts until the target finishes a short or long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possess Corpse {@recharge}", + "body": [ + "The dybbuk disappears into an intact corpse within 5 feet of it that belonged to a Large or smaller Beast or Humanoid. The dybbuk gains 20 temporary hit points. While possessing the corpse, the dybbuk adopts the corpse's size and can't use Incorporeal Movement. Its game statistics otherwise remain the same. The possession lasts until the temporary hit points are lost or the dybbuk ends it as a bonus action. When the possession ends, the dybbuk appears in an unoccupied space within 5 feet of the corpse." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Control Corpse", + "body": [ + "While Possess Corpse is active, the dybbuk makes the corpse do something unnatural, such as vomit blood, twist its head all the way around, or cause a quadruped to move as a biped. Any Beast or Humanoid that sees this behavior must succeed on a {@dc 12} Wisdom saving throw or become {@condition frightened} of the dybbuk for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on a saving throw against this ability is immune to Control Corpse for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The dybbuk casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell phantasmal force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 132 + }, + { + "source": "AATM" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Dybbuk-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Earth Elemental Myrmidon", + "source": "MPMM", + "page": 122, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 8, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Terran", + "one language of its creator's choice" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes two Maul attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Strike {@recharge}", + "body": [ + "The myrmidon makes one Maul attack. On a hit, the target takes an extra 22 ({@damage 4d10}) thunder damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 202 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Earth Elemental Myrmidon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Eidolon", + "source": "MPMM", + "page": 114, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 63, + "formula": "18d8 - 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 7, + "dexterity": 8, + "constitution": 9, + "intelligence": 14, + "wisdom": 19, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object other than a {@creature sacred statue|MPMM}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sacred Animation {@recharge 5}", + "body": [ + "When the eidolon moves into a space occupied by a {@creature sacred statue|MPMM}, the eidolon can disappear, causing the statue to become a creature under the eidolon's control. The eidolon uses the {@creature sacred statue|MPMM|sacred statue's stat block} in place of its own." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The eidolon has advantage on saving throws against any effect that turns Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The eidolon doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Divine Dread", + "body": [ + "Each creature within 60 feet of the eidolon that can see it must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of it for 1 minute. While {@condition frightened} in this way, the creature must take the {@action Dash} action and move away from the eidolon by the safest available route at the start of each of its turns, unless there is nowhere for it to move, in which case the creature also becomes {@condition stunned} until it can move again. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to any eidolon's Divine Dread for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 194 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eidolon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Elder Brain", + "source": "MPMM", + "page": 120, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 10, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 15, + "dexterity": 10, + "constitution": 20, + "intelligence": 21, + "wisdom": 19, + "charisma": 24, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+10", + "wis": "+9", + "cha": "+12" + }, + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "understands Common", + "Deep Speech", + "and Undercommon but can't speak", + "telepathy 5 miles" + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The elder brain is aware of creatures within 5 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the elder brain fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The elder brain has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Hub", + "body": [ + "The elder brain can use its telepathy to initiate and maintain telepathic conversations with up to ten creatures at a time. The elder brain can let those creatures telepathically hear each other while connected in this way." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 30 ft., one target. {@h}20 ({@damage 4d8 + 2}) bludgeoning damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 15}) and takes 9 ({@damage 1d8 + 5}) psychic damage at the start of each of its turns until the grapple ends. The elder brain can have up to four targets {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "Creatures of the elder brain's choice within 60 feet of it must succeed on a {@dc 18} Intelligence saving throw or take 32 ({@damage 5d10 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Psychic Link", + "body": [ + "The elder brain targets one {@condition incapacitated} creature it senses with its Creature Sense trait and establishes a psychic link with the target. Until the link ends, the elder brain can perceive everything the target senses. The target becomes aware that something is linked to its mind once it is no longer {@condition incapacitated}, and the elder brain can terminate the link at any time (no action required). The target can use an action on its turn to attempt to break the link, doing so with a successful {@dc 18} Charisma saving throw. On a successful save, the target takes 10 ({@damage 3d6}) psychic damage. The link also ends if the target and the elder brain are more than 5 miles apart. The elder brain can form psychic links with up to ten creatures at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sense Thoughts", + "body": [ + "The elder brain targets a creature with which it has a psychic link. The elder brain gains insight into the target's emotional state and foremost thoughts (including worries, loves, and hates)." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Break Concentration", + "body": [ + "The elder brain targets one creature within 120 feet of it with which it has a psychic link. The elder brain breaks the creature's {@status concentration} on a spell it has cast. The creature also takes 2 ({@damage 1d4}) psychic damage per level of the spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Pulse", + "body": [ + "The elder brain targets one creature within 120 feet of it with which it has a psychic link. The target and enemies of the elder brain within 30 feet of target take 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sever Psychic Link", + "body": [ + "The elder brain targets one creature within 120 feet of it with which it has a psychic link. The elder brain ends the link, causing the creature to have disadvantage on all ability checks, attack rolls, and saving throws until the end of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle (Costs 2 Actions)", + "body": [ + "The elder brain makes one Tentacle attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The elder brain casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell modify memory}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 173 + }, + { + "source": "PaBTSO" + }, + { + "source": "CoA" + } + ], + "subtype": "mind flayer", + "actions_note": "", + "mythic": null, + "key": "Elder Brain-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Elder Oblex", + "source": "MPMM", + "page": 199, + "size_str": "Huge", + "maintype": "ooze", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 115, + "formula": "10d12 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 15, + "dexterity": 16, + "constitution": 21, + "intelligence": 22, + "wisdom": 13, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+10", + "cha": "+8" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "languages": [ + "Common plus six more languages" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion to Fire", + "body": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The oblex doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elder oblex makes two Pseudopod attacks, and it uses Eat Memories." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}17 ({@damage 4d6 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eat Memories", + "body": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 18} Wisdom saving throw or take 44 ({@damage 8d10}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, Oozes, Plants, and Undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from any ability check or attack roll it makes. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "The oblex learns all the languages a memory-drained target knows and gains all its skill proficiencies." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Sulfurous Impersonation", + "body": [ + "The oblex extrudes a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 2d6 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. The simulacrum is an extension of the oblex, meaning that the oblex occupies its space and the simulacrum's space simultaneously. The tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex and the simulacrum. The simulacrum disappears if the tether is severed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The oblex casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dimension door}", + "{@spell dominate person}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 219 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elder Oblex-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Elder Tempest", + "source": "MPMM", + "page": 121, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 19 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 264, + "formula": "16d20 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 23, + "dexterity": 28, + "constitution": 23, + "intelligence": 2, + "wisdom": 21, + "charisma": 18, + "passive": 15, + "saves": { + "wis": "+12", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Air Form", + "body": [ + "The tempest can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The tempest doesn't provoke {@action opportunity attack||opportunity attacks} when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the tempest fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Living Storm", + "body": [ + "The tempest is always at the center of a storm {@dice 1d6 + 4} miles in diameter. Heavy precipitation in the form of either rain or snow falls there, causing the area to be lightly obscured. Heavy rain also extinguishes open flames and imposes disadvantage on Wisdom ({@skill Perception}) checks that rely on hearing. In addition, strong winds swirl in the area covered by the storm. The winds impose disadvantage on ranged attack rolls. They also extinguish open flames and disperse fog." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The tempest deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tempest makes two Thunderous Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Slam", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}23 ({@damage 4d6 + 9}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm {@recharge}", + "body": [ + "Each creature within 120 feet of the tempest must make a {@dc 21} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage on a failed save, or half as much damage on a successful one. If a target's saving throw fails by 5 or more, the creature is also {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The tempest moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike (Costs 2 Actions)", + "body": [ + "The tempest can cause a bolt of lightning to strike a point on the ground anywhere under its storm. Each creature within 5 feet of that point must make a {@dc 21} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Screaming Gale (Costs 3 Actions)", + "body": [ + "The tempest releases a blast of thunder and wind in a line that is 300 feet long and 20 feet wide. Objects in that area take 22 ({@damage 4d10}) thunder damage. Each creature there must succeed on a {@dc 21} Dexterity saving throw or take 22 ({@damage 4d10}) thunder damage and be flung up to 60 feet in a direction away from the line. If a thrown target collides with an immovable object (such as a wall or floor) or another creature, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown before impact. If the target collides with another creature, that other creature must succeed on a {@dc 19} Dexterity saving throw or take the same impact damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 200 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elder Tempest-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Enchanter Wizard", + "source": "MPMM", + "page": 261, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "11d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The enchanter makes three Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}19 ({@damage 3d10 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Instinctive Charm {@recharge 4}", + "body": [ + "When a visible creature within 30 feet of the enchanter makes an attack roll against it, the enchanter forces the attacker to make a {@dc 14} Wisdom saving throw. On a failed save, the attacker redirects the attack roll to the creature closest to it, other than the enchanter or itself. If multiple eligible creatures are closest, the attacker chooses which one to target." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The enchanter casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell charm person}", + "{@spell mage armor}", + "{@spell hold person}", + "{@spell invisibility}", + "{@spell suggestion}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 213 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Enchanter Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Evoker Wizard", + "source": "MPMM", + "page": 262, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 121, + "formula": "22d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+5" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The evoker makes three Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}25 ({@damage 4d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sculpted Explosion {@recharge 4}", + "body": [ + "The evoker unleashes a magical explosion of a particular damage type: cold, fire, lightning, or thunder. The magic erupts in a 20-foot-radius sphere centered on a point within 150 feet of the evoker. Each creature in that area must make a {@dc 15} Dexterity saving throw. The evoker can select up to three creatures it can see in the area to ignore the spell, as the evoker sculpts the spell's energy around them. On a failed save, a creature takes 40 ({@damage 9d8}) damage of the chosen type and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The evoker casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell ice storm}", + "{@spell lightning bolt}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell wall of ice}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 214 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Evoker Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Female Steeder", + "source": "MPMM", + "page": 231, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 16, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 14, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Extraordinary Leap", + "body": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to move 3 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sticky Leg", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is stuck to the steeder's leg and {@condition grappled} (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 238 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Female Steeder-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Fire Elemental Myrmidon", + "source": "MPMM", + "page": 123, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 13, + "dexterity": 18, + "constitution": 15, + "intelligence": 9, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ignan", + "one language of its creator's choice" + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "The myrmidon sheds bright light in a 20-foot radius and dim light in a 40-foot radius." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Susceptibility", + "body": [ + "For every 5 feet the myrmidon moves in 1 foot or more of water, it takes 2 ({@damage 1d4}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes three Scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Strikes {@recharge}", + "body": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 203 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fire Elemental Myrmidon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Fire Giant Dreadnought", + "source": "MPMM", + "page": 124, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "{@item plate armor|PHB|plate}, {@item shield|phb|Dual Shields}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "15d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 27, + "dexterity": 9, + "constitution": 23, + "intelligence": 8, + "wisdom": 10, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+11", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Dual Shields", + "body": [ + "The giant carries two shields, which together give the giant +3 to its AC (accounted for above)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Fireshield or Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fireshield", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage plus 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield Charge {@recharge 5}", + "body": [ + "The giant moves up to 30 feet in a straight line and can move through the space of any creature smaller than Huge. The first time it enters a creature's space during this move, that creature must succeed on a {@dc 21} Strength saving throw or take 36 ({@damage 8d6 + 8}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage and be pushed up to 30 feet and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 147 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fire Giant Dreadnought-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Firenewt Warlock of Imix", + "source": "MPMM", + "page": 125, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 11, + "constitution": 12, + "intelligence": 9, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Ignan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The firenewt can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the firenewt's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Imix's Blessing", + "body": [ + "When the firenewt reduces an enemy to 0 hit points, the firenewt gains 5 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The firenewt makes three Morningstar or Fire Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Ray", + "body": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one target. {@h}5 ({@damage 1d6 + 2}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The firenewt casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 143 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Firenewt Warlock of Imix-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Firenewt Warrior", + "source": "MPMM", + "page": 125, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "{@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 13, + "constitution": 12, + "intelligence": 7, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Draconic", + "Ignan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The firenewt can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The firenewt makes two Scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Fire (Recharges after a Short or Long Rest)", + "body": [ + "The firenewt spits fire at a creature within 10 feet of it. The creature must make a {@dc 11} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 142 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Firenewt Warrior-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Flail Snail", + "source": "MPMM", + "page": 126, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "5d10 + 25", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 5, + "constitution": 20, + "intelligence": 3, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Antimagic Shell", + "body": [ + "The snail has advantage on saving throws against spells, and any creature making a spell attack against the snail has disadvantage on the attack roll.", + "If the snail succeeds on its saving throw against a spell or a spell's attack roll misses it, the snail's shell converts some of the spell's energy into a burst of destructive force if the spell is of 1st level or higher; each creature within 30 feet of the snail must make a {@dc 15} Constitution saving throw, taking 3 ({@damage 1d6}) force damage per level of the spell on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The snail makes five Flail Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scintillating Shell (Recharges after a Short or Long Rest)", + "body": [ + "The snail's shell emits dazzling, colored light until the end of the snail's next turn. During this time, the shell sheds bright light in a 30-foot radius and dim light for an additional 30 feet, and creatures that can see the snail have disadvantage on attack rolls against it. In addition, any creature within the bright light and able to see the snail when this power is activated must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} until the light ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "The flail snail withdraws into its shell. Until it emerges, it gains a +4 bonus to its AC and is {@condition restrained}. It can emerge from its shell as a bonus action on its turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 144 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flail Snail-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Flind", + "source": "MPMM", + "page": 127, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 14, + "constitution": 19, + "intelligence": 11, + "wisdom": 13, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Gnoll", + "Abyssal" + ], + "traits": [ + { + "title": "Aura of Blood Thirst", + "body": [ + "If the flind isn't {@condition incapacitated}, any creature with the Rampage trait can make a Bite attack as a bonus action while within 10 feet of the flind." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The flind makes one Flail of Chaos attack, one Flail of Pain attack, and one Flail of Paralysis attack, or it makes three Longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail of Chaos", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must make a {@dc 16} Wisdom saving throw. On a failed save, the target must use its reaction, if available, to make one melee attack against a random creature, other than the flind, within its reach. If there's no creature within reach, the target instead moves half its speed in a random direction." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail of Pain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage plus 16 ({@damage 3d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail of Paralysis", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 153 + } + ], + "subtype": "gnoll", + "actions_note": "", + "mythic": null, + "key": "Flind-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Fraz-Urb'luu", + "source": "MPMM", + "page": 129, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 337, + "formula": "27d10 + 189", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 29, + "dexterity": 12, + "constitution": 25, + "intelligence": 26, + "wisdom": 24, + "charisma": 26, + "passive": 24, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+14", + "int": "+15", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Fraz-Urb'luu fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Fraz-Urb'luu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undetectable", + "body": [ + "Fraz-Urb'luu can't be targeted by divination magic, perceived through magical scrying sensors, or detected by abilities that sense demons or Fiends." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Fraz-Urb'luu makes one Bite attack and two Fist attacks, and he uses Phantasmal Terror." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d6 + 9}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phantasmal Terror", + "body": [ + "Fraz-Urb'luu targets one creature he can see within 120 feet of him. The target must succeed on a {@dc 23} Wisdom saving throw, or it takes 16 ({@damage 3d10}) psychic damage and is {@condition frightened} of Fraz-Urb'luu until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) force damage. If the target is a Large or smaller creature, it is also {@condition grappled} (escape {@dc 24}), and it is {@condition restrained} until the grapple ends. Fraz-Urb'luu can grapple only one creature with his tail at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terror (Costs 2 Actions)", + "body": [ + "Fraz-Urb'luu uses Phantasmal Terror." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Fraz-Urb'luu casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell phantasmal force}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell mislead}", + "{@spell programmed illusion}", + "{@spell seeming}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell modify memory}", + "{@spell project image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 146 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Fraz-Urb'luu-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Froghemoth", + "source": "MPMM", + "page": 130, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 13, + "constitution": 20, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The froghemoth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shock Susceptibility", + "body": [ + "If the froghemoth takes lightning damage, it suffers two effects until the end of its next turn: its speed is halved, and it has disadvantage on Dexterity saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The froghemoth makes one Bite attack and two Tentacle attacks, and it can use Tongue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage, and the target is swallowed if it is a Medium or smaller creature. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the froghemoth, and takes 10 ({@damage 3d6}) acid damage at the start of each of the froghemoth's turns.", + "The froghemoth's gullet can hold up to two creatures at a time. If the froghemoth takes 20 damage or more on a single turn from a creature inside it, the froghemoth must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which falls {@condition prone} in a space within 10 feet of the froghemoth. If the froghemoth dies, any swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Huge or smaller creature. Until the grapple ends, the froghemoth can't use this tentacle on another target. The froghemoth has four tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "The froghemoth targets one Medium or smaller creature that it can see within 20 feet of it. The target must make a {@dc 18} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the froghemoth." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 145 + }, + { + "source": "QftIS" + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Froghemoth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Frost Giant Everlasting One", + "source": "MPMM", + "page": 131, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "patchwork armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "14d12 + 98", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 25, + "dexterity": 9, + "constitution": 24, + "intelligence": 9, + "wisdom": 10, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "con": "+11", + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Extra Heads", + "body": [ + "The giant has a {@chance 25} chance of having more than one head. If it has more than one, it has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The giant regains 10 hit points at the start of its turn. If the giant takes acid or fire damage, this trait doesn't function at the start of its next turn. The giant dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Greataxe or Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) slashing damage, or 30 ({@damage 3d12 + 11}) slashing damage while raging." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Vaprak's Rage (Recharges after a Short or Long Rest)", + "body": [ + "The giant enters a rage. The rage lasts for 1 minute or until the giant is {@condition incapacitated}. While raging, the giant gains the following benefits:", + "The giant has advantage on Strength checks and Strength saving throws.", + "When it makes a melee weapon attack, the giant gains a +4 bonus to the damage roll.", + "The giant has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 148 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Giant Everlasting One-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Frost Salamander", + "source": "MPMM", + "page": 132, + "size_str": "Huge", + "maintype": "elemental", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 12, + "constitution": 18, + "intelligence": 7, + "wisdom": 11, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+4" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Primordial" + ], + "traits": [ + { + "title": "Burning Fury", + "body": [ + "When the salamander takes fire damage, its", + "Freezing Breath automatically recharges." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The salamander makes one Bite attack and four Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 5 ({@damage 1d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Breath {@recharge}", + "body": [ + "The salamander exhales chill wind in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 44 ({@damage 8d10}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 223 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Salamander-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Gauth", + "source": "MPMM", + "page": 133, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 10, + "dexterity": 14, + "constitution": 16, + "intelligence": 15, + "wisdom": 15, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+5", + "cha": "+4" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Stunning Gaze", + "body": [ + "When a creature that can see the gauth's central eye starts its turn within 30 feet of the gauth, the gauth can force it to make a {@dc 14} Wisdom saving throw if the gauth isn't {@condition incapacitated} and can see the creature. A creature that fails the save is {@condition stunned} until the start of its next turn.", + "Unless {@status surprised}, a creature can avert its eyes at the start of its turn to avoid the saving throw. If the creature does so, it can't see the gauth until the start of its next turn, when it can avert its eyes again. If the creature looks at the gauth in the meantime, it must immediately make the save." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Throes", + "body": [ + "When the gauth dies, the magical energy within it explodes, and each creature within 10 feet of it must make a {@dc 14} Dexterity saving throw, taking 13 ({@damage 3d8}) force damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The gauth shoots three of the following magical eye rays at random (roll three {@dice d6}s, and reroll duplicates), targeting one to three creatures it can see within 120 feet of it:", + { + "title": "1: Devour Magic Ray", + "body": [ + "The target must succeed on a {@dc 14} Dexterity saving throw or have one of its magic items lose all magical properties until the start of the gauth's next turn. If the object is a charged item, it also loses {@dice 1d4} charges. Determine the affected item randomly, ignoring single-use items such as potions and scrolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "2: Enervation Ray", + "body": [ + "The target must make a {@dc 14} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "3: Fire Ray", + "body": [ + "The target must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 4d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "4: Paralyzing Ray", + "body": [ + "The target must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "5: Pushing Ray", + "body": [ + "The target must succeed on a {@dc 14} Strength saving throw or be pushed up to 15 feet away from the gauth and have its speed halved until the start of the gauth's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "6: Sleep Ray", + "body": [ + "The target must succeed on a {@dc 14} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on Constructs and Undead." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 125 + } + ], + "subtype": "beholder", + "actions_note": "", + "mythic": null, + "key": "Gauth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Gazer", + "source": "MPMM", + "page": 134, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d4 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 17, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Mimicry", + "body": [ + "The gazer can mimic simple sounds of speech it has heard, in any language. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The gazer shoots two of the following magical eye rays at random (roll two {@dice d4}s, and reroll duplicates), choosing one or two targets it can see within 60 feet of it:", + { + "title": "1: Dazing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition charmed} until the start of the gazer's next turn. While the target is {@condition charmed} in this way, its speed is halved, and it has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "2: Fear Ray", + "body": [ + "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} until the start of the gazer's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "3: Frost Ray", + "body": [ + "The target must succeed on a {@dc 12} Dexterity saving throw or take 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "4: Telekinetic Ray", + "body": [ + "If the target is a creature that is Medium or smaller, it must succeed on a {@dc 12} Strength saving throw or be moved up to 30 feet directly away from the gazer. If the target is a Tiny object that isn't being worn or carried, the gazer moves it up to 30 feet in any direction. The gazer can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a container." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aggressive", + "body": [ + "The gazer moves up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 126 + }, + { + "source": "SjA" + } + ], + "subtype": "beholder", + "actions_note": "", + "mythic": null, + "key": "Gazer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Geryon", + "source": "MPMM", + "page": 136, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 29, + "dexterity": 17, + "constitution": 22, + "intelligence": 19, + "wisdom": 16, + "charisma": 23, + "passive": 20, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+13", + "wis": "+10", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Geryon fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Geryon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Geryon regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Geryon dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Geryon makes one Claw attack and one Stinger attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}23 ({@damage 4d6 + 9}) cold damage. If the target is Large or smaller, it is {@condition grappled} ({@dc 24}), and it is {@condition restrained} until the grapple ends. Geryon can grapple one creature at a time. If the target is already {@condition grappled} by Geryon, the target takes an extra 27 ({@damage 6d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stinger", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one creature. {@h}14 ({@damage 2d4 + 9}) force damage, and the target must succeed on a {@dc 21} Constitution saving throw or take 13 ({@damage 2d12}) poison damage and become {@condition poisoned} until it finishes a short or long rest. The target's hit point maximum is reduced by an amount equal to half the poison damage taken. This reduction lasts until the {@condition poisoned} condition is removed. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Geryon teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Infernal Glare", + "body": [ + "Geryon targets one creature he can see within 60 feet of him. The target must succeed on a {@dc 23} Wisdom saving throw or become {@condition frightened} of Geryon until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Geryon uses Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swift Sting (Costs 2 Actions)", + "body": [ + "Geryon makes one Stinger attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Geryon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell ice storm}", + "{@spell invisibility} (self only)", + "{@spell locate object}", + "{@spell suggestion}", + "{@spell wall of ice}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishment}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 173 + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Geryon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Strider", + "source": "MPMM", + "page": 137, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 18, + "dexterity": 13, + "constitution": 14, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Fire Absorption", + "body": [ + "Whenever the giant strider is subjected to fire damage, it takes no damage and regains a number of hit points equal to half the fire damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Burst {@recharge 5}", + "body": [ + "The giant strider hurls a gout of flame at a point it can see within 60 feet of it. Each creature in a 10-foot-radius sphere centered on that point must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners, and it ignites flammable objects in that area that aren't being worn or carried" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 143 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Strider-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Giff", + "source": "MPMM", + "page": 138, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 11, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Firearms Knowledge", + "body": [ + "The giff's mastery of its weapons enables it to ignore the loading property of muskets and pistols." + ], + "__dataclass__": "Entry" + }, + { + "title": "Headfirst Charge", + "body": [ + "The giff can try to knock a creature over; if the giff moves at least 20 feet in a straight line and ends within 5 feet of a Large or smaller creature, that creature must succeed on a {@dc 14} Strength saving throw or take 7 ({@damage 2d6}) bludgeoning damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giff makes two Longsword, Musket, or Pistol attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Musket", + "body": [ + "{@atk rw} {@hit 4} to hit, range 40/120 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pistol", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fragmentation Grenade (1/Day)", + "body": [ + "The giff throws a grenade up to 60 feet, and the grenade explodes in a 20-foot-radius sphere. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) piercing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 204 + }, + { + "source": "SjA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giff-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Girallon", + "source": "MPMM", + "page": 139, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 16, + "constitution": 16, + "intelligence": 5, + "wisdom": 12, + "charisma": 7, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The girallon makes one Bite attack and four Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aggressive", + "body": [ + "The girallon moves up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 152 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Girallon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Gish", + "source": "MPMM", + "page": 140, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|PHB|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 130, + "formula": "20d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 17, + "dexterity": 15, + "constitution": 14, + "intelligence": 16, + "wisdom": 15, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+7", + "wis": "+6" + }, + "languages": [ + "Gith" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes three Longsword or Telekinetic Bolt attacks, or it makes one of those attacks and uses Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Bolt", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Astral Step {@recharge 4}", + "body": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand} (the hand is invisible)", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell fireball}", + "{@spell invisibility}", + "{@spell nondetection} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dimension door}", + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 205 + }, + { + "source": "BMT" + } + ], + "subtype": "gith, wizard", + "actions_note": "", + "mythic": null, + "key": "Githyanki Gish-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Kith'rak", + "source": "MPMM", + "page": 140, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "24d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 18, + "dexterity": 16, + "constitution": 17, + "intelligence": 16, + "wisdom": 15, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+7", + "wis": "+6" + }, + "languages": [ + "Gith" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes three Greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 17 ({@damage 5d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Astral Step {@recharge 4}", + "body": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rally the Troops", + "body": [ + "The githyanki magically ends the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The githyanki adds 4 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blur}", + "{@spell nondetection} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 205 + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Kith'rak-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Supreme Commander", + "source": "MPMM", + "page": 141, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 19, + "dexterity": 17, + "constitution": 18, + "intelligence": 16, + "wisdom": 16, + "charisma": 18, + "passive": 18, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "int": "+8", + "wis": "+8" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the githyanki fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes two Silver Greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Greatsword", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 17 ({@damage 5d6}) psychic damage. On a critical hit against a target in an astral body (as with the {@spell astral projection} spell), the githyanki can cut the silvery cord that tethers the target to its material body, instead of dealing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Astral Step", + "body": [ + "The githyanki teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The githyanki adds 5 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Command Ally", + "body": [ + "The githyanki targets one ally it can see within 30 feet of it. If the target can see or hear the githyanki, the target can make one melee weapon attack using its reaction, if available, and has advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Attack (2 Actions)", + "body": [ + "The githyanki makes one Silver Greatsword attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githyanki casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell levitate} (self only)", + "{@spell nondetection} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Bigby's hand}", + "{@spell mass suggestion}", + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 206 + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Supreme Commander-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Anarch", + "source": "MPMM", + "page": 142, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 20, + "note": "psychic defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 16, + "dexterity": 21, + "constitution": 18, + "intelligence": 18, + "wisdom": 20, + "charisma": 14, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "dex": "+10", + "int": "+9", + "wis": "+10" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the githzerai fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes three Unarmed Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Strike", + "body": [ + "The githzerai makes one Unarmed Strike attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The githzerai teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 30 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Gravity (Costs 3 Actions)", + "body": [ + "The githzerai casts the {@spell reverse gravity} spell, using Wisdom as the spellcasting ability. The spell has the normal effect, except that the githzerai can orient the area in any direction and creatures and objects fall toward the end of the area." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell see invisibility}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell globe of invulnerability}", + "{@spell plane shift}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 207 + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Anarch-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Enlightened", + "source": "MPMM", + "page": 143, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "psychic defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 14, + "dexterity": 19, + "constitution": 16, + "intelligence": 17, + "wisdom": 19, + "charisma": 13, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "dex": "+8", + "int": "+7", + "wis": "+8" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes three Unarmed Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Temporal Strike {@recharge}", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 52 ({@damage 8d12}) psychic damage. The target must succeed on a {@dc 16} Wisdom saving throw or move 1 round forward in time. A target moved forward in time vanishes for the duration. When the effect ends, the target reappears in the space it left or in an unoccupied space nearest to that space if it's occupied." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Slow Fall", + "body": [ + "When the githzerai falls, it reduces any falling damage it takes by 50." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell see invisibility}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell plane shift}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 208 + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Enlightened-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Flesh Gnawer", + "source": "MPMM", + "page": 144, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 14, + "constitution": 12, + "intelligence": 8, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "saves": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Gnoll" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gnoll makes one Bite attack and two Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sudden Rush", + "body": [ + "Until the end of the turn, the gnoll's speed increases by 60 feet and it doesn't provoke {@action opportunity attack||opportunity attacks}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rampage", + "body": [ + "After the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll moves up to half its speed and makes a Bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 154 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gnoll Flesh Gnawer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Hunter", + "source": "MPMM", + "page": 144, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 14, + "constitution": 12, + "intelligence": 8, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Gnoll" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gnoll makes two Bite, Spear, or Longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage when used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the target's speed is reduced by 10 feet until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rampage", + "body": [ + "After the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll moves up to half its speed and makes a Bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 154 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gnoll Hunter-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Witherling", + "source": "MPMM", + "page": 145, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 8, + "constitution": 12, + "intelligence": 5, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Gnoll but can't speak" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The witherling doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The witherling makes two Bite or Spiked Club attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Club", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rampage", + "body": [ + "After the witherling reduces a creature to 0 hit points with a melee attack on its turn, the gnoll moves up to half its speed and makes one Bite attack." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Vengeful Strike", + "body": [ + "In response to a gnoll being reduced to 0 hit points within 30 feet of the witherling, the witherling makes one Bite or Spiked Club attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 155 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gnoll Witherling-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Gray Render", + "source": "MPMM", + "page": 146, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 13, + "constitution": 20, + "intelligence": 3, + "wisdom": 6, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gray render makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) piercing damage. If the target is Medium or smaller, the target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, plus 10 ({@damage 3d6}) bludgeoning damage if the target is {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Bloody Rampage", + "body": [ + "When the gray render takes damage, it makes one Claw attack against a random creature within its reach, other than its master." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 209 + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gray Render-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Graz'zt", + "source": "MPMM", + "page": 148, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 346, + "formula": "33d10 + 165", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 22, + "dexterity": 15, + "constitution": 21, + "intelligence": 23, + "wisdom": 21, + "charisma": 26, + "passive": 22, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+12", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Graz'zt fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Graz'zt has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Graz'zt makes two Wave of Sorrow attacks. He can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wave of Sorrow (Greatsword)", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}20 ({@damage 4d6 + 6}) force damage plus 14 ({@damage 4d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Graz'zt teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "Graz'zt transforms into a form that resembles a Medium Humanoid or back into his true form. Aside from his size, his statistics are the same in each form. Any equipment he is wearing or carrying isn't transformed." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Negate Spell {@recharge 5}", + "body": [ + "Graz'zt tries to interrupt a spell he sees a creature casting within 60 feet of him. If the spell is 3rd level or lower, the spell fails and has no effect. If the spell is 4th level or higher, Graz'zt makes a Charisma check against a DC of 10 + the spell's level. On a success, the spell fails and has no effect." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Abyssal Magic", + "body": [ + "Graz'zt uses Spellcasting or Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Attack", + "body": [ + "Graz'zt makes one Wave of Sorrow attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dance, My Puppet!", + "body": [ + "One creature {@condition charmed} by Graz'zt that Graz'zt can see must use its reaction to move up to its speed as Graz'zt directs." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Graz'zt casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell darkness}", + "{@spell dominate person}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell greater invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 149 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Graz'zt-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Green Abishai", + "source": "MPMM", + "page": 40, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 12, + "dexterity": 17, + "constitution": 16, + "intelligence": 17, + "wisdom": 12, + "charisma": 19, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes two Fiendish Claw attacks, or it makes one Fiendish Claw attack and uses Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiendish Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) force damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or take 16 ({@damage 3d10}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The abishai casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell detect thoughts}", + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dominate person}", + "{@spell mass suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 162 + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Green Abishai-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Grung", + "source": "MPMM", + "page": 149, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 14, + "constitution": 15, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Grung" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The grung can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Skin", + "body": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Dependency", + "body": [ + "If the grung isn't immersed in water for at least 1 hour during a day, it suffers 1 level of {@condition exhaustion} at the end of that day. The grung can recover from this {@condition exhaustion} only through magic or by immersing itself in water for at least 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 156 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grung-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Grung Elite Warrior", + "source": "MPMM", + "page": 150, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d6 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 7, + "dexterity": 16, + "constitution": 15, + "intelligence": 10, + "wisdom": 11, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Grung" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The grung can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Skin", + "body": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Dependency", + "body": [ + "If the grung isn't immersed in water for at least 1 hour during a day, it suffers 1 level of {@condition exhaustion} at the end of that day. The grung can recover from this {@condition exhaustion} only through magic or by immersing itself in water for at least 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mesmerizing Chirr {@recharge}", + "body": [ + "The grung makes a chirring noise to which grungs are immune. Each Humanoid or Beast that is within 15 feet of the grung and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition stunned} until the end of the grung's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 157 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grung Elite Warrior-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Grung Wildling", + "source": "MPMM", + "page": 150, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 7, + "dexterity": 16, + "constitution": 15, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Grung" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The grung can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Skin", + "body": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Dependency", + "body": [ + "If the grung isn't immersed in water for at least 1 hour during a day, it suffers 1 level of {@condition exhaustion} at the end of that day. The grung can recover from this {@condition exhaustion} only through magic or by immersing itself in water for at least 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The grung casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell plant growth}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell cure wounds}", + "{@spell spike growth}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 157 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grung Wildling-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Guard Drake", + "source": "MPMM", + "page": 151, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The guard drake makes one Bite attack and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HotDQ", + "page": 91 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guard Drake-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Hadrosaurus", + "source": "MPMM", + "page": 96, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 10, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 140 + } + ], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Hadrosaurus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Hellfire Engine", + "source": "MPMM", + "page": 152, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 20, + "dexterity": 16, + "constitution": 24, + "intelligence": 2, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "saves": { + "dex": "+8", + "wis": "+5", + "cha": "+0" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Infernal but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The hellfire engine is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The hellfire engine has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The hellfire engine doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Flesh-Crushing Stride", + "body": [ + "The hellfire engine moves up to its speed in a straight line. During this move, it can enter Large or smaller creatures' spaces. A creature whose space the hellfire engine enters must make a {@dc 18} Dexterity saving throw. On a successful save, the creature is pushed to the nearest space out of the hellfire engine's path. On a failed save, the creature falls {@condition prone} and takes 28 ({@damage 8d6}) bludgeoning damage.", + "If the hellfire engine remains in the {@condition prone} creature's space, the creature is also {@condition restrained} until it's no longer in the same space as the hellfire engine. While {@condition restrained} in this way, the creature, or another creature within 5 feet of it, can make a {@dc 18} Strength check. On a success, the creature is shunted to an unoccupied space of its choice within 5 feet of the hellfire engine and is no longer {@condition restrained}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellfire Weapons", + "body": [ + "The hellfire engine uses one of the following options (choose one or roll a {@dice d6}):", + { + "title": "1\u20132: Bonemelt Sprayer", + "body": [ + "The hellfire engine spews acidic flame in a 60-foot cone. Each creature in the cone must make a {@dc 20} Dexterity saving throw, taking 11 ({@damage 2d10}) fire damage plus 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one. Creatures that fail the saving throw are drenched in burning acid and take 5 ({@damage 1d10}) fire damage plus 9 ({@damage 2d8}) acid damage at the end of their turns. An affected creature or another creature within 5 feet of it can take an action to scrape off the burning fuel." + ], + "__dataclass__": "Entry" + }, + { + "title": "3\u20134: Lightning Flail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one creature. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 22 ({@damage 5d8}) lightning damage. Up to three other creatures of the hellfire engine's choice that it can see within 30 feet of the target must each make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 5d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "5\u20136: Thunder Cannon", + "body": [ + "The hellfire engine targets a point within 120 feet of it that it can see. Each creature within 30 feet of that point must make a {@dc 20} Dexterity saving throw, taking 27 ({@damage 5d10}) bludgeoning damage plus 19 ({@damage 3d12}) thunder damage on a failed save, or half as much damage on a successful one.", + "If the chosen option kills a creature, the creature's soul rises from the River Styx as a {@creature lemure} in Avernus in {@dice 1d4} hours. If the creature isn't revived before then, only a {@spell wish} spell or killing the {@creature lemure} and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 165 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hellfire Engine-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Hobgoblin Devastator", + "source": "MPMM", + "page": 153, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 13, + "dexterity": 12, + "constitution": 14, + "intelligence": 16, + "wisdom": 13, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Army Arcana", + "body": [ + "When the hobgoblin casts a spell that causes damage or that forces other creatures to make a saving throw, it can choose itself and any number of allies to be immune to the damage caused by the spell and to succeed on the required saving throw." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hobgoblin makes two Quarterstaff or Devastating Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands, plus 13 ({@damage 3d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devastating Bolt", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}21 ({@damage 4d8 + 3}) force damage, and the target is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The hobgoblin casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fireball}", + "{@spell fly}", + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell lightning bolt}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 161 + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Hobgoblin Devastator-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Hobgoblin Iron Shadow", + "source": "MPMM", + "page": 154, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 16, + "constitution": 15, + "intelligence": 14, + "wisdom": 15, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the hobgoblin is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hobgoblin makes four attacks, each of which can be an Unarmed Strike or a Dart attack. It can also use", + "Shadow Jaunt once, either before or after one of the attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Jaunt", + "body": [ + "The hobgoblin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see. Both the space it leaves and its destination must be in dim light or darkness." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The hobgoblin casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell silent image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 162 + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Hobgoblin Iron Shadow-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Howler", + "source": "MPMM", + "page": 155, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 17, + "dexterity": 16, + "constitution": 15, + "intelligence": 5, + "wisdom": 14, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "A howler has advantage on attack rolls against a creature if at least one of the howler's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The howler makes two Rending Bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rending Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, plus 22 ({@damage 4d10}) psychic damage if the target is {@condition frightened}. This attack ignores damage resistance." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind-Breaking Howl {@recharge 4}", + "body": [ + "The howler emits a keening howl in a 60-foot cone. Each creature in that area must succeed on a {@dc 13} Wisdom saving throw or take 16 ({@damage 3d10}) psychic damage and be {@condition frightened} until the end of the howler's next turn. While a creature is {@condition frightened} in this way, its speed is halved, and it is {@condition incapacitated}. A target that successfully saves is immune to the Mind-Breaking Howl of all howlers for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 210 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Howler-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Hungry Sorrowsworn", + "source": "MPMM", + "page": 223, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 6, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Life Hunger", + "body": [ + "If a creature within 60 feet of the sorrowsworn regains hit points, the sorrowsworn gains two benefits until the end of its next turn: it has advantage on attack rolls, and its Bite deals an extra 22 ({@damage 4d10}) necrotic damage on a hit." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sorrowsworn makes one Bite attack and one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 16}), and it is {@condition restrained} until the grapple ends. While grappling a creature, the sorrowsworn can't make a Claw attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 232 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hungry Sorrowsworn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Hutijin", + "source": "MPMM", + "page": 157, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 27, + "dexterity": 15, + "constitution": 25, + "intelligence": 23, + "wisdom": 19, + "charisma": 25, + "passive": 21, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+14", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Infernal Despair", + "body": [ + "Each creature within 30 feet of Hutijin that isn't a devil makes saving throws with disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Hutijin fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Hutijin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Hutijin regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Hutijin dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hutijin makes one Bite attack, one Claw attack, one Mace attack, and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) fire damage. The target must succeed on a {@dc 22} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target can't regain hit points, and it takes 10 ({@damage 3d6}) poison damage at the start of each of its turns. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Hutijin teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Fearful Voice {@recharge 5}", + "body": [ + "In response to taking damage, Hutijin utters a dreadful word of power. Each creature within 30 feet of him that isn't a devil must succeed on a {@dc 22} Wisdom saving throw or become {@condition frightened} of him 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. A creature that saves against this effect is immune to his Fearful Voice for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Hutijin makes one Claw, Mace, or Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Hutijin uses Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm (Costs 2 Actions)", + "body": [ + "Hutijin releases lightning in a 30-foot radius, blocked only by {@quickref Cover||3||total cover}. All other creatures in that area must each make a {@dc 22} Dexterity saving throw, taking 18 ({@damage 4d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Hutijin casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell hold monster}", + "{@spell invisibility} (self only)", + "{@spell lightning bolt}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 175 + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Hutijin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Hydroloth", + "source": "MPMM", + "page": 158, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 12, + "dexterity": 21, + "constitution": 16, + "intelligence": 19, + "wisdom": 10, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The hydroloth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The hydroloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Secure Memory", + "body": [ + "The hydroloth is immune to the waters of the River Styx, as well as any effect that would steal or modify its memories or detect or read its thoughts." + ], + "__dataclass__": "Entry" + }, + { + "title": "Watery Advantage", + "body": [ + "While submerged in liquid, the hydroloth has advantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hydroloth makes two Bite or Claw attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) force damage plus 9 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) force damage plus 9 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steal Memory (1/Day)", + "body": [ + "The hydroloth targets one creature it can see within 60 feet of it. The target takes 14 ({@damage 4d6}) psychic damage, and it must make a {@dc 16} Intelligence saving throw. On a successful save, the target becomes immune to this hydroloth's Steal Memory for 24 hours. On a failed save, the target loses all proficiencies; it can't cast spells; it can't understand language; and if its Intelligence and Charisma scores are higher than 5, they become 5. Each time the target finishes a long rest, it can repeat the saving throw, ending the effect on itself on a success. A {@spell greater restoration} or {@spell remove curse} spell cast on the target ends this effect early." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The hydroloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The hydroloth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell control water}", + "{@spell crown of madness}", + "{@spell fear}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 249 + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Hydroloth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Illusionist Wizard", + "source": "MPMM", + "page": 263, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 14, + "constitution": 13, + "intelligence": 16, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+2" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The illusionist makes two Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Displacement {@recharge 5}", + "body": [ + "The illusionist projects an illusion that makes the illusionist appear to be standing in a place a few inches from its actual location, causing any creature to have disadvantage on attack rolls against the illusionist. The effect lasts for 1 minute, and it ends early if the illusionist takes damage, if it is {@condition incapacitated}, or if its speed becomes 0." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The illusionist casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell disguise self}", + "{@spell invisibility}", + "{@spell mage armor}", + "{@spell major image}", + "{@spell phantasmal force}", + "{@spell phantom steed}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 214 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Illusionist Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Juiblex", + "source": "MPMM", + "page": 160, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 350, + "formula": "28d12 + 168", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 24, + "dexterity": 10, + "constitution": 23, + "intelligence": 20, + "wisdom": 20, + "charisma": 16, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+13", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Foul", + "body": [ + "Any creature other than an Ooze that starts its turn within 10 feet of Juiblex must succeed on a {@dc 21} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Juiblex fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Juiblex has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Juiblex regains 20 hit points at the start of its turn. If it takes fire or radiant damage, this trait doesn't function at the start of its next turn. Juiblex dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Juiblex can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Juiblex makes three Acid Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Lash", + "body": [ + "{@atk mw,rw} {@hit 14} to hit, reach 10 ft. or range 60/120 ft., one target. {@h}21 ({@damage 4d6 + 7}) acid damage. Any creature killed by this attack is drawn into Juiblex's body, where the corpse is dissolved after 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eject Slime {@recharge 5}", + "body": [ + "Juiblex spews out a corrosive slime, targeting one creature that it can see within 60 feet of it. The target must succeed on a {@dc 21} Dexterity saving throw or take 55 ({@damage 10d10}) acid damage. Unless the target avoids taking all of this damage, any metal armor worn by the target takes a permanent \u22121 penalty to the AC it offers, and any metal weapon the target is carrying or wearing takes a permanent \u22121 penalty to damage rolls. The penalty worsens each time a target is subjected to this effect. If the penalty on an object drops to \u22125, the object is destroyed. The penalty on an object can be removed by the {@spell mending} spell." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Juiblex makes one Acid Lash attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupting Touch (Costs 2 Actions)", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one creature. {@h}21 ({@damage 4d6 + 7}) poison damage, and the target is slimed. Until the slime is scraped off with an action, the target is {@condition poisoned}, and any creature, other than an Ooze, is {@condition poisoned} while within 10 feet of the target." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Juiblex casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell contagion}", + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 151 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Juiblex-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Ki-rin", + "source": "MPMM", + "page": 162, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d10 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 21, + "dexterity": 16, + "constitution": 16, + "intelligence": 19, + "wisdom": 20, + "charisma": 20, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the ki-rin fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The ki-rin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ki-rin makes two Hoof attacks and one Horn attack, or it makes two Sacred Fire attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hoof", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d4 + 5}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horn", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sacred Fire", + "body": [ + "{@atk rs} {@hit 9} to hit, range 120 ft., one target. {@h}18 ({@damage 3d8 + 5}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The ki-rin moves up to half its speed without provoking {@action opportunity attack||opportunity attacks}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Smite", + "body": [ + "The ki-rin makes one Hoof, Horn, or Sacred Fire attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The ki-rin casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell major image} (6th-level version)", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell cure wounds}", + "{@spell dispel magic}", + "{@spell lesser restoration}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell calm emotions}", + "{@spell create food and water}", + "{@spell greater restoration}", + "{@spell plane shift}", + "{@spell protection from evil and good}", + "{@spell revivify}", + "{@spell wind walk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 163 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ki-rin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Dragonshield", + "source": "MPMM", + "page": 163, + "size_str": "Small", + "maintype": "dragon", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|PHB|leather}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d6 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 15, + "constitution": 14, + "intelligence": 8, + "wisdom": 9, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": null, + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Dragon's Resistance", + "body": [ + "The kobold has resistance to a type of damage based on the color of dragon that invested it with power (choose or roll a {@damage d10}): 1\u20132, acid (black or copper); 3\u20134, cold (silver or white); 5\u20136, fire (brass, gold, or red); 7\u20138, lightning (blue or bronze); 9\u201310, poison (green)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heart of the Dragon", + "body": [ + "If the kobold is {@condition frightened} or {@condition paralyzed} by an effect that allows a saving throw, it can repeat the save at the start of its turn to end the effect on itself and all kobolds within 30 feet of it. Any kobold that benefits from this trait (including the dragonshield) has advantage on its next attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kobold makes two Spear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 165 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kobold Dragonshield-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Inventor", + "source": "MPMM", + "page": 164, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 15, + "constitution": 12, + "intelligence": 14, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weapon Invention", + "body": [ + "The kobold uses one of the following options (choose one or roll a {@dice d8}); the kobold can use each one no more than once per day:", + { + "title": "1: Acid", + "body": [ + "The kobold hurls a {@item acid (vial)|PHB|flask of acid}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "2: Alchemist's Fire", + "body": [ + "The kobold throws a {@item Alchemist's Fire (flask)|PHB|flask of alchemist's fire}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}2 ({@damage 1d4}) fire damage at the start of each of the target's turns. The target can end this damage by using its action to make a {@dc 10} Dexterity check to extinguish the flames." + ], + "__dataclass__": "Entry" + }, + { + "title": "3: Basket of Centipedes", + "body": [ + "The kobold throws a small basket into a 5-foot-square space within 20 feet of it. A {@creature Swarm of Centipedes||swarm of insects (centipedes)} with 11 hit points emerges from the basket and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + ], + "__dataclass__": "Entry" + }, + { + "title": "4: Green Slime Pot", + "body": [ + "The kobold throws a clay pot full of green slime at the target, and it breaks open on impact. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}5 ({@damage 1d10}) acid damage, and the target is covered in slime until a creature uses its action to scrape or wash the slime off. A target covered in the slime takes 5 ({@damage 1d10}) acid damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "5: Rot Grub Pot", + "body": [ + "The kobold throws a clay pot into a 5-foot-square space within 20 feet of it, and it breaks open on impact. A {@creature swarm of rot grubs|MPMM} (in this book) emerges from the shattered pot and remains a hazard in that square." + ], + "__dataclass__": "Entry" + }, + { + "title": "6: Scorpion on a Stick", + "body": [ + "The kobold makes a melee attack with a {@creature scorpion} tied to the end of a 5-foot-long pole. {@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage, and the target must make a {@dc 9} Constitution saving throw, taking 4 ({@damage 1d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "7: Skunk in a Cage", + "body": [ + "The kobold releases a skunk into an unoccupied space within 5 feet of it. The skunk has a walking speed of 20 feet, AC 10, 1 hit point, and no effective attacks. It rolls initiative and, on its turn, uses its action to spray musk at a random creature within 5 feet of it. The target must succeed on a {@dc 9} Constitution saving throw, or it retches and is {@condition incapacitated} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that doesn't need to breathe or is immune to poison automatically succeeds on the saving throw. Once the skunk has sprayed its musk, it can't do so again until it finishes a short or long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "8: Wasp Nest in a Bag", + "body": [ + "The kobold throws a small bag into a 5-foot-square space within 20 feet of it. A {@creature Swarm of Wasps||swarm of insects (wasps)} with 11 hit points emerges from the bag and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 166 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kobold Inventor-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Scale Sorcerer", + "source": "MPMM", + "page": 165, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 7, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 9, + "charisma": 14, + "passive": 9, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kobold makes two Dagger or Chromatic Bolt attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Bolt", + "body": [ + "{@atk rs} {@hit 4} to hit, range 60 feet, one target. {@h}9 ({@damage 2d6 + 2}) of a type of the kobold's choice: acid, cold, fire, lightning, poison, or thunder." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The kobold casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell charm person}", + "{@spell fog cloud}", + "{@spell levitate}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 167 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kobold Scale Sorcerer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Korred", + "source": "MPMM", + "page": 166, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d6 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 23, + "dexterity": 14, + "constitution": 20, + "intelligence": 10, + "wisdom": 15, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "languages": [ + "Dwarvish", + "Gnomish", + "Sylvan", + "Terran", + "Undercommon" + ], + "traits": [ + { + "title": "Stone Camouflage", + "body": [ + "The korred has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The korred makes two Greatclub or Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 19 ({@damage 3d8 + 6}) bludgeoning damage if the korred is on the ground." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/120 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 19 ({@damage 3d8 + 6}) bludgeoning damage if the korred is on the ground." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Command Hair", + "body": [ + "The korred has at least one 50-foot-long rope woven out of its hair. The korred commands one such rope within 30 feet of it to move up to 20 feet and entangle a Large or smaller creature that the korred can see. The target must succeed on a {@dc 13} Dexterity saving throw or become {@condition grappled} by the rope (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}. The korred can use a bonus action to release the target, which is also freed if the korred dies or becomes {@condition incapacitated}.", + "A rope of korred hair has AC 20 and 20 hit points. It regains 1 hit point at the start of each of the korred's turns while the rope has at least 1 hit point and the korred is alive. If the rope drops to 0 hit points, it is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The korred casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell commune with nature} (as an action)", + "{@spell meld into stone}", + "{@spell stone shape}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Otto's irresistible dance}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 168 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Korred-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Kraken Priest", + "source": "MPMM", + "page": 167, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 10, + "constitution": 16, + "intelligence": 10, + "wisdom": 15, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any two languages" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The priest can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The priest makes two Thunderous Touch or Thunderbolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Touch", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}27 ({@damage 5d10}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderbolt", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}11 ({@damage 2d10}) lightning damage plus 11 ({@damage 2d10}) thunder damage, and the target is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Voice of the Kraken (Recharges after a Short or Long Rest)", + "body": [ + "A kraken speaks through the priest with a thunderous voice audible within 300 feet. Creatures of the priest's choice that can hear the kraken's words (which are spoken in Abyssal, Infernal, or Primordial) must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of the priest for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The priest casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell create or destroy water}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Evard's black tentacles}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell control water}", + "{@spell darkness}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 215 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kraken Priest-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Kruthik Hive Lord", + "source": "MPMM", + "page": 169, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 16, + "constitution": 17, + "intelligence": 10, + "wisdom": 14, + "charisma": 10, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Kruthik" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kruthik makes two Stab or Spike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spike", + "body": [ + "{@atk rw} {@hit 6} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Spray {@recharge 5}", + "body": [ + "The kruthik sprays acid in a 15-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 22 ({@damage 4d10}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 212 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kruthik Hive Lord-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Leucrotta", + "source": "MPMM", + "page": 170, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 9, + "wisdom": 12, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Gnoll" + ], + "traits": [ + { + "title": "Mimicry", + "body": [ + "The leucrotta can mimic Beast sounds and Humanoid voices. A creature that hears the sounds can tell they are imitations only with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench", + "body": [ + "Any creature other than a leucrotta or gnoll that starts its turn within 5 feet of the leucrotta must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the Stench of all leucrottas for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The leucrotta makes one Bite attack and one Hooves attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage. If the leucrotta scores a critical hit, it rolls the damage dice three times, instead of twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Kicking Retreat", + "body": [ + "Immediately after the leucrotta makes a Hooves attack, it takes the {@action Disengage} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 169 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Leucrotta-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Leviathan", + "source": "MPMM", + "page": 171, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 328, + "formula": "16d20 + 160", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 120, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 27, + "dexterity": 24, + "constitution": 30, + "intelligence": 2, + "wisdom": 18, + "charisma": 17, + "passive": 14, + "saves": { + "wis": "+10", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the leviathan fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Partial Freeze", + "body": [ + "If the leviathan takes 50 cold damage or more during a single turn, the leviathan partially freezes; until the end of its next turn, its speeds are reduced to 20 feet, and it makes attack rolls with disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The leviathan deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Form", + "body": [ + "The leviathan can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The leviathan makes one Slam attack and one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}21 ({@damage 2d12 + 8}) bludgeoning damage plus 13 ({@damage 2d12}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d10 + 8}) bludgeoning damage plus 10 ({@damage 3d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tidal Wave {@recharge}", + "body": [ + "The leviathan magically creates a wave of water that extends from a point it can see within 120 feet of itself. The wave is up to 250 feet long, up to 250 feet tall, and up to 50 feet wide. Each creature in the wave must make a {@dc 24} Strength saving throw. On a failed save, a creature takes 45 ({@damage 7d12}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}. The water spreads out across the ground in all directions, extinguishing unprotected flames in its area and within 250 feet of it, and then it vanishes." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The leviathan moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam (Costs 2 Actions)", + "body": [ + "The leviathan makes one Slam attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 198 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Leviathan-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Lonely Sorrowsworn", + "source": "MPMM", + "page": 223, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 16, + "dexterity": 12, + "constitution": 17, + "intelligence": 6, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Psychic Leech", + "body": [ + "At the start of each of the sorrowsworn's turns, each creature within 5 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thrives on Company", + "body": [ + "The sorrowsworn has advantage on attack rolls while it is within 30 feet of at least two other creatures. It otherwise has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sorrowsworn makes one Harpoon Arm attack, and it uses Sorrowful Embrace." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harpoon Arm", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 60 ft., one target. {@h}21 ({@damage 4d8 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. The sorrowsworn has two harpoon arms and can grapple up to two creatures at once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sorrowful Embrace", + "body": [ + "Each creature {@condition grappled} by the sorrowsworn must make a {@dc 15} Wisdom saving throw, taking 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one. In either case, the sorrowsworn pulls each of those creatures up to 30 feet straight toward it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 232 + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lonely Sorrowsworn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Lost Sorrowsworn", + "source": "MPMM", + "page": 224, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 6, + "wisdom": 7, + "charisma": 5, + "passive": 8, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sorrowsworn makes two Arm Spike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arm Spike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Embrace {@recharge 4}", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}25 ({@damage 4d10 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition frightened}, and it takes 27 ({@damage 6d8}) psychic damage at the end of each of its turns. The sorrowsworn can grapple only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Tightening Embrace", + "body": [ + "If the sorrowsworn takes damage, the creature {@condition grappled} by Embrace takes 18 ({@damage 4d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 233 + }, + { + "source": "AATM" + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lost Sorrowsworn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Male Steeder", + "source": "MPMM", + "page": 231, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 12, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 14, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Extraordinary Leap", + "body": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to jump 3 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sticky Leg", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Small or Tiny creature. {@h}The target is stuck to the steeder's leg and {@condition grappled} (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 238 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Male Steeder-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Martial Arts Adept", + "source": "MPMM", + "page": 172, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 17, + "constitution": 13, + "intelligence": 11, + "wisdom": 16, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the adept is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The adept makes three Unarmed Strike attacks or five Dart attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. Once per turn, the adept can cause one of the following additional effects (choose one or roll a {@dice d4}):", + { + "title": "1\u20132: Knock Down.", + "body": [ + "The target must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "3\u20134: Push.", + "body": [ + "The target must succeed on a {@dc 13} Strength saving throw or be pushed up to 10 feet directly away from the adept." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, the adept deflects the missile. The damage it takes from the attack is reduced by {@dice 1d10 + 3}. If the damage is reduced to 0, the adept catches the missile if it's small enough to hold in one hand and the adept has a hand free." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 216 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Martial Arts Adept-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Marut", + "source": "MPMM", + "page": 173, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 432, + "formula": "32d10 + 256", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 28, + "dexterity": 12, + "constitution": 26, + "intelligence": 19, + "wisdom": 15, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+10", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "all but rarely speaks" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The marut is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the marut fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The marut has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The marut doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The marut makes two Unerring Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unerring Slam", + "body": [ + "{@atk mw} automatic hit, reach 5 ft., one target. {@h}60 force damage, and the target is pushed up to 5 feet away from the marut if it is Huge or smaller." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blazing Edict {@recharge 5}", + "body": [ + "Arcane energy emanates from the marut's chest in a 60-foot cube. Every creature in that area takes 45 radiant damage. Each creature that takes any of this damage must succeed on a {@dc 20} Wisdom saving throw or be {@condition stunned} until the end of the marut's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Plane Shift (3/Day)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Plane Shift (3/Day)", + "body": [ + "The marut casts {@spell plane shift}, requiring no material components and using Intelligence as the spellcasting ability. The marut can cast the spell normally, or it can cast the spell on an unwilling creature it can see within 60 feet of it. If it uses the latter option, the targeted creature must succeed on a {@dc 20} Charisma saving throw or be banished to a teleportation circle in the Hall of Concordance in Sigil." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell plane shift}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 213 + }, + { + "source": "SatO" + } + ], + "subtype": "inevitable", + "actions_note": "", + "mythic": null, + "key": "Marut-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Master Thief", + "source": "MPMM", + "page": 174, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+3" + }, + "languages": [ + "any one language (usually Common) plus thieves' cant" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If the thief is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the thief instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided the thief isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thief makes three Shortsword or Shortbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Cunning Action", + "body": [ + "The thief takes the {@action Dash}, {@action Disengage}, or {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "The thief halves the damage that it takes from an attack that hits it. The thief must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 216 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Master Thief-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Maurezhi", + "source": "MPMM", + "page": 175, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 17, + "constitution": 12, + "intelligence": 11, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Elvish", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Assume Form", + "body": [ + "The maurezhi can assume the appearance of any Medium Humanoid it eats. It remains in this form for {@dice 1d6} days, during which time the form gradually decays until, when the effect ends, the form sloughs from the demon's body." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The maurezhi has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The maurezhi makes one Bite attack and one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage. If the target is a Humanoid, its Charisma score is reduced by {@dice 1d4}. This reduction lasts until the target finishes a short or long rest. The target dies if this reduces its Charisma to 0. It rises 24 hours later as a {@creature ghoul} unless it has been revived or its corpse has been destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage. If the target is a creature other than an Undead, it must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raise Ghoul {@recharge 5}", + "body": [ + "The maurezhi targets one dead ghoul or {@creature ghast} it can see within 30 feet of it. The target is revived with all its hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 133 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Maurezhi-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Maw Demon", + "source": "MPMM", + "page": 176, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 8, + "constitution": 13, + "intelligence": 5, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disgorge {@recharge}", + "body": [ + "The demon vomits in a 15-foot cube. Each creature in that area must succeed on a {@dc 11} Dexterity saving throw or take 11 ({@damage 2d10}) acid damage and fall {@condition prone} in the spew." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 137 + }, + { + "source": "BMT" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Maw Demon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Meazel", + "source": "MPMM", + "page": 177, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 35, + "formula": "10d8 - 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 17, + "constitution": 9, + "intelligence": 14, + "wisdom": 13, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Garrote", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target of the meazel's size or smaller. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13} with disadvantage). Until the grapple ends, the target takes 10 ({@damage 2d6 + 3}) bludgeoning damage at the start of each of the meazel's turns. The meazel can't make weapon attacks while grappling a creature in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 3 ({@damage 1d6}) necrotic damage" + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Teleport {@recharge 5}", + "body": [ + "The meazel, any equipment it is wearing or carrying, and any creature it is grappling teleport to an unoccupied space within 500 feet of it, provided that the starting space and the destination are in dim light or darkness. The destination must be a place the meazel has seen before, but it need not be within line of sight. If the destination space is occupied, the teleportation leads to the nearest unoccupied space.", + "Any other creature the meazel teleports becomes cursed for 1 hour or until the curse is ended by {@spell remove curse} or {@spell greater restoration}. Until this curse ends, every Undead and every creature native to the Shadowfell within 300 feet of the cursed creature can sense it, which prevents that creature from hiding from them." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the meazel takes the {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 214 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Meazel-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Meenlock", + "source": "MPMM", + "page": 178, + "size_str": "Small", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 7, + "dexterity": 15, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Fear Aura", + "body": [ + "Any Beast or Humanoid that starts its turn within 10 feet of the meenlock must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} until the start of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Sensitivity", + "body": [ + "While in bright light, the meenlock has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Teleport {@recharge 5}", + "body": [ + "The meenlock teleports to an unoccupied space within 30 feet of it, provided that both the space it's teleporting from and its destination are in dim light or darkness. The destination need not be within line of sight." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 170 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Meenlock-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Merregon", + "source": "MPMM", + "page": 179, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 6, + "wisdom": 12, + "charisma": 8, + "passive": 11, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Infernal but can't speak", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the merregon's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The merregon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The merregon makes three Halberd attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Halberd", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Loyal Bodyguard", + "body": [ + "When another Fiend within 5 feet of the merregon is hit by an attack roll, the merregon causes itself to be hit instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 166 + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Merregon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Merrenoloth", + "source": "MPMM", + "page": 180, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 17, + "constitution": 10, + "intelligence": 17, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The merrenoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The merrenoloth makes one Oar attack and uses Fear Gaze." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fear Gaze", + "body": [ + "The merrenoloth targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} of the merrenoloth for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Teleport", + "body": [ + "The merrenoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The merrenoloth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell gust of wind}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell control water}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 250 + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Merrenoloth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Mindwitness", + "source": "MPMM", + "page": 181, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 14, + "constitution": 14, + "intelligence": 15, + "wisdom": 15, + "charisma": 10, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 600 ft." + ], + "traits": [ + { + "title": "Telepathic Hub", + "body": [ + "When the mindwitness receives a telepathic message, it can telepathically share that message with up to seven other creatures within 600 feet of it that it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mindwitness makes one Bite attack and one Tentacles attack, or it uses Eye Ray three times." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}16 ({@damage 4d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one creature. {@h}20 ({@damage 4d8 + 2}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 13}), and it must succeed on a {@dc 13} Intelligence saving throw or be {@condition restrained} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Ray", + "body": [ + "The mindwitness shoots one magical eye ray at random (roll a {@dice d6}, and reroll if the ray has already been used this turn), choosing one target it can see within 120 feet of it:", + { + "title": "1: Aversion Ray", + "body": [ + "The targeted creature must make a {@dc 13} Charisma saving throw. On a failed save, the target has disadvantage on attack rolls for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "2: Fear Ray", + "body": [ + "The targeted creature must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "3: Psychic Ray", + "body": [ + "The target must succeed on a {@dc 13} Intelligence saving throw or take 27 ({@damage 6d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "4: Slowing Ray", + "body": [ + "The targeted creature must make a {@dc 13} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn but not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "5: Stunning Ray", + "body": [ + "The targeted creature must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "6: Telekinetic Ray", + "body": [ + "If the target is a creature, it must make a {@dc 13} Strength saving throw. On a failed save, the mindwitness moves it up to 30 feet in any direction, and it is {@condition restrained} by the ray's telekinetic grip until the start of the mindwitness's next turn or until the mindwitness is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is telekinetically moved up to 30 feet in any direction. The mindwitness can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 176 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mindwitness-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Moloch", + "source": "MPMM", + "page": 183, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 253, + "formula": "22d10 + 132", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 26, + "dexterity": 19, + "constitution": 22, + "intelligence": 21, + "wisdom": 18, + "charisma": 23, + "passive": 21, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+13", + "wis": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Moloch fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Moloch has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Moloch regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Moloch dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Moloch makes one Bite attack, one Claw attack, and one Many-Tailed Whip attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d8 + 8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Many-Tailed Whip", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}13 ({@damage 2d4 + 8}) lightning damage plus 11 ({@damage 2d10}) thunder damage. If the target is a creature, it must succeed on a {@dc 24} Strength saving throw or be pulled up to 30 feet in a straight line toward Moloch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath of Despair {@recharge 5}", + "body": [ + "Moloch exhales in a 30-foot cube. Each creature in that area must succeed on a {@dc 21} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage, drop whatever it is holding, and become {@condition frightened} of Moloch for 1 minute. While {@condition frightened} in this way, a creature must take the {@action Dash} action and move away from Moloch by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the {@action Dash} action. If the creature ends its turn in a location where it doesn't have line of sight to Moloch, the creature can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Moloch teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Moloch makes one Bite, Claw, or Many-Tailed Whip attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Moloch uses Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Moloch uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Moloch casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell confusion}", + "{@spell detect magic}", + "{@spell fly}", + "{@spell major image}", + "{@spell stinking cloud}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 177 + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Moloch-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Molydeus", + "source": "MPMM", + "page": 184, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 28, + "dexterity": 22, + "constitution": 25, + "intelligence": 21, + "wisdom": 24, + "charisma": 24, + "passive": 31, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 21, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+16", + "con": "+14", + "wis": "+14", + "cha": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the molydeus fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The molydeus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The molydeus makes one Demonic Weapon attack, one Snakebite attack, and one Wolf Bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Demonic Weapon", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}35 ({@damage 4d12 + 9}) force damage. If the target has at least one head and the molydeus rolled a 20 on the attack roll, the target is decapitated and dies if it can't survive without that head. A target is immune to this effect if it takes none of the damage, has legendary actions, or is Huge or larger. Such a creature takes an extra 27 ({@damage 6d8}) force damage from the hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snakebite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one creature. {@h}16 ({@damage 2d6 + 9}) poison damage. The target must succeed on a {@dc 22} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target transforms into a {@creature manes} if this reduces its hit point maximum to 0. This transformation can be ended only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wolf Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d10 + 9}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The molydeus makes one Demonic Weapon or Snakebite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The molydeus moves without provoking {@action opportunity attack||opportunity attacks}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The molydeus uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The molydeus casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dispel magic}", + "{@spell polymorph}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell lightning bolt}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 134 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Molydeus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Morkoth", + "source": "MPMM", + "page": 186, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 165, + "formula": "22d10 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 14, + "dexterity": 14, + "constitution": 14, + "intelligence": 20, + "wisdom": 15, + "charisma": 13, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+9", + "wis": "+6" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The morkoth can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The morkoth makes either two Bite attacks and one Tentacles attack or three Bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}15 ({@damage 3d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained} and takes 15 ({@damage 3d8 + 2}) bludgeoning damage at the start of each of its turns, and the morkoth can't use its tentacles on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hypnosis", + "body": [ + "The morkoth projects a 30-foot cone of magical energy. Each creature in that area must make a {@dc 17} Wisdom saving throw. On a failed save, the creature is {@condition charmed} by the morkoth for 1 minute. While {@condition charmed} in this way, the target tries to get as close to the morkoth as possible, using its actions to {@action Dash} until it is within 5 feet of the morkoth. A {@condition charmed} target can repeat the saving throw at the end of each of its turns and whenever it takes damage, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature has advantage on saving throws against the morkoth's Hypnosis for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Reflection", + "body": [ + "If the morkoth makes a successful saving throw against a spell or a spell attack misses it, the morkoth can choose another creature (including the spellcaster) it can see within 120 feet of it. The spell targets the chosen creature instead of the morkoth. If the spell forced a saving throw, the chosen creature makes its own save. If the spell was an attack, the attack roll is rerolled against the chosen creature." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The morkoth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell darkness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell lightning bolt}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 177 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Morkoth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Mouth of Grolantor", + "source": "MPMM", + "page": 187, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 21, + "dexterity": 10, + "constitution": 18, + "intelligence": 5, + "wisdom": 7, + "charisma": 5, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Mouth of Chaos", + "body": [ + "The giant is immune to the {@spell confusion} spell.", + "On each of its turns, the giant uses all its movement to move toward the nearest creature or whatever else it might perceive as food. Roll a {@dice d10} at the start of each of the giant's turns to determine its action for that turn:", + { + "title": "1\u20133:", + "body": [ + "The giant makes three Fist attacks against one random creature within reach. If no creatures are within reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "4\u20135:", + "body": [ + "The giant makes one Fist attack against each creature within reach. If no creatures are within reach, the giant makes one Fist attack against itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "6\u20137:", + "body": [ + "The giant makes one Bite attack against one random creature within reach. If no other creatures are within reach, its eyes glaze over and it is {@condition stunned} until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "8\u201310:", + "body": [ + "The giant makes one Bite attack and two Fist attacks against one random creature within reach. If no creatures are within reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}15 ({@damage 3d6 + 5}) piercing damage, and the giant magically regains hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 149 + } + ], + "subtype": "hill giant", + "actions_note": "", + "mythic": null, + "key": "Mouth of Grolantor-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Nabassu", + "source": "MPMM", + "page": 188, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 190, + "formula": "20d8 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 22, + "dexterity": 14, + "constitution": 21, + "intelligence": 14, + "wisdom": 15, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "dex": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Demonic Shadows", + "body": [ + "The nabassu darkens the area around its body in a 10-foot radius. Nonmagical light can't illuminate this area of dim light." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devour Soul", + "body": [ + "A nabassu can eat the soul of a creature it has killed within the last hour, provided that creature is neither a Construct nor an Undead. The devouring requires the nabassu to be within 5 feet of the corpse for at least 10 minutes, after which it gains a number of Hit Dice (d8s) equal to half the creature's number of Hit Dice. Roll those dice, and increase the nabassu's hit points by the numbers rolled. For every 4 Hit Dice the nabassu gains in this way, its attacks deal an extra 3 ({@damage 1d6}) damage on a hit. The nabassu retains these benefits for 6 days. A creature devoured by a nabassu can be restored to life only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The nabassu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nabassu makes one Bite attack and one Claw attack, and it uses Soul-Stealing Gaze." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}38 ({@damage 5d12 + 6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}28 ({@damage 4d10 + 6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul-Stealing Gaze", + "body": [ + "The nabassu targets one creature it can see within 30 feet of it. If the target isn't a Construct or an Undead, it must succeed on a {@dc 16} Charisma saving throw or take 13 ({@damage 2d12}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage dealt, and the nabassu regains hit points equal to half that amount. This reduction lasts until the target finishes a short or long rest. The target dies if its hit point maximum is reduced to 0, and if the target is a Humanoid, it immediately rises as a {@creature ghoul} under the nabassu's control." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 135 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Nabassu-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Nagpa", + "source": "MPMM", + "page": 189, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 203, + "formula": "37d8 + 37", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 9, + "dexterity": 15, + "constitution": 12, + "intelligence": 23, + "wisdom": 18, + "charisma": 21, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+10", + "cha": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common plus up to five other languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nagpa makes three Staff or Deathly Ray attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage plus 24 ({@damage 7d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deathly Ray", + "body": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}30 ({@damage 7d6 + 6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Corruption", + "body": [ + "The nagpa targets one creature it can see within 90 feet of it. The target must make a {@dc 20} Charisma saving throw. An evil creature makes the save with disadvantage. On a failed save, the target is {@condition charmed} by the nagpa until the start of the nagpa's next turn. On a successful save, the target becomes immune to the nagpa's Corruption for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralysis {@recharge 6}", + "body": [ + "The nagpa forces each creature within 30 feet of it to make a {@dc 20} Wisdom saving throw, excluding Undead and Constructs. On a failed save, a target is {@condition paralyzed} for 1 minute. A {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The nagpa casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fireball}", + "{@spell fly}", + "{@spell hold person}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate person}", + "{@spell etherealness}", + "{@spell feeblemind}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 215 + } + ], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Nagpa-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Narzugon", + "source": "MPMM", + "page": 190, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 20, + "dexterity": 10, + "constitution": 17, + "intelligence": 16, + "wisdom": 14, + "charisma": 19, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Infernal Tack", + "body": [ + "The narzugon wears spurs that are part of {@item infernal tack|MTF}, which allow it to summon its {@creature nightmare} companion as an action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The narzugon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The narzugon makes three Hellfire Lance attacks. It also uses Infernal Command or Terrifying Command." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellfire Lance", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 16 ({@damage 3d10}) fire damage. If this damage kills a creature with a soul, the soul rises from the River Styx as a {@creature lemure} in Avernus in {@dice 1d4} hours. If the creature isn't revived before then, only a {@spell wish} spell or killing the lemure and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Command", + "body": [ + "Each ally of the narzugon within 60 feet of it can't be {@condition charmed} or {@condition frightened} until the end of the narzugon's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrifying Command", + "body": [ + "Each creature within 60 feet of the narzugon that isn't a Fiend must succeed on a {@dc 17} Charisma saving throw or become {@condition frightened} of the narzugon 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. A creature that makes a successful saving throw is immune to this narzugon's Terrifying Command for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing (1/Day)", + "body": [ + "The narzugon, or one creature it touches, regains 100 hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 167 + }, + { + "source": "AATM" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Narzugon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Necromancer Wizard", + "source": "MPMM", + "page": 264, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The necromancer makes three Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}25 ({@damage 4d10 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Summon Undead (1/Day)", + "body": [ + "The necromancer magically summons five {@creature skeleton||skeletons} or {@creature zombie||zombies}. The summoned creatures appear in unoccupied spaces within 60 feet of the necromancer, whom they obey. They take their turns immediately after the necromancer. Each lasts for 1 hour, until it or the necromancer dies, or until the necromancer dismisses it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Grim Harvest (1/Turn)", + "body": [ + "When the necromancer kills a creature with necrotic damage, the necromancer regains 9 ({@damage 2d8}) hit points. " + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The necromancer casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell bestow curse}", + "{@spell dimension door}", + "{@spell mage armor}", + "{@spell web}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell circle of death}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 217 + }, + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Necromancer Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi", + "source": "MPMM", + "page": 192, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 6, + "dexterity": 16, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Mental Fortitude", + "body": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The neogi makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enslave (Recharges after a Short or Long Rest)", + "body": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 180 + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neogi-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi Hatchling", + "source": "MPMM", + "page": 191, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "3d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 6, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Mental Fortitude", + "body": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage plus 3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 10} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 179 + }, + { + "source": "SjA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neogi Hatchling-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi Master", + "source": "MPMM", + "page": 192, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 6, + "dexterity": 16, + "constitution": 14, + "intelligence": 16, + "wisdom": 12, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon", + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the neogi's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mental Fortitude", + "body": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The neogi makes one Bite attack and one Claw attack, or it makes two Tentacle of Hadar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle of Hadar", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}14 ({@damage 3d6 + 4}) necrotic damage, and the target can't take reactions until the end of the neogi's next turn, as a spectral tentacle clings to the target." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enslave (Recharges after a Short or Long Rest)", + "body": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The neogi casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dimension door}", + "{@spell hold person}", + "{@spell hunger of Hadar}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 180 + }, + { + "source": "CoA" + } + ], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Neogi Master-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Neothelid", + "source": "MPMM", + "page": 193, + "size_str": "Gargantuan", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 232, + "formula": "15d20 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 27, + "dexterity": 7, + "constitution": 21, + "intelligence": 3, + "wisdom": 16, + "charisma": 12, + "passive": 13, + "saves": { + "int": "+1", + "wis": "+8", + "cha": "+6" + }, + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The neothelid is aware of the presence of creatures within 1 mile of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The neothelid has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 11 ({@damage 2d10}) psychic damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be swallowed by the neothelid. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the neothelid, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the neothelid's turns.", + "If the neothelid takes 30 damage or more on a single turn from a creature inside it, the neothelid must succeed on a {@dc 18} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the neothelid. If the neothelid dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge 5}", + "body": [ + "The neothelid exhales acid in a 60-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 35 ({@damage 10d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The neothelid casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell feeblemind}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 181 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neothelid-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Nightwalker", + "source": "MPMM", + "page": 194, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 337, + "formula": "25d12 + 175", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 22, + "dexterity": 19, + "constitution": 24, + "intelligence": 6, + "wisdom": 9, + "charisma": 8, + "passive": 9, + "saves": { + "con": "+13" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Annihilating Aura", + "body": [ + "Any creature that starts its turn within 30 feet of the nightwalker must succeed on a {@dc 21} Constitution saving throw or take 21 ({@damage 6d6}) necrotic damage. Undead are immune to this aura." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Eater", + "body": [ + "A creature dies if reduced to 0 hit points by the nightwalker and can't be revived except by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The nightwalker doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nightwalker makes two Enervating Focus attacks, one of which can be replaced by Finger of Doom, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enervating Focus", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}28 ({@damage 5d8 + 6}) necrotic damage. The target must succeed on a {@dc 21} Constitution saving throw or its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Finger of Doom {@recharge}", + "body": [ + "The nightwalker points at one creature it can see within 300 feet of it. The target must succeed on a {@dc 21} Wisdom saving throw or take 39 ({@damage 6d12}) necrotic damage and become {@condition frightened} until the end of the nightwalker's next turn. While {@condition frightened} in this way, the creature is also {@condition paralyzed}. If a target's saving throw is successful, the target is immune to the nightwalker's Finger of Doom for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 216 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nightwalker-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Nilbog", + "source": "MPMM", + "page": 195, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 8, + "charisma": 15, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nilbogism", + "body": [ + "Any creature that attempts to damage the nilbog must first succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} until the end of the creature's next turn. A creature {@condition charmed} in this way must use its action praising the nilbog.", + "The nilbog can't regain hit points, including through magical healing, except through its Reversal of Fortune reaction." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fool's Scepter", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mocking Word", + "body": [ + "The nilbog targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or take 5 ({@damage 2d4}) psychic damage and have disadvantage on its next attack roll before the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "The nilbog takes the {@action Disengage} or {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Reversal of Fortune", + "body": [ + "In response to another creature dealing damage to the nilbog, the nilbog reduces the damage to 0 and regains 3 ({@dice 1d6}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The nilbog casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 182 + } + ], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Nilbog-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Nupperibo", + "source": "MPMM", + "page": 196, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 11, + "constitution": 13, + "intelligence": 3, + "wisdom": 8, + "charisma": 1, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 20 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Infernal but can't speak" + ], + "traits": [ + { + "title": "Cloud of Vermin", + "body": [ + "Any creature, other than a devil, that starts its turn within 20 feet of one or more nupperibos must succeed on a {@dc 11} Constitution saving throw or take 5 ({@damage 2d4}) acid damage. A creature within the areas of two or more nupperibos makes the saving throw with disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Driven Tracker", + "body": [ + "In the Nine Hells, the nupperibo can flawlessly track any creature that has taken damage from any nupperibo's Cloud of Vermin within the previous 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 168 + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Nupperibo-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Oblex Spawn", + "source": "MPMM", + "page": 197, + "size_str": "Tiny", + "maintype": "ooze", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d4 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 16, + "constitution": 15, + "intelligence": 14, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "saves": { + "int": "+4", + "cha": "+2" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion to Fire", + "body": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The oblex doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 217 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Oblex Spawn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Battering Ram", + "source": "MPMM", + "page": 200, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "9d10 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Siege Monster", + "body": [ + "The ogre deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ogre makes two Bash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bash", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) bludgeoning damage, and the ogre can push the target 5 feet away if the target is Huge or smaller." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Block the Path", + "body": [ + "When a creature enters a space within 5 feet of the ogre, the ogre makes a Bash attack against that creature. If the attack hits, the target's speed is reduced to 0 until the start of the ogre's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 220 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Battering Ram-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Bolt Launcher", + "source": "MPMM", + "page": 200, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 12, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt Launcher", + "body": [ + "{@atk rw} {@hit 3} to hit, range 120/480 ft., one target. {@h}17 ({@damage 3d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 220 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Bolt Launcher-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Chain Brute", + "source": "MPMM", + "page": 201, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain Smash {@recharge}", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target must make a {@dc 14} Constitution saving throw or be {@condition stunned} for 1 minute. The target repeats the saving throw if it takes damage and at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain Sweep", + "body": [ + "The ogre swings its chain, and every creature within 10 feet of it must make a {@dc 14} Dexterity saving throw. On a failed saving throw, a creature takes 8 ({@damage 1d8 + 4}) bludgeoning damage and is knocked {@condition prone}. On a successful save, the creature takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 221 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Chain Brute-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Howdah", + "source": "MPMM", + "page": 201, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Howdah", + "body": [ + "The ogre carries a compact fort on its back. Up to four Small creatures can ride in the fort without squeezing. To make a melee attack against a target within 5 feet of the ogre, they must use spears or weapons with reach. Creatures in the fort have {@quickref Cover||3||three-quarters cover} against attacks and effects from outside it. If the ogre dies, creatures in the fort are placed in unoccupied spaces within 5 feet of the ogre." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 221 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Howdah-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Oinoloth", + "source": "MPMM", + "page": 202, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 17, + "constitution": 18, + "intelligence": 17, + "wisdom": 16, + "charisma": 19, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The oinoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oinoloth makes two Claw attacks, and it uses Spellcasting or Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) slashing damage plus 22 ({@damage 4d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupted Healing {@recharge}", + "body": [ + "The oinoloth touches one willing creature within 5 feet of it. The target regains all its hit points. In addition, the oinoloth can end one disease on the target or remove one of the following conditions from it: {@condition blinded}, {@condition deafened}, {@condition paralyzed}, or {@condition poisoned}. The target then gains 1 level of {@condition exhaustion}, and its hit point maximum is reduced by 7 ({@dice 2d6}). This reduction can be removed only by a {@spell wish} spell or by casting {@spell greater restoration} on the target three times within the same hour. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The oinoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Bringer of Plagues {@recharge 5}", + "body": [ + "The oinoloth blights the area in a 30-foot-radius sphere centered on itself. The blight lasts for 24 hours. While the area is blighted, all normal plants there wither and die.", + "Furthermore, when a creature moves into the blighted area or starts its turn there, that creature must make a {@dc 16} Constitution saving throw. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and is {@condition poisoned}. On a successful save, the creature is immune to the oinoloth's Bringer of Plagues for the next 24 hours.", + "The {@condition poisoned} creature can't regain hit points. After every 24 hours that elapse, the {@condition poisoned} creature can repeat the saving throw. On a failed save, the creature's hit point maximum is reduced by 5 ({@damage 1d10}). This reduction lasts until the poison ends, and the target dies if its hit point maximum is reduced to 0. The poison ends after the creature successfully saves against it three times." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The oinoloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell hold monster}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 251 + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Oinoloth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Orcus", + "source": "MPMM", + "page": 204, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 20, + "note": "with the {@item Wand of Orcus}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 405, + "formula": "30d12 + 210", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 27, + "dexterity": 14, + "constitution": 25, + "intelligence": 20, + "wisdom": 20, + "charisma": 25, + "passive": 22, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+15", + "wis": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Orcus fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Orcus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master of Undeath", + "body": [ + "Orcus can cast {@spell animate dead} (at will) and {@spell create undead} (3/day). He chooses the level at which the spells are cast, and the creatures created by them remain under his control indefinitely. Additionally, he can cast {@spell create undead} even when it isn't night." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Orcus wields the {@item Wand of Orcus}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Orcus makes three Wand of Orcus, Tail, or Necrotic Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wand of Orcus", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d8 + 11}) bludgeoning damage plus 13 ({@damage 2d12}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) force damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Bolt", + "body": [ + "{@atk rs} {@hit 15} to hit, range 120 ft., one target. {@h}29 ({@damage 5d8 + 7}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Conjure Undead (1/Day)", + "body": [ + "While holding the {@item Wand of Orcus}, Orcus conjures {@filter Undead creatures|bestiary|type=undead} whose combined average hit points don't exceed 500. These creatures magically rise up from the ground or otherwise form in unoccupied spaces within 300 feet of Orcus and obey his commands until they are destroyed or until he dismisses them as an action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Orcus makes one Tail or Necrotic Bolt attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Creeping Death (Costs 2 Actions)", + "body": [ + "Orcus chooses a point on the ground that he can see within 100 feet of him. A cylinder of swirling necrotic energy 60 feet tall and with a 10-foot radius rises from that point and lasts until the end of Orcus's next turn. Creatures in that area have vulnerability to necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Orcus casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Wand Spellcasting", + "typ": "spellcasting", + "ability": null, + "header": { + "title": "Wand Spellcasting", + "body": [ + "While holding the {@item Wand of Orcus}, Orcus casts one of the following spells (spell save {@dc 18}), some of which require charges; the wand has 7 charges to fuel these spells, and it regains {@dice 1d4 + 3} charges daily at dawn:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animate dead} (as an action)", + "{@spell blight}", + "{@spell speak with dead}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 153 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Orcus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Orthon", + "source": "MPMM", + "page": 205, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "10d10 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 22, + "dexterity": 16, + "constitution": 21, + "intelligence": 15, + "wisdom": 15, + "charisma": 16, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+9", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The orthon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Infernal Dagger", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d4 + 6}) force damage, and the target must make a {@dc 17} Constitution saving throw, taking 22 ({@damage 4d10}) poison damage on a failed save, or half as much damage on a successful one. On a failure, the target is {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brass Crossbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 100/400 ft., one target. {@h}14 ({@damage 2d10 + 3}) force damage. The target also suffers one of the following effects of the orthon's choice; the orthon can't use the same effect two rounds in a row:", + { + "title": "Acid", + "body": [ + "The target must make a {@dc 17} Constitution saving throw, taking an additional 17 ({@damage 5d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blindness", + "body": [ + "The target takes 5 ({@damage 1d10}) radiant damage. In addition, the target and all other creatures within 20 feet of it must each make a successful {@dc 17} Dexterity saving throw or be {@condition blinded} until the end of the orthon's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Concussion", + "body": [ + "The target and each creature within 20 feet of it must make a {@dc 17} Constitution saving throw, taking 13 ({@damage 2d12}) thunder damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entanglement", + "body": [ + "The target must make a successful {@dc 17} Dexterity saving throw or be {@condition restrained} for 1 hour by strands of sticky webbing. The target can escape by taking an action to make a {@dc 17} Strength or Dexterity check and succeeding." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralysis", + "body": [ + "The target takes 22 ({@damage 4d10}) lightning damage and must make a successful {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tracking", + "body": [ + "For the next 24 hours, the orthon knows the direction and distance to the target, as long as it's on the same plane of existence. If the target is on a different plane, the orthon knows which one, but not the exact location there." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Invisibility Field {@recharge 4}", + "body": [ + "The orthon becomes {@condition invisible}. Any equipment it wears or carries is also {@condition invisible} as long as the equipment is on its person. This invisibility ends immediately after it makes an attack roll or is hit by an attack roll." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Explosive Retribution", + "body": [ + "In response to dropping to 15 hit points or fewer, the orthon explodes. All other creatures within 30 feet of it must each make a {@dc 17} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage plus 9 ({@damage 2d8}) thunder damage on a failed save, or half as much damage on a successful one. The orthon, its infernal dagger, and its brass crossbow are destroyed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 169 + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Orthon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Ox", + "source": "MPMM", + "page": 72, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "traits": [ + { + "title": "Beast of Burden", + "body": [ + "The ox is considered to be one size larger for the purpose of determining its carrying capacity." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the ox moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 208 + } + ], + "subtype": "cattle", + "actions_note": "", + "mythic": null, + "key": "Ox-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Phoenix", + "source": "MPMM", + "page": 206, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 18 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 175, + "formula": "10d20 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 19, + "dexterity": 26, + "constitution": 25, + "intelligence": 2, + "wisdom": 21, + "charisma": 18, + "passive": 15, + "saves": { + "wis": "+10", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Fiery Death and Rebirth", + "body": [ + "If the phoenix dies, it explodes. Each creature in 60-foot-radius sphere centered on the phoenix must make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.", + "The explosion destroys the phoenix's body and leaves behind an egg-shaped cinder, which weighs 5 pounds. The cinder deals 21 ({@damage 6d6}) fire damage to any creature that touches it, though no more than once per round. The cinder is immune to all damage, and after {@dice 1d6} days, it hatches a new phoenix." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Form", + "body": [ + "The phoenix can move through a space as narrow as 1 inch wide without squeezing.", + "Any creature that touches the phoenix or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage. In addition, the phoenix can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage.", + "With a touch, the phoenix can also ignite flammable objects that aren't worn or carried (no action required)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The phoenix doesn't provoke {@action opportunity attack||opportunity attacks} when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The phoenix sheds bright light in a 60-foot radius and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the phoenix fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The phoenix deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The phoenix makes two attacks: one Beak attack and one Fiery Talons attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d6 + 8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Talons", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The phoenix moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Peck", + "body": [ + "The phoenix makes one beak attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swoop (Costs 2 Actions)", + "body": [ + "The phoenix moves up to its speed and makes one Fiery Talons attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 199 + }, + { + "source": "CoA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Phoenix-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Quetzalcoatlus", + "source": "MPMM", + "page": 96, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d12 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 13, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Flyby", + "body": [ + "The quetzalcoatlus doesn't provoke an {@action opportunity attack} when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one creature. {@h}12 ({@damage 3d6 + 2}) piercing damage. If the quetzalcoatlus flew least 30 feet toward the target immediately before the hit, the target takes an extra 10 ({@damage 3d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 140 + } + ], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Quetzalcoatlus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Quickling", + "source": "MPMM", + "page": 207, + "size_str": "Tiny", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 120, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 4, + "dexterity": 23, + "constitution": 13, + "intelligence": 10, + "wisdom": 12, + "charisma": 7, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Blurred Movement", + "body": [ + "Attack rolls against the quickling have disadvantage unless it is {@condition incapacitated} or its speed is 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If the quickling is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided it isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quickling makes three Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 187 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Quickling-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Red Abishai", + "source": "MPMM", + "page": 40, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 289, + "formula": "34d8 + 136", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 23, + "dexterity": 16, + "constitution": 19, + "intelligence": 14, + "wisdom": 15, + "charisma": 19, + "passive": 18, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "con": "+10", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes one Bite attack and one Claw attack, and it can use Frightful Presence or Incite Fanaticism." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage plus 38 ({@damage 7d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) force damage plus 11 ({@damage 2d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the abishai's choice that is within 120 feet and aware of the abishai must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} of it 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the abishai's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incite Fanaticism", + "body": [ + "The abishai chooses up to four other creatures within 60 feet of it that can see it. Until the start of the abishai's next turn, each of those creatures makes attack rolls with advantage and can't be {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Power of the Dragon Queen", + "body": [ + "The abishai targets one Dragon it can see within 120 feet of it. The Dragon must make a {@dc 18} Charisma saving throw. A chromatic dragon makes this save with disadvantage. On a successful save, the target is immune to the abishai's Power of the Dragon Queen for 1 hour. On a failed save, the target is {@condition charmed} by the abishai for 1 hour. While {@condition charmed} in this way, the target regards the abishai as a trusted friend to be heeded and protected. This effect ends if the abishai or its companions deal damage to the target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 160 + }, + { + "source": "VEoR" + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Red Abishai-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Redcap", + "source": "MPMM", + "page": 208, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d6 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 18, + "intelligence": 10, + "wisdom": 12, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Iron Boots", + "body": [ + "The redcap has disadvantage on Dexterity ({@skill Stealth}) checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Outsize Strength", + "body": [ + "While grappling, the redcap is considered to be Medium. Also, wielding a heavy weapon doesn't impose disadvantage on its attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The redcap makes three Wicked Sickle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wicked Sickle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ironbound Pursuit", + "body": [ + "The redcap moves up to its speed to a creature it can see and kicks with its iron boots. The target must succeed on a {@dc 14} Dexterity saving throw or take 20 ({@damage 3d10 + 4}) bludgeoning damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 188 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Redcap-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Retriever", + "source": "MPMM", + "page": 209, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 22, + "dexterity": 16, + "constitution": 20, + "intelligence": 3, + "wisdom": 11, + "charisma": 4, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+10", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal", + "Elvish", + "and Undercommon but can't speak" + ], + "traits": [ + { + "title": "Faultless Tracker", + "body": [ + "The retriever is given a quarry by its master. The quarry can be a specific creature or object the master is personally acquainted with, or it can be a general type of creature or object the master has seen before. The retriever knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The retriever can have only one such quarry at a time. The retriever also always knows the location of its master." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The retriever makes two Foreleg attacks, and it uses Force Beam or Paralyzing Beam, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Foreleg", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Beam", + "body": [ + "The retriever targets one creature it can see within 60 feet of it. The target must make a {@dc 16} Dexterity saving throw, taking 27 ({@damage 5d10}) force damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Beam {@recharge 5}", + "body": [ + "The retriever targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If the {@condition paralyzed} creature is Medium or smaller, the retriever can pick it up as part of the retriever's move and walk or climb with it at full speed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The retriever casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell plane shift} (only self and up to one incapacitated creature, which is considered willing for the spell)", + "{@spell web}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 222 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Retriever-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Rot Troll", + "source": "MPMM", + "page": 247, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d10 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 13, + "constitution": 22, + "intelligence": 5, + "wisdom": 8, + "charisma": 4, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Rancid Degeneration", + "body": [ + "At the end of each of the troll's turns, each creature within 5 feet of it takes 11 ({@damage 2d10}) necrotic damage, unless the troll has taken acid or fire damage since the end of its last turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 16 ({@damage 3d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 244 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rot Troll-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Rutterkin", + "source": "MPMM", + "page": 210, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 15, + "constitution": 17, + "intelligence": 5, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Immobilizing Fear", + "body": [ + "When a creature that isn't a demon starts its turn within 30 feet of one or more rutterkins, that creature must make a {@dc 11} Wisdom saving throw. The creature has disadvantage on the save if it's within 30 feet of six or more rutterkins. On a failed save, the creature becomes {@condition frightened} of the rutterkins for 1 minute. While {@condition frightened} in this way, the creature is {@condition restrained}. At the end of each of the {@condition frightened} creature's turns, it can repeat the saving throw, ending the effect on itself on a success. On a successful save, the creature is immune to the Crippling Fear of all rutterkins for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned}. At the end of each long rest, the {@condition poisoned} target can repeat the saving throw, ending the effect on itself on a success. If the target is reduced to 0 hit points while {@condition poisoned} in this way, it dies and instantly transforms into a living {@creature manes}. The transformation can be undone only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 136 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Rutterkin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Sacred Statue", + "source": "MPMM", + "page": 114, + "size_str": "Large", + "maintype": "construct", + "alignment": "as the eidolon's alignment", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 19, + "dexterity": 8, + "constitution": 19, + "intelligence": 14, + "wisdom": 19, + "charisma": 16, + "passive": 14, + "saves": { + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages the {@creature eidolon|MPMM} knew in life" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the statue is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the statue move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the statue isn't an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ghostly Inhabitant", + "body": [ + "The {@creature eidolon|MPMM} that enters the statue remains inside it until the statue drops to 0 hit points, the eidolon uses a bonus action to move out of the statue, or the eidolon is turned or forced out by an effect such as the {@spell dispel evil and good} spell. When the eidolon leaves the statue, it appears in an unoccupied space within 5 feet of the statue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inert", + "body": [ + "Without an {@creature eidolon|MPMM} inside, the statue is an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The statue doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The statue makes two Slam or Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}43 ({@damage 6d12 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 8} to hit, range 60 ft./240 ft., one target. {@h}37 ({@damage 6d10 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 194 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sacred Statue-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Sea Spawn", + "source": "MPMM", + "page": 211, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 8, + "constitution": 15, + "intelligence": 6, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Aquan and Common but can't speak" + ], + "traits": [ + { + "title": "Limited Amphibiousness", + "body": [ + "The sea spawn can breathe air and water, but it needs to be submerged in the sea at least once a day for 1 minute to avoid suffocating." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sea spawn makes two Unarmed Strike attacks and one Piscine Anatomy attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Piscine Anatomy", + "body": [ + "The sea spawn uses one of the following options (choose one or roll a {@dice d6}):", + { + "title": "1\u20132: Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "3\u20134: Poison Quills", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "5\u20136: Tentacle", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}) if it is a Medium or smaller creature. Until this grapple ends, the sea spawn can't use this tentacle on another target." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 189 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sea Spawn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Shadar-kai Gloom Weaver", + "source": "MPMM", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 15, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "saves": { + "dex": "+8", + "con": "+6" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Burden of Time", + "body": [ + "Beasts and Humanoids (except elves) have disadvantage on saving throws while within 10 feet of the shadar-kai." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The shadar-kai has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shadar-kai makes three Shadow Spear attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Spear", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 30/120, one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 26 ({@damage 4d12}) necrotic damage. {@hom}The spear magically returns to the shadar-kai's hand immediately after a ranged attack." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Misty Escape {@recharge 6}", + "body": [ + "When the shadar-kai takes damage, it turns {@condition invisible} and teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks or casts a spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The shadar-kai casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell arcane eye}", + "{@spell mage armor}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell speak with dead}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell arcane gate}", + "{@spell bane}", + "{@spell confusion}", + "{@spell darkness}", + "{@spell fear}", + "{@spell major image}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 224 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Shadar-kai Gloom Weaver-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Shadar-kai Shadow Dancer", + "source": "MPMM", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 12, + "dexterity": 16, + "constitution": 13, + "intelligence": 11, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The shadar-kai has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shadar-kai makes three Spiked Chain attacks.", + "It can use Shadow Jump after one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Chain", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. The target must succeed on a {@dc 14} Dexterity saving throw or suffer one of the following effects (choose one or roll a {@dice d6}):", + { + "title": "1\u20132: Decay", + "body": [ + "The target takes 22 ({@damage 4d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "3\u20134: Grapple", + "body": [ + "The target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition restrained}, and the shadar-kai can't grapple another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "5\u20136: Topple", + "body": [ + "The target is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Jump", + "body": [ + "The shadar-kai teleports, along with any equipment is it wearing or carrying, up to 30 feet to an unoccupied space it can see. Both the space it teleports from and the space it teleports to must be in dim light or darkness." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 225 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Shadar-kai Shadow Dancer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Shadar-kai Soul Monger", + "source": "MPMM", + "page": 214, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "21d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 8, + "dexterity": 17, + "constitution": 14, + "intelligence": 19, + "wisdom": 16, + "charisma": 13, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+7", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The shadar-kai has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The shadar-kai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Thirst", + "body": [ + "When it reduces a creature to 0 hit points, the shadar-kai can gain temporary hit points equal to half the creature's hit point maximum. While the shadar-kai has temporary hit points from this trait, it has advantage on attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weight of Ages", + "body": [ + "Any Beast or Humanoid (except an elf) that starts its turn within 5 feet of the shadar-kai has its speed reduced by 20 feet until the start of that creature's next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shadar-kai makes two Shadow Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Dagger", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage plus 19 ({@damage 3d12}) necrotic damage, and the target has disadvantage on saving throws until the end of the shadar-kai's next turn. {@hom}The dagger magically returns to the shadar-kai's hand immediately after a ranged attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wave of Weariness {@recharge 4}", + "body": [ + "The shadar-kai emits weariness in a 60-foot cube. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 45 ({@damage 10d8}) psychic damage and suffers 1 level of {@condition exhaustion}. On a successful save, it takes half as much damage and doesn't gain a level of {@condition exhaustion}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The shadar-kai casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bestow curse}", + "{@spell finger of death}", + "{@spell gaseous form}", + "{@spell seeming}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 226 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Shadar-kai Soul Monger-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Shadow Mastiff", + "source": "MPMM", + "page": 215, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 5, + "wisdom": 12, + "charisma": 5, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Ethereal Awareness", + "body": [ + "The shadow mastiff can see ethereal creatures and objects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Weakness", + "body": [ + "While in bright light created by sunlight, the shadow mastiff has disadvantage on attack rolls, ability checks, and saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Blend", + "body": [ + "While in dim light or darkness, the shadow mastiff becomes {@condition invisible}, along with anything it is wearing or carrying. The invisibility lasts until the shadow mastiff uses a bonus action to end it or until the shadow mastiff attacks, is in bright light, or is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 190 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shadow Mastiff-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Shadow Mastiff Alpha", + "source": "MPMM", + "page": 215, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 6, + "wisdom": 12, + "charisma": 5, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Ethereal Awareness", + "body": [ + "The shadow mastiff can see ethereal creatures and objects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Weakness", + "body": [ + "While in bright light created by sunlight, the shadow mastiff has disadvantage on attack rolls, ability checks, and saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrifying Howl {@recharge}", + "body": [ + "The shadow mastiff howls. Any Beast or Humanoid within 300 feet of it must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} of it for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's save is successful or the effect ends for it, the target is immune to any shadow mastiff's Terrifying Howl for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Blend", + "body": [ + "While in dim light or darkness, the shadow mastiff becomes {@condition invisible}, along with anything it is wearing or carrying. The invisibility lasts until the shadow mastiff uses a bonus action to end it or until the shadow mastiff attacks, is in bright light, or is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 190 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shadow Mastiff Alpha-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Shoosuva", + "source": "MPMM", + "page": 216, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 13, + "constitution": 17, + "intelligence": 7, + "wisdom": 14, + "charisma": 9, + "passive": 12, + "saves": { + "dex": "+4", + "con": "+6", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Gnoll", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shoosuva makes one Bite attack and one Tail Stinger attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Stinger", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one creature. {@h}13 ({@damage 2d8 + 4}) piercing damage, and the target must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target is also {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rampage", + "body": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the shoosuva can move up to half its speed and make one Bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 137 + }, + { + "source": "BMT" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Shoosuva-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Sibriex", + "source": "MPMM", + "page": 217, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "12d12 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 10, + "dexterity": 3, + "constitution": 23, + "intelligence": 25, + "wisdom": 24, + "charisma": 25, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+13", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Contamination", + "body": [ + "The sibriex emits an aura of corruption 30 feet in every direction. Vegetation withers in the aura, and the ground in the aura is {@quickref difficult terrain||3} for other creatures. Any creature that starts its turn in the aura must succeed on a {@dc 20} Constitution saving throw or take 14 ({@damage 4d6}) poison damage. A creature that succeeds on the save is immune to this sibriex's Contamination for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the sibriex fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The sibriex has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sibriex makes three Chain attacks, and it uses Squirt Bile." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d12 + 7}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Squirt Bile", + "body": [ + "The sibriex targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or take 31 ({@damage 9d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warp Creature", + "body": [ + "The sibriex targets up to three creatures it can see within 120 feet of it. Each target must make a {@dc 20} Constitution saving throw. On a successful save, a creature becomes immune to this sibriex's Warp Creature. On a failed save, the target is {@condition poisoned}, which causes it to also gain 1 level of {@condition exhaustion}. While {@condition poisoned} in this way, the target must repeat the saving throw at the start of each of its turns. Three successful saves against the poison end it, and ending the poison removes any levels of {@condition exhaustion} caused by it. Each failed save causes the target to gain another level of {@condition exhaustion}. Once the target reaches 6 levels of {@condition exhaustion}, it dies and instantly transforms into a living {@creature manes} under the sibriex's control. The transformation of the body can be undone only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cast a Spell", + "body": [ + "The sibriex uses Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spray Bile", + "body": [ + "The sibriex uses Squirt Bile." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warp (Costs 2 Actions)", + "body": [ + "The sibriex uses Warp Creature." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The sibriex casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell dispel magic}", + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 137 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Sibriex-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Skulk", + "source": "MPMM", + "page": 219, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 6, + "dexterity": 19, + "constitution": 10, + "intelligence": 10, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+2" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Fallible Invisibility", + "body": [ + "The skulk is {@condition invisible}. This invisibility can be circumvented by three things:", + { + "title": "Charnel Candles", + "body": [ + "The skulk appears as a dim, translucent form in the light of a candle made of fat rendered from a corpse whose identity is unknown." + ], + "__dataclass__": "Entry" + }, + { + "title": "Children", + "body": [ + "Humanoid children, aged 10 and under, can see through this invisibility." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reflective Surfaces", + "body": [ + "The skulk appears as a drab, smoothskinned biped if its reflection can be seen in a mirror or on another surface." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Trackless", + "body": [ + "The skulk leaves no tracks to indicate where it has been or where it's headed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage plus 3 ({@damage 1d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 227 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skulk-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Skull Lord", + "source": "MPMM", + "page": 220, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 14, + "dexterity": 16, + "constitution": 17, + "intelligence": 16, + "wisdom": 15, + "charisma": 21, + "passive": 22, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "all the languages it knew in life" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If the skull lord is subjected to an effect that allows it to make a Dexterity saving throw to take only half the damage, the skull lord instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided it isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the skull lord fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master of the Grave", + "body": [ + "While within 30 feet of the skull lord, any Undead ally of the skull lord makes saving throws with advantage, and that ally regains {@dice 1d6} hit points whenever it starts its turn there." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The skull lord doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skull lord makes three Bone Staff or Deathly Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bone Staff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deathly Ray", + "body": [ + "{@atk rs} {@hit 10} to hit, range 60 ft., one target. {@h}27 ({@damage 5d8 + 5}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The skull lord makes one Bone Staff or Deathly Ray attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The skull lord moves up to its speed without provoking {@action opportunity attack||opportunity attacks}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Undead (Costs 2 Actions)", + "body": [ + "The skull lord summons up to five {@creature skeleton||skeletons} or {@creature zombie||zombies} in unoccupied spaces within 30 feet of it. They remain until destroyed. Undead summoned in this way roll initiative, act in the next available turn, and obey the skull lord. The skull lord can have no more than five Undead summoned by this ability at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The skull, lord casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dimension door}", + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell cloudkill}", + "{@spell cone of cold}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 230 + }, + { + "source": "AATM" + } + ], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Skull Lord-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Slithering Tracker", + "source": "MPMM", + "page": 221, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 19, + "constitution": 15, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "understands languages it knew in its previous form but can't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the slithering tracker is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the slithering tracker move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the slithering tracker isn't a puddle." + ], + "__dataclass__": "Entry" + }, + { + "title": "Liquid Form", + "body": [ + "The slithering tracker can enter an enemy's space and stop there. It can also move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The slithering tracker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Leech", + "body": [ + "One Large or smaller creature that the slithering tracker can see within 5 feet of it must succeed on a {@dc 13} Dexterity saving throw or be {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained} and unable to breathe unless it can breathe water. In addition, the {@condition grappled} target takes 16 ({@damage 3d10}) necrotic damage at the start of each of its turns. The slithering tracker can grapple only one target at a time.", + "While grappling the target, the slithering tracker takes only half any damage dealt to it (rounded down), and the target takes the other half." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Watery Stealth", + "body": [ + "If underwater, the slithering tracker takes the {@action Hide} action, and it makes the Dexterity ({@skill Stealth}) check with advantage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 191 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Slithering Tracker-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Spawn of Kyuss", + "source": "MPMM", + "page": 225, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "9d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 11, + "constitution": 18, + "intelligence": 5, + "wisdom": 7, + "charisma": 3, + "passive": 8, + "saves": { + "wis": "+1" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The spawn of Kyuss regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or a body of running water. If the spawn takes acid, fire, or radiant damage, this trait doesn't function at the start of the spawn's next turn. The spawn is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Worms", + "body": [ + "If the spawn of Kyuss is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away, and it loses its Burrowing Worm action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The spawn of Kyuss requires no air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spawn of Kyuss makes two Claw attacks, and it uses Burrowing Worm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Burrowing Worm", + "body": [ + "A worm launches from the spawn of Kyuss at one Humanoid that the spawn can see within 10 feet of it. The worm latches onto the target's skin unless the target succeeds on a {@dc 11} Dexterity saving throw. The worm is a Tiny Undead with AC 6, 1 hit point, a 2 (-4) in every ability score, and a speed of 1 foot. While on the target's skin, the worm can be killed by normal means or scraped off using an action (the spawn can use Burrowing Worm to launch a scraped-off worm at a Humanoid it can see within 10 feet of the worm). Otherwise, the worm burrows under the target's skin at the end of the target's next turn, dealing 1 piercing damage to it. At the end of each of its turns thereafter, the target takes 7 ({@damage 2d6}) necrotic damage per worm infesting it (maximum of {@damage 10d6}), and if it drops to 0 hit points, it dies and then rises 10 minutes later as a spawn of Kyuss. If a worm-infested target is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 192 + }, + { + "source": "AATM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spawn of Kyuss-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Spirit Troll", + "source": "MPMM", + "page": 247, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 130, + "formula": "20d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 1, + "dexterity": 17, + "constitution": 13, + "intelligence": 8, + "wisdom": 9, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The troll can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes psychic or force damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}19 ({@damage 3d10 + 3}) psychic damage, and the target must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}19 ({@damage 3d10 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 244 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spirit Troll-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Spring Eladrin", + "source": "MPMM", + "page": 116, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 14, + "dexterity": 16, + "constitution": 16, + "intelligence": 18, + "wisdom": 11, + "charisma": 18, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Joyful Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by the eladrin for 1 minute. On a successful save, the creature becomes immune to any eladrin's Joyful Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eladrin makes two Longsword or Longbow attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands, plus 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fey Step {@recharge 4}", + "body": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The eladrin casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell major image}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 196 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Spring Eladrin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Grue", + "source": "MPMM", + "page": 227, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 13, + "constitution": 10, + "intelligence": 9, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Aura of Shrieks", + "body": [ + "Creatures within 20 feet of the grue that aren't Aberrations have disadvantage on saving throws, as well as on attack rolls against creatures other than a star spawn grue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Confounding Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Wisdom saving throw or attack rolls against it have advantage until the start of the grue's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 234 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Grue-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Hulk", + "source": "MPMM", + "page": 227, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 20, + "dexterity": 8, + "constitution": 21, + "intelligence": 7, + "wisdom": 12, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Psychic Mirror", + "body": [ + "If the hulk takes psychic damage, each creature within 10 feet of the hulk takes that damage instead; the hulk takes none of the damage. In addition, the hulk's thoughts and location can't be discerned by magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hulk makes two Slam attacks. If both attacks hit the same target, the target also takes 9 ({@damage 2d8}) psychic damage and must succeed on a {@dc 17} Constitution saving throw or be {@condition stunned} until the end of the target's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reaping Arms {@recharge 5}", + "body": [ + "The hulk makes a separate Slam attack against each creature within 10 feet of it. Each creature that is hit must also succeed on a {@dc 17} Dexterity saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 234 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Hulk-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Larva Mage", + "source": "MPMM", + "page": 228, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d8 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 17, + "dexterity": 12, + "constitution": 23, + "intelligence": 18, + "wisdom": 12, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Return to Worms", + "body": [ + "When the mage is reduced to 0 hit points, it breaks apart into a {@creature swarm of insects} in the same space. Unless the swarm is destroyed, the mage reforms from it 24 hours later." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mage makes three Slam or Eldritch Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 60 ft., one target. {@h}19 ({@damage 3d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plague of Worms {@recharge}", + "body": [ + "Each creature other than a star spawn within 10 feet of the mage must succeed on a {@dc 19} Dexterity saving throw or take 22 ({@damage 5d8}) necrotic damage and be {@condition blinded} and {@condition restrained} by masses of swarming worms. The affected creature takes 22 ({@damage 5d8}) necrotic damage at the start of each of the mage's turns. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Feed on Weakness", + "body": [ + "When a creature within 20 feet of the mage fails a saving throw, the mage gains 10 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Slam", + "body": [ + "The mage makes one Slam attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Bolt (Costs 2 Actions)", + "body": [ + "The mage makes one Eldritch Bolt attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Feed (Costs 3 Actions)", + "body": [ + "Each creature {@condition restrained} by the mage's Plague of Worms takes 13 ({@damage 3d8}) necrotic damage, and the mage gains 6 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The mage casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 235 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Larva Mage-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Mangler", + "source": "MPMM", + "page": 229, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 8, + "dexterity": 18, + "constitution": 12, + "intelligence": 11, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+4" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Ambusher", + "body": [ + "The mangler has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mangler makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage. If the attack roll has advantage, the target also takes 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flurry of Claws {@recharge 5}", + "body": [ + "The mangler makes six Claw attacks. Either before or after these attacks, it can move up to its speed without provoking {@action opportunity attack||opportunity attacks}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the mangler takes the {@action Hide} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 236 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Mangler-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Seer", + "source": "MPMM", + "page": 230, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 14, + "dexterity": 12, + "constitution": 18, + "intelligence": 22, + "wisdom": 19, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+11", + "wis": "+9", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Out-Of-Phase Movement", + "body": [ + "The seer can move through other creatures and objects as if they were {@quickref difficult terrain||3}, and its movement doesn't provoke {@action opportunity attack||opportunity attacks}.", + "Each creature it moves through takes 5 ({@damage 1d10}) psychic damage; no creature can take this damage more than once per turn.", + "The seer takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The seer makes two Comet Staff or Psychic Orb attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Comet Staff", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage, and if the target is a creature, it must succeed on a {@dc 19} Constitution saving throw or be {@condition incapacitated} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Orb", + "body": [ + "{@atk rs} {@hit 11} to hit, range 120 feet, one creature. {@h}27 ({@damage 5d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Collapse Distance {@recharge}", + "body": [ + "The seer warps space around one creature it can see within 30 feet of it. That creature must make a {@dc 19} Wisdom saving throw. On a failed save, the target, along with any equipment it is wearing or carrying, is teleported up to 60 feet to an unoccupied space the seer can see, and then each creature within 10 feet of the target's original space takes 39 ({@damage 6d12}) psychic damage. On a successful save, the target takes 19 ({@damage 3d12}) psychic damage and isn't teleported." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Bend Space", + "body": [ + "When the seer would be hit by an attack roll, it teleports, along with any equipment it is wearing or carrying, exchanging positions with another star spawn it can see within 60 feet of it. The other star spawn is hit by the attack instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 236 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Seer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Steel Predator", + "source": "MPMM", + "page": 232, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d10 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 24, + "dexterity": 17, + "constitution": 22, + "intelligence": 4, + "wisdom": 14, + "charisma": 6, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "languages": [ + "understands Modron and the language of its owner but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The steel predator has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The steel predator doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The steel predator makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d10 + 7}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Roar {@recharge 5}", + "body": [ + "The steel predator emits a roar in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) thunder damage, drops everything it's holding, and is {@condition stunned} for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, a creature takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The steel predator casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dimension door} (self only)", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 239 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Steel Predator-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Stegosaurus", + "source": "MPMM", + "page": 96, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 20, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 11, + "charisma": 5, + "passive": 10, + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}26 ({@damage 6d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 140 + }, + { + "source": "BMT" + } + ], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Stegosaurus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Stench Kow", + "source": "MPMM", + "page": 72, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Stench", + "body": [ + "Any creature other than a stench kow that starts its turn within 5 feet of the stench kow must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the Stench of all stench kows for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the stench kow moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 208 + }, + { + "source": "AATM" + } + ], + "subtype": "cattle", + "actions_note": "", + "mythic": null, + "key": "Stench Kow-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Stone Cursed", + "source": "MPMM", + "page": 233, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 5, + "constitution": 14, + "intelligence": 5, + "wisdom": 8, + "charisma": 7, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Cunning Opportunist", + "body": [ + "The stone cursed has advantage on the attack rolls of {@action opportunity attack||opportunity attacks}." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "If the stone cursed is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the stone cursed move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the stone cursed isn't a statue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The stone cursed doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Petrifying Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw, or it begins to turn to stone and is {@condition restrained} until the end of its next turn, when it must repeat the saving throw. The effect ends if the second save is successful; otherwise the target is {@condition petrified} for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 240 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Cursed-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Stone Giant Dreamwalker", + "source": "MPMM", + "page": 234, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 14, + "constitution": 21, + "intelligence": 10, + "wisdom": 8, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+9", + "wis": "+3" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Dreamwalker's Charm", + "body": [ + "An enemy that starts its turn within 30 feet of the giant must make a {@dc 13} Charisma saving throw, provided that the giant isn't {@condition incapacitated}. On a failed save, the creature is {@condition charmed} by the giant. A creature {@condition charmed} in this way can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it succeeds on the saving throw, the creature is immune to this giant's Dreamwalker's Charm for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Greatclub or Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}24 ({@damage 4d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Touch", + "body": [ + "The giant touches one Medium or smaller creature within 10 feet of it that is {@condition charmed} by it. The target must make a {@dc 17} Constitution saving throw. On a failed save, the target becomes {@condition petrified}, and the giant can adhere the target to its stony body. {@spell greater restoration} spells and other magic that can undo petrification have no effect on a {@condition petrified} creature adhered to the giant unless the giant is dead, in which case the magic works normally, freeing the {@condition petrified} creature as well as ending the {@condition petrified} condition on it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 150 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Giant Dreamwalker-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Storm Giant Quintessent", + "source": "MPMM", + "page": 235, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 230, + "formula": "20d12 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 29, + "dexterity": 14, + "constitution": 20, + "intelligence": 17, + "wisdom": 20, + "charisma": 19, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+14", + "con": "+10", + "wis": "+10", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The giant can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Lightning Sword attacks, or it uses Wind Javelin twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Sword", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}40 ({@damage 9d6 + 9}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wind Javelin", + "body": [ + "The giant coalesces wind into a javelin-like form and hurls it at a creature it can see within 600 feet of it. The javelin deals 19 ({@damage 3d6 + 9}) force damage to the target, striking unerringly. The javelin disappears after it hits." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Gust", + "body": [ + "The giant targets a creature it can see within 60 feet of it and creates a magical gust of wind around the target, who must succeed on a {@dc 18} Strength saving throw or be moved up to 20 feet in any horizontal direction the giant chooses." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderbolt (Costs 2 Actions)", + "body": [ + "The giant hurls a thunderbolt at a creature it can see within 600 feet of it. The target must make a {@dc 18} Dexterity saving throw, taking 22 ({@damage 4d10}) thunder damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "One with the Storm (Costs 3 Actions)", + "body": [ + "The giant vanishes, dispersing itself into the storm surrounding its lair. The giant can end this effect at the start of any of its turns, becoming a giant once more and appearing in any location it chooses within its lair. While dispersed, the giant can't take any actions other than lair actions, and it can't be targeted by attacks, spells, or other effects. The giant can't use this ability outside its lair, nor can it use this ability if another creature is using a {@spell control weather} spell or similar magic to quell the storm." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 151 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Storm Giant Quintessent-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Summer Eladrin", + "source": "MPMM", + "page": 116, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 21, + "constitution": 16, + "intelligence": 14, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fearsome Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition frightened} of the eladrin 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Fearsome Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eladrin makes two Longsword or Longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands, plus 9 ({@damage 2d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 9} to hit, range 150/600 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 9 ({@damage 2d8}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fey Step {@recharge 4}", + "body": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The eladrin adds 3 to its AC against one melee attack that would hit it. To do so, the eladrin must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 196 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Summer Eladrin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Cranium Rats", + "source": "MPMM", + "page": 83, + "size_str": "Medium", + "maintype": "swarm of Tiny aberrations", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "17d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 10, + "intelligence": 15, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Shroud", + "body": [ + "The swarm is immune to any effect that would sense its emotions or read its thoughts, as well as to all divination spells." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer, plus 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Illumination", + "body": [ + "The swarm sheds dim light from its brains in a 5-foot radius, increases the illumination to bright light in a 5- to 20-foot radius (and dim light for an additional number of feet equal to the chosen radius), or extinguishes the light." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "As long as it has more than half of its hit points remaining, the swarm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell comprehend languages}", + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dominate monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 133 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Cranium Rats-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Rot Grubs", + "source": "MPMM", + "page": 237, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 5, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 2, + "dexterity": 7, + "constitution": 10, + "intelligence": 1, + "wisdom": 2, + "charisma": 1, + "passive": 6, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny maggot. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 0 ft., one creature in the swarm's space. {@h}7 ({@damage 2d6}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned}. At the end of each of the {@condition poisoned} target's turns, the target takes 3 ({@damage 1d6}) poison damage. Whenever the {@condition poisoned} target takes fire damage, the target can repeat the saving throw, ending the effect on itself on a success. If the {@condition poisoned} target ends its turn with 0 hit points, it dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 208 + }, + { + "source": "AATM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Rot Grubs-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Swashbuckler", + "source": "MPMM", + "page": 238, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item leather armor|PHB}, suave defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 18, + "constitution": 12, + "intelligence": 14, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Suave Defense", + "body": [ + "While the swashbuckler is wearing light or no armor and wielding no {@item shield|PHB}, its AC includes its Charisma modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The swashbuckler makes one Dagger attack and two Rapier attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Lightfooted", + "body": [ + "The swashbuckler takes the {@action Dash} or {@action Disengage} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 217 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swashbuckler-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Sword Wraith Commander", + "source": "MPMM", + "page": 239, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item breastplate|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 11, + "wisdom": 12, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Turning Defiance", + "body": [ + "The commander and any other sword wraiths within 30 feet of it have advantage on saving throws against effects that turn Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The commander doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The commander makes two Longsword or Longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Call to Honor (1/Day)", + "body": [ + "If the commander has taken damage during this combat, it gives itself advantage on attack rolls until the end of its next turn, and {@dice 1d4 + 1} {@creature sword wraith warrior|MPMM|sword wraith warriors} appear in unoccupied spaces within 30 feet of it. The warriors last until they drop to 0 hit points, and they take their turns immediately after the commander's turn on the same initiative count." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Martial Fury", + "body": [ + "The commander makes one Longsword or Longbow attack, which deals an extra 9 ({@damage 2d8}) necrotic damage on a hit, and attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 241 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sword Wraith Commander-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Sword Wraith Warrior", + "source": "MPMM", + "page": 239, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain shirt|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 12, + "constitution": 17, + "intelligence": 6, + "wisdom": 9, + "charisma": 10, + "passive": 9, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The warrior doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Martial Fury", + "body": [ + "The warrior makes one Battleaxe or Longbow attack, and attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 241 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sword Wraith Warrior-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Tanarukk", + "source": "MPMM", + "page": 240, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 13, + "constitution": 20, + "intelligence": 9, + "wisdom": 9, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "plus any one language" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The tanarukk has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tanarukk makes one Bite attack and one Greatsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aggressive", + "body": [ + "The tanarukk moves up to its speed toward an enemy that it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unbridled Fury", + "body": [ + "In response to being hit by a melee attack, the tanarukk can make one Bite or Greatsword attack with advantage against the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 186 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Tanarukk-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Thorny Vegepygmy", + "source": "MPMM", + "page": 253, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 12, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The thorny has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The thorny regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the thorny's next turn. The thorny dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thorny Body", + "body": [ + "At the start of its turn, the thorny deals 2 ({@damage 1d4}) piercing damage to any creature grappling it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 197 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thorny Vegepygmy-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Titivilus", + "source": "MPMM", + "page": 242, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 19, + "dexterity": 22, + "constitution": 17, + "intelligence": 24, + "wisdom": 22, + "charisma": 26, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+8", + "wis": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Titivilus fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Titivilus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Titivilus regains 10 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Titivilus dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ventriloquism", + "body": [ + "Whenever Titivilus speaks, he can choose a point within 60 feet of him; his voice emanates from that point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Titivilus makes one Silver Sword attack, and he uses Frightful Word." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Sword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage, or 9 ({@damage 1d10 + 4}) force damage if used with two hands, plus 16 ({@damage 3d10}) necrotic damage. If the target is a creature, its hit point maximum is reduced by an amount equal to half the necrotic damage taken." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Word", + "body": [ + "Titivilus targets one creature he can see within 10 feet of him. The target must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} of him for 1 minute. While {@condition frightened} in this way, the target must take the {@action Dash} action and move away from Titivilus by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the {@action Dash} action. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Titivilus teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Twisting Words", + "body": [ + "Titivilus targets one creature he can see within 60 feet of him. The target must succeed on a {@dc 21} Charisma saving throw or become {@condition charmed} by Titivilus for 1 minute. The {@condition charmed} target can repeat the saving throw if Titivilus deals any damage to it. A creature that succeeds on the saving throw is immune to Titivilus's Twisting Words for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Corrupting Guidance", + "body": [ + "Titivilus uses Twisting Words. Alternatively, he targets one creature {@condition charmed} by him that is within 60 feet of him; that {@condition charmed} target must succeed on a {@dc 21} Charisma saving throw, or Titivilus decides how the target acts during its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Titivilus uses Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Assault (Costs 2 Actions)", + "body": [ + "Titivilus makes one Silver Sword attack, or he uses Frightful Word." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Titivilus casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell major image}", + "{@spell nondetection}", + "{@spell sending}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell mislead}", + "{@spell modify memory}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 179 + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Titivilus-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Tlincalli", + "source": "MPMM", + "page": 242, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 13, + "constitution": 16, + "intelligence": 8, + "wisdom": 12, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Tlincalli" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tlincalli makes one Longsword or Spiked Chain attack and one Sting attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Chain", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the tlincalli can't use the spiked chain against another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} for 1 minute. If it fails the saving throw by 5 or more, the target is also {@condition paralyzed} while {@condition poisoned}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 193 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tlincalli-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Tortle", + "source": "MPMM", + "page": 244, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 10, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The tortle can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands in melee." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 242 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tortle-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Tortle Druid", + "source": "MPMM", + "page": 244, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 12, + "intelligence": 11, + "wisdom": 15, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The tortle can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tortle makes four Claw attacks or two {@skill Nature}'s Wrath attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nature's Wrath", + "body": [ + "{@atk rs} {@hit 4} to hit, range 90 ft., one target. {@h}9 ({@damage 2d6 + 2}) damage of a type chosen by the tortle: cold, fire, lightning, or thunder." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The tortle casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell cure wounds}", + "{@spell hold person}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 242 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tortle Druid-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Transmuter Wizard", + "source": "MPMM", + "page": 265, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "11d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Transmuter's Stone", + "body": [ + "The transmuter carries a magic stone it crafted. The stone grants it one of the following benefits while bearing the stone; the transmuter chooses the benefit at the end of each long rest:", + { + "title": "Darkvision", + "body": [ + "The transmuter has {@sense darkvision} out to a range of 60 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Resilience", + "body": [ + "The transmuter has proficiency in Constitution saving throws. " + ], + "__dataclass__": "Entry" + }, + { + "title": "Resistance", + "body": [ + "The transmuter has resistance to acid, cold, fire, lightning, or thunder damage (transmuter's choice whenever choosing this benefit)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speed", + "body": [ + "The transmuter's walking speed is increased by 10 feet." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The transmuter makes three Arcane Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 120 ft., one target. {@h}19 ({@damage 3d10 + 3}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Transmute {@recharge 4}", + "body": [ + "The transmuter casts {@spell alter self} or changes the benefit of Transmuter's Stone if bearing the stone." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The transmuter casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fireball}", + "{@spell hold person}", + "{@spell knock}", + "{@spell mage armor}", + "{@spell polymorph}", + "{@spell slow}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 218 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Transmuter Wizard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Trapper", + "source": "MPMM", + "page": 245, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 10, + "constitution": 17, + "intelligence": 2, + "wisdom": 13, + "charisma": 4, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the trapper is motionless on a floor, wall, or ceiling at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the trapper move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the trapper isn't part of the floor, wall, or ceiling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The trapper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Smother", + "body": [ + "One Large or smaller creature within 10 feet of the trapper must succeed on a {@dc 13} Dexterity saving throw or be {@condition grappled} (escape {@dc 14}). Until the grapple ends, the target takes 13 ({@damage 3d6 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) acid damage at the start of each of its turns. While {@condition grappled} in this way, the target is {@condition restrained}, {@condition blinded}, and deprived of air. The trapper can smother only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 194 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Trapper-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Ulitharid", + "source": "MPMM", + "page": 249, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 15, + "dexterity": 12, + "constitution": 15, + "intelligence": 21, + "wisdom": 19, + "charisma": 21, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+8", + "cha": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 2 miles" + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The ulitharid is aware of the presence of creatures within 2 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The ulitharid has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionic Hub", + "body": [ + "If an elder brain establishes a psychic link with the ulitharid, the elder brain can form a psychic link with any other creature the ulitharid can detect using its Creature Sense. Any such link ends if the creature falls outside the telepathy ranges of both the ulitharid and the elder brain. The ulitharid can maintain its psychic link with the elder brain regardless of the distance between them, so long as they are both on the same plane of existence. If the ulitharid is more than 5 miles away from the elder brain, it can end the psychic link at any time (no action required)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}27 ({@damage 4d10 + 5}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 14}) and must succeed on a {@dc 17} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition incapacitated} Humanoid {@condition grappled} by the ulitharid. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ulitharid kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The ulitharid magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 17} Intelligence saving throw or take 31 ({@damage 4d12 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The ulitharid casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell feeblemind}", + "{@spell mass suggestion}", + "{@spell plane shift} (self only)", + "{@spell project image}", + "{@spell scrying}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 175 + } + ], + "subtype": "mind flayer", + "actions_note": "", + "mythic": null, + "key": "Ulitharid-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Vampiric Mist", + "source": "MPMM", + "page": 250, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 6, + "dexterity": 16, + "constitution": 16, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "saves": { + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Life Sense", + "body": [ + "The mist can sense the location of any creature within 60 feet of it, unless that creature's type is Construct or Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forbiddance", + "body": [ + "The mist can't enter a residence without an invitation from one of the occupants." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misty Form", + "body": [ + "The mist can occupy another creature's space and vice versa. In addition, if air can pass through a space, the mist can pass through it without squeezing. Each foot of movement in water costs it 2 extra feet, rather than 1 extra foot. The mist can't manipulate objects in any way that requires fingers or manual dexterity." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "The mist takes 10 radiant damage whenever it starts its turn in sunlight. While in sunlight, the mist has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The mist doesn't require air or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Life Drain", + "body": [ + "The mist touches one creature in its space. The target must succeed on a {@dc 13} Constitution saving throw (Undead and Constructs automatically succeed), or it takes 10 ({@damage 2d6 + 3}) necrotic damage, the mist regains 10 hit points, and the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 246 + }, + { + "source": "AATM" + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampiric Mist-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Vargouille", + "source": "MPMM", + "page": 251, + "size_str": "Tiny", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d4 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 6, + "dexterity": 14, + "constitution": 14, + "intelligence": 4, + "wisdom": 7, + "charisma": 2, + "passive": 8, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal", + "Infernal", + "and any languages it knew before becoming a vargouille but can't speak" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Abyssal Curse", + "body": [ + "The vargouille targets one {@condition incapacitated} Humanoid within 5 feet of it. The target must succeed on a {@dc 12} Charisma saving throw or become cursed. The cursed target loses 1 point of Charisma after each hour, as its head takes on fiendish aspects. The curse doesn't advance while the target is in sunlight or the area of a {@spell daylight} spell; don't count that time. When the cursed target's Charisma becomes 2, it dies, and its head tears from its body and becomes a new vargouille. Casting {@spell remove curse}, {@spell greater restoration}, or a similar spell on the target before the transformation is complete can end the curse. Doing so undoes the changes made to the target by the curse." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Shriek {@recharge 5}", + "body": [ + "The vargouille shrieks. Each Humanoid and Beast within 30 feet of the vargouille and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} of the vargouille until the end of the vargouille's next turn. While {@condition frightened} in this way, a target is {@condition stunned}. If a target's saving throw is successful or the effect ends for it, the target is immune to the Stunning Shriek of all vargouilles for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 195 + }, + { + "source": "AATM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vargouille-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Vegepygmy", + "source": "MPMM", + "page": 252, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 14, + "constitution": 13, + "intelligence": 6, + "wisdom": 11, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Vegepygmy" + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vegepygmy regains 3 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 196 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vegepygmy-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Vegepygmy Chief", + "source": "MPMM", + "page": 253, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 14, + "constitution": 14, + "intelligence": 7, + "wisdom": 12, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Vegepygmy" + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vegepygmy regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vegepygmy makes two Claw attacks or two melee Spear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spores (1/Day)", + "body": [ + "A 15-foot-radius cloud of toxic spores extends out from the vegepygmy. The spores spread around corners. Each creature in that area that isn't a Plant must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned}. While {@condition poisoned} in this way, a target takes 9 ({@damage 2d8}) 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 197 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vegepygmy Chief-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Velociraptor", + "source": "MPMM", + "page": 96, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 14, + "constitution": 13, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The velociraptor has advantage on an attack roll against a creature if at least one of the velociraptor's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The velociraptor makes one Bite attack and one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 140 + } + ], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Velociraptor-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Venom Troll", + "source": "MPMM", + "page": 248, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 13, + "constitution": 20, + "intelligence": 7, + "wisdom": 9, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Poison Splash", + "body": [ + "When the troll takes damage of any type but psychic, each creature within 5 feet of the troll takes 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 4 ({@damage 1d8}) poison damage, and the creature is {@condition poisoned} until the start of the troll's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Venom Spray {@recharge}", + "body": [ + "The troll slices itself with a claw, releasing a spray of poison in a 15-foot cube. The troll takes 7 ({@damage 2d6}) slashing damage (this damage can't be reduced in any way). Each creature in the area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 245 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Venom Troll-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "War Priest", + "source": "MPMM", + "page": 254, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 16, + "dexterity": 10, + "constitution": 14, + "intelligence": 11, + "wisdom": 17, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+7" + }, + "languages": [ + "any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The war priest makes two Maul attacks, and it uses Holy Fire." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage plus {@h}10 ({@damage 3d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Holy Fire", + "body": [ + "The war priest targets one creature it can see within 60 feet of it. The target must make a {@dc 15} Wisdom saving throw. On a failed save, the target takes 12 ({@damage 2d8 + 3}) radiant damage, and it is {@condition blinded} until the start of the war priest's next turn. On a successful save, the target takes half as much damage and isn't {@condition blinded}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Healing Light {@recharge 4}", + "body": [ + "The war priest or one creature of its choice within 60 feet of it regains 12 ({@dice 2d8 + 3}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The war priest casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell command}", + "{@spell dispel magic}", + "{@spell flame strike}", + "{@spell guardian of faith}", + "{@spell hold person}", + "{@spell lesser restoration}", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 218 + } + ], + "subtype": "cleric", + "actions_note": "", + "mythic": null, + "key": "War Priest-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Warlock of the Archfey", + "source": "MPMM", + "page": 255, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "15d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 9, + "dexterity": 16, + "constitution": 11, + "intelligence": 11, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "any two languages (usually Sylvan)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warlock makes two Rapier attacks, or it uses Bewildering Word twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bewildering Word", + "body": [ + "The warlock utters a magical bewilderment, targeting one creature it can see within 60 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or take 9 ({@damage 2d8}) psychic damage and have disadvantage on attack rolls until the end of the warlock's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Misty Escape (Recharges after a Short or Long Rest)", + "body": [ + "In response to taking damage, the warlock turns {@condition invisible} and teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks, makes a damage roll, or casts a spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The warlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}): " + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell disguise self}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell speak with animals}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell dimension door}", + "{@spell hold monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 219 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warlock of the Archfey-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Warlock of the Fiend", + "source": "MPMM", + "page": 255, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 10, + "dexterity": 16, + "constitution": 15, + "intelligence": 12, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any two languages (usually Abyssal or Infernal)" + ], + "traits": [ + { + "title": "Dark One's Own Luck (Recharges after a Short or Long Rest)", + "body": [ + "When the warlock makes an ability check or saving throw, it can add a {@dice d10} to the roll. It can do this after the roll is made but before any of the roll's effects occur." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warlock makes three Scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 14 ({@damage 4d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellfire", + "body": [ + "Green flame explodes in a 10-foot-radius sphere centered on a point within 120 feet of the warlock. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage and 11 ({@damage 2d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Fiendish Rebuke (3/Day)", + "body": [ + "In response to being damaged by a visible creature within 60 feet of it, the warlock forces that creature to make a {@dc 15} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The warlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 15}): " + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell plane shift}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 219 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warlock of the Fiend-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Warlock of the Great Old One", + "source": "MPMM", + "page": 256, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 16, + "constitution": 15, + "intelligence": 12, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any two languages", + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Whispering Aura", + "body": [ + "At the start of each of the warlock's turns, each creature of its choice within 10 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage, provided that the warlock isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warlock makes two Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Howling Void", + "body": [ + "The warlock opens a momentary extraplanar rift within 60 feet of it. The rift is a scream-filled, 20-foot cube. Each creature in that area must make a {@dc 15} Wisdom saving throw. On a failed save, a creature takes 9 ({@damage 2d8}) psychic damage and is {@condition frightened} of the warlock until the start of the warlock's next turn. On a successful save, a creature takes half as much damage and isn't {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The warlock casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 15}): " + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell guidance}", + "{@spell levitate}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell arcane gate}", + "{@spell detect thoughts}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 220 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warlock of the Great Old One-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Warlord", + "source": "MPMM", + "page": 257, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 229, + "formula": "27d8 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 20, + "dexterity": 16, + "constitution": 18, + "intelligence": 12, + "wisdom": 12, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "dex": "+7", + "con": "+8" + }, + "languages": [ + "any two languages" + ], + "traits": [ + { + "title": "Indomitable (3/Day)", + "body": [ + "The warlord can reroll a saving throw it fails. It must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Survivor", + "body": [ + "The warlord regains 10 hit points at the start of its turn if it has fewer than half its hit points but at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warlord makes two Greatsword or Short bow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Command Ally", + "body": [ + "The warlord targets one ally it can see within 30 feet of it. If the target can see and hear the warlord, the target can make one weapon attack as a reaction and gains advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weapon Attack", + "body": [ + "The warlord makes one Greatsword or Shortbow attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frighten Foe (Costs 2 Actions)", + "body": [ + "The warlord targets one creature it can see within 30 feet of it. If the target can see and hear it, the target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} until the end of warlord's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 220 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warlord-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Wastrilith", + "source": "MPMM", + "page": 258, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 80, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 19, + "dexterity": 18, + "constitution": 21, + "intelligence": 19, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "saves": { + "str": "+9", + "con": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The wastrilith can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupt Water", + "body": [ + "At the start of each of the wastrilith's turns, exposed water within 30 feet of it is befouled. Underwater, this effect lightly obscures the area until a current clears it away. Water in containers remains corrupted until it evaporates.", + "A creature that consumes this foul water or swims in it must make a {@dc 18} Constitution saving throw. On a successful save, the creature is immune to the foul water for 24 hours. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and is {@condition poisoned} for 1 minute. At the end of this time, the {@condition poisoned} creature must repeat the saving throw. On a failure, the creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} until it finishes a long rest.", + "If another demon drinks the foul water as an action, it gains 11 ({@dice 2d10}) temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The wastrilith has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wastrilith makes one Bite attack and two Claw attacks, and it uses Grasping Spout." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}30 ({@damage 4d12 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Spout", + "body": [ + "The wastrilith magically launches a spout of water at one creature it can see within 60 feet of it. The target must make a {@dc 17} Strength saving throw, and it has disadvantage if it's underwater. On a failed save, it takes 22 ({@damage 4d8 + 4}) acid damage and is pulled up to 60 feet toward the wastrilith. On a successful save, it takes half as much damage and isn't pulled." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Undertow", + "body": [ + "If the wastrilith is underwater, it causes all water within 60 feet of it to be {@quickref difficult terrain||3} for other creatures until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 139 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Wastrilith-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Water Elemental Myrmidon", + "source": "MPMM", + "page": 123, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 14, + "constitution": 16, + "intelligence": 8, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "one language of its creator's choice" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes three Trident attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) force damage, or 8 ({@damage 1d8 + 4}) force damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Strikes {@recharge}", + "body": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 5 ({@damage 1d10}) cold damage. A target that is hit by one or more of these attacks has its speed reduced by 10 feet until the end of the myrmidon's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 203 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Water Elemental Myrmidon-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "White Abishai", + "source": "MPMM", + "page": 41, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 11, + "constitution": 18, + "intelligence": 11, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "saves": { + "str": "+6", + "con": "+7" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of its turn, the abishai can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes one Bite attack, one Claw attack, and one Longsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) force damage, or 8 ({@damage 1d10 + 3}) force damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Vicious Reprisal", + "body": [ + "In response to taking damage, the abishai makes one Bite attack against a random creature within 5 feet of it. If no creature is within reach, the abishai moves up to half its speed toward an enemy it can see, without provoking {@action opportunity attack||opportunity attacks}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 163 + }, + { + "source": "CoA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "White Abishai-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Winter Eladrin", + "source": "MPMM", + "page": 117, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 165, + "formula": "22d8 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 11, + "dexterity": 16, + "constitution": 16, + "intelligence": 18, + "wisdom": 17, + "charisma": 13, + "passive": 13, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sorrowful Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 13} Wisdom saving throw. On a failed save, the creature becomes {@condition charmed} by the eladrin for 1 minute. While {@condition charmed} in this way, the creature has disadvantage on ability checks and saving throws. The {@condition charmed} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Sorrowful Presence for the next 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eladrin makes two Longsword or Longbow attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) slashing damage, or 5 ({@damage 1d10}) slashing damage if used with two hands, plus 13 ({@damage 3d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 13 ({@damage 3d8}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fey Step {@recharge 4}", + "body": [ + "The eladrin teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Frigid Rebuke", + "body": [ + "When the eladrin takes damage from a creature the eladrin can see within 60 feet of it, the eladrin can force that creature to make a {@dc 16} Constitution saving throw. On a failed save, the creature takes 11 ({@damage 2d10}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The eladrin casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell sleet storm}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 197 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Winter Eladrin-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Wood Woad", + "source": "MPMM", + "page": 266, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 12, + "constitution": 16, + "intelligence": 10, + "wisdom": 13, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Sylvan" + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The wood woad has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The wood woad regains 10 hit points at the start of its turn if it is in contact with the ground. If the wood woad takes fire damage, this trait doesn't function at the start of the wood woad's next turn. The wood woad dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tree Stride", + "body": [ + "Once on each of its turns, the wood woad can use 10 feet of its movement to step magically into one living tree within 5 feet of it and emerge from a second living tree within 60 feet of it that it can see, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wood woad makes two Club attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 198 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wood Woad-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Wretched Sorrowsworn", + "source": "MPMM", + "page": 224, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "4d6 - 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 12, + "constitution": 9, + "intelligence": 5, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Wretched Pack Tactics", + "body": [ + "The sorrowsworn has advantage on an attack roll against a creature if at least one of the sorrowsworn's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}. The sorrowsworn otherwise has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage, and the sorrowsworn attaches to the target. While attached, the sorrowsworn can't attack, and at the start of each of the sorrowsworn's turns, the target takes 6 ({@damage 1d10 + 1}) necrotic damage.", + "The attached sorrowsworn moves with the target whenever the target moves, requiring none of the sorrowsworn's movement. The sorrowsworn can detach itself by spending 5 feet of its movement on its turn. A creature, including the target, can use its action to detach the sorrowsworn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 233 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wretched Sorrowsworn-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Xvart", + "source": "MPMM", + "page": 267, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 8, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Abyssal" + ], + "traits": [ + { + "title": "Raxivort's Tongue", + "body": [ + "The xvart can communicate with ordinary {@creature bat|mm|bats} and {@creature rat|mm|rats}, as well as {@creature giant bat|mm|giant bats} and {@creature giant rat|mm|giant rats}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If at least one of the xvart's allies is within 5 feet of the target, the xvart can push the target 5 feet if the target is a Medium or smaller creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Low Cunning", + "body": [ + "The xvart takes the {@action Disengage} action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 200 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Xvart-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Xvart Warlock of Raxivort", + "source": "MPMM", + "page": 267, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 14, + "constitution": 12, + "intelligence": 8, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Abyssal" + ], + "traits": [ + { + "title": "Raxivort's Blessing", + "body": [ + "When the xvart reduces an enemy to 0 hit points, the xvart gains 4 temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raxivort's Tongue", + "body": [ + "The xvart can communicate with ordinary {@creature bat|mm|bats} and {@creature rat|mm|rats}, as well as {@creature giant bat|mm|giant bats} and {@creature giant rat|mm|giant rats}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The xvart makes two Scimitar or Raxivort's Bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raxivort's Bite", + "body": [ + "{@atk rs} {@hit 3} to hit, range 30 ft., one creature. {@h}7 ({@damage 1d10 + 2}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Low Cunning", + "body": [ + "The xvart takes the {@action Disengage} action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The xvart casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell burning hands}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 200 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Xvart Warlock of Raxivort-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yagnoloth", + "source": "MPMM", + "page": 268, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 19, + "dexterity": 14, + "constitution": 21, + "intelligence": 16, + "wisdom": 15, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+7", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The yagnoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yagnoloth makes one Electrified Touch attack and one Massive Arm attack, or it makes one Massive Arm attack and uses Battlefield Cunning, if available, or Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Electrified Touch", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}27 ({@damage 6d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Massive Arm", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}23 ({@damage 3d12 + 4}) force damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or become {@condition stunned} until the end of the yagnoloth's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battlefield Cunning {@recharge 4}", + "body": [ + "Up to two allied yugoloths within 60 feet of the yagnoloth that can hear it can use their reactions to make one melee attack each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Leech", + "body": [ + "The yagnoloth touches one {@condition incapacitated} creature within 15 feet of it. The target takes 36 ({@damage 7d8 + 4}) necrotic damage, and the yagnoloth gains temporary hit points equal to half the damage dealt. The target must succeed on a {@dc 16} Constitution saving throw, or its hit point maximum is reduced by an amount equal to half the necrotic damage taken. This reduction lasts until the target finishes a long rest, and the target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The yagnoloth teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The yagnoloth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell lightning bolt}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 252 + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Yagnoloth-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yeenoghu", + "source": "MPMM", + "page": 270, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 333, + "formula": "23d12 + 184", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 29, + "dexterity": 16, + "constitution": 26, + "intelligence": 16, + "wisdom": 24, + "charisma": 15, + "passive": 24, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+15", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Yeenoghu fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Yeenoghu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Yeenoghu makes three Flail attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}22 ({@damage 2d12 + 9}) force damage. If it's his turn, Yeenoghu can cause the target to suffer one of the following additional effects, each of which he can apply only once per turn", + { + "title": "Confusion", + "body": [ + "The target must succeed on a {@dc 17} Wisdom saving throw or be affected by the confusion spell until the start of Yeenoghu's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force", + "body": [ + "The target takes an extra 13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralysis", + "body": [ + "The target must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} until the start of Yeenoghu's next turn." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}20 ({@damage 2d10 + 9}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rampage", + "body": [ + "When Yeenoghu reduces a creature to 0 hit points with a melee attack, he moves up to half his speed and makes one Bite attack." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Charge", + "body": [ + "Yeenoghu moves up to his speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swat Away", + "body": [ + "Yeenoghu makes one Flail attack. If the attack hits, the target must succeed on a {@dc 24} Strength saving throw or be pushed up to 15 feet in a straight line away from Yeenoghu. If the saving throw fails by 5 or more, the target is also knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Savage (Costs 2 Actions)", + "body": [ + "Yeenoghu makes a separate Bite attack against each creature within 10 feet of him." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Yeenoghu casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 155 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Yeenoghu-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yeth Hound", + "source": "MPMM", + "page": 271, + "size_str": "Large", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 17, + "constitution": 16, + "intelligence": 5, + "wisdom": 12, + "charisma": 7, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common, Elvish and Sylvan but can't speak" + ], + "traits": [ + { + "title": "Sunlight Banishment", + "body": [ + "If the yeth hound starts its turn in sunlight, it is transported to the Ethereal Plane. While sunlight shines on the spot from which it vanished, the hound must remain in the Deep Ethereal. After sunset, it returns to the Border Ethereal at the same spot, whereupon it typically sets out to find its pack or its master. The hound is visible on the Material Plane while it is in the Border Ethereal, and vice versa, but it can't affect or be affected by anything on the other plane. Once it is adjacent to its master or a pack mate that is on the Material Plane, a yeth hound in the Border Ethereal can return to the Material Plane as an action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Bond", + "body": [ + "While the yeth hound is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, plus 14 ({@damage 4d6}) psychic damage if the target is {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Baleful Baying", + "body": [ + "The yeth hound bays magically. Every enemy within 300 feet of the hound that can hear it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} of the hound until the end of the hound's next turn or until the hound is {@condition incapacitated}. A {@condition frightened} target that starts its turn within 30 feet of the hound must use all its movement on that turn to get as far from the hound as possible, must finish the move before taking an action, and must take the most direct route, even if hazards lie that way. A target that successfully saves is immune to the baying of all yeth hounds for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 201 + }, + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yeth Hound-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Young Kruthik", + "source": "MPMM", + "page": 168, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 13, + "dexterity": 16, + "constitution": 13, + "intelligence": 4, + "wisdom": 10, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Kruthik" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 2\u00bd-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Stab", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 211 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Kruthik-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Anathema", + "source": "MPMM", + "page": 272, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d12 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 23, + "dexterity": 13, + "constitution": 19, + "intelligence": 19, + "wisdom": 17, + "charisma": 20, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The anathema has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ophidiophobia Aura", + "body": [ + "Any creature of the anathema's choice, other than a snake or a yuan-ti, that starts its turn within 30 feet of the anathema must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of snakes and yuan-ti. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this anathama's aura for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Six Heads", + "body": [ + "The anathema has advantage on saves against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Anathema Form Only)", + "body": [ + "The anathema makes two Claw attacks and one Flurry of Bites attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Anathema Form Only)", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flurry of Bites (Anathema Form Only)", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one creature. {@h}27 ({@damage 6d6 + 6}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict (Snake Form Only)", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}, and it takes 16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage at the start of each of its turns. The anathema can constrict only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The anathema transforms into a Huge constrictor snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Anathema Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Anathema Form Only)", + "body": [ + "The anathema casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell darkness}", + "{@spell entangle}", + "{@spell fear}", + "{@spell polymorph}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 202 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Anathema-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Broodguard", + "source": "MPMM", + "page": 273, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 14, + "constitution": 14, + "intelligence": 6, + "wisdom": 11, + "charisma": 4, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "dex": "+4", + "wis": "+2" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Reckless", + "body": [ + "At the start of its turn, the broodguard can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The broodguard makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 203 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Broodguard-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Mind Whisperer", + "source": "MPMM", + "page": 274, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the yuan-ti's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sseth's Blessing", + "body": [ + "When the yuan-ti reduces an enemy to 0 hit points, the yuan-ti gains 9 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yuan-ti makes two Bite attacks and one Scimitar attack, or it makes two Spectral Fangs attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Fangs", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}16 ({@damage 3d8 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The yuan-ti transforms into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)", + "{@spell message}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell detect thoughts}", + "{@spell hypnotic pattern}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 204 + } + ], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Mind Whisperer-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Nightmare Speaker", + "source": "MPMM", + "page": 275, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the yuan-ti's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yuan-ti makes one Constrict attack and one Scimitar attack, or it makes two Spectral Fangs attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}. The yuan-ti can constrict only one creature at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Fangs", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}16 ({@damage 3d8 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invoke Nightmare (Recharges after a Short or Long Rest)", + "body": [ + "The yuan-ti taps into the nightmares of one creature it can see within 60 feet of it and creates an illusory, immobile manifestation of the creature's deepest fears, visible only to that creature.", + "The target must make a {@dc 13} Intelligence saving throw. On a failed save, the target takes 22 ({@damage 4d10}) psychic damage and is {@condition frightened} of the manifestation, believing it to be real. The yuan-ti must concentrate to maintain the illusion (as if {@status concentration||concentrating} on a spell), which lasts for up to 1 minute and can't be harmed. The target can repeat the saving throw at the end of each of its turns, ending the illusion on a success or taking 11 ({@damage 2d10}) psychic damage on a failure." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The yuan-ti transforms into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell darkness}", + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 205 + } + ], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Nightmare Speaker-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Pit Master", + "source": "MPMM", + "page": 276, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the yuan-ti's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yuan-ti makes three Bite attacks or two Spectral Fangs attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Fangs", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}16 ({@damage 3d8 + 3}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Merrshaulk's Slumber (1/Day)", + "body": [ + "The yuan-ti targets up to five creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 13} Constitution saving throw or fall into a magical sleep and be {@condition unconscious} for 10 minutes. A sleeping target awakens if it takes damage or if someone uses an action to shake or slap it awake. This magical sleep has no effect on a creature immune to being {@condition charmed}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The yuan-ti transforms into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell hold person}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VGM", + "page": 206 + } + ], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Pit Master-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Zaratan", + "source": "MPMM", + "page": 278, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 307, + "formula": "15d20 + 150", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 30, + "dexterity": 10, + "constitution": 30, + "intelligence": 2, + "wisdom": 21, + "charisma": 18, + "passive": 15, + "saves": { + "wis": "+12", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the zaratan fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The elemental deals double damage to objects and structures (included in Earth-Shaking Movement)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zaratan makes one Bite attack and one Stomp attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}26 ({@damage 3d10 + 10}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Rock", + "body": [ + "{@atk rw} {@hit 17} to hit, range 120 ft./240 ft., one target. {@h}31 ({@damage 6d8 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spew Debris {@recharge 5}", + "body": [ + "The zaratan exhales rocky debris in a 90-foot cube. Each creature in that area must make a {@dc 25} Dexterity saving throw. A creature takes 33 ({@damage 6d10}) bludgeoning damage on a failed save, or half as much damage on a successful one. A creature that fails the save by 5 or more is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Earth-Shaking Movement", + "body": [ + "After moving at least 10 feet on the ground, the zaratan sends a shock wave through the ground in a 120-foot-radius circle centered on itself. That area becomes {@quickref difficult terrain||3} for 1 minute. Each creature on the ground that is {@status concentration||concentrating} must succeed on a {@dc 25} Constitution saving throw or the creature's {@status concentration} is broken. The shock wave deals 100 thunder damage to all structures in contact with the ground in the area. If a creature is near a structure that collapses, the creature might be buried; a creature within half the distance of the structure's height must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 17 ({@damage 5d6}) bludgeoning damage, is knocked {@condition prone}, and is trapped in the rubble. A trapped creature is {@condition restrained}, requiring a successful {@dc 20} Strength ({@skill Athletics}) check as an action to escape. Another creature within 5 feet of the buried creature can use its action to clear rubble and grant advantage on the check. If three creatures use their actions in this way, the check is an automatic success. On a successful save, the creature takes half as much damage and doesn't fall {@condition prone} or become trapped." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Stomp", + "body": [ + "The zaratan makes one Stomp attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The zaratan moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit (Costs 2 Actions)", + "body": [ + "The zaratan makes one Spit Rock attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Retract (Costs 2 Actions)", + "body": [ + "The zaratan retracts into its shell. Until it takes its Emerge action, it has resistance to all damage, and it is {@condition restrained}. The next time it takes a legendary action, it must take its Revitalize or Emerge action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Revitalize (Costs 2 Actions)", + "body": [ + "The zaratan can use this option only if it is retracted in its shell. It regains 52 ({@dice 5d20}) hit points. The next time it takes a legendary action, it must take its Emerge action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Emerge (Costs 2 Actions)", + "body": [ + "The zaratan emerges from its shell and makes one Spit Rock attack. It can use this option only if it is retracted in its shell." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 201 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zaratan-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Zariel", + "source": "MPMM", + "page": 280, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 420, + "formula": "29d10 + 261", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 150, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 27, + "dexterity": 24, + "constitution": 28, + "intelligence": 26, + "wisdom": 27, + "charisma": 30, + "passive": 26, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+16", + "wis": "+16", + "cha": "+18" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede Zariel's {@sense darkvision}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Zariel fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Zariel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Zariel regains 20 hit points at the start of her turn. If she takes radiant damage, this trait doesn't function at the start of her next turn. Zariel dies only if she starts her turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zariel makes three Flail or Longsword attacks. She can replace one attack with a use of Horrid Touch, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) force damage plus 36 ({@damage 8d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) radiant damage, or 19 ({@damage 2d10 + 8}) radiant damage when used with two hands, plus 36 ({@damage 8d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrid Touch {@recharge 5}", + "body": [ + "Zariel touches one creature within 10 feet of her. The target must succeed on a {@dc 26} Constitution saving throw or take 44 ({@damage 8d10}) necrotic damage and be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is {@condition blinded} and {@condition deafened}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Zariel teleports, along with any equipment she is wearing or carrying, up to 120 feet to an unoccupied space she can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Teleport", + "body": [ + "Zariel uses Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immolating Gaze (Costs 2 Actions)", + "body": [ + "Zariel turns her magical gaze toward one creature she can see within 120 feet of her and commands it to burn. The target must succeed on a {@dc 26} Wisdom saving throw or take 22 ({@damage 4d10}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Zariel casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 26}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing her appearance)", + "{@spell detect evil and good}", + "{@spell fireball}", + "{@spell invisibility} (self only)", + "{@spell major image}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell finger of death}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 180 + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Zariel-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Zuggtmoy", + "source": "MPMM", + "page": 281, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 304, + "formula": "32d10 + 128", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 22, + "dexterity": 15, + "constitution": 18, + "intelligence": 20, + "wisdom": 19, + "charisma": 24, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+11", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Zuggtmoy fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Zuggtmoy has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zuggtmoy makes three Pseudopod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit +13} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) force damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Infestation Spores (3/Day)", + "body": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Any creature in the cloud when it appears, or that enters it later, must make a {@dc 19} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy, which lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a {@creature quaggoth spore servant||spore servant} if it's a type of creature that can be." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Control Spores {@recharge 5}", + "body": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Humanoids and Beasts in the cloud when it appears, or that enter it later, must make a {@dc 19} Wisdom saving throw. On a successful save, a creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the influence of Zuggtmoy for 24 hours. While infected in this way, the creature is {@condition charmed} by her and can't be reinfected by these spores." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protective Thrall", + "body": [ + "When Zuggtmoy is hit by an attack roll, one creature within 10 feet of her that is {@condition charmed} by her is hit by the attack instead." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Zuggtmoy makes one Pseudopod attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Exert Will", + "body": [ + "One creature {@condition charmed} by Zuggtmoy that she can see must use its reaction, if a available, to move up to its speed as she directs or to make one weapon attack against a target that she designates." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Zuggtmoy casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell locate animals or plants}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell entangle}", + "{@spell plant growth}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell etherealness}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MTF", + "page": 157 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Zuggtmoy-MPMM", + "__dataclass__": "Monster" + }, + { + "name": "Abhorrent Overlord", + "source": "MOT", + "page": 219, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 18, + "constitution": 16, + "intelligence": 15, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Insatiable Greed", + "body": [ + "The abhorrent overlord can sense the presence of gold within 1,000 feet of itself. It can determine which location has the greatest amount of gold and can sense the direction to that site. If the gold is being moved, it knows the direction of the movement. It can't locate gold if any thickness of clay or lead, even a thin sheet, blocks a direct path between it and the gold." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abhorrent overlord has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abhorrent overlord makes two attacks with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage plus 14 ({@damage 4d6}) necrotic damage. The abhorrent overlord regains hit points equal to half the amount of necrotic damage dealt if the target is a creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Storm of Crows {@recharge}", + "body": [ + "The abhorrent overlord conjures a swarm of spectral crows and harpies in a 20-foot-radius sphere centered on a point the overlord can see within 120 feet of it. The sphere remains for 1 minute or until the overlord loses {@status concentration} (as if {@status concentration||concentrating} on a spell), and its area is lightly obscured and {@quickref difficult terrain||3}.", + "Any creature that moves into the area for the first time on a turn or starts its turn there must make a {@dc 15} Constitution saving throw. A creature takes 16 ({@damage 3d10}) slashing damage plus 16 ({@damage 3d10}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The abhorrent overlord's spellcasting ability is Charisma (spell save {@dc 15}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell crown of madness}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Abhorrent Overlord-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Akroan Hoplite", + "source": "MOT", + "page": 228, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item breastplate|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 16, + "constitution": 14, + "intelligence": 11, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "saves": { + "str": "+5", + "dex": "+5" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Hold the Line", + "body": [ + "While the hoplite is holding a spear, other creatures provoke an opportunity attack from the hoplite when they move within 5 feet of it. When the hoplite hits a creature with an opportunity attack using its spear, the creature takes an extra 4 ({@damage 1d8}) piercing damage, and the creature's speed becomes 0 for the rest of the turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hoplite makes three melee attacks or two ranged attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft., or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield Bash", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Akroan Hoplite-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Alseid", + "source": "MOT", + "page": 235, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 10, + "constitution": 12, + "intelligence": 13, + "wisdom": 14, + "charisma": 18, + "passive": 12, + "skills": { + "skills": [ + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Hide in Plain Sight", + "body": [ + "The alseid has advantage on Dexterity ({@skill Stealth}) checks made to hide while it is in grassland." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The alseid has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The alseid makes two radiant touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The alseid's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell cure wounds}", + "{@spell charm person}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}", + "{@spell lesser restoration}", + "{@spell plant growth}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Alseid-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Anvilwrought Raptor", + "source": "MOT", + "page": 209, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d4 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 3, + "wisdom": 14, + "charisma": 1, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The raptor has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Recorded Mimicry", + "body": [ + "The raptor can mimic any sound, including voices, it has heard in the last 24 hours. A creature that hears the sounds can tell they are imitations with a successful {@dc 12} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The raptor makes two attacks with its beak." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Anvilwrought Raptor-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Aphemia", + "source": "MOT", + "page": 226, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 13, + "dexterity": 16, + "constitution": 15, + "intelligence": 13, + "wisdom": 14, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Aphemia fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Aphemia has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Aphemia makes two attacks: one with her bite and one with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Discordant Song", + "body": [ + "Aphemia shrieks a cacophony of magical sounds. Each humanoid within 120 feet of her must succeed on a {@dc 14} Wisdom saving throw or be {@condition frightened} of her until the song ends. A {@condition frightened} creature takes 7 ({@damage 2d6}) psychic damage at the start of its turn while Aphemia is singing. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Aphemia's Discordant Song for the next 24 hours. Aphemia must take a bonus action on her subsequent turns to continue singing. She can stop singing at any time. The song ends if Aphemia is {@condition incapacitated} or dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grave Calling Song", + "body": [ + "Aphemia intones a low, growling magical melody. Every undead within 300 feet of her must succeed on a {@dc 14} Wisdom saving throw or fall under her control until the song ends. Aphemia must take a bonus action on her subsequent turns to continue singing, and she can mentally command the undead under her control as part of the same bonus action. She can stop singing at any time. The song ends if Aphemia is {@condition incapacitated} or dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aphemia-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Arasta", + "source": "MOT", + "page": 248, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 24, + "dexterity": 16, + "constitution": 23, + "intelligence": 15, + "wisdom": 22, + "charisma": 17, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+13", + "wis": "+13" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Celestial", + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Armor of Spiders (Mythic Trait; Recharges after a Short or Long Rest)", + "body": [ + "If Arasta is reduced to 0 hit points, she doesn't die or fall {@condition unconscious}. Instead, she regains 200 hit points. In addition, Arasta's children immediately swarm over her body to protect her, granting her 100 temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Arasta fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Arasta has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Arasta can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "Arasta ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Arasta makes three attacks: one with her bite and two with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one creature. {@h}20 ({@damage 3d8 + 7}) piercing damage, and the target must make a {@dc 21} Constitution saving throw, taking 32 ({@damage 5d12}) poison damage on a failed save, or half as much damage on a successful one. If the damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web of Hair {@recharge 4}", + "body": [ + "Arasta unleashes her hair in the form of webbing that fills a 30-foot cube next to her. The web is {@quickref difficult terrain||3}, its area is lightly obscured, and it lasts for 1 minute. Any creature that moves into the web or that starts its turn there must make a {@dc 21} Dexterity saving throw. On a failed save, the creature is {@condition restrained} while in the web. A creature can use an action to make a {@dc 21} Strength check. On a success, it can free itself or a creature within 5 feet of it that is {@condition restrained} by the web. This webbing is immune to all damage except magical fire. A 5-foot cube of the web is destroyed if it takes at least 20 fire damage from a spell or other magical source on a single turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claws", + "body": [ + "Arasta makes one attack with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm (Costs 2 Actions)", + "body": [ + "Arasta causes two {@creature swarm of spiders||swarms of spiders} to appear in unoccupied spaces within 5 feet of her." + ], + "__dataclass__": "Entry" + }, + { + "title": "Toxic Web (Costs 3 Actions)", + "body": [ + "Each creature {@condition restrained} by Arasta's Web of Hair takes 18 ({@damage 4d8}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Arasta-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Archon of Falling Stars", + "source": "MOT", + "page": 212, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 20, + "dexterity": 15, + "constitution": 19, + "intelligence": 15, + "wisdom": 21, + "charisma": 19, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+8", + "wis": "+9", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The archon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mount", + "body": [ + "If the archon isn't mounted, it can use a bonus action to magically teleport onto the creature serving as its mount, provided the archon and its mount are on the same plane of existence. When it teleports, the archon appears astride the mount, along with any equipment it is wearing or carrying. While mounted and not {@condition incapacitated}, the archon can't be {@status surprised}, and both it and its mount have advantage on Dexterity saving throws. If the archon is reduced to 0 hit points while riding its mount, the mount is reduced to 0 hit points as well." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Rebirth (Recharges after a Long Rest)", + "body": [ + "If the archon is reduced to 0 hit points, it regains 30 hit points and springs back to its feet with a burst of radiance. Each creature of the archon's choice within 30 feet of it must succeed on a {@dc 16} Constitution saving throw, or the creature takes 13 ({@damage 3d8}) radiant damage and is {@condition blinded} until the start of the archon's turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archon makes two attacks with its radiant spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Spear", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 10 ({@damage 3d6}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The archon makes a radiant spear attack or casts {@spell guiding bolt}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Coordinated Assault (Costs 2 Actions)", + "body": [ + "The archon makes a radiant spear attack, and then its mount can use its reaction to make a melee weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Return to Nyx (Costs 3 Actions)", + "body": [ + "The archon causes a corpse it can see within 30 feet of it to burst into a shower of radiant stars leaving no trace of it behind. Everything it is wearing or carrying remains. Each creature within 10 feet of the corpse when it bursts must succeed on a {@dc 16} Dexterity saving throw or take 22 ({@damage 4d10}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The archon's spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). The archon can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell guiding bolt}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell crusader's mantle}", + "{@spell spirit guardians}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Archon of Falling Stars-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Ashen Rider", + "source": "MOT", + "page": 213, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "21d8 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 20, + "dexterity": 16, + "constitution": 19, + "intelligence": 15, + "wisdom": 21, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "con": "+9", + "wis": "+10", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Aura of Silence", + "body": [ + "When a creature starts its turn within 30 feet of the ashen rider, the rider can force that creature to make a {@dc 18} Wisdom saving throw if the rider can see it. On a successful save, the creature is immune to this aura for the next 24 hours. On a failed save, the creature can't speak and is {@condition deafened} until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mount", + "body": [ + "If the ashen rider isn't mounted, it can use a bonus action to magically teleport onto the creature serving as its mount, provided the ashen rider and its mount are on the same plane of existence. When it teleports, the ashen rider appears astride the mount along with any equipment it is wearing or carrying.", + "While mounted and not {@condition incapacitated}, the ashen rider can't be {@status surprised}, and both it and its mount have advantage on Dexterity saving throws. If the ashen rider is reduced to 0 hit points while riding its mount, the mount is reduced to 0 hit points as well." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ashen rider makes three attacks with its ashen blade or two attacks with its bolt of ash." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ashen Blade", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage plus 13 ({@damage 2d12}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt of Ash", + "body": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one creature. {@h}22 ({@damage 4d10}) necrotic damage, and the target can't regain hit points until the start of the ashen rider's next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The ashen rider makes an attack using its ashen blade or bolt of ash." + ], + "__dataclass__": "Entry" + }, + { + "title": "Coordinated Assault (Costs 2 Actions)", + "body": [ + "The ashen rider makes an attack using its ashen blade or bolt of ash, and then its mount can use its reaction to make a melee weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reduce to Ash (Costs 3 Actions)", + "body": [ + "The ashen rider targets a creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Constitution saving throw, or it takes 27 ({@damage 5d10}) necrotic damage and its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. If the target's hit point maximum is reduced to 0, its body and everything it is wearing and carrying, except for magic items, are reduced to ash. A creature reduced to ash can't be revived by any means short of a {@spell wish} spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The ashen rider's spellcasting ability is Wisdom (spell save {@dc 18}). The rider can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell compelled duel}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell blade barrier}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ashen Rider-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Blood-Toll Harpy", + "source": "MOT", + "page": 227, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 12, + "dexterity": 13, + "constitution": 10, + "intelligence": 6, + "wisdom": 11, + "charisma": 13, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The harpy has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dark Devotion", + "body": [ + "The harpy has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The harpy makes two melee attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blood-Toll Harpy-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Broken King Antigonos", + "source": "MOT", + "page": 189, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "9d10 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 11, + "constitution": 16, + "intelligence": 6, + "wisdom": 16, + "charisma": 9, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If Antigonos moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Labyrinthine Recall", + "body": [ + "Antigonos can perfectly recall any path he has traveled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of his turn, Antigonos can gain advantage on all melee weapon attack rolls he makes during that turn, but attack rolls against him have advantage until the start of his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Decrepit State", + "body": [ + "Antigonos has disadvantage on his attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amphora", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one Medium or smaller creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If there is not already a creature inside the amphora, the target is {@condition restrained} inside. As an action, the {@condition restrained} creature can make a {@dc 14} Dexterity ({@skill Acrobatics}) check, escaping from the amphora on a success. The effect also ends if the amphora is destroyed. The amphora has AC 8, 20 hit points, and immunity to poison and psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Broken King Antigonos-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Bronze Sable", + "source": "MOT", + "page": 210, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 16, + "constitution": 15, + "intelligence": 3, + "wisdom": 14, + "charisma": 1, + "passive": 12, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the sable remains motionless, it is indistinguishable from a normal statue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The sable has advantage on an attack roll against a creature if at least one of the sable's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Surprise Attack", + "body": [ + "If the sable surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 ({@damage 3d6}) damage from the attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sable makes two bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bronze Sable-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Burnished Hart", + "source": "MOT", + "page": 211, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 14, + "constitution": 16, + "intelligence": 3, + "wisdom": 15, + "charisma": 1, + "passive": 12, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the hart moves at least 20 feet straight toward a target and then hits it with an antlers attack on the same turn, the target takes an extra 7 ({@damage 2d6}) fire damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heated Body", + "body": [ + "A creature that touches the hart or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The hart has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hart makes two attacks: one with its antlers and one with its hooves." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antlers", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Burnished Hart-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Colossus of Akros", + "source": "MOT", + "page": 218, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 350, + "formula": "20d20 + 140", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 28, + "dexterity": 10, + "constitution": 25, + "intelligence": 3, + "wisdom": 11, + "charisma": 1, + "passive": 17, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+16", + "con": "+14" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Common and Celestial but can't speak" + ], + "traits": [ + { + "title": "Crumbling Destruction", + "body": [ + "When the colossus drops to 0 hit points, it crumbles and is destroyed. Any creature on the ground within 30 feet of the crumbling statue must make a {@dc 22} Dexterity saving throw, taking 22 ({@damage 4d10}) bludgeoning damage and 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Absorption", + "body": [ + "Whenever the colossus is subjected to fire damage, it takes no damage and instead regains a number of hit points equal to the fire damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The colossus is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The colossus's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The colossus deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The colossus of Akros makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 16} to hit, reach 15 ft., or range 200/600 ft., one target. {@h}23 ({@damage 4d6 + 9}) piercing damage, or 27 ({@damage 4d8 + 9}) piercing damage if used with two hands to make a melee attack. If the colossus makes a ranged attack with this spear, the spear magically returns to its hand after the attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sword", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}36 ({@damage 6d8 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flames of Akros {@recharge}", + "body": [ + "Magical flames issue from the colossus toward up to three creatures the colossus can see within 90 feet of it. Each target must make a {@dc 24} Dexterity saving throw, taking 36 ({@damage 8d8}) fire damage on a failed save, or half as much damage on a successful one. On a failed save, a target also magically catches fire for 1 minute. At the end of each of its turns thereafter, the burning target repeats the saving throw. It takes 18 ({@damage 4d8}) fire damage on a failed save, and the effect ends on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Colossus of Akros-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Doomwake Giant", + "source": "MOT", + "page": 224, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "13d12 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 24, + "dexterity": 12, + "constitution": 22, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Aura of Erebos", + "body": [ + "Any creature that starts its turn within 10 feet of the giant must succeed on a {@dc 18} Constitution saving throw, or it takes 10 ({@damage 3d6}) necrotic damage and can't regain hit points until the start of its next turn. On a successful saving throw, the creature is immune to the giant's Aura of Erebos for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The giant has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noxious Gust {@recharge 5}", + "body": [ + "The giant exhales a mighty gust that creates a blast of deadly mist in a 60-foot line that is 10 feet wide. Each creature in that line must make a {@dc 18} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) necrotic damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Doomwake Giant-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Eater of Hope", + "source": "MOT", + "page": 220, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 17, + "constitution": 14, + "intelligence": 12, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Insatiable Greed", + "body": [ + "The eater of hope can sense the presence of gold within 1,000 feet of itself. It can determine which location has the greatest amount of gold and can sense the direction to that site. If the gold is being moved, it knows the direction of the movement. It can't locate gold if any thickness of clay or lead, even a thin sheet, blocks a direct path between it and the gold." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eater of hope has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eater of hope makes two attacks with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath of Hopelessness {@recharge 5}", + "body": [ + "The eater of hope exhales a miasma of Underworld winds in a 30-foot cone. Each creature in that area must make a {@dc 14} Charisma saving throw. On a failed save, the target takes 26 ({@damage 4d12}) necrotic damage and is cursed for 1 minute. While cursed in this way, the target takes an extra 6 ({@damage 1d12}) necrotic damage whenever the eater of hope hits it with an attack. On a successful save, the target takes half as much damage and isn't cursed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eater of Hope-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Fleecemane Lion", + "source": "MOT", + "page": 223, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 16, + "constitution": 14, + "intelligence": 6, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+4" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The lion has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the lion moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the lion can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Running Leap", + "body": [ + "With a 10-foot running start, the lion can long jump up to 25 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Turning", + "body": [ + "The lion has advantage on saving throws against any spell that targets only the lion (not an area). If the lion's saving throw succeeds and the spell is of 4th level or lower, the spell has no effect on the lion and instead targets the caster." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lion makes two attacks: one with its bite and one with its claw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The lion makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roar (Costs 2 Actions)", + "body": [ + "The lion emits a magical roar. Each creature within 60 feet of the lion that can hear the roar must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} of the lion until the end of the lion's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fleecemane Lion-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Flitterstep Eidolon", + "source": "MOT", + "page": 222, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 18, + "constitution": 13, + "intelligence": 11, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Blurred Form", + "body": [ + "Attack rolls against the eidolon are made with disadvantage unless the eidolon is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If the eidolon is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the eidolon instead takes no damage if it succeeds on the saving throw, and only half damage if it fails. It can't use this trait if it's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The eidolon has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eidolon makes two melee attacks. Immediately before or after one of its attacks, it can use Flitterstep if it is available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flickering Dagger", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flitterstep {@recharge 5}", + "body": [ + "The eidolon magically teleports to an unoccupied space it can see within 30 feet of it. If it makes an attack immediately after teleporting, it has advantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flitterstep Eidolon-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Ghostblade Eidolon", + "source": "MOT", + "page": 222, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 15, + "constitution": 12, + "intelligence": 13, + "wisdom": 12, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Blurred Form", + "body": [ + "Attack rolls against the eidolon are made with disadvantage unless the eidolon is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The eidolon has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eidolon makes two ghostblade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ghostblade", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 3}) slashing damage plus 11 ({@damage 2d10}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ghostblade Eidolon-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Gold-Forged Sentinel", + "source": "MOT", + "page": 211, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d10 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 13, + "constitution": 19, + "intelligence": 3, + "wisdom": 16, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the sentinel moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 10 ({@damage 3d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Turning", + "body": [ + "The sentinel has advantage on saving throws against any spell that targets only the sentinel (not an area). If the sentinel's saving throw succeeds and the spell is of 4th level or lower, the spell has no effect on the sentinel and instead targets the caster." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sentinel makes two ram attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "The sentinel exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 27 ({@damage 6d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gold-Forged Sentinel-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Hippocamp", + "source": "MOT", + "page": 227, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 15, + "constitution": 11, + "intelligence": 5, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The hippocamp can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charge", + "body": [ + "If the hippocamp moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 7 ({@damage 2d6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hippocamp-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Hundred-Handed One", + "source": "MOT", + "page": 225, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 243, + "formula": "18d12 + 126", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 26, + "dexterity": 15, + "constitution": 25, + "intelligence": 14, + "wisdom": 16, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "wis": "+8" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Reactive", + "body": [ + "The giant can take one reaction on every turn in a combat." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vigilant", + "body": [ + "The giant can't be {@status surprised}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes four longsword attacks or two rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Attack", + "body": [ + "The giant adds 5 to its AC against one weapon attack that would hit it. To do so, the giant must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hundred-Handed One-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Hythonia", + "source": "MOT", + "page": 252, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 199, + "formula": "21d10 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 21, + "dexterity": 17, + "constitution": 19, + "intelligence": 14, + "wisdom": 16, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "con": "+10", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Hythonia fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Gaze", + "body": [ + "When a creature that can see Hythonia's eyes starts its turn within 30 feet of her, Hythonia can force it to make a {@dc 18} Constitution saving throw if she isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, on a failed save the creature begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the {@spell greater restoration} spell or other magic. Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see Hythonia until the start of its next turn, when it can avert its eyes again. If the creature looks at Hythonia in the meantime, it must immediately make the save. If Hythonia sees herself reflected on a polished surface within 30 feet of her and in an area of bright light, she is affected by her own gaze." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shed Skin (Mythic Trait; Recharges after a Short or Long Rest)", + "body": [ + "If Hythonia is reduced to 0 hit points, she doesn't die or fall {@condition unconscious}. Instead, she sheds her skin, regains 199 hit points, and moves up to her speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hythonia makes three attacks: one with her claws, one to constrict, and one with her snaky hair." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage plus 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained} and takes 15 ({@damage 3d6 + 5}) bludgeoning damage at the start of each of its turns, and Hythonia can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snaky Hair", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}31 ({@damage 4d12 + 5}) bludgeoning damage, and Hythonia can pull the target up to 5 feet closer to her if it is a Large or smaller creature." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "Hythonia moves up to her speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snaky Hair", + "body": [ + "Hythonia makes one attack with her snaky hair." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrified Earth (Costs 2 Actions)", + "body": [ + "Hythonia causes stone spikes to erupt from the ground in a 30-foot radius centered on her. The area becomes {@quickref difficult terrain||3} until the start of her next turn. Any creature, other than Hythonia, takes 9 ({@damage 2d8}) piercing damage for every 5 feet it moves on those spikes." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Hythonia's spellcasting ability is Charisma (spell save {@dc 18}). She can innately cast {@spell animate objects} once per day requiring no material components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell animate objects}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hythonia-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Ironscale Hydra", + "source": "MOT", + "page": 231, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 181, + "formula": "11d20 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 22, + "dexterity": 10, + "constitution": 22, + "intelligence": 2, + "wisdom": 10, + "charisma": 7, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Acidic Blood", + "body": [ + "When the hydra takes piercing or slashing damage, each creature within 5 feet of the hydra takes 9 ({@damage 2d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The hydra can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiple Heads", + "body": [ + "The hydra has five heads. While it has more than one head, the hydra has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}. Whenever the hydra takes 35 or more damage in a single turn, one of its heads dies. If all its heads die, the hydra dies. At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken fire damage since its last turn. The hydra regains 10 hit points for each head regrown in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reactive Heads", + "body": [ + "For each head the hydra has beyond one, it gets an extra reaction that can be used only for opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wakeful", + "body": [ + "While the hydra sleeps, at least one of its heads is awake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hydra makes as many bite attacks as it has heads." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ironscale Hydra-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Lampad", + "source": "MOT", + "page": 235, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 13, + "constitution": 14, + "intelligence": 11, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Corpse Stride", + "body": [ + "Once on its turn, the lampad can use 10 feet of its movement to step magically into one creature's corpse within its reach and emerge from a second creature's corpse within 60 feet of the first corpse, appearing in an unoccupied space within 5 feet of the second corpse. Both corpses must be Medium or bigger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The lampad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lampad attacks twice with its necrotic touch or chill touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chill Touch (Cantrip)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}9 ({@damage 2d8}) necrotic damage, and the target can't regain hit points until the start of the lampad's next turn. If the target is undead, it has disadvantage on attack rolls against the lampad until the end of the lampad's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The lampad's spellcasting ability is Charisma ({@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell gentle repose}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lampad-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Leonin Iconoclast", + "source": "MOT", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 18, + "constitution": 16, + "intelligence": 13, + "wisdom": 17, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Leonin" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If the leonin is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails. It can't use this trait if it's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "While the leonin is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The leonin makes three weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 7} to hit, range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The leonin's spellcasting ability is Wisdom (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell detect evil and good}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "leonin", + "actions_note": "", + "mythic": null, + "key": "Leonin Iconoclast-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Meletian Hoplite", + "source": "MOT", + "page": 229, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item breastplate|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 12, + "intelligence": 16, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "int": "+5" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hoplite makes three weapon attacks. It can replace one weapon attack with ray of frost." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield Bash", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Frost (Cantrip)", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}4 ({@damage 1d8}) cold damage, and the target's speed is reduced by 10 feet until the start of the hoplite's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The hoplite is a 3rd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell ray of frost} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell color spray}", + "{@spell expeditious retreat}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell blur}", + "{@spell cloud of daggers}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Meletian Hoplite-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Naiad", + "source": "MOT", + "page": 236, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 16, + "constitution": 11, + "intelligence": 15, + "wisdom": 10, + "charisma": 18, + "passive": 10, + "skills": { + "skills": [ + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The naiad can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisible in Water", + "body": [ + "The naiad is {@condition invisible} while fully immersed in water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The naiad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The naiad makes two psychic touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The naiad's spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell phantasmal force}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell fly}", + "{@spell hypnotic pattern}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "CM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Naiad-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Nightmare Shepherd", + "source": "MOT", + "page": 221, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 19, + "dexterity": 15, + "constitution": 18, + "intelligence": 14, + "wisdom": 17, + "charisma": 20, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Aura of Nightmares", + "body": [ + "Undead creatures within 30 feet of the shepherd gain a +5 bonus to attack and damage rolls. When any other creature that isn't undead or a construct starts its turn within 30 feet of the shepherd, that creature must succeed on a {@dc 17} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The shepherd has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shepherd makes two attacks: one with its claws and one with its staff." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage plus 16 ({@damage 3d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, or 13 ({@damage 2d8 + 4}) bludgeoning damage if used with two hands, plus 26 ({@damage 4d12}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Herd the Underworld (Recharges after a Short or Long Rest)", + "body": [ + "The shepherd pulls twisted souls from the Underworld; {@dice 1d6} {@creature shadow||shadows} (without Sunlight Weakness) arise in unoccupied spaces within 20 feet of the shepherd. The shadows act right after the shepherd on the same initiative count and fight until they're destroyed. They disappear when the shepherd dies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The shepherd's spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dispel magic}", + "{@spell hold person}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nightmare Shepherd-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Nyx-Fleece Ram", + "source": "MOT", + "page": 233, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 14, + "constitution": 12, + "intelligence": 3, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "traits": [ + { + "title": "Charge", + "body": [ + "If the ram moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 5 ({@damage 2d4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The ram has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The ram has advantage on Strength and Dexterity saving throws against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nyx-Fleece Ram-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Oracle", + "source": "MOT", + "page": 238, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "Blessings Of The Gods", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 13, + "wisdom": 16, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+4" + }, + "languages": [ + "Celestial", + "Common" + ], + "traits": [ + { + "title": "Blessings of the Gods", + "body": [ + "While the oracle is wearing no armor and wielding no shield, its AC includes its Wisdom modifier. In addition, a creature that hits the oracle with a melee attack while within 5 feet of it takes 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Eldritch Touch", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Divine Insight (3/Day)", + "body": [ + "When the oracle or a creature it can see makes an attack roll, a saving throw, or an ability check, the oracle can cause the roll to be made with advantage or disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The oracle's spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell bless}", + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell hold person}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell augury}", + "{@spell scrying}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Oracle-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Oread", + "source": "MOT", + "page": 237, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 14, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Invisible in Fire", + "body": [ + "The oread is {@condition invisible} while fully immersed in fire." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The oread has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oread attacks twice with its fiery touch or fire bolt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Bolt (Cantrip)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Hellish Rebuke (2nd-Level Spell; 1/Day)", + "body": [ + "When the oread is damaged by a creature within 60 feet of the oread that it can see, the creature that damaged the oread must make a {@dc 14} Dexterity saving throw, taking 16 ({@damage 3d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The oread's spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fire bolt} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell burning hands}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell hellish rebuke} (see \"Reactions\" below)", + "{@spell scorching ray}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Oread-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Phylaskia", + "source": "MOT", + "page": 239, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 15, + "constitution": 18, + "intelligence": 10, + "wisdom": 16, + "charisma": 14, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+7" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Gatekeeper's Aura", + "body": [ + "Any creature that starts its turn within 10 feet of the phylaskia must make a {@dc 15} Wisdom saving throw. On a successful save, the creature is immune to this aura for the next 24 hours. On a failed save, the creature has disadvantage on saving throws and its speed is halved until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the phylaskia to 0 hit points, it must make a Constitution saving throw with a DC equal to 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the phylaskia drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vigilant", + "body": [ + "The phylaskia can't be {@status surprised}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The phylaskia makes two longsword attacks and uses its Strength Drain once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage, or 16 ({@damage 2d10 + 5}) slashing damage if used with two hands, plus 11 ({@damage 2d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Strength Drain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d6 + 5}) necrotic damage. Unless the target is immune to necrotic damage, its Strength score is reduced by {@dice 1d4}. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Phylaskia-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Polukranos", + "source": "MOT", + "page": 231, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 232, + "formula": "15d20 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 25, + "dexterity": 15, + "constitution": 21, + "intelligence": 4, + "wisdom": 14, + "charisma": 10, + "passive": 24, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Acidic Blood", + "body": [ + "When Polukranos takes piercing or slashing damage, each creature within 5 feet of Polukranos takes 10 ({@damage 3d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "Polukranos can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Polukranos fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiple Heads", + "body": [ + "Polukranos has five heads. While it has more than one head, Polukranos has advantage on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}. Whenever Polukranos takes 40 or more damage in a single turn, one of its heads dies. If all its heads die, Polukranos dies. At the end of its turn, it grows two heads for each of its heads that died since its last turn, unless it has taken 40 or more fire damage since its last turn. Polukranos regains 20 hit points for each head regrown in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reactive Heads", + "body": [ + "For each head Polukranos has beyond one, it gets an extra reaction that can be used only to make opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "Polukranos deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wakeful", + "body": [ + "While Polukranos sleeps, at least one of its heads is awake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Polukranos makes as many bite attacks as it has heads." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pushed up to 20 feet away from Polukranos." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "Polukranos makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Swipe", + "body": [ + "Polukranos makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trampling Charge (Costs 3 Actions)", + "body": [ + "Polukranos moves up to 50 feet in a straight line and can move through the space of any creature Huge or smaller. The first time it enters each creature's space during this move, it can make a stomp attack against that creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Polukranos-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Returned Drifter", + "source": "MOT", + "page": 240, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Turn Resistance", + "body": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unreadable Face", + "body": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage plus 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Returned Drifter-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Returned Kakomantis", + "source": "MOT", + "page": 240, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 17, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Fleeting Anger", + "body": [ + "If another creature deals damage to the Returned, the Returned makes attack rolls with advantage until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unreadable Face", + "body": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Underworld Bolt", + "body": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one creature. {@h}13 ({@damage 2d8 + 2}) necrotic damage, and the target can't regain hit points until the start of the Returned's next turn. If the target is missing any of its hit points, it instead takes 17 ({@damage 2d12 + 2}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Returned Kakomantis-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Returned Palamnite", + "source": "MOT", + "page": 241, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 17, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Fleeting Anger", + "body": [ + "If another creature deals damage to the Returned, the Returned makes attack rolls with advantage until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unreadable Face", + "body": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Returned makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Returned Palamnite-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Returned Sentry", + "source": "MOT", + "page": 241, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The Returned has advantage on an attack roll against a creature if at least one of the Returned's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The Returned has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unreadable Face", + "body": [ + "The Returned is immune to any effect that would sense its emotions or read its thoughts. Wisdom ({@skill Insight}) checks to ascertain the Returned's intentions or sincerity are made with disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack, plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Returned Sentry-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Satyr Reveler", + "source": "MOT", + "page": 242, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 16, + "constitution": 13, + "intelligence": 12, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Enthralling Performance", + "body": [ + "If the satyr performs for at least 1 minute, it chooses up to four humanoids within 60 feet of it who watched or listened to the entire performance. Each target must succeed on a {@dc 13} Wisdom saving throw or be {@condition charmed}. While {@condition charmed} in this way, the target idolizes the satyr and will take part in the satyr's revels. The {@condition charmed} condition ends for the creature after 1 hour, if it takes any damage, if the satyr attacks the target, or if the target witnesses the satyr attacking or damaging any of the target's allies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The satyr has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleepless Reveler", + "body": [ + "Magic can't put the satyr to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The satyr makes two ram attacks or two shortbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Satyr Reveler-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Satyr Thornbearer", + "source": "MOT", + "page": 243, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 18, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The satyr has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleepless Reveler", + "body": [ + "Magic can't put the satyr to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The satyr makes three ram attacks or three shortbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hail of Arrows (Recharges after a Short or Long Rest)", + "body": [ + "The satyr fires an arrow that magically transforms into a flurry of missiles in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 17 ({@damage 5d6}) piercing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Satyr Thornbearer-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Setessan Hoplite", + "source": "MOT", + "page": 229, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item leather armor|PHB|leather}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 14, + "dexterity": 16, + "constitution": 14, + "intelligence": 13, + "wisdom": 16, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+5" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The hoplite has advantage on an attack roll against a creature if at least one of the hoplite's allies is within 5 feet of the hoplite and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hoplite makes two scimitar attacks or two longbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Setessan Hoplite-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Theran Chimera", + "source": "MOT", + "page": 216, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 13, + "constitution": 19, + "intelligence": 3, + "wisdom": 14, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "traits": [ + { + "title": "Spell Turning", + "body": [ + "The chimera has advantage on a saving throw against any spell that targets only the chimera (not an area). If the chimera's saving throw is successful and the spell is of 4th level or lower, the spell has no effect on the chimera and instead targets the caster." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chimera makes three attacks: one with its claws, one with its head, and one with its tail. When its breath weapon is available, it can use the breath in place of its head or its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Head", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The chimera exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 32 ({@damage 5d12}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Theran Chimera-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Triton Master of Waves", + "source": "MOT", + "page": 245, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 19, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "int": "+3", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Primordial" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The triton can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Water Weird (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the triton magically summons {@dice 1d4} {@creature water weird||water weirds}. The summoned weirds appear in unoccupied spaces in water within 60 feet of the triton. The water weirds act immediately after the triton on the same initiative count and fight until they're destroyed. They disappear if the triton dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The triton makes two attacks using Wave Touch and casts {@spell ray of frost}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wave Touch", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Frost (Cantrip)", + "body": [ + "{@atk rs} {@hit 7} to hit, range 60 ft., one creature. {@h}13 ({@damage 3d8}) cold damage, and the target's speed is reduced by 10 feet until the start of the triton's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Frigid Shield", + "body": [ + "When a creature the triton can see targets the triton with an attack, the triton gains 10 temporary hit points. If the attack hits and reduces the temporary hit points to 0, each creature within 5 feet of the triton takes 9 ({@damage 2d8}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The triton's spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell ray of frost} (see \"Actions\" below)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell wind wall}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "triton", + "actions_note": "", + "mythic": null, + "key": "Triton Master of Waves-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Triton Shorestalker", + "source": "MOT", + "page": 244, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 16, + "constitution": 14, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Primordial" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The triton can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimble Escape", + "body": [ + "The triton can take the Disengage or Hide actions as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The triton makes two urchin-spine shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Urchin-Spine Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage. If the damage reduces a creature to 0 hit points, that creature is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisoned Spine", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The triton's spellcasting ability is Wisdom (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fog cloud}", + "{@spell gust of wind}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "triton", + "actions_note": "", + "mythic": null, + "key": "Triton Shorestalker-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Tromokratis", + "source": "MOT", + "page": 254, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 409, + "formula": "21d20 + 189", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 80, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 30, + "dexterity": 11, + "constitution": 29, + "intelligence": 22, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "saves": { + "int": "+14", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Tromokratis can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hearts of the Kraken (Mythic Trait; Recharges after a Short or Long Rest)", + "body": [ + "When Tromokratis is reduced to 0 hit points, it doesn't die or fall {@condition unconscious}. Instead, the damage creates cracks in its carapace, revealing its hearts. Tromokratis has four hearts: two on its chest, one on its back, and one at the base of its tail. A heart has an AC of 22 and 100 hit points. It is immune to bludgeoning, piercing, and slashing damage from nonmagical attacks, and it is immune to all conditions. If it is forced to make a saving throw, treat its ability scores as 10 (+0). If it finishes a short or long rest, the carapace heals, any destroyed hearts regenerate, and the hearts are covered again. Tromokratis dies when all the hearts are destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Tromokratis fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Tromokratis's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "Tromokratis deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell-Resistant Carapace", + "body": [ + "Tromokratis has advantage on saving throws against spells, and any creature that makes a spell attack against Tromokratis has disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tromokratis makes three attacks: one with its pincer, one with its tail, and one with its tentacle grasp." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pincer", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 26}). Until the grapple ends, the target is {@condition restrained}, and Tromokratis can't use this attack on anyone else." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}23 ({@damage 3d8 + 10}) bludgeoning damage, and if the target is a creature, it is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle Grasp", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one creature. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 26}). If the target doesn't escape by the end of its next turn, Tromokratis throws the target up to 60 feet in a straight line. The target lands {@condition prone} and takes 21 ({@damage 6d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 5 ft., one target. {@h}29 ({@damage 3d12 + 10}) piercing damage. If the target is a Large or smaller creature {@condition grappled} by Tromokratis, that creature is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside Tromokratis, and it takes 42 ({@damage 12d6}) acid damage at the start of each of Tromokratis's turns. If Tromokratis takes 50 damage or more on a single turn from a creature inside it, Tromokratis must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of Tromokratis. If Tromokratis dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "Tromokratis moves up to half its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "Tromokratis makes one tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 3 Actions)", + "body": [ + "Tromokratis makes one bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Tromokratis-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Two-Headed Cerberus", + "source": "MOT", + "page": 215, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 14, + "constitution": 14, + "intelligence": 3, + "wisdom": 13, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the cerberus can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiheaded", + "body": [ + "The cerberus can't be {@status surprised}, and it has advantage on saving throws against being knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The cerberus has advantage on an attack roll against a creature if at least one of the cerberus's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cerberus makes two bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 2 ({@damage 1d4}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The cerberus exhales a 15-foot cone of molten rock. Each creature in the cone must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one. On a failed save, a creature is also {@condition restrained} by the hardening rock. A creature can make a {@dc 12} Strength ({@skill Athletics}) check as an action, freeing itself or a creature within reach from the rock on a success. The rock has AC 17 and 10 hit points, and it is immune to fire, poison, and psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Two-Headed Cerberus-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Typhon", + "source": "MOT", + "page": 246, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 24, + "dexterity": 10, + "constitution": 20, + "intelligence": 7, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "saves": { + "con": "+10" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The typhon has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The typhon regains 20 hit points at the start of its turn. If it takes radiant damage, this trait doesn't function at the start of its next turn. The typhon dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The typhon makes three attacks: one with its Flurry of Bites, one to constrict, and one with its maw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flurry of Bites", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}35 ({@damage 8d6 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one Large or smaller creature. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Until this grapple ends, the target is {@condition restrained} and takes 17 ({@damage 3d6 + 7}) bludgeoning damage at the start of each of its turns. The typhon can have up to two creatures constricted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) piercing damage plus 19 ({@damage 3d12}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Typhon-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Underworld Cerberus", + "source": "MOT", + "page": 215, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 12, + "constitution": 18, + "intelligence": 10, + "wisdom": 16, + "charisma": 9, + "passive": 19, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 30 ft." + ], + "languages": [ + "understands all languages but can't speak" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the cerberus can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiheaded", + "body": [ + "The cerberus can't be {@status surprised}, and it has advantage on saving throws against being knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The cerberus has advantage on an attack roll against a creature if at least one of the cerberus's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cerberus makes three bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "The cerberus exhales a 30-foot cone of molten rock. Each creature in the cone must make a {@dc 15} Dexterity saving throw, taking 21 ({@damage 6d6}) fire damage on a failed save, or half as much damage on a successful one. On a failed save, a creature is also {@condition restrained} by the hardening rock. A creature can make a {@dc 15} Strength ({@skill Athletics}) check as an action, freeing itself or a creature within reach from the rock on a success. The rock has AC 17 and 20 hit points, and it is immune to fire, poison, and psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Underworld Cerberus-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Winged Bull", + "source": "MOT", + "page": 214, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 20, + "dexterity": 14, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "languages": [ + "understands Celestial but can't speak" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the bull moves at least 20 feet straight toward a creature and then hits it with a gore attack on the same turn, the target takes an extra 19 ({@damage 3d12}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Winged Bull-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Winged Lion", + "source": "MOT", + "page": 214, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 20, + "dexterity": 16, + "constitution": 18, + "intelligence": 6, + "wisdom": 14, + "charisma": 5, + "passive": 12, + "languages": [ + "understands Celestial but can't speak" + ], + "traits": [ + { + "title": "Pounce", + "body": [ + "If the lion moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the lion can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Winged Lion-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Woe Strider", + "source": "MOT", + "page": 247, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 8, + "wisdom": 14, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Antimagic Cone", + "body": [ + "The woe strider's open mouth creates an area of antimagic, as in the {@spell antimagic field} spell, in a 60-foot cone. At the start of each of its turns, the woe strider decides which way the cone faces and whether its mouth is open or closed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The woe strider makes two claw attacks and one bite attack. If both claws hit the same creature, the target is {@condition grappled} (escape {@dc 14})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature that is {@condition grappled}, {@condition incapacitated}, or {@condition restrained}. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 16 ({@damage 3d10}) psychic damage. In addition, each magic item the creature is carrying that isn't an artifact has its magical properties suppressed for 1 minute." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Woe Strider-MOT", + "__dataclass__": "Monster" + }, + { + "name": "Abyssal Wretch", + "source": "MTF", + "page": 136, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 9, + "dexterity": 12, + "constitution": 11, + "intelligence": 5, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Abyssal Wretch-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Adult Kruthik", + "source": "MTF", + "page": 212, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 16, + "constitution": 15, + "intelligence": 7, + "wisdom": 12, + "charisma": 8, + "passive": 11, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Kruthik" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The kruthik has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kruthik makes two stab attacks or two spike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spike", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Kruthik-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Adult Oblex", + "source": "MTF", + "page": 218, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 8, + "dexterity": 19, + "constitution": 16, + "intelligence": 19, + "wisdom": 12, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "one", + "__dataclass__": "SkillList" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "cha": "+5" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "languages": [ + "Common plus two more languages" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion to Fire", + "body": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sulfurous Impersonation", + "body": [ + "As a bonus action, the oblex can extrude a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 1d4 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. For all practical purposes, the simulacrum is the oblex, meaning that the oblex occupies its space and the simulacrum's space simultaneously. The slimy tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex's main body and the simulacrum. The simulacrum disappears if the tether is severed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oblex makes one pseudopod attack and uses Eat Memories." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 5 ({@damage 2d4}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eat Memories", + "body": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 15} Wisdom saving throw or take 18 ({@damage 4d8}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, oozes, plants, and undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from any ability check or attack roll it makes. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "When an oblex causes a target to become memory drained, the oblex learns all the languages the target knows and gains all its proficiencies, except for any saving throw proficiencies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The oblex's innate spellcasting ability is Intelligence (spell save {@dc 15}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell color spray}", + "{@spell detect thoughts}", + "{@spell hold person} (as 3rd-level spell)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Oblex-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Air Elemental Myrmidon", + "source": "MTF", + "page": 202, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 9, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "one language of its creator's choice" + ], + "traits": [ + { + "title": "Magic Weapons", + "body": [ + "The myrmidon's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes three flail attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike {@recharge}", + "body": [ + "The myrmidon makes one flail attack. On a hit, the target takes an extra 18 ({@damage 4d8}) lightning damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the myrmidon's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "PotA", + "page": 212 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Air Elemental Myrmidon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Alkilith", + "source": "MTF", + "page": 130, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d8 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 12, + "dexterity": 19, + "constitution": 22, + "intelligence": 6, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+10" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The alkilith can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the alkilith is motionless, it is indistinguishable from an ordinary slime or fungus." + ], + "__dataclass__": "Entry" + }, + { + "title": "Foment Madness", + "body": [ + "Any creature that isn't a demon that starts its turn within 30 feet of the alkilith must succeed on a {@dc 18} Wisdom saving throw, or it hears a faint buzzing in its head for a moment and has disadvantage on its next attack roll, saving throw, or ability check.", + "If the saving throw against Foment Madness fails by 5 or more, the creature is instead subjected to the {@spell confusion} spell for 1 minute (no {@status concentration} required by the alkilith). While under the effect of that confusion, the creature is immune to Foment Madness." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The alkilith has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The alkilith makes three tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}18 ({@damage 4d6 + 4}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Alkilith-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Allip", + "source": "MTF", + "page": 116, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 6, + "dexterity": 17, + "constitution": 10, + "intelligence": 17, + "wisdom": 15, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The allip can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Maddening Touch", + "body": [ + "{@atk ms} {@hit 6} to hit, reach 5 ft., one target. {@h}17 ({@damage 4d6 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whispers of Madness", + "body": [ + "The allip chooses up to three creatures it can see within 60 feet of it. Each target must succeed on a {@dc 14} Wisdom saving throw, or it takes 7 ({@damage 1d8 + 3}) psychic damage and must use its reaction to make a melee weapon attack against one creature of the allip's choice that the allip can see. Constructs and undead are immune to this effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Howling Babble {@recharge}", + "body": [ + "Each creature within 30 feet of the allip that can hear it must make a {@dc 14} Wisdom saving throw. On a failed save, a target takes 12 ({@damage 2d8 + 3}) psychic damage, and it is {@condition stunned} until the end of its next turn. On a successful save, it takes half as much damage and isn't {@condition stunned}. Constructs and undead are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Allip-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Amnizu", + "source": "MTF", + "page": 164, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 11, + "dexterity": 13, + "constitution": 16, + "intelligence": 20, + "wisdom": 12, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+9", + "wis": "+7", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Infernal", + "telepathy 1,000 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the amnizu's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The amnizu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The amnizu uses Poison Mind. It also makes two attacks: one with its whip and one with its Disruptive Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Taskmaster Whip", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 33 ({@damage 6d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disruptive Touch", + "body": [ + "{@atk ms} {@hit 11} to hit, reach 5 ft., one target. {@h}44 ({@damage 8d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Mind", + "body": [ + "The amnizu targets one or two creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 19} Wisdom saving throw or take 26 ({@damage 4d12}) necrotic damage and is {@condition blinded} until the start of the amnizu's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forgetfulness {@recharge}", + "body": [ + "The amnizu targets one creature it can see within 60 feet of it. That creature must make a {@dc 18} Intelligence saving throw and on a failure the target is {@condition stunned} for 1 minute. A {@condition stunned} creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target remains {@condition stunned} for the full minute, it forgets everything it sensed, experienced, and learned during the last 5 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Instinctive Charm", + "body": [ + "When a creature within 60 feet of the amnizu makes an attack roll against it, and another creature is within the attack's range, the attacker must make a {@dc 19} Wisdom saving throw. On a failed save, the attacker must target the creature that is closest to it, not including the amnizu or itself. If multiple creatures are closest, the attacker chooses which one to target. If the saving throw is successful, the attacker is immune to the amnizu's Instinctive Charm for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The amnizu's innate spellcasting ability is Intelligence (spell save {@dc 19}, {@hit 11} to hit with spell attacks). The amnizu can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell command}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dominate person}", + "{@spell fireball}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell feeblemind}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Amnizu-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Armanite", + "source": "MTF", + "page": 131, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 21, + "dexterity": 18, + "constitution": 21, + "intelligence": 8, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The armanite has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The armanite's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The armanite makes three attacks: one with its hooves, one with its claws, and one with its serrated tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Serrated Tail", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Lance {@recharge 5}", + "body": [ + "The armanite looses a bolt of lightning in a line 60 feet long and 10 feet wide. Each creature in the line must make a {@dc 15} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Armanite-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Astral Dreadnought", + "source": "MTF", + "page": 117, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "17d20 + 119", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 28, + "dexterity": 7, + "constitution": 25, + "intelligence": 5, + "wisdom": 14, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Antimagic Cone", + "body": [ + "The astral dreadnought's opened eye creates an area of antimagic, as in the {@spell antimagic field} spell, in a 150-foot cone. At the start of each of its turns, the dreadnought decides which way the cone faces. The cone doesn't function while the dreadnought's eye is closed or while the dreadnought is {@condition blinded}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Astral Entity", + "body": [ + "The astral dreadnought can't leave the Astral Plane, nor can it be banished or otherwise transported out of the Astral Plane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Demiplanar Donjon", + "body": [ + "Any creature or object that the astral dreadnought swallows is transported to a demiplane that can be entered by no other means except a {@spell wish} spell or this creature's Donjon Visit ability. A creature can leave the demiplane only by using magic that enables planar travel, such as the {@spell plane shift} spell. The demiplane resembles a stone cave roughly 1,000 feet in diameter with a ceiling 100 feet high. Like a stomach, it contains the remains of the dreadnought's past meals.", + "The dreadnought can't be harmed from within the demiplane. If the dreadnought dies, the demiplane disappears, and everything inside it appears around the corpse. The demiplane is otherwise indestructible." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the astral dreadnought fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "An astral dreadnought's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sever Silver Cord", + "body": [ + "If the astral dreadnought scores a critical hit against a creature traveling through the Astral Plane by means of the {@spell astral projection} spell, the dreadnought can cut the target's silver cord instead of dealing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The astral dreadnought makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}36 ({@damage 5d10 + 9}) piercing damage. If the target is a creature of Huge size or smaller and this damage reduces it to 0 hit points or it is {@condition incapacitated}, the astral dreadnought swallows it. The swallowed target, along with everything it is wearing and carrying, appears in an unoccupied space on the floor of the astral dreadnought's Demiplanar Donjon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d6 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "The astral dreadnought makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Donjon Visit (Costs 2 Actions)", + "body": [ + "One creature that is Huge or smaller that the astral dreadnought can see within 60 feet of it must succeed on a {@dc 19} Charisma saving throw or be magically teleported to an unoccupied space on the floor of the astral dreadnought's Demiplanar Donjon. At the end of the target's next turn, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Projection (Costs 3 Actions)", + "body": [ + "Each creature within 60 feet of the astral dreadnought must make a {@dc 19} Wisdom saving throw, taking 15 ({@damage 2d10 + 4}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Astral Dreadnought-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Autumn Eladrin", + "source": "MTF", + "page": 195, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 12, + "dexterity": 16, + "constitution": 16, + "intelligence": 14, + "wisdom": 17, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Enchanting Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature is {@condition charmed} by the eladrin for 1 minute. On a successful save, the creature becomes immune to any eladrin's Enchanting Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, the creature can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Step {@recharge 4}", + "body": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage plus 18 ({@damage 4d8}) psychic damage, or 6 ({@damage 1d10 + 1}) slashing damage plus 18 ({@damage 4d8}) psychic damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 18 ({@damage 4d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Foster Peace", + "body": [ + "If a creature {@condition charmed} by the eladrin hits with an attack roll while within 60 feet of the eladrin, the eladrin magically causes the attack to miss, provided the eladrin can see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The eladrin's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell calm emotions}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell cure wounds} (as a 5th-level spell)", + "{@spell lesser restoration}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell greater restoration}", + "{@spell heal}", + "{@spell raise dead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Autumn Eladrin-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Bael", + "source": "MTF", + "page": 170, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 24, + "dexterity": 17, + "constitution": 20, + "intelligence": 21, + "wisdom": 24, + "charisma": 24, + "passive": 23, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+11", + "int": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Dreadful", + "body": [ + "Bael can use a bonus action to appear dreadful until the start of his next turn. Each creature, other than a devil, that starts its turn within 10 feet of Bael must succeed on a {@dc 22} Wisdom saving throw or be {@condition frightened} until the start of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Bael fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Bael has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Bael's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Bael regains 20 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Bael dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bael makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellish Morningstar", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Command", + "body": [ + "Each ally of Bael's within 60 feet of him can't be {@condition charmed} or {@condition frightened} until the end of his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Bael magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack (Cost 2 Actions)", + "body": [ + "Bael attacks once with his hellish morningstar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Awaken Greed", + "body": [ + "Bael casts {@spell charm person} or major image." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Command", + "body": [ + "Bael uses his Infernal Command action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Bael uses his Teleport action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Bael's innate spellcasting ability is Charisma (spell save {@dc 21}, {@hit 13} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell animate dead}", + "{@spell charm person}", + "{@spell detect magic}", + "{@spell inflict wounds} (as an 8th-level spell)", + "{@spell invisibility} (self only)", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell symbol} (stunning only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Bael-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Balhannoth", + "source": "MTF", + "page": 119, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 17, + "dexterity": 8, + "constitution": 18, + "intelligence": 6, + "wisdom": 15, + "charisma": 8, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 500 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Deep Speech", + "telepathy 1 mile" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the balhannoth fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The balhannoth makes a bite attack and up to two tentacle attacks, or it makes up to four tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}25 ({@damage 4d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) and is moved up to 5 feet toward the balhannoth. Until this grapple ends, the target is {@condition restrained}, and the balhannoth can't use this tentacle against other targets. The balhannoth has four tentacles." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Bite Attack", + "body": [ + "The balhannoth makes one bite attack against one creature it has {@condition grappled}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The balhannoth magically teleports, along with any equipment it is wearing or carrying and any creatures it has {@condition grappled}, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vanish", + "body": [ + "The balhannoth magically becomes {@condition invisible} for up to 10 minutes or until immediately after it makes an attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Balhannoth-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Baphomet", + "source": "MTF", + "page": 143, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 275, + "formula": "19d12 + 152", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 30, + "dexterity": 14, + "constitution": 26, + "intelligence": 18, + "wisdom": 24, + "charisma": 16, + "passive": 24, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+15", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If Baphomet moves at least 10 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 16 ({@damage 3d10}) piercing damage. If the target is a creature, it must succeed on a {@dc 25} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Labyrinthine Recall", + "body": [ + "Baphomet can perfectly recall any path he has traveled, and he is immune to the {@spell maze} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Baphomet fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Baphomet has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Baphomet's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of his turn, Baphomet can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against him have advantage until the start of his next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Baphomet makes three attacks: one with Heartcleaver, one with his bite, and one with his gore attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heartcleaver", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d8 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Baphomet's choice within 120 feet of him and aware of him must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} for 1 minute. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. These later saves have disadvantage if Baphomet is within line of sight of the creature.", + "If a creature succeeds on any of these saves or the effect ends on it, the creature is immune to Baphomet's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Heartcleaver Attack", + "body": [ + "Baphomet makes a melee attack with Heartcleaver." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charge (Costs 2 Actions)", + "body": [ + "Baphomet moves up to his speed, then makes a gore attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Baphomet's spellcasting ability is Charisma (spell save {@dc 18}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell dominate beast}", + "{@spell hunter's mark}", + "{@spell maze}", + "{@spell wall of stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 235 + }, + { + "source": "BGDIA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Baphomet-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Berbalang", + "source": "MTF", + "page": 120, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "11d8 - 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 16, + "constitution": 9, + "intelligence": 17, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+5" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all but rarely speaks" + ], + "traits": [ + { + "title": "Spectral Duplicate (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the berbalang creates one spectral duplicate of itself in an unoccupied space it can see within 60 feet of it. While the duplicate exists, the berbalang is {@condition unconscious}. A berbalang can have only one duplicate at a time. The duplicate disappears when it or the berbalang drops to 0 hit points or when the berbalang dismisses it (no action required).", + "The duplicate has the same statistics and knowledge as the berbalang, and everything experienced by the duplicate is known by the berbalang. All damage dealt by the duplicate's attacks is psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The berbalang makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The berbalang's innate spellcasting ability is Intelligence (spell save {@dc 13}). The berbalang can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell speak with dead}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Berbalang-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Black Abishai", + "source": "MTF", + "page": 160, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 17, + "constitution": 14, + "intelligence": 13, + "wisdom": 16, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The abishai's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the abishai can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes three attacks: two with its scimitar and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Creeping Darkness {@recharge}", + "body": [ + "The abishai casts {@spell darkness} at a point within 120 feet of it, requiring no components. Wisdom is its spellcasting ability for this spell. While the spell persists, the abishai can move the area of darkness up to 60 feet as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Black Abishai-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Blue Abishai", + "source": "MTF", + "page": 161, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 15, + "dexterity": 14, + "constitution": 17, + "intelligence": 22, + "wisdom": 23, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The abishai's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes two attacks: one with its quarterstaff and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage plus 14 ({@damage 4d6}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The abishai is a 13th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). The abishai has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell disguise self}", + "{@spell expeditious retreat}", + "{@spell magic missile}", + "{@spell charm person}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell mirror image}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell greater invisibility}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Blue Abishai-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Boneclaw", + "source": "MTF", + "page": 121, + "size_str": "Large", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 16, + "constitution": 15, + "intelligence": 13, + "wisdom": 15, + "charisma": 9, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+6", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus the main language of its master" + ], + "traits": [ + { + "title": "Rejuvenation", + "body": [ + "While its master lives, a destroyed boneclaw gains a new body in {@dice 1d10} hours, with all its hit points. The new body appears within 1 mile of the boneclaw's master." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the boneclaw can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The boneclaw makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Piercing Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}20 ({@damage 3d10 + 4}) piercing damage. If the target is a creature, the boneclaw can pull the target up to 10 feet toward itself, and the target is {@condition grappled} (escape {@dc 14}). The boneclaw has two claws. While a claw grapples a target, the claw can attack only that target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Jump", + "body": [ + "If the boneclaw is in dim light or darkness, each creature of the boneclaw's choice within 5 feet of it must succeed on a {@dc 14} Constitution saving throw or take 34 ({@damage 5d12 + 2}) necrotic damage.", + "The boneclaw then magically teleports up to 60 feet to an unoccupied space it can see. It can bring one creature it's grappling, teleporting that creature to an unoccupied space it can see within 5 feet of its destination. The destination spaces of this teleportation must be in dim light or darkness." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deadly Reach", + "body": [ + "In response to a visible enemy moving into its reach, the boneclaw makes one claw attack against that enemy. If the attack hits, the boneclaw can make a second claw attack against the target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boneclaw-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Bronze Scout", + "source": "MTF", + "page": 125, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 16, + "constitution": 11, + "intelligence": 3, + "wisdom": 14, + "charisma": 1, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Earth Armor", + "body": [ + "The bronze scout doesn't provoke opportunity attacks when it burrows." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The bronze scout has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Flare (Recharges after a Short or Long Rest)", + "body": [ + "Each creature in contact with the ground within 15 feet of the bronze scout must make a {@dc 13} Dexterity saving throw, taking 14 ({@damage 4d6}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bronze Scout-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Bulezau", + "source": "MTF", + "page": 131, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 14, + "constitution": 17, + "intelligence": 8, + "wisdom": 9, + "charisma": 6, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Rotting Presence", + "body": [ + "When any creature that isn't a demon starts its turn within 30 feet one or more bulezaus, that creature must succeed on a {@dc 13} Constitution saving throw or take {@dice 1d6} necrotic damage plus 1 necrotic damage for each bulezau within 30 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The bulezau's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The bulezau has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Barbed Tail", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned} until the disease ends. While {@condition poisoned} in this way, the target sports festering boils, coughs up flies, and sheds rotting skin, and the target must repeat the saving throw after every 24 hours that elapse. On a successful save, the disease ends. On a failed save, the target's hit point maximum is reduced by 4 ({@dice 1d8}). The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Bulezau-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Cadaver Collector", + "source": "MTF", + "page": 122, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 21, + "dexterity": 14, + "constitution": 20, + "intelligence": 5, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The cadaver collector has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Specters (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the cadaver collector calls up the enslaved spirits of those it has slain; {@dice 1d6} {@creature specter||specters} (without Sunlight Sensitivity) arise in unoccupied spaces within 15 feet of the cadaver collector. The specters act right after the cadaver collector on the same initiative count and fight until they're destroyed. They disappear when the cadaver collector is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cadaver collector makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 16 ({@damage 3d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Breath {@recharge 5}", + "body": [ + "The cadaver collector releases paralyzing gas in a 30-foot cone. Each creature in that area must make a successful {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. A {@condition paralyzed} creature repeats the saving throw at the end of each of its turns, ending the effect on itself with a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cadaver Collector-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Canoloth", + "source": "MTF", + "page": 247, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 5, + "wisdom": 17, + "charisma": 12, + "passive": 19, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Dimensional Lock", + "body": [ + "Other creatures can't teleport to or from a space within 60 feet of the canoloth. Any attempt to do so is wasted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The canoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The canoloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Uncanny Senses", + "body": [ + "The canoloth can't be {@status surprised} while it isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The canoloth makes two attacks: one with its tongue or its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}25 ({@damage 6d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "{@atk rw} {@hit 7} to hit, range 30 ft., one target. {@h}17 ({@damage 2d12 + 4}) piercing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}), pulled up to 30 feet toward the canoloth, and is {@condition restrained} until the grapple ends. The canoloth can grapple one target at a time with its tongue." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Canoloth-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Choker", + "source": "MTF", + "page": 123, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 4, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Aberrant Quickness (Recharges after a Short or Long Rest)", + "body": [ + "The choker can take an extra action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boneless", + "body": [ + "The choker can move through and occupy a space as narrow as 4 inches wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The choker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The choker makes two tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) piercing damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the choker can't use this tentacle on another target. The choker has two tentacles. If this attack is a critical hit, the target also can't breathe or speak until the grapple ends." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP", + "page": 232 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Choker-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Corpse Flower", + "source": "MTF", + "page": 127, + "size_str": "Large", + "maintype": "plant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 14, + "dexterity": 14, + "constitution": 16, + "intelligence": 7, + "wisdom": 15, + "charisma": 3, + "passive": 12, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Corpses", + "body": [ + "When first encountered, a corpse flower contains the corpses of {@dice 1d6 + 3} humanoids. A corpse flower can hold the remains of up to nine dead humanoids. These remains have {@quickref Cover||3||total cover} against attacks and other effects outside the corpse flower. If the corpse flower dies, the corpses within it can be pulled free.", + "While it has at least one humanoid corpse in its body, the corpse flower can use a bonus action to do one of the following:", + "The corpse flower digests one humanoid corpse in its body and instantly regains 11 ({@dice 2d10}) hit points. Nothing of the digested body remains. Any equipment on the corpse is expelled from the corpse flower in its space.", + "The corpse flower animates one dead humanoid in its body, turning it into a zombie. The zombie appears in an unoccupied space within 5 feet of the corpse flower and acts immediately after it in the initiative order. The zombie acts as an ally of the corpse flower but isn't under its control, and the flower's stench clings to it (see the Stench of Death trait)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The corpse flower can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench of Death", + "body": [ + "Each creature that starts its turn within 10 feet of the corpse flower or one of its zombies must make a {@dc 14} Constitution saving throw, unless the creature is a construct or undead. On a failed save, the creature is {@condition incapacitated} until the end of the turn. Creatures that are immune to poison damage or the {@condition poisoned} condition automatically succeed on this saving throw. On a successful save, the creature is immune to the stench of all corpse flowers for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The corpse flower makes three tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage, and the target must succeed on a {@dc 14} Constitution saving throw or take 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harvest the Dead", + "body": [ + "The corpse flower grabs one unsecured dead humanoid within 10 feet of it and stuffs the corpse into itself, along with any equipment the corpse is wearing or carrying. The remains can be used with the Corpses trait." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Corpse Flower-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Deathlock", + "source": "MTF", + "page": 128, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 11, + "dexterity": 15, + "constitution": 10, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+4", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Turn Resistance", + "body": [ + "The deathlock has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Deathly Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The deathlock's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The deathlock is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell dispel magic}", + "{@spell hold person}", + "{@spell hunger of Hadar}", + "{@spell invisibility}", + "{@spell spider climb}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deathlock-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Deathlock Mastermind", + "source": "MTF", + "page": 129, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "20d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 16, + "constitution": 12, + "intelligence": 15, + "wisdom": 12, + "charisma": 17, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft. (including magical darkness)" + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Turn Resistance", + "body": [ + "The deathlock has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Deathly Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) necrotic damage)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grave Bolts", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one or two targets. {@h}18 ({@damage 4d8}) necrotic damage. If the target is Large or smaller, it must succeed on a {@dc 16} Strength saving throw or become {@condition restrained} as shadowy tendrils wrap around it for 1 minute. A {@condition restrained} target can use its action to repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The deathlock's innate spellcasting ability is Charisma (spell save {@dc 14}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The deathlock is a 10th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell blight}", + "{@spell counterspell}", + "{@spell crown of madness}", + "{@spell darkness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell hold monster}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SDW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deathlock Mastermind-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Deathlock Wight", + "source": "MTF", + "page": 129, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 14, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the wight has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wight attacks twice with Grave Bolt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grave Bolt", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}7 ({@damage 1d8 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A humanoid slain by this attack rises 24 hours later as a {@creature zombie} under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve {@creature zombie||zombies} under its control at one time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The wight's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no verbal or material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fear}", + "{@spell hold person}", + "{@spell misty step}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP", + "page": 233 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deathlock Wight-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Demogorgon", + "source": "MTF", + "page": 144, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 406, + "formula": "28d12 + 224", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 29, + "dexterity": 14, + "constitution": 26, + "intelligence": 20, + "wisdom": 17, + "charisma": 25, + "passive": 29, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 19, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+16", + "wis": "+11", + "cha": "+15" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Demogorgon fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Demogorgon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Demogorgon's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Two Heads", + "body": [ + "Demogorgon has advantage on saving throws against being {@condition blinded}, {@condition deafened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Demogorgon makes two tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gaze", + "body": [ + "Demogorgon turns his magical gaze toward one creature that he can see within 120 feet of him. That target must make a {@dc 23} Wisdom saving throw. Unless the target is {@condition incapacitated}, it can avert its eyes to avoid the gaze and to automatically succeed on the save. If the target does so, it can't see Demogorgon until the start of his next turn. If the target looks at him in the meantime, it must immediately make the save.", + "If the target fails the save, the target suffers one of the following effects of Demogorgon's choice or at random:", + "1. Beguiling Gaze. The target is {@condition stunned} until the start of Demogorgon's next turn or until Demogorgon is no longer within line of sight.", + "2. Hypnotic Gaze. The target is {@condition charmed} by Demogorgon until the start of Demogorgon's next turn. Demogorgon chooses how the {@condition charmed} target uses its actions, reactions, and movement. Because this gaze requires Demogorgon to focus both heads on the target, he can't use his Maddening Gaze legendary action until the start of his next turn.", + "3. Insanity Gaze. The target suffers the effect of the {@spell confusion} spell without making a saving throw. The effect lasts until the start of Demogorgon's next turn. Demogorgon doesn't need to concentrate on the spell." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage plus 11 ({@damage 2d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maddening Gaze", + "body": [ + "Demogorgon uses his Gaze action, and must choose either the Beguiling Gaze or the Insanity Gaze effect." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Demogorgon's spellcasting ability is Charisma (spell save {@dc 23}). Demogorgon can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell project image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 236 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Demogorgon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Derro", + "source": "MTF", + "page": 158, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 5, + "charisma": 9, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The derro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooked Spear", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) piercing damage. If the target is Medium or smaller, the derro can choose to deal no damage and knock it {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "derro", + "actions_note": "", + "mythic": null, + "key": "Derro-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Derro Savant", + "source": "MTF", + "page": 159, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 5, + "charisma": 14, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The derro savant has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro savant has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The derro savant is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The derro knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell chromatic orb}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell spider climb}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "derro", + "actions_note": "", + "mythic": null, + "key": "Derro Savant-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Dhergoloth", + "source": "MTF", + "page": 248, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 10, + "constitution": 19, + "intelligence": 7, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "saves": { + "str": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The dhergoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The dhergoloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dhergoloth makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flailing Claws {@recharge 5}", + "body": [ + "The dhergoloth moves up to its walking speed in a straight line and targets each creature within 5 feet of it during its movement. Each target must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 3d12 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The dhergoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dhergoloth's innate spellcasting ability is Charisma (spell save {@dc 10}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell fear}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Dhergoloth-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Dire Troll", + "source": "MTF", + "page": 243, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 22, + "dexterity": 15, + "constitution": 21, + "intelligence": 9, + "wisdom": 11, + "charisma": 5, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+2" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Keen Senses", + "body": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell or sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, it regains only 5 hit points at the start of its next turn. The troll dies only if it is hit by an attack that deals 10 or more acid or fire damage while the troll has 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes five attacks: one with its bite and four with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind of Claws {@recharge 5}", + "body": [ + "Each creature within 10 feet of the troll must make a {@dc 19} Dexterity saving throw, taking 44 ({@damage 8d10}) slashing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dire Troll-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Drow Arachnomancer", + "source": "MTF", + "page": 182, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 11, + "dexterity": 17, + "constitution": 14, + "intelligence": 19, + "wisdom": 14, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+9", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon", + "can speak with spiders" + ], + "traits": [ + { + "title": "Change Shape (Recharges after a Short or Long Rest)", + "body": [ + "The drow can use a bonus action to magically polymorph into a {@creature giant spider}, remaining in that form for up to 1 hour. It can revert to its true form as a bonus action. Its statistics, other than its size, are the same in each form. It can speak and cast spells while in giant spider form. Any equipment it is wearing or carrying in humanoid form melds into the giant spider form. It can't activate, use, wield, or otherwise benefit from any of its equipment. It reverts to its humanoid form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The drow can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The drow ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes two poisonous touch attacks or two bite attacks. The first of these attacks that hits each round deals an extra 26 ({@damage 4d12}) poison damage to the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Touch (Humanoid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}28 ({@damage 8d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Giant Spider Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 26 ({@damage 4d12}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web (Giant Spider Form Only Recharge 5\u20136)", + "body": [ + "{@atk rw} {@hit 8} to hit, range 30/60 ft., one target. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 15} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The drow is a 16th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + null, + null, + { + "slots": 3, + "spells": [ + "{@spell conjure animals} (spiders only)", + "{@spell crown of madness}", + "{@spell dimension door}", + "{@spell dispel magic}", + "{@spell fear}", + "{@spell fly}", + "{@spell giant insect}", + "{@spell hold monster}", + "{@spell insect plague}", + "{@spell invisibility}", + "{@spell vampiric touch}", + "{@spell web}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell eyebite}", + "{@spell etherealness}", + "{@spell dominate monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Arachnomancer-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Drow Favored Consort", + "source": "MTF", + "page": 183, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 15, + { + "ac": 18, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 18, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 15, + "dexterity": 20, + "constitution": 16, + "intelligence": 18, + "wisdom": 15, + "charisma": 18, + "passive": 18, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+9", + "cha": "+10" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Magic", + "body": [ + "When the drow uses its action to cast a spell, it can make one weapon attack as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes three scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 18 ({@damage 4d8}) poison damage. In addition, the target has disadvantage on the next saving throw it makes against a spell the drow casts before the end of the drow's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 11} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 18}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The drow is a 11th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell poison spray}", + "{@spell shocking grasp}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell invisibility}", + "{@spell misty step}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell haste}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell Otiluke's resilient sphere}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Favored Consort-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Drow House Captain", + "source": "MTF", + "page": 184, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 14, + "dexterity": 19, + "constitution": 15, + "intelligence": 12, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+6", + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Battle Command", + "body": [ + "As a bonus action, the drow targets one ally he can see within 30 feet of him. If the target can see or hear the drow, the target can use its reaction to make one melee attack or to take the Dodge or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes three attacks: two with his scimitar and one with his whip or his hand crossbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whip", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage. If the target is an ally, it has advantage on attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The drow adds 3 to his AC against one melee attack that would hit him. To do so, the drow must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 13}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow House Captain-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Drow Inquisitor", + "source": "MTF", + "page": 184, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 11, + "dexterity": 15, + "constitution": 14, + "intelligence": 16, + "wisdom": 21, + "charisma": 20, + "passive": 20, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+10", + "cha": "+10" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Discern Lie", + "body": [ + "The drow knows when she hears a creature speak a lie in a language she knows." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The drow has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes three death lance attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Lance", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 18 ({@damage 4d8}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage it takes. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 18}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell levitate} (self only)", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The drow is a 12th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell message}", + "{@spell poison spray}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell cure wounds}", + "{@spell inflict wounds}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell dispel magic}", + "{@spell magic circle}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell divination}", + "{@spell freedom of movement}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell contagion}", + "{@spell dispel evil and good}", + "{@spell insect plague}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell harm}", + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Inquisitor-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Drow Matron Mother", + "source": "MTF", + "page": 186, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 262, + "formula": "35d8 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 12, + "dexterity": 18, + "constitution": 16, + "intelligence": 17, + "wisdom": 21, + "charisma": 22, + "passive": 21, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+11", + "cha": "+12" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lolth's Fickle Favor", + "body": [ + "As a bonus action, the matron can bestow the Spider Queen's blessing on one ally she can see within 30 feet of her. The ally takes 7 ({@damage 2d6}) psychic damage but has advantage on the next attack roll it makes until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The drow has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The matron mother makes two demon staff attacks or three tentacle rod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Demon Staff", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage if used with two hands, plus 14 ({@damage 4d6}) psychic damage. In addition, the target must succeed on a DC19 Wisdom saving throw or become {@condition frightened} of the drow for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle Rod", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage. If the target is hit three times by the rod on one turn, the target must succeed on a {@dc 15} Constitution saving throw or suffer the following effects for 1 minute: the target's speed is halved, it has disadvantage on Dexterity saving throws, and it can't use reactions. Moreover, on each of its turns, it can take either an action or a bonus action, but not both. At the end of each of its turns, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Servant (1/Day)", + "body": [ + "The drow magically summons a {@creature retriever|mtf} or a {@creature yochlol}. The summoned creature appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Demon Staff", + "body": [ + "The drow makes one attack with her demon staff." + ], + "__dataclass__": "Entry" + }, + { + "title": "Compel Demon (Costs 2 Actions)", + "body": [ + "An allied demon within 30 feet of the drow uses its reaction to make one attack against a target of the drow's choice that she can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 1\u20133 Actions)", + "body": [ + "The drow expends a spell slot to cast a 1st-, 2nd-, or 3rd-level spell that she has prepared. Doing so costs 1 legendary action per level of the spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 20}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell clairvoyance}", + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell faerie fire}", + "{@spell levitate} (self only)", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The drow is a 20th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 19}, {@hit 11} to hit with spell attacks). The drow has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell cure wounds}", + "{@spell guiding bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell death ward}", + "{@spell freedom of movement}", + "{@spell guardian of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell contagion}", + "{@spell flame strike}", + "{@spell geas}", + "{@spell mass cure wounds}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell blade barrier}", + "{@spell harm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell divine word}", + "{@spell plane shift}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell holy aura}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell gate}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Matron Mother-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Drow Shadowblade", + "source": "MTF", + "page": 187, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 14, + "dexterity": 21, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+7", + "wis": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Step", + "body": [ + "While in dim light or darkness, the drow can teleport as a bonus action up to 60 feet to an unoccupied space it can see that is also in dim light or darkness. It then has advantage on the first melee attack it makes before the end of the turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes two attacks with its shadow sword. If either attack hits and the target is within 10 feet of a 5-foot cube of darkness created by the shadow sword on a previous turn, the drow can dismiss that darkness and cause the target to take 21 ({@damage 6d6}) necrotic damage. The drow can dismiss darkness in this way no more than once per turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Sword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 10 ({@damage 3d6}) necrotic damage and 10 ({@damage 3d6}) poison damage. The drow can then fill an unoccupied 5-foot cube within 5 feet of the target with magical darkness, which remains for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 9} to hit, range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage, and the target must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned} for 1 hour. If the saving throw fails by 5 or more, the target is also {@condition unconscious} while {@condition poisoned} in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Shadowblade-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Despot", + "source": "MTF", + "page": 188, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 20, + "dexterity": 5, + "constitution": 19, + "intelligence": 15, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "saves": { + "con": "+8", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The duergar has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Engine", + "body": [ + "When the duergar despot suffers a critical hit or is reduced to 0 hit points, psychic energy erupts from its frame to deal 14 ({@damage 4d6}) psychic damage to each creature within 5 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar despot has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The despot makes two iron fist attacks and two stomping foot attacks. It can replace up to four of these attacks with uses of its Flame Jet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Iron Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must make a successful {@dc 17} Strength saving throw or be thrown up to 30 feet away in a straight line. The target is knocked {@condition prone} and then takes 10 ({@damage 3d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomping Foot", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage, or 18 ({@damage 3d8 + 5}) bludgeoning damage to a {@condition prone} target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Jet", + "body": [ + "The duergar spews flames in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 16} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The duergar despot's innate spellcasting ability is Intelligence (spell save {@dc 12}). It can cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell counterspell}", + "{@spell misty step}", + "{@spell stinking cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Despot-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Hammerer", + "source": "MTF", + "page": 188, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 7, + "constitution": 12, + "intelligence": 5, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "traits": [ + { + "title": "Engine of Pain", + "body": [ + "Once per turn, a creature that attacks the hammerer can target the duergar trapped in it. The attacker has disadvantage on the attack roll. On a hit, the attack deals an extra 5 ({@damage 1d10}) damage to the hammerer, and the hammerer can respond by using its Multiattack with its reaction." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The hammerer deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hammerer makes two attacks: one with its claw and one with its hammer." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hammer", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Duergar Hammerer-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Kavalrachni", + "source": "MTF", + "page": 189, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Cavalry Training", + "body": [ + "When the duergar hits a target with a melee attack while mounted on a female steeder, the steeder can make one melee attack against the same target as a reaction." + ], + "__dataclass__": "Entry" + }, + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes two war pick attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shared Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it. While the {@condition invisible} duergar is mounted on a female steeder, the steeder is {@condition invisible} as well. The invisibility ends early on the steeder immediately after it attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 226 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Kavalrachni-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Mind Master", + "source": "MTF", + "page": 189, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + }, + { + "value": 19, + "note": "while reduced", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 17, + "constitution": 14, + "intelligence": 15, + "wisdom": 10, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes two melee attacks. It can replace one of those attacks with a use of Mind Mastery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind-Poison Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage and 10 ({@damage 3d6}) psychic damage, or 1 piercing damage and 14 ({@damage 4d6}) psychic damage while reduced." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility {@recharge 4}", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Reduce, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Mastery", + "body": [ + "The duergar targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 12} Intelligence saving throw, or the duergar causes it to use its reaction either to make one weapon attack against another creature the duergar can see or to move up to 10 feet in a direction of the duergar's choice. Creatures that can't be {@condition charmed} are immune to this effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reduce (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically decreases in size, along with anything it is wearing or carrying. While reduced, the duergar is Tiny, reduces its weapon damage to 1, and makes attacks, checks, and saving throws with disadvantage if they use Strength. It gains a +5 bonus to all Dexterity ({@skill Stealth}) checks and a +5 bonus to its AC. It can also take a bonus action on each of its turns to take the Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IDRotF" + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Mind Master-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Screamer", + "source": "MTF", + "page": 190, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 7, + "constitution": 12, + "intelligence": 5, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "traits": [ + { + "title": "Engine of Pain", + "body": [ + "Once per turn, a creature that attacks the screamer can target the duergar trapped in it. The attacker has disadvantage on the attack roll. On a hit, the attack deals an extra 11 ({@damage 2d10}) damage to the screamer, and the screamer can respond by using its Multiattack with its reaction." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The screamer makes one drill attack and uses its Sonic Scream." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drill", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d12 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sonic Scream", + "body": [ + "The screamer emits destructive energy in a 15-foot cube. Each creature in that area must succeed on a {@dc 11} Strength saving throw or take 7 ({@damage 2d6}) thunder damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Duergar Screamer-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Soulblade", + "source": "MTF", + "page": 190, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 11, + "dexterity": 16, + "constitution": 10, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Soulblade", + "body": [ + "As a bonus action, the duergar can create a shortsword-sized, visible blade of psionic energy. The weapon appears in the duergar's hand and vanishes if it leaves the duergar's grip, or if the duergar dies or is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Soulblade", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage, or 10 ({@damage 2d6 + 3}) force damage while enlarged. If the soulblade has advantage on the attack roll, the attack deals an extra 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The duergar's innate spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell true strike}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell jump}", + "{@spell hunter's mark}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 227 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Soulblade-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Stone Guard", + "source": "MTF", + "page": 191, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phalanx Formation", + "body": [ + "The duergar has advantage on attack rolls and Dexterity saving throws while standing within 5 feet of a duergar ally wielding a shield." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "King's Knife (Shortsword)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 227 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Stone Guard-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Warlord", + "source": "MTF", + "page": 192, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 11, + "constitution": 17, + "intelligence": 12, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The duergar makes three hammer or javelin attacks and uses Call to Attack, or Enlarge if it is available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic-Attuned Hammer", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage plus 5 ({@damage 1d10}) psychic damage, or 15 ({@damage 2d10 + 4}) bludgeoning damage plus 5 ({@damage 1d10}) psychic damage while enlarged," + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 11 ({@damage 2d6 + 4}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Call to Attack", + "body": [ + "Up to three allied duergar within 120 feet of this duergar that can hear it can each use their reaction to make one weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility {@recharge 4}", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Scouring Instruction", + "body": [ + "When an ally that the duergar can see makes a {@dice d20} roll, the duergar can roll a {@dice 1d6} and the ally can add the number rolled to the {@dice d20} roll by taking 3 ({@damage 1d6}) psychic damage. A creature immune to psychic damage can't be affected by Scouring Instruction." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Warlord-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Xarrorn", + "source": "MTF", + "page": 193, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fire Lance", + "body": [ + "{@atk mw} {@hit 5} to hit (with disadvantage if the target is within 5 feet of the duergar), reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage plus 3 ({@damage 1d6}) fire damage, or 16 ({@damage 2d12 + 3}) piercing damage plus 3 ({@damage 1d6}) fire damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Spray {@recharge 5}", + "body": [ + "From its fire lance, the duergar shoots a 15-foot cone of fire or a line of fire 30 feet long and 5 feet wide. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} for up to 1 hour or until it attacks, it casts a spell, it uses its Enlarge, or its {@status concentration} is broken (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 226 + } + ], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Xarrorn-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Dybbuk", + "source": "MTF", + "page": 132, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 6, + "dexterity": 19, + "constitution": 16, + "intelligence": 16, + "wisdom": 15, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The dybbuk can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The dybbuk has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Violate Corpse", + "body": [ + "The dybbuk can use a bonus action while it is possessing a corpse to make it do something unnatural, such as vomit blood, twist its head all the way around, or cause a quadruped to move as a biped. Any beast or humanoid that sees this behavior must succeed on a {@dc 12} Wisdom saving throw or become {@condition frightened} for 1 minute. The {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on a saving throw against this ability is immune to Violate Corpse for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tendril", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) necrotic damage. If the target is a creature, its hit point maximum is also reduced by 3 ({@dice 1d6}). This reduction lasts until the target finishes a short or long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possess Corpse {@recharge}", + "body": [ + "The dybbuk disappears into an intact corpse it can see within 5 feet of it. The corpse must be Large or smaller and be that of a beast or a humanoid. The dybbuk is now effectively the possessed creature. Its type becomes undead, though it now looks alive, and it gains a number of temporary hit points equal to the corpse's hit point maximum in life.", + "While possessing the corpse, the dybbuk retains its hit points, alignment, Intelligence, Wisdom, Charisma, telepathy, and immunity to poison damage, {@condition exhaustion}, and being {@condition charmed} and {@condition frightened}. It otherwise uses the possessed target's game statistics, gaining access to its knowledge and proficiencies but not its class features, if any.", + "The possession lasts until the temporary hit points are lost (at which point the body becomes a corpse once more) or the dybbuk ends its possession using a bonus action. When the possession ends, the dybbuk reappears in an unoccupied space within 5 feet of the corpse." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dybbuk's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell fear}", + "{@spell phantasmal force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Dybbuk-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Earth Elemental Myrmidon", + "source": "MTF", + "page": 202, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 8, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Terran", + "one language of its creator's choice" + ], + "traits": [ + { + "title": "Magic Weapons", + "body": [ + "The myrmidon's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes two maul attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Strike {@recharge}", + "body": [ + "The myrmidon makes one maul attack. On a hit, the target takes an extra 16 ({@damage 3d10}) thunder damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA", + "page": 212 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Earth Elemental Myrmidon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Eidolon", + "source": "MTF", + "page": 194, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 63, + "formula": "18d8 - 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 7, + "dexterity": 8, + "constitution": 9, + "intelligence": 14, + "wisdom": 19, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The eidolon can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object other than a sacred statue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sacred Animation {@recharge 5}", + "body": [ + "When the eidolon moves into a space occupied by a sacred statue, the eidolon can disappear, causing the statue to become a creature under the eidolon's control. The eidolon uses the {@creature sacred statue|mtf}'s statistics in place of its own." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The eidolon has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Divine Dread", + "body": [ + "Each creature within 60 feet of the eidolon that can see it must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} for 1 minute. While {@condition frightened} in this way, the creature must take the Dash action and move away from the eidolon by the safest available route at the start of each of its turns, unless there is nowhere for it to move, in which case the creature also becomes {@condition stunned} until it can move again. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to any eidolon's Divine Dread for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eidolon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Elder Oblex", + "source": "MTF", + "page": 219, + "size_str": "Huge", + "maintype": "ooze", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 115, + "formula": "10d12 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 15, + "dexterity": 16, + "constitution": 21, + "intelligence": 22, + "wisdom": 13, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+10", + "cha": "+8" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "languages": [ + "Common plus six more" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion to Fire", + "body": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sulfurous Impersonation", + "body": [ + "As a bonus action, the oblex can extrude a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate {@dice 2d6 + 1} different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. For all practical purposes, the simulacrum is the oblex, meaning the oblex occupies its space and the simulacrum's space simultaneously. The slimy tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex's main body and the simulacrum. The simulacrum disappears if the tether is severed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elder oblex makes two pseudopod attacks and uses Eat Memories." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}17 ({@damage 4d6 + 3}) bludgeoning damage plus 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eat Memories", + "body": [ + "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a {@dc 18} Wisdom saving throw or take 44 ({@damage 8d10}) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the {@spell greater restoration} or {@spell heal} spell. Constructs, oozes, plants, and undead succeed on the save automatically.", + "While memory drained, the target must roll a {@dice d4} and subtract the number rolled from any ability check or attack roll it makes. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target becomes {@condition unconscious} for 1 hour. The effect then ends.", + "When an oblex causes a target to become memory drained, the oblex learns all the languages the target knows and gains all its proficiencies, except any saving throw proficiencies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The oblex's innate spellcasting ability is Intelligence (spell save {@dc 18}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person} (as 5th-level spell)", + "{@spell detect thoughts}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell confusion}", + "{@spell dimension door}", + "{@spell dominate person}", + "{@spell fear}", + "{@spell hallucinatory terrain}", + "{@spell hold monster}", + "{@spell hypnotic pattern}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elder Oblex-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Elder Tempest", + "source": "MTF", + "page": 200, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 19 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 264, + "formula": "16d20 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 23, + "dexterity": 28, + "constitution": 23, + "intelligence": 2, + "wisdom": 21, + "charisma": 18, + "passive": 15, + "saves": { + "wis": "+12", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Air Form", + "body": [ + "The tempest can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The tempest doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the tempest fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Living Storm", + "body": [ + "The tempest is always at the center of a storm {@dice 1d6 + 4} miles in diameter. Heavy precipitation in the form of either rain or snow falls there, causing the area to be lightly obscured. Heavy rain also extinguishes open flames and imposes disadvantage on Wisdom ({@skill Perception}) checks that rely on hearing.", + "In addition, strong winds swirl in the area covered by the storm. The winds impose disadvantage on ranged attack rolls. The winds extinguish open flames and disperse fog." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The tempest deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tempest makes two attacks with its thunderous slam." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Slam", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}23 ({@damage 4d6 + 9}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm {@recharge}", + "body": [ + "All other creatures within 120 feet of the tempest must each make a {@dc 20} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage on a failed save, or half as much damage on a successful one. If a target's saving throw fails by 5 or more, the creature is also {@condition stunned} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The tempest moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike (Costs 2 Actions)", + "body": [ + "The tempest can cause a bolt of lightning to strike a point on the ground anywhere under its storm. Each creature within 5 feet of that point must make a {@dc 20} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Screaming Gale (Costs 3 Actions)", + "body": [ + "The tempest releases a blast of thunder and wind in a line that is 1 mile long and 20 feet wide. Objects in that area take 22 ({@damage 4d10}) thunder damage. Each creature there must succeed on a {@dc 21} Dexterity saving throw or take 22 ({@damage 4d10}) thunder damage and be flung up to 60 feet in a direction away from the line. If a thrown target collides with an immovable object, such as a wall or floor, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown before impact. If the target would collide with another creature instead, that other creature must succeed on a {@dc 19} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elder Tempest-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Female Steeder", + "source": "MTF", + "page": 238, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 16, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 14, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extraordinary Leap", + "body": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to move 3 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sticky Leg", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is stuck to the steeder's leg and is {@condition grappled} until it escapes (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 231 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Female Steeder-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Fire Elemental Myrmidon", + "source": "MTF", + "page": 203, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 13, + "dexterity": 18, + "constitution": 15, + "intelligence": 9, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ignan", + "one language of its creator's choice" + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "The myrmidon sheds bright light in a 20-foot radius and dim light in a 40-foot radius." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The myrmidon's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Susceptibility", + "body": [ + "For every 5 feet the myrmidon moves in 1 foot or more of water, it takes 2 ({@damage 1d4}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes three scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Strikes {@recharge}", + "body": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA", + "page": 213 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fire Elemental Myrmidon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Fraz-Urb'luu", + "source": "MTF", + "page": 146, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 337, + "formula": "27d10 + 189", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 29, + "dexterity": 12, + "constitution": 25, + "intelligence": 26, + "wisdom": 24, + "charisma": 26, + "passive": 24, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+14", + "int": "+15", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Fraz-Urb'luu fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Fraz-Urb'luu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Fraz-Urb'luu's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undetectable", + "body": [ + "Fraz-Urb'luu can't be targeted by divination magic, perceived through magical scrying sensors, or detected by abilities that sense demons or fiends." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Fraz-Urb'luu makes three attacks: one with his bite and two with his fists." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d6 + 9}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) bludgeoning damage. If the target is a Large or smaller creature, it is also {@condition grappled} (escape {@dc 24}). The {@condition grappled} target is also {@condition restrained}. Fraz-Urb'luu can grapple only one creature with his tail at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phantasmal Killer (Costs 2 Actions)", + "body": [ + "Fraz-Urb'luu casts {@spell phantasmal killer}, no {@status concentration} required." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Fraz-Urb'luu's spellcasting ability is Charisma (spell save {@dc 23}). Fraz-Urb'luu can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell phantasmal force}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell confusion}", + "{@spell dream}", + "{@spell mislead}", + "{@spell programmed illusion}", + "{@spell seeming}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell mirage arcane}", + "{@spell modify memory}", + "{@spell project image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 238 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Fraz-Urb'luu-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Frost Salamander", + "source": "MTF", + "page": 223, + "size_str": "Huge", + "maintype": "elemental", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d12 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 12, + "constitution": 18, + "intelligence": 7, + "wisdom": 11, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+4" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Primordial" + ], + "traits": [ + { + "title": "Burning Fury", + "body": [ + "When the salamander takes fire damage, its Freezing Breath automatically recharges." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The salamander makes five attacks: four with its claws and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage and 5 ({@damage 1d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Breath {@recharge}", + "body": [ + "The salamander exhales chill wind in a 60-foot cone. Each creature in that area must make a {@dc 17} Constitution saving throw, taking 44 ({@damage 8d10}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Salamander-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Geryon", + "source": "MTF", + "page": 173, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 300, + "formula": "24d12 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 29, + "dexterity": 17, + "constitution": 22, + "intelligence": 19, + "wisdom": 16, + "charisma": 23, + "passive": 20, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+13", + "wis": "+10", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Geryon fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Geryon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Geryon's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Geryon regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Geryon dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Geryon makes two attacks: one with his claws and one with his stinger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}23 ({@damage 4d6 + 9}) slashing damage. If the target is Large or smaller, it is {@condition grappled} ({@dc 24}) and is {@condition restrained} until the grapple ends. Geryon can grapple one creature at a time. If the target is already {@condition grappled} by Geryon, the target takes an extra 27 ({@damage 6d8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stinger", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one creature. {@h}14 ({@damage 2d4 + 9}) piercing damage, and the target must succeed on a {@dc 21} Constitution saving throw or take 13 ({@damage 2d12}) poison damage and become {@condition poisoned} until it finishes a short or long rest. The target's hit point maximum is reduced by an amount equal to half the poison damage it takes. If its hit point maximum drops to 0, it dies. This reduction lasts until the {@condition poisoned} condition is removed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Geryon magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Infernal Glare", + "body": [ + "Geryon targets one creature he can see within 60 feet of him. If the target can see Geryon, the target must succeed on a {@dc 23} Wisdom saving throw or become {@condition frightened} of Geryon until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swift Sting (Costs 2 Actions)", + "body": [ + "Geryon attacks with his stinger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Geryon uses his Teleport action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Geryon's innate spellcasting ability is Charisma (spell save {@dc 21}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell detect magic}", + "{@spell geas}", + "{@spell ice storm}", + "{@spell invisibility} (self only)", + "{@spell locate object}", + "{@spell suggestion}", + "{@spell wall of ice}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell divine word}", + "{@spell symbol} (pain only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Geryon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Giff", + "source": "MTF", + "page": 204, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 11, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Headfirst Charge", + "body": [ + "The giff can try to knock a creature over; if the giff moves at least 20 feet in a straight line that ends within 5 feet of a Large or smaller creature, that creature must succeed on a {@dc 14} Strength saving throw or take 7 ({@damage 2d6}) bludgeoning damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Firearms Knowledge", + "body": [ + "The giff's mastery of its weapons enables it to ignore the loading property of muskets and pistols." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giff makes two pistol attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Musket", + "body": [ + "{@atk rw} {@hit 4} to hit, range 40/120 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pistol", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fragmentation Grenade (1/Day)", + "body": [ + "The giff throws a grenade up to 60 feet. Each creature within 20 feet of the grenade's detonation must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) piercing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giff-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Gish", + "source": "MTF", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 17, + "dexterity": 15, + "constitution": 14, + "intelligence": 16, + "wisdom": 15, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+7", + "wis": "+6" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "War Magic", + "body": [ + "When the githyanki uses its action to cast a spell, it can make one weapon attack as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes two longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 18 ({@damage 4d8}) psychic damage, or 8 ({@damage 1d10 + 3}) slashing damage plus 18 ({@damage 4d8}) psychic damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The githyanki is an 8th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The githyanki has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell message}", + "{@spell true strike}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell magic missile}", + "{@spell sleep}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell invisibility}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell haste}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Gish-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Kith'rak", + "source": "MTF", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "24d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 18, + "dexterity": 16, + "constitution": 17, + "intelligence": 16, + "wisdom": 15, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+7", + "wis": "+6" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Rally the Troops", + "body": [ + "As a bonus action, the githyanki can magically end the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes three greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 17 ({@damage 5d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The githyanki adds 4 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blur}", + "{@spell jump}", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Kith'rak-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Githyanki Supreme Commander", + "source": "MTF", + "page": 206, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 19, + "dexterity": 17, + "constitution": 18, + "intelligence": 16, + "wisdom": 16, + "charisma": 18, + "passive": 18, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "int": "+8", + "wis": "+8" + }, + "languages": [ + "Gith" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githyanki makes two greatsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Greatsword", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 17 ({@damage 5d6}) psychic damage. On a critical hit against a target in an astral body (as with the {@spell astral projection} spell), the githyanki can cut the silvery cord that tethers the target to its material body, instead of dealing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The githyanki adds 5 to its AC against one melee attack that would hit it. To do so, the githyanki must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack (2 Actions)", + "body": [ + "The githyanki makes a greatsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Command Ally", + "body": [ + "The githyanki targets one ally it can see within 30 feet of it. If the target can see or hear the githyanki, the target can make one melee weapon attack using its reaction and has advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The githyanki magically teleports, along with any equipment it is wearing and carrying, to an unoccupied space it can see within 30 feet of it. It also becomes insubstantial until the start of its next turn. While insubstantial, it can move through other creatures and objects as if they were {@quickref difficult terrain||3}. If it ends its turn inside an object, it takes 16 ({@damage 3d10}) force damage and is moved to the nearest unoccupied space." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githyanki's innate spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell jump}", + "{@spell levitate} (self only)", + "{@spell misty step}", + "{@spell nondetection} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Bigby's hand}", + "{@spell mass suggestion}", + "{@spell plane shift}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githyanki Supreme Commander-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Anarch", + "source": "MTF", + "page": 207, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 20 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 16, + "dexterity": 21, + "constitution": 18, + "intelligence": 18, + "wisdom": 20, + "charisma": 14, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "dex": "+10", + "int": "+9", + "wis": "+10" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the anarch is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The anarch makes three unarmed strikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Strike", + "body": [ + "The anarch makes one unarmed strike." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The anarch magically teleports, along with any equipment it is wearing and carrying, to an unoccupied space it can see within 30 feet of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Gravity (Costs 3 Actions)", + "body": [ + "The anarch casts the {@spell reverse gravity} spell. The spell has the normal effect, except that the anarch can orient the area in any direction and creatures and objects fall toward the end of the area." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The anarch's innate spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell globe of invulnerability}", + "{@spell plane shift}", + "{@spell teleportation circle}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Anarch-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Enlightened", + "source": "MTF", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 18 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 14, + "dexterity": 19, + "constitution": 16, + "intelligence": 17, + "wisdom": 19, + "charisma": 13, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "dex": "+8", + "int": "+7", + "wis": "+8" + }, + "languages": [ + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes three unarmed strikes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Temporal Strike {@recharge}", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 52 ({@damage 8d12}) psychic damage. The target must succeed on a {@dc 16} Wisdom saving throw or move 1 round forward in time. A target moved forward in time vanishes for the duration. When the effect ends, the target reappears in the space it left or in an unoccupied space nearest to that space if it's occupied." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The githzerai's innate spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blur}", + "{@spell expeditious retreat}", + "{@spell feather fall}", + "{@spell jump}", + "{@spell see invisibility}", + "{@spell shield}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell haste}", + "{@spell plane shift}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Enlightened-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Gloom Weaver", + "source": "MTF", + "page": 224, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 17, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 15, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "saves": { + "dex": "+8", + "con": "+6" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Burden of Time", + "body": [ + "Beasts and humanoids, other than shadar-kai, have disadvantage on saving throws while within 10 feet of the gloom weaver." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "The gloom weaver has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gloom weaver makes two spear attacks and casts one spell that takes 1 action to cast." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Spear", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 26 ({@damage 4d12}) necrotic damage, or 8 ({@damage 1d8 + 4}) piercing damage plus 26 ({@damage 4d12}) necrotic damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Misty Escape (Recharges after a Short or Long Rest)", + "body": [ + "When the gloom weaver takes damage, it turns {@condition invisible} and teleports up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks or casts a spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The gloom weaver's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell arcane eye}", + "{@spell mage armor}", + "{@spell speak with dead}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell arcane gate}", + "{@spell bane}", + "{@spell compulsion}", + "{@spell confusion}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The gloom weaver is a 12th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell chill touch}", + "{@spell eldritch blast}*" + ], + "__dataclass__": "SpellList" + }, + null, + null, + null, + null, + { + "slots": 3, + "spells": [ + "{@spell armor of Agathys}", + "{@spell blight}", + "{@spell darkness}", + "{@spell dream}", + "{@spell invisibility}", + "{@spell fear}", + "{@spell hypnotic pattern}", + "{@spell major image}", + "{@spell contact other plane}", + "{@spell vampiric touch}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Gloom Weaver-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Gray Render", + "source": "MTF", + "page": 209, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 13, + "constitution": 20, + "intelligence": 3, + "wisdom": 6, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+9" + }, + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gray render makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) piercing damage. If the target is Medium or smaller, the target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage. If the target is {@condition prone} an additional 7 ({@damage 2d6}) bludgeoning damage is dealt to the target." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Bloody Rampage", + "body": [ + "When the gray render takes damage, it makes one attack with its claws against a random creature within its reach, other than its master." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gray Render-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Graz'zt", + "source": "MTF", + "page": 149, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 346, + "formula": "33d10 + 165", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 22, + "dexterity": 15, + "constitution": 21, + "intelligence": 23, + "wisdom": 21, + "charisma": 26, + "passive": 22, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+12", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "Graz'zt can use his action to polymorph into a form that resembles a Medium humanoid, or back into his true form. Aside from his size, his statistics are the same in each form. Any equipment he is wearing or carrying isn't transformed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Graz'zt fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Graz'zt has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Graz'zt's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Graz'zt attacks twice with Wave of Sorrow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wave of Sorrow (Greatsword)", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}20 ({@damage 4d6 + 6}) slashing damage plus 10 ({@damage 3d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Graz'zt magically teleports, along with any equipment he is wearing or carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Graz'zt attacks once with Wave of Sorrow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dance, My Puppet", + "body": [ + "One creature {@condition charmed} by Graz'zt that Graz'zt can see must use its reaction to move up to its speed as Graz'zt directs." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sow Discord", + "body": [ + "Graz'zt casts {@spell crown of madness} or dissonant whispers." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Graz'zt uses his Teleport action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Graz'zt's spellcasting ability is Charisma (spell save {@dc 23}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell crown of madness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell dissonant whispers}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell counterspell}", + "{@spell darkness}", + "{@spell dominate person}", + "{@spell sanctuary}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell greater invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 241 + } + ], + "subtype": "demon, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Graz'zt-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Green Abishai", + "source": "MTF", + "page": 162, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "25d8 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 12, + "dexterity": 17, + "constitution": 16, + "intelligence": 17, + "wisdom": 12, + "charisma": 19, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The abishai's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes two attacks, one with its claws and one with its longsword, or it casts one spell from its Innate Spellcasting trait and makes one claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) poison damage and become {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The abishai's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell major image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell detect thoughts}", + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dominate person}", + "{@spell mass suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Green Abishai-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Hellfire Engine", + "source": "MTF", + "page": 165, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 20, + "dexterity": 16, + "constitution": 24, + "intelligence": 2, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "saves": { + "dex": "+8", + "wis": "+5", + "cha": "+0" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Infernal but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The hellfire engine is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The hellfire engine has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Flesh-Crushing Stride", + "body": [ + "The hellfire engine moves up to its speed in a straight line. During this move, it can enter Large or smaller creatures' spaces. A creature whose space the hellfire engine enters must make a {@dc 18} Dexterity saving throw. On a successful save, the creature is pushed to the nearest space out of the hellfire engine's path. On a failed save, the creature falls {@condition prone} and takes 28 ({@damage 8d6}) bludgeoning damage.", + "If the hellfire engine remains in the {@condition prone} creature's space, the creature is also {@condition restrained} until it's no longer in the same space as the hellfire engine. While {@condition restrained} in this way, the creature, or another creature within 5 feet of it, can make a {@dc 18} Strength check. On a success, the creature is shunted to an unoccupied space of its choice within 5 feet of the hellfire engine and is no longer {@condition restrained}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellfire Weapons", + "body": [ + "The hellfire engine uses one of the following options:", + { + "title": "Bonemelt Sprayer", + "body": [ + "The hellfire engine spews acidic flame in a 60-foot cone. Each creature in the cone must make a {@dc 20} Dexterity saving throw, taking 11 ({@damage 2d10}) fire damage plus 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one. Creatures that fail the saving throw are drenched in burning acid and take 5 ({@damage 1d10}) fire damage plus 9 ({@damage 2d8}) acid damage at the end of their turns. An affected creature or another creature within 5 feet of it can take an action to scrape off the burning fuel." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Flail", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one creature. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 22 ({@damage 5d8}) lightning damage. Up to three other creatures of the hellfire engine's choice that it can see within 30 feet of the target must each make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 5d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunder Cannon", + "body": [ + "The hellfire engine targets a point within 120 feet of it that it can see. Each creature within 30 feet of that point must make a {@dc 20} Dexterity saving throw, taking 27 ({@damage 5d10}) bludgeoning damage plus 13 ({@damage 2d12}) thunder damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + "If the chosen option kills a creature, the creature's soul rises from the River Styx as a lemure in Avernus in {@dice 1d4} hours. If the creature isn't revived before then, only a {@spell wish} spell or killing the lemure and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hellfire Engine-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Howler", + "source": "MTF", + "page": 210, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 17, + "dexterity": 16, + "constitution": 15, + "intelligence": 5, + "wisdom": 20, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "A howler has advantage on attack rolls against a creature if at least one of the howler's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The howler makes two bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rending Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is {@condition frightened} it takes an additional 22 ({@damage 4d10}) psychic damage. This attack ignores damage resistance." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind-Breaking Howl {@recharge}", + "body": [ + "The howler emits a keening howl in a 60-foot cone. Each creature in that area that isn't {@condition deafened} must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} until the end of the howler's next turn. While a creature is {@condition frightened} in this way, its speed is halved, and it is {@condition incapacitated}. A target that successfully saves is immune to the Mind-Breaking Howl of all howlers for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Howler-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Hutijin", + "source": "MTF", + "page": 175, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d10 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 27, + "dexterity": 15, + "constitution": 25, + "intelligence": 23, + "wisdom": 19, + "charisma": 25, + "passive": 21, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+14", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Infernal Despair", + "body": [ + "Each creature within 15 feet of Hutijin that isn't a devil makes saving throws with disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Hutijin fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Hutijin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Hutijin's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Hutijin regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Hutijin dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hutijin makes four attacks: one with his bite, one with his claw, one with his mace, and one with his tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) piercing damage. The target must succeed on a {@dc 22} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, the target can't regain hit points, and it takes 10 ({@damage 3d6}) poison damage at the start of each of its turns. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d6 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Hutijin magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Fearful Voice {@recharge 5}", + "body": [ + "In response to taking damage, Hutijin utters a dreadful word of power. Each creature within 30 feet of him that isn't a devil must succeed on a {@dc 22} Wisdom saving throw or become {@condition frightened} of him 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. A creature that saves against this effect is immune to Hutijin's Fearful Voice for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Hutijin attacks once with his mace." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm (Costs 2 Actions)", + "body": [ + "Hutijin releases lightning in a 20-foot radius. All other creatures in that area must each make a {@dc 22} Dexterity saving throw, taking 18 ({@damage 4d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Hutijin uses his Teleport action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Hutijin's innate spellcasting ability is Charisma (spell save {@dc 22}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell animate dead}", + "{@spell detect magic}", + "{@spell hold monster}", + "{@spell invisibility} (self only)", + "{@spell lightning bolt}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell heal}", + "{@spell symbol} (hopelessness only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Hutijin-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Hydroloth", + "source": "MTF", + "page": 249, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 12, + "dexterity": 21, + "constitution": 16, + "intelligence": 19, + "wisdom": 10, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The hydroloth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The hydroloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The hydroloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Secure Memory", + "body": [ + "The hydroloth is immune to the waters of the River Styx as well as any effect that would steal or modify its memories or detect or read its thoughts." + ], + "__dataclass__": "Entry" + }, + { + "title": "Watery Advantage", + "body": [ + "While submerged in liquid, the hydroloth has advantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hydroloth makes two melee attacks. In place of one of these attacks, it can cast one spell that takes 1 action to cast." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steal Memory (1/Day)", + "body": [ + "The hydroloth targets one creature it can see within 60 feet of it. The target takes {@damage 4d6} psychic damage, and it must make a {@dc 16} Intelligence saving throw. On a successful save, the target becomes immune to this hydroloth's Steal Memory for 24 hours. On a failed save, the target loses all proficiencies, it can't cast spells, it can't understand language, and if its Intelligence and Charisma scores are higher than 5, they become 5. Each time the target finishes a long rest, it can repeat the saving throw, ending the effect on itself on a success. A {@spell greater restoration} or {@spell remove curse} spell cast on the target ends this effect early." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The hydroloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The hydroloth's innate spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell water walk}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell control water}", + "{@spell crown of madness}", + "{@spell fear}", + "{@spell phantasmal killer}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Hydroloth-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Iron Cobra", + "source": "MTF", + "page": 125, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The iron cobra has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or suffer one random poison effect:", + "1. Poison Damage: The target takes 13 ({@damage 3d8}) poison damage.", + "2. Confusion: On its next turn, the target must use its action to make one weapon attack against a random creature it can see within 30 feet of it, using whatever weapon it has in hand and moving beforehand if necessary to get in range. If it's holding no weapon, it makes an unarmed strike. If no creature is visible within 30 feet, it takes the Dash action, moving toward the nearest creature.", + "3. Paralysis: The target is {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "RtG", + "page": 33 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Iron Cobra-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Juiblex", + "source": "MTF", + "page": 151, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 350, + "formula": "28d12 + 168", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 24, + "dexterity": 10, + "constitution": 23, + "intelligence": 20, + "wisdom": 20, + "charisma": 16, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+13", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Foul", + "body": [ + "Any creature, other than an ooze, that starts its turn within 10 feet of Juiblex must succeed on a {@dc 21} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Juiblex fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Juiblex has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Juiblex's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Juiblex regains 20 hit points at the start of its turn. If it takes fire or radiant damage, this trait doesn't function at the start of its next turn. Juiblex dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Juiblex can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Juiblex makes three acid lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Lash", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}21 ({@damage 4d6 + 7}) acid damage. Any creature killed by this attack is drawn into Juiblex's body, and the corpse is obliterated after 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eject Slime {@recharge 5}", + "body": [ + "Juiblex spews out a corrosive slime, targeting one creature that it can see within 60 feet of it. The target must make a {@dc 21} Dexterity saving throw. On a failure, the target takes 55 ({@damage 10d10}) acid damage. Unless the target avoids taking any of this damage, any metal armor worn by the target takes a permanent \u22121 penalty to the AC it offers, and any metal weapon it is carrying or wearing takes a permanent \u22121 penalty to damage rolls. The penalty worsens each time a target is subjected to this effect. If the penalty on an object drops to \u22125, the object is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Acid Splash", + "body": [ + "Juiblex casts {@spell acid splash}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Attack", + "body": [ + "Juiblex makes one acid lash attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupting Touch (Costs 2 Actions)", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one creature. {@h}21 ({@damage 4d6 + 7}) poison damage, and the target is slimed. Until the slime is scraped off with an action, the target is {@condition poisoned}, and any creature, other than an ooze, is {@condition poisoned} while within 10 feet of the target." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Juiblex's spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). Juiblex can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell acid splash} (17th level)", + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blight}", + "{@spell contagion}", + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 243 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Juiblex-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Kruthik Hive Lord", + "source": "MTF", + "page": 212, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 16, + "constitution": 17, + "intelligence": 10, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Kruthik" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The kruthik has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kruthik makes two stab attacks or two spike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spike", + "body": [ + "{@atk rw} {@hit 6} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Spray {@recharge 5}", + "body": [ + "The kruthik sprays acid in a 15-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw, taking 22 ({@damage 4d10}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kruthik Hive Lord-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Leviathan", + "source": "MTF", + "page": 198, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 328, + "formula": "16d20 + 160", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 120, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 30, + "dexterity": 24, + "constitution": 30, + "intelligence": 2, + "wisdom": 18, + "charisma": 17, + "passive": 14, + "saves": { + "wis": "+10", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the leviathan fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Partial Freeze", + "body": [ + "If the leviathan takes 50 cold damage or more during a single turn, the leviathan partially freezes; until the end of its next turn, its speeds are reduced to 20 feet, and it makes attack rolls with disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The leviathan deals double damage to objects and structures (included in Tidal Wave)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Form", + "body": [ + "The leviathan can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The leviathan makes two attacks: one with its slam and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}15 ({@damage 1d10 + 10}) bludgeoning damage plus 5 ({@damage 1d10}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}16 ({@damage 1d12 + 10}) bludgeoning damage plus 6 ({@damage 1d12}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tidal Wave {@recharge}", + "body": [ + "While submerged, the leviathan magically creates a wall of water centered on itself. The wall is up 250 feet long, up to 250 feet high, and up to 50 feet thick. When the wall appears, all other creatures within its area must each make a {@dc 24} Strength saving throw. A creature takes 33 ({@damage 6d10}) bludgeoning damage on failed save, or half as much damage on a successful one.", + "At the start of each of the leviathan's turns after the wall appears, the wall, along with any other creatures in it, moves 50 feet away from the leviathan. Any Huge or smaller creature inside the wall or whose space the wall enters when it moves must succeed on a {@dc 24} Strength saving throw or take 27 ({@damage 5d10}) bludgeoning damage. A creature takes this damage no more than once on a turn. At the end of each turn the wall moves, the wall's height is reduced by 50 feet, and the damage creatures take from the wall on subsequent rounds is reduced by {@dice 1d10}. When the wall reaches 0 feet in height, the effect ends.", + "A creature caught in the wall can move by swimming. Because of the force of the wave, though, the creature must make a successful {@dc 24} Strength ({@skill Athletics}) check to swim at all during that turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Slam (Costs 2 Actions)", + "body": [ + "The leviathan makes one slam attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The leviathan moves up to its speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Leviathan-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Male Steeder", + "source": "MTF", + "page": 238, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 12, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 14, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The steeder can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extraordinary Leap", + "body": [ + "The distance of the steeder's long jumps is tripled; every foot of its walking speed that it spends on the jump allows it to jump 3 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage plus 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sticky Leg", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Small or Tiny creature. {@h}The target is stuck to the steeder's leg and is {@condition grappled} until it escapes (escape {@dc 12}). The steeder can have only one creature {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 231 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Male Steeder-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Marut", + "source": "MTF", + "page": 213, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 432, + "formula": "32d10 + 256", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 28, + "dexterity": 12, + "constitution": 26, + "intelligence": 19, + "wisdom": 15, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+10", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "all but rarely speaks" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The marut is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the marut fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The marut has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The marut makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unerring Slam", + "body": [ + "{@atk mw} automatic hit, reach 5 ft., one target. {@h}60 force damage, and the target is pushed up to 5 feet away from the marut if it is Huge or smaller." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blazing Edict {@recharge 5}", + "body": [ + "Arcane energy emanates from the marut's chest in a 60-foot cube. Every creature in that area takes 45 radiant damage. Each creature that takes any of this damage must succeed on a {@dc 20} Wisdom saving throw or be {@condition stunned} until the end of the marut's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Justify", + "body": [ + "The marut targets up to two creatures it can see within 60 feet of it. Each target must succeed on a {@dc 20} Charisma saving throw or be teleported to a teleportation circle in the Hall of Concordance in Sigil. A target fails automatically if it is {@condition incapacitated}. If either target is teleported in this way, the marut teleports with it to the circle.", + "After teleporting in this way, the marut can't use this action again until it finishes a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The marut's innate spellcasting ability is Intelligence (spell save {@dc 20}). The marut can innately cast the following spell, requiring no material components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "inevitable", + "actions_note": "", + "mythic": null, + "key": "Marut-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Maurezhi", + "source": "MTF", + "page": 133, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 17, + "constitution": 12, + "intelligence": 11, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Elvish", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Assume Form", + "body": [ + "The maurezhi can assume the appearance of any Medium humanoid it has eaten. It remains in this form for {@dice 1d6} days, during which time the form gradually decays until, when the effect ends, the form sloughs from the demon's body." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The maurezhi has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The maurezhi makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage. If the target is a humanoid, its Charisma score is reduced by {@dice 1d4}. This reduction lasts until the target finishes a short or long rest. The target dies if this reduces its Charisma to 0. It rises 24 hours later as a ghoul, unless it has been revived or its corpse has been destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage. If the target is a creature other than an undead, it must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raise Ghoul {@recharge 5}", + "body": [ + "The maurezhi targets one dead ghoul or ghast it can see within 30 feet of it. The target is revived with all its hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Maurezhi-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Meazel", + "source": "MTF", + "page": 214, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 35, + "formula": "10d8 - 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 17, + "constitution": 9, + "intelligence": 14, + "wisdom": 13, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the meazel can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Garrote", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target of the meazel's size or smaller. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13} with disadvantage). Until the grapple ends, the target takes 10 ({@damage 2d6 + 3}) bludgeoning damage at the start of each of the meazel's turns. The meazel can't make weapon attacks while grappling a creature in this way." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, plus 3 ({@damage 1d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Teleport {@recharge 5}", + "body": [ + "The meazel, any equipment it is wearing or carrying, and any creature it is grappling teleport to an unoccupied space within 500 feet of it, provided that the starting space and the destination are in dim light or darkness. The destination must be a place the meazel has seen before, but it need not be within line of sight. If the destination space is occupied, the teleportation leads to the nearest unoccupied space.", + "Any other creature the meazel teleports becomes cursed by shadow for 1 hour. Until this curse ends, every undead and every creature native to the Shadowfell within 300 feet of the cursed creature can sense it, which prevents that creature from hiding from them." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "meazel", + "actions_note": "", + "mythic": null, + "key": "Meazel-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Merregon", + "source": "MTF", + "page": 166, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 6, + "wisdom": 12, + "charisma": 8, + "passive": 11, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Infernal but can't speak", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the merregon's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The merregon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The merregon makes two halberd attacks, or if an allied fiend of challenge rating 6 or higher is within 60 feet of it, the merregon makes three halberd attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Halberd", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Loyal Bodyguard", + "body": [ + "When another fiend within 5 feet of the merregon is hit by an attack, the merregon causes itself to be hit instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Merregon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Merrenoloth", + "source": "MTF", + "page": 250, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 17, + "constitution": 10, + "intelligence": 17, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The merrenoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The merrenoloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "As a bonus action, the merrenoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The merrenoloth uses Fear Gaze once and makes one oar attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fear Gaze", + "body": [ + "The merrenoloth targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The merrenoloth's innate spellcasting ability is Intelligence (spell save {@dc 13}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell gust of wind}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell control weather}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell control water}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Merrenoloth-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Moloch", + "source": "MTF", + "page": 177, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 253, + "formula": "22d10 + 132", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 26, + "dexterity": 19, + "constitution": 22, + "intelligence": 21, + "wisdom": 18, + "charisma": 23, + "passive": 21, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+13", + "wis": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Moloch fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Moloch has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Moloch's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Moloch regains 20 hit points at the start of his turn. If he takes radiant damage, this trait doesn't function at the start of his next turn. Moloch dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Moloch makes three attacks: one with his bite, one with his claw, and one with his whip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d8 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Many-Tailed Whip", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}13 ({@damage 2d4 + 8}) slashing damage plus 11 ({@damage 2d10}) lightning damage. If the target is a creature, it must succeed on a {@dc 24} Strength saving throw or be pulled up to 30 feet in a straight line toward Moloch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath of Despair {@recharge 5}", + "body": [ + "Moloch exhales in a 30-foot cube. Each creature in that area must succeed on a {@dc 21} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage, drop whatever it is holding, and become {@condition frightened} for 1 minute. While {@condition frightened} in this way, a creature must take the Dash action and move away from Moloch by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the Dash action. If the creature ends its turn in a location where it doesn't have line of sight to Moloch, the creature can repeat the saving throw. On a success, the effect ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Moloch magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Stinking Cloud", + "body": [ + "Moloch casts {@spell stinking cloud}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Moloch uses his Teleport action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whip", + "body": [ + "Moloch makes one attack with his whip." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Moloch's innate spellcasting ability is Charisma (spell save {@dc 21}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing his appearance)", + "{@spell animate dead}", + "{@spell burning hands} (as a 7th-level spell)", + "{@spell confusion}", + "{@spell detect magic}", + "{@spell fly}", + "{@spell geas}", + "{@spell major image}", + "{@spell stinking cloud}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell flame strike}", + "{@spell symbol} (stunning only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Moloch-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Molydeus", + "source": "MTF", + "page": 134, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 28, + "dexterity": 22, + "constitution": 25, + "intelligence": 21, + "wisdom": 24, + "charisma": 24, + "passive": 31, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 21, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+16", + "con": "+14", + "wis": "+14", + "cha": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the molydeus fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The molydeus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The molydeus's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The molydeus makes three attacks: one with its weapon, one with its wolf bite, and one with its snakebite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Demonic Weapon", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) slashing damage. If the target has at least one head and the molydeus rolled a 20 on the attack roll, the target is decapitated and dies if it can't survive without that head. A target is immune to this effect if it takes none of the damage, has legendary actions, or is Huge or larger. Such a creature takes an extra {@damage 6d8} slashing damage from the hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wolf Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snakebite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one creature. {@h}12 ({@damage 1d6 + 9}) piercing damage, and the target must succeed on a {@dc 22} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target transforms into a {@creature manes} if this reduces its hit point maximum to 0. This transformation can be ended only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The molydeus makes one attack, either with its demonic weapon or with its snakebite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The molydeus moves without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell", + "body": [ + "The molydeus casts one spell from its Innate Spellcasting trait." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The molydeus's innate spellcasting ability is Charisma (spell save {@dc 22}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dispel magic}", + "{@spell polymorph}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell imprisonment}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell lightning bolt}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Molydeus-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Nabassu", + "source": "MTF", + "page": 135, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 190, + "formula": "20d8 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 22, + "dexterity": 14, + "constitution": 21, + "intelligence": 14, + "wisdom": 15, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "dex": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Demonic Shadows", + "body": [ + "The nabassu darkens the area around its body in a 10-foot radius. Nonmagical light can't illuminate this area of dim light." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devour Soul", + "body": [ + "A nabassu can eat the soul of a creature it has killed within the last hour, provided that creature is neither a construct nor an undead. The devouring requires the nabassu to be within 5 feet of the corpse for at least 10 minutes, after which it gains a number of Hit Dice ({@dice d8}s) equal to half the creature's number of Hit Dice. Roll those dice, and increase the nabassu's hit points by the numbers rolled. For every 4 Hit Dice the nabassu gains in this way, its attacks deal an extra 3 ({@damage 1d6}) damage on a hit. The nabassu retains these benefits for 6 days. A creature devoured by a nabassu can be restored to life only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The nabassu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The nabassu's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nabassu uses its Soul-Stealing Gaze and makes two attacks: one with its claws and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}32 ({@damage 4d12 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul-Stealing Gaze", + "body": [ + "The nabassu targets one creature it can see within 30 feet of it. If the target can see the nabassu and isn't a construct or an undead, it must succeed on a {@dc 16} Charisma saving throw or reduce its hit point maximum by 13 ({@damage 2d12}) damage and give the nabassu an equal number of temporary hit points. This reduction lasts until the target finishes a short or long rest. The target dies if its hit point maximum is reduced to 0, and if the target is a humanoid, it immediately rises as a {@creature ghoul} under the nabassu's control." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Nabassu-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Nagpa", + "source": "MTF", + "page": 215, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "34d8 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 9, + "dexterity": 15, + "constitution": 12, + "intelligence": 23, + "wisdom": 18, + "charisma": 21, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+10", + "cha": "+11" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common plus up to five other languages" + ], + "traits": [ + { + "title": "Corruption", + "body": [ + "As a bonus action, the nagpa targets one creature it can see within 90 feet of it. The target must make a {@dc 20} Charisma saving throw. An evil creature makes the save with disadvantage. On a failed save, the target is {@condition charmed} by the nagpa until the start of the nagpa's next turn. On a successful save, the target becomes immune to the nagpa's Corruption for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralysis {@recharge}", + "body": [ + "As a bonus action, the nagpa forces each creature within 30 feet of it to succeed on a {@dc 20} Wisdom saving throw or be {@condition paralyzed} for 1 minute. A {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Undead and constructs are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The nagpa is a 15th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). A nagpa has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell message}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell protection from evil and good}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell ray of enfeeblement}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell hallucinatory terrain}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dominate person}", + "{@spell dream}", + "{@spell geas}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell circle of death}", + "{@spell disintegrate}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell etherealness}", + "{@spell prismatic spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell feeblemind}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "nagpa", + "actions_note": "", + "mythic": null, + "key": "Nagpa-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Narzugon", + "source": "MTF", + "page": 167, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 20, + "dexterity": 10, + "constitution": 17, + "intelligence": 16, + "wisdom": 14, + "charisma": 19, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Diabolical Sense", + "body": [ + "The narzugon has advantage on Wisdom ({@skill Perception}) checks made to perceive good-aligned creatures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Tack", + "body": [ + "The narzugon wears spurs that are part of infernal tack, which allow it to summon its {@creature nightmare} companion." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The narzugon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The narzugon uses its Infernal Command or Terrifying Command. It also makes three hellfire lance attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellfire Lance", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 16 ({@damage 3d10}) fire damage. If this damage kills a creature, the creature's soul rises from the River Styx as a lemure in Avernus in {@dice 1d4} hours.", + "If the creature isn't revived before then, only a {@spell wish} spell or killing the lemure and casting true resurrection on the creature's original body can restore it to life. Constructs and devils are immune to this effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Command", + "body": [ + "Each ally of the narzugon within 60 feet of it can't be {@condition charmed} or {@condition frightened} until the end of the narzugon's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrifying Command", + "body": [ + "Each creature that isn't a fiend within 60 feet of the narzugon that can hear it must succeed on a {@dc 17} Charisma saving throw or become {@condition frightened} of it 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. A creature that makes a successful saving throw is immune to this narzugon's Terrifying Command for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Healing (1/Day)", + "body": [ + "The narzugon, or one creature it touches, regains up to 100 hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Narzugon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Nightwalker", + "source": "MTF", + "page": 216, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "22d12 + 154", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 22, + "dexterity": 19, + "constitution": 24, + "intelligence": 6, + "wisdom": 9, + "charisma": 8, + "passive": 9, + "saves": { + "con": "+13" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Annihilating Aura", + "body": [ + "Any creature that starts its turn within 30 feet of the nightwalker must succeed on a {@dc 21} Constitution saving throw or take 14 ({@damage 4d6}) necrotic damage and grant the nightwalker advantage on attack rolls against it until the start of the creature's next turn. Undead are immune to this aura." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Eater", + "body": [ + "A creature reduced to 0 hit points from damage dealt by the nightwalker dies and can't be revived by any means short of a {@spell wish} spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nightwalker uses Enervating Focus twice, or it uses Enervating Focus and Finger of Doom, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enervating Focus", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}28 ({@damage 5d8 + 6}) necrotic damage. The target must succeed on a {@dc 21} Constitution saving throw or its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "Finger of Doom {@recharge}", + "body": [ + "The nightwalker points at one creature it can see within 300 feet of it. The target must succeed on a {@dc 21} Wisdom saving throw or take 26 ({@damage 4d12}) necrotic damage and become {@condition frightened} until the end of the nightwalker's next turn. While {@condition frightened} in this way, the creature is also {@condition paralyzed}. If a target's saving throw is successful, the target is immune to the nightwalker's Finger of Doom for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nightwalker-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Nupperibo", + "source": "MTF", + "page": 168, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 11, + "constitution": 13, + "intelligence": 3, + "wisdom": 8, + "charisma": 1, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Infernal but can't speak" + ], + "traits": [ + { + "title": "Cloud of Vermin", + "body": [ + "Any creature, other than a devil, that starts its turn within 20 feet of the nupperibo must make a {@dc 11} Constitution saving throw. A creature within the areas of two or more nupperibos makes the saving throw with disadvantage. On a failure, the creature takes 2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hunger-Driven", + "body": [ + "In the Nine Hells, the nupperibos can flawlessly track any creature that has taken damage from any nupperibo's Cloud of Vermin within the previous 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Nupperibo-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Oaken Bolter", + "source": "MTF", + "page": 126, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 18, + "constitution": 15, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The oaken bolter has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oaken bolter makes two lancing bolt attacks or one lancing bolt attack and one harpoon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lancing Bolt", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 100/400 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harpoon", + "body": [ + "{@atk rw} {@hit 7} to hit, range 50/200 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 12}). While {@condition grappled} in this way, a creature's speed isn't reduced, but it can move only in directions that bring it closer to the oaken bolter. A creature takes 5 ({@damage 1d10}) slashing damage if it escapes from the grapple or if it tries and fails. As a bonus action, the oaken bolter can pull a creature {@condition grappled} by it 20 feet closer. The oaken bolter can grapple only one creature at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Explosive Bolt {@recharge 5}", + "body": [ + "The oaken bolter launches an explosive charge at a point within 120 feet. Each creature within 20 feet of that point must make a {@dc 15} Dexterity saving throw, taking 17 ({@damage 5d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Oaken Bolter-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Oblex Spawn", + "source": "MTF", + "page": 217, + "size_str": "Tiny", + "maintype": "ooze", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d4 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 16, + "constitution": 15, + "intelligence": 14, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "saves": { + "int": "+4", + "cha": "+2" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this distance)" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The oblex can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion to Fire", + "body": [ + "If the oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 2 ({@damage 1d4}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Oblex Spawn-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Battering Ram", + "source": "MTF", + "page": 220, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item ring mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Siege Monster", + "body": [ + "The ogre deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bash", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) bludgeoning damage, and the ogre can push the target 5 feet away if the target is Huge or smaller." + ], + "__dataclass__": "Entry" + }, + { + "title": "Block the Path", + "body": [ + "Until the start of the ogre's next turn, attack rolls against the ogre have disadvantage, it has advantage on the attack roll it makes for an opportunity attack, and that attack deals an extra 16 ({@damage 3d10}) bludgeoning damage on a hit. Also, each enemy that tries to move out of the ogre's reach without teleporting must succeed on a {@dc 14} Strength saving throw or have its speed reduced to 0 until the start of the ogre's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Battering Ram-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Bolt Launcher", + "source": "MTF", + "page": 220, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 12, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt Launcher", + "body": [ + "{@atk rw} {@hit 3} to hit, range 120/480 ft., one target. {@h}17 ({@damage 3d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Bolt Launcher-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Chain Brute", + "source": "MTF", + "page": 221, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain Sweep", + "body": [ + "The ogre swings its chain, and every creature within 10 feet of it must make a {@dc 14} Dexterity saving throw. On a failed saving throw, a creature takes 8 ({@damage 1d8 + 4}) bludgeoning damage and is knocked {@condition prone}. On a successful save, the creature takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain Smash {@recharge}", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target must make a {@dc 14} Constitution saving throw. On a failure the target is {@condition unconscious} for 1 minute. The {@condition unconscious} target repeats the saving throw if it takes damage and at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Chain Brute-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Ogre Howdah", + "source": "MTF", + "page": 221, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Howdah", + "body": [ + "The ogre carries a compact fort on its back. Up to four Small creatures can ride in the fort without squeezing. To make a melee attack against a target within 5 feet of the ogre, they must use spears or weapons with reach. Creatures in the fort have {@quickref Cover||3||three-quarters cover} against attacks and effects from outside it. If the ogre dies, creatures in the fort are placed in unoccupied spaces within 5 feet of the ogre." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogre Howdah-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Oinoloth", + "source": "MTF", + "page": 251, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "12d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 17, + "constitution": 18, + "intelligence": 17, + "wisdom": 16, + "charisma": 19, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Bringer of Plagues {@recharge 5}", + "body": [ + "As a bonus action, the oinoloth blights the area within 30 feet of it. The blight lasts for 24 hours. While blighted, all normal plants in the area wither and die, and the number of hit points restored by a spell to a creature in that area is halved.", + "Furthermore, when a creature moves into the blighted area or starts its turn there, that creature must make a {@dc 16} Constitution saving throw. On a successful save, the creature is immune to the oinoloth's Bringer of Plagues for the next 24 hours. On a failed save, the creature takes 14 ({@damage 4d6}) necrotic damage and is {@condition poisoned}.", + "The {@condition poisoned} creature can't regain hit points. After every 24 hours that elapse, the {@condition poisoned} creature can repeat the saving throw. On a failed save, the creature's hit point maximum is reduced by 5 ({@dice 1d10}). This reduction lasts until the poison ends, and the target dies if its hit point maximum is reduced to 0. The poison ends after the creature successfully saves against it three times." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The oinoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The oinoloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oinoloth uses its Transfixing Gaze and makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 3d6 + 4}) slashing damage plus 22 ({@damage 4d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupted Healing {@recharge}", + "body": [ + "The oinoloth touches one willing creature within 5 feet of it. The target regains all its hit points. In addition, the oinoloth can end one disease on the target or remove one of the following conditions from it: {@condition blinded}, {@condition deafened}, {@condition paralyzed}, or {@condition poisoned}. The target then gains 1 level of {@condition exhaustion}, and its hit point maximum is reduced by 7 ({@dice 2d6}). This reduction can be removed only by a {@spell wish} spell or by casting {@spell greater restoration} on the target three times within the same hour. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The oinoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Transfixing Gaze", + "body": [ + "The oinoloth targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 16} Wisdom saving throw against this magic or be {@condition charmed} until the end of the oinoloth's next turn. While {@condition charmed} in this way, the target is {@condition restrained}. If the target's saving throw is successful, the target is immune to the oinoloth's gaze for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The oinoloth's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell globe of invulnerability}", + "{@spell wall of fire}", + "{@spell wall of ice}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Oinoloth-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Orcus", + "source": "MTF", + "page": 153, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 20, + "note": "with the {@item Wand of Orcus}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 405, + "formula": "30d12 + 210", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 27, + "dexterity": 14, + "constitution": 25, + "intelligence": 20, + "wisdom": 20, + "charisma": 25, + "passive": 22, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+15", + "wis": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Wand of Orcus", + "body": [ + "The wand has 7 charges, and any of its properties that require a saving throw have a save DC of 18. While holding it, Orcus can use an action to cast {@spell animate dead}, {@spell blight}, or {@spell speak with dead}. Alternatively, he can expend 1 or more of the wand's charges to cast one of the following spells from it: {@spell circle of death} (1 charge), {@spell finger of death} (1 charge), or {@spell power word kill} (2 charges). The wand regains {@dice 1d4 + 3} charges daily at dawn.", + "While holding the wand, Orcus can use an action to conjure undead creatures whose combined average hit points don't exceed 500. These undead magically rise up from the ground or otherwise form in unoccupied spaces within 300 feet of Orcus and obey his commands until they are destroyed or until he dismisses them as an action. Once this property of the wand is used, the property can't be used again until the next dawn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Orcus fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Orcus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Orcus's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master of Undeath", + "body": [ + "When Orcus casts {@spell animate dead} or {@spell create undead}, he chooses the level at which the spell is cast, and the creatures created by the spells remain under his control indefinitely. Additionally, he can cast {@spell create undead} even when it isn't night." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Orcus makes two Wand of Orcus attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wand of Orcus", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 13 ({@damage 2d12}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "Orcus makes one tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "A Taste of Undeath", + "body": [ + "Orcus casts {@spell chill touch} (17th level)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Creeping Death (Costs 2 Actions)", + "body": [ + "Orcus chooses a point on the ground that he can see within 100 feet of him. A cylinder of swirling necrotic energy 60 feet tall and with a 10-foot radius rises from that point and lasts until the end of Orcus's next turn. Creatures in that area have vulnerability to necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Orcus's spellcasting ability is Charisma (spell save {@dc 23}, {@hit 15} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chill touch} (17th level)", + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell create undead}", + "{@spell dispel magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 245 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Orcus-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Orthon", + "source": "MTF", + "page": 169, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "10d10 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 22, + "dexterity": 16, + "constitution": 21, + "intelligence": 15, + "wisdom": 15, + "charisma": 16, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+9", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "languages": [ + "Common", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Invisibility Field", + "body": [ + "The orthon can use a bonus action to become {@condition invisible}. Any equipment the orthon wears or carries is also {@condition invisible} as long as the equipment is on its person. This invisibility ends immediately after the orthon makes an attack roll or is hit by an attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The orthon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Infernal Dagger", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d4 + 6}) slashing damage, and the target must make a {@dc 17} Constitution saving throw, taking 22 ({@damage 4d10}) poison damage on a failed save, or half as much damage on a successful one. On a failure, the target is {@condition poisoned} for 1 minute. The {@condition poisoned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brass Crossbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 100/400 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage, plus one of the following effects:", + { + "title": "1. Acid", + "body": [ + "The target must make a {@dc 17} Constitution saving throw, taking an additional 17 ({@damage 5d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Blindness (1/Day)", + "body": [ + "The target takes 5 ({@damage 1d10}) radiant damage. In addition, the target and all other creatures within 20 feet of it must each make a successful {@dc 17} Dexterity saving throw or be {@condition blinded} until the end of the orthon's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Concussion", + "body": [ + "The target and each creature within 20 feet of it must make a {@dc 17} Constitution saving throw, taking 13 ({@damage 2d12}) thunder damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Entanglement", + "body": [ + "The target must make a successful {@dc 17} Dexterity saving throw or be {@condition restrained} for 1 hour by strands of sticky webbing. A {@condition restrained} creature can escape by using an action to make a successful {@dc 17} Dexterity or Strength check. Any creature other than an orthon that touches the {@condition restrained} creature must make a successful {@dc 17} Dexterity saving throw or become similarly {@condition restrained}." + ], + "__dataclass__": "Entry" + }, + { + "title": "5. Paralysis (1/Day)", + "body": [ + "The target takes 22 ({@damage 4d10}) lightning damage and must make a successful {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "6. Tracking", + "body": [ + "For the next 24 hours, the orthon knows the direction and distance to the target, as long as it's on the same plane of existence. If the target is on a different plane, the orthon knows which one, but not the exact location there." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Explosive Retribution", + "body": [ + "When it is reduced to 15 hit points or fewer, the orthon causes itself to explode. All other creatures within 30 feet of it must each make a {@dc 17} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage plus 9 ({@damage 2d8}) thunder damage on a failed save, or half as much damage on a successful one. This explosion destroys the orthon, its infernal dagger, and its brass crossbow." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Orthon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Phoenix", + "source": "MTF", + "page": 199, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 18 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 175, + "formula": "10d20 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 19, + "dexterity": 26, + "constitution": 25, + "intelligence": 2, + "wisdom": 21, + "charisma": 18, + "passive": 15, + "saves": { + "wis": "+10", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Fiery Death and Rebirth", + "body": [ + "When the phoenix dies, it explodes. Each creature within 60-feet of it must make a {@dc 20} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't worn or carried.", + "The explosion destroys the phoenix's body and leaves behind an egg-shaped cinder that weighs 5 pounds. The cinder is blazing hot, dealing 21 ({@damage 6d6}) fire damage to any creature that touches it, though no more than once per round. The cinder is immune to all damage, and after {@dice 1d6} days, it hatches a new phoenix." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Form", + "body": [ + "The phoenix can move through a space as narrow as 1 inch wide without squeezing. Any creature that touches the phoenix or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 1d10}) fire damage. In addition, the phoenix can enter a hostile creature's space and stop there. The first time it enters a creature's space on a turn, that creature takes 5 ({@damage 1d10}) fire damage. With a touch, the phoenix can also ignite flammable objects that aren't worn or carried (no action required)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The phoenix doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The phoenix sheds bright light in a 60-foot radius and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the phoenix fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The phoenix deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The phoenix makes two attacks: one with its beak and one with its fiery talons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}15 ({@damage 2d6 + 8}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Talons", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d8 + 8}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Peck", + "body": [ + "The phoenix makes one beak attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The phoenix moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swoop (Costs 2 Actions)", + "body": [ + "The phoenix moves up to its speed and attacks with its fiery talons." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Phoenix-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Red Abishai", + "source": "MTF", + "page": 160, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 23, + "dexterity": 16, + "constitution": 19, + "intelligence": 14, + "wisdom": 15, + "charisma": 19, + "passive": 18, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "con": "+10", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The abishai's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai can use its Frightful Presence. It also makes three attacks: one with its morningstar, one with its claw, and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage plus 38 ({@damage 7d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of the abishai's choice that is within 120 feet and aware of it must succeed on a {@dc 18} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the abishai's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incite Fanaticism", + "body": [ + "The abishai chooses up to four of its allies within 60 feet of it that can see it. For 1 minute, each of those allies makes attack rolls with advantage and can't be {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Power of the Dragon Queen", + "body": [ + "The abishai targets one dragon it can see within 120 feet of it. The dragon must make a {@dc 18} Charisma saving throw. A chromatic dragon makes this save with disadvantage. On a successful save, the target is immune to the abishai's Power of the Dragon Queen for 1 hour. On a failed save, the target is {@condition charmed} by the abishai for 1 hour. While {@condition charmed} in this way, the target regards the abishai as a trusted friend to be heeded and protected. This effect ends if the abishai or its companions deal damage to the target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Red Abishai-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Retriever", + "source": "MTF", + "page": 222, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 22, + "dexterity": 16, + "constitution": 20, + "intelligence": 3, + "wisdom": 11, + "charisma": 4, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+10", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal", + "Elvish", + "and Undercommon but can't speak" + ], + "traits": [ + { + "title": "Faultless Tracker", + "body": [ + "The retriever is given a quarry by its master. The quarry can be a specific creature or object the master is personally acquainted with, or it can be a general type of creature or object the master has seen before. The retriever knows the direction and distance to its quarry as long as the two of them are on the same plane of existence. The retriever can have only one such quarry at a time. The retriever also always knows the location of its master." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The retriever makes two foreleg attacks and uses its force or paralyzing beam once, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Foreleg", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Beam", + "body": [ + "The retriever targets one creature it can see within 60 feet of it. The target must make a {@dc 16} Dexterity saving throw, taking 27 ({@damage 5d10}) force damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Beam {@recharge 5}", + "body": [ + "The retriever targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The {@condition paralyzed} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If the {@condition paralyzed} creature is Medium or smaller, the retriever can pick it up as part of the retriever's move and walk or climb with it at full speed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The retriever's innate spellcasting ability is Wisdom (spell save {@dc 13}). The retriever can innately cast the following spells, requiring no material components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell plane shift} (only self and up to one incapacitated creature which is considered willing for the spell)", + "{@spell web}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Retriever-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Rot Troll", + "source": "MTF", + "page": 244, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d10 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 13, + "constitution": 22, + "intelligence": 5, + "wisdom": 8, + "charisma": 4, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Rancid Degeneration", + "body": [ + "At the end of each of the troll's turns, each creature within 5 feet of it takes 11 ({@damage 2d10}) necrotic damage, unless the troll has taken acid or fire damage since the end of its last turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 16 ({@damage 3d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 5 ({@damage 1d10}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "RtG", + "page": 34 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rot Troll-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Rutterkin", + "source": "MTF", + "page": 136, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 15, + "constitution": 17, + "intelligence": 5, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Crippling Fear", + "body": [ + "When a creature that isn't a demon starts its turn within 30 feet of three or more rutterkins, it must make a {@dc 11} Wisdom saving throw. The creature has disadvantage on the save if it's within 30 feet of six or more rutterkins. On a successful save, the creature is immune to the Crippling Fear of all rutterkins for 24 hours. On a failed save, the creature becomes {@condition frightened} for 1 minute. While {@condition frightened} in this way, the creature is {@condition restrained}. At the end of each of the {@condition frightened} creature's turns, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw against disease or become {@condition poisoned}. At the end of each long rest, the {@condition poisoned} target can repeat the saving throw, ending the effect on itself on a success. If the target is reduced to 0 hit points while {@condition poisoned} in this way, it dies and instantly transforms into a living {@creature abyssal wretch|mtf}. The transformation of the body can be undone only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Rutterkin-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Sacred Statue", + "source": "MTF", + "page": 194, + "size_str": "Large", + "maintype": "construct", + "alignment": "as the eidolon's alignment", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 19, + "dexterity": 8, + "constitution": 19, + "intelligence": 14, + "wisdom": 19, + "charisma": 16, + "passive": 14, + "saves": { + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages the eidolon knew in life" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the statue remains motionless, it is indistinguishable from a normal statue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ghostly Inhabitant", + "body": [ + "The {@creature eidolon|MTF} that enters the sacred statue remains inside it until the statue drops to 0 hit points, the eidolon uses a bonus action to move out of the statue, or the eidolon is turned or forced out by an effect such as the {@spell dispel evil and good} spell. When the eidolon leaves the statue, it appears in an unoccupied space within 5 feet of the statue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inert", + "body": [ + "When not inhabited by an {@creature eidolon|MTF}, the statue is an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The statue makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}43 ({@damage 6d12 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}37 ({@damage 6d10 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sacred Statue-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Shadow Dancer", + "source": "MTF", + "page": 225, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 12, + "dexterity": 16, + "constitution": 13, + "intelligence": 11, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The shadow dancer has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Jump", + "body": [ + "As a bonus action, the shadow dancer can teleport up to 30 feet to an unoccupied space it can see. Both the space it teleports from and the space it teleports to must be in dim light or darkness. The shadow dancer can use this ability between the weapon attacks of another action it takes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shadow dancer makes three spiked chain attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Chain", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, and the target must succeed on a {@dc 14} Dexterity saving throw or suffer one additional effect of the shadow dancer's choice:", + "The target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition restrained}, and the shadow dancer can't grapple another target.", + "The target is knocked {@condition prone}.", + "The target takes 22 ({@damage 4d10}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Shadow Dancer-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Sibriex", + "source": "MTF", + "page": 137, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "12d12 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 10, + "dexterity": 3, + "constitution": 23, + "intelligence": 25, + "wisdom": 24, + "charisma": 25, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+13", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Contamination", + "body": [ + "The sibriex emits an aura of corruption 30 feet in every direction. Plants that aren't creatures wither in the aura, and the ground in it is {@quickref difficult terrain||3} for other creatures. Any creature that starts its turn in the aura must succeed on a {@dc 20} Constitution saving throw or take 14 ({@damage 4d6}) poison damage. A creature that succeeds on the save is immune to this sibriex's Contamination for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the sibriex fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The sibriex has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sibriex uses Squirt Bile once and makes three attacks using its chain, bite, or both." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d12 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) piercing damage plus 9 ({@damage 2d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Squirt Bile", + "body": [ + "The sibriex targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or take 35 ({@damage 10d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warp Creature", + "body": [ + "The sibriex targets up to three creatures it can see within 120 feet of it. Each target must make a {@dc 20} Constitution saving throw. On a successful save, a creature becomes immune to this sibriex's Warp Creature. On a failed save, the target is {@condition poisoned}, which causes it to also gain 1 level of {@condition exhaustion}. While {@condition poisoned} in this way, the target must repeat the saving throw at the start of each of its turns. Three successful saves against the poison end it, and ending the poison removes any levels of {@condition exhaustion} caused by it. Each failed save causes the target to suffer another level of {@condition exhaustion}. Once the target reaches 6 levels of {@condition exhaustion}, it dies and instantly transforms into a living {@creature abyssal wretch|mtf} under the sibriex's control. The transformation of the body can be undone only by a {@spell wish} spell." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cast a Spell", + "body": [ + "The sibriex casts a spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spray Bile", + "body": [ + "The sibriex uses Squirt Bile." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warp (Costs 2 Actions)", + "body": [ + "The sibriex uses Warp Creature." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The sibriex's innate spellcasting ability is Charisma (spell save {@dc 21}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell command}", + "{@spell dispel magic}", + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feeblemind}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Sibriex-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Skulk", + "source": "MTF", + "page": 227, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 6, + "dexterity": 19, + "constitution": 10, + "intelligence": 10, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+2" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Fallible Invisibility", + "body": [ + "The skulk is {@condition invisible}. This invisibility can be circumvented by three things:", + "The skulk appears as a drab, smooth-skinned humanoid if its reflection can be seen in a mirror or on another surface.", + "The skulk appears as a dim, translucent form in the light of a candle made of fat rendered from a corpse whose identity is unknown.", + "Humanoid children, aged 10 and under, can see through this invisibility." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trackless", + "body": [ + "The skulk leaves no tracks to indicate where it has been or where it's headed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage. If the skulk has advantage on the attack roll, the target also takes 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skulk-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Skull Lord", + "source": "MTF", + "page": 230, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 14, + "dexterity": 16, + "constitution": 17, + "intelligence": 16, + "wisdom": 15, + "charisma": 21, + "passive": 22, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "all the languages it knew in life" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the skull lord fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master of the Grave", + "body": [ + "While within 30 feet of the skull lord, any undead ally of the skull lord makes saving throws with advantage, and that ally regains {@dice 1d6} hit points whenever it starts its turn there." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If the skull lord is subjected to an effect that allows it to make a Dexterity saving throw to take only half the damage, the skull lord instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skull lord makes three bone staff attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bone Staff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 14 ({@damage 4d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Bone Staff (Costs 2 Actions)", + "body": [ + "The skull lord makes a bone staff attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cantrip", + "body": [ + "The skull lord casts a cantrip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The skull lord moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Undead (Costs 3 Actions)", + "body": [ + "Up to five {@creature skeleton||skeletons} or {@creature zombie||zombies} appear in unoccupied spaces within 30 feet of the skull lord and remain until destroyed. Undead summoned in this way roll initiative and act in the next available turn. The skull lord can have up to five undead summoned by this ability at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The skull lord is a 13th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 18}, {@hit 10} to hit with spell attacks). The skull lord knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell magic missile}", + "{@spell expeditious retreat}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fear}", + "{@spell haste}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell eyebite}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skull Lord-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Soul Monger", + "source": "MTF", + "page": 226, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 8, + "dexterity": 17, + "constitution": 14, + "intelligence": 19, + "wisdom": 15, + "charisma": 13, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+6", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The soul monger has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The soul monger has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Thirst", + "body": [ + "When the soul monger reduces a creature to 0 hit points, the soul monger can gain temporary hit points equal to half the creature's hit point maximum. While the soul monger has temporary hit points from this ability, it has advantage on attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weight of Ages", + "body": [ + "Any beast or humanoid, other than a shadar-kai, that starts its turn within 5 feet of the soul monger has its speed reduced by 20 feet until the start of that creature's next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The soul monger makes two phantasmal dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phantasmal Dagger", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage plus 19 ({@damage 3d12}) necrotic damage, and the target has disadvantage on saving throws until the start of the soul monger's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wave of Weariness {@recharge 4}", + "body": [ + "The soul monger emits weariness in a 60-foot cube. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 45 ({@damage 10d8}) psychic damage and suffers 1 level of {@condition exhaustion}. On a successful save, it takes 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The soul monger's innate spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bestow curse}", + "{@spell chain lightning}", + "{@spell finger of death}", + "{@spell gaseous form}", + "{@spell phantasmal killer}", + "{@spell seeming}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Soul Monger-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Spirit Troll", + "source": "MTF", + "page": 244, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d10 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 1, + "dexterity": 17, + "constitution": 13, + "intelligence": 8, + "wisdom": 9, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The troll can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes psychic or force damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}19 ({@damage 3d10 + 3}) psychic damage, and the target must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} for 1 minute. The {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}14 ({@damage 2d10 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spirit Troll-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Spring Eladrin", + "source": "MTF", + "page": 196, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 14, + "dexterity": 16, + "constitution": 16, + "intelligence": 18, + "wisdom": 11, + "charisma": 18, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Step {@recharge 4}", + "body": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Joyful Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature is {@condition charmed} for 1 minute. On a successful save, the creature becomes immune to any eladrin's Joyful Presence for 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eladrin makes two weapon attacks. The eladrin can cast one spell in place of one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage plus 4 ({@damage 1d8}) psychic damage, or 7 ({@damage 1d10 + 2}) slashing damage plus 4 ({@damage 1d8}) psychic damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The eladrin's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell charm person}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell confusion}", + "{@spell enthrall}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell hallucinatory terrain}", + "{@spell Otto's irresistible dance}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Spring Eladrin-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Grue", + "source": "MTF", + "page": 234, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 13, + "constitution": 10, + "intelligence": 9, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Aura of Madness", + "body": [ + "Creatures within 20 feet of the grue that aren't aberrations have disadvantage on saving throws, as well as on attack rolls against creatures other than a star spawn grue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Confounding Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Wisdom saving throw or attack rolls against it have advantage until the start of the grue's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Grue-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Hulk", + "source": "MTF", + "page": 234, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "13d10 + 65", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 20, + "dexterity": 8, + "constitution": 21, + "intelligence": 7, + "wisdom": 12, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Psychic Mirror", + "body": [ + "If the hulk takes psychic damage, each creature within 10 feet of the hulk takes that damage instead; the hulk takes none of the damage. In addition, the hulk's thoughts and location can't be discerned by magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hulk makes two slam attacks. If both attacks hit the same target, the target also takes 9 ({@damage 2d8}) psychic damage and must succeed on a {@dc 17} Constitution saving throw or be {@condition stunned} until the end of the target's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reaping Arms {@recharge 5}", + "body": [ + "The hulk makes a separate slam attack against each creature within 10 feet of it. Each creature that is hit must also succeed on a {@dc 17} Dexterity saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Hulk-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Larva Mage", + "source": "MTF", + "page": 235, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d8 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 17, + "dexterity": 12, + "constitution": 23, + "intelligence": 18, + "wisdom": 12, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Return to Worms", + "body": [ + "When the larva mage is reduced to 0 hit points, it breaks apart into a {@creature swarm of insects} in the same space. Unless the swarm is destroyed, the larva mage reforms from it 24 hours later." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition poisoned} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plague of Worms {@recharge}", + "body": [ + "Each creature other than a star spawn within 10 feet of the larva mage must make a {@dc 19} Dexterity saving throw. On a failure the target takes 22 ({@damage 5d8}) necrotic damage and is {@condition blinded} and {@condition restrained} by masses of swarming worms. The affected creature takes 22 ({@damage 5d8}) necrotic damage at the start of each of the larva mage's turns. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Feed on Weakness", + "body": [ + "When a creature within 20 feet of the larva mage fails a saving throw, the larva mage gains 10 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip (Costs 2 Actions)", + "body": [ + "The larva mage casts one cantrip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam (Costs 2 Actions)", + "body": [ + "The larva mage makes one slam attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Feed (Costs 3 Actions)", + "body": [ + "Each creature {@condition restrained} by the larva mage's Plague of Worms takes 13 ({@damage 3d8}) necrotic damage, and the larva mage gains 6 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The larva mage's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell eldritch blast}*", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell circle of death}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dominate monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Larva Mage-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Mangler", + "source": "MTF", + "page": 236, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 8, + "dexterity": 18, + "constitution": 12, + "intelligence": 11, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+4" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech" + ], + "traits": [ + { + "title": "Ambusher", + "body": [ + "On the first round of each combat, the mangler has advantage on attack rolls against a creature that hasn't taken a turn yet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the mangler can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mangler makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage. If the attack roll has advantage, the target also takes 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flurry of Claws {@recharge 4}", + "body": [ + "The mangler makes six claw attacks against one target. Either before or after these attacks, it can move up to its speed as a bonus action without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Mangler-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Star Spawn Seer", + "source": "MTF", + "page": 236, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 14, + "dexterity": 12, + "constitution": 18, + "intelligence": 22, + "wisdom": 19, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+11", + "wis": "+9", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Out-of-Phase Movement", + "body": [ + "The seer can move through other creatures and objects as if they were {@quickref difficult terrain||3}. Each creature it moves through takes 5 ({@damage 1d10}) psychic damage; no creature can take this damage more than once per turn. The seer takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The seer makes two comet staff attacks or uses Psychic Orb twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Comet Staff", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d6 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage, or 10 ({@damage 1d8 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) psychic damage, if used with two hands, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition incapacitated} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Orb", + "body": [ + "{@atk rs} {@hit 11} to hit, range 120 feet, one target. {@h}27 ({@damage 5d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Collapse Distance {@recharge}", + "body": [ + "The seer warps space around a creature it can see within 30 feet of it. That creature must make a {@dc 19} Wisdom saving throw. On a failed save, the target, along with any equipment it is wearing or carrying, is magically teleported up to 60 feet to an unoccupied space the seer can see, and all other creatures within 10 feet of the target's original space each takes 39 ({@damage 6d12}) psychic damage. On a successful save, the target takes 19 ({@damage 3d12}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Bend Space", + "body": [ + "When the seer would be hit by an attack, it teleports, exchanging positions with another star spawn it can see within 60 feet of it. The other star spawn is hit by the attack instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Spawn Seer-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Steel Predator", + "source": "MTF", + "page": 239, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d10 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 24, + "dexterity": 17, + "constitution": 22, + "intelligence": 4, + "wisdom": 14, + "charisma": 6, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "languages": [ + "understands Modron and the language of its owner but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The steel predator has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The steel predator's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The steel predator makes three attacks: one with its bite and two with its claw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Roar {@recharge 5}", + "body": [ + "The steel predator emits a roar in a 60-foot cone. Each creature in that area must make a {@dc 19} Constitution saving throw. On a failed save, a creature takes 27 ({@damage 5d10}) thunder damage, drops everything it's holding, and is {@condition stunned} for 1 minute. On a successful save, a creature takes half as much damage. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The steel predator's innate spellcasting ability is Wisdom. The steel predator can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dimension door} (self only)", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Steel Predator-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Stone Cursed", + "source": "MTF", + "page": 240, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 5, + "constitution": 14, + "intelligence": 5, + "wisdom": 8, + "charisma": 7, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Cunning Opportunist", + "body": [ + "The stone cursed has advantage on the attack rolls of opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the stone cursed remains motionless, it is indistinguishable from a normal statue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Petrifying Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage if the attack roll had advantage. If the target is a creature, it must succeed on a {@dc 12} Constitution saving throw, or it begins to turn to stone and is {@condition restrained} until the end of its next turn, when it must repeat the saving throw. The effect ends if the second save is successful; otherwise the target is {@condition petrified} for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Cursed-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Stone Defender", + "source": "MTF", + "page": 126, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language of its creator but can't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the stone defender remains motionless against an uneven earthen or stone surface, it is indistinguishable from that surface." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The stone defender has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage, and if the target is Large or smaller, it is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Intercept Attack", + "body": [ + "In response to another creature within 5 feet of it being hit by an attack roll, the stone defender gives that creature a +5 bonus to its AC against that attack, potentially causing a miss. To use this ability, the stone defender must be able to see the creature and the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Defender-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Summer Eladrin", + "source": "MTF", + "page": 196, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 21, + "constitution": 16, + "intelligence": 14, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fearsome Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 16} Wisdom saving throw. On a failed save, the creature becomes {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Fearsome Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Step {@recharge 4}", + "body": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eladrin makes two weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage plus 4 ({@damage 1d8}) fire damage, or 15 ({@damage 2d10 + 4}) slashing damage plus 4 ({@damage 1d8}) fire damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 9} to hit, range 150/600 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 4 ({@damage 1d8}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The eladrin adds 3 to its AC against one melee attack that would hit it. To do so, the eladrin must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Summer Eladrin-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Sword Wraith Commander", + "source": "MTF", + "page": 241, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item breastplate|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 11, + "wisdom": 12, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Martial Fury", + "body": [ + "As a bonus action, the sword wraith can make one weapon attack, which deals an extra 9 ({@damage 2d8}) necrotic damage on a hit. If it does so, attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turning Defiance", + "body": [ + "The sword wraith and any other sword wraiths within 30 feet of it have advantage on saving throws against effects that turn undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sword wraith makes two weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Call to Honor (1/Day)", + "body": [ + "To use this action, the sword wraith must have taken damage during the current combat. If the sword wraith can use this action, it gives itself advantage on attack rolls until the end of its next turn, and {@dice 1d4 + 1} {@creature sword wraith warrior|mtf|sword wraith warriors} appear in unoccupied spaces within 30 feet of it. The warriors last until they drop to 0 hit points, and they take their turns immediately after the commander's turn on the same initiative count." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sword Wraith Commander-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Sword Wraith Warrior", + "source": "MTF", + "page": 241, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 12, + "constitution": 17, + "intelligence": 6, + "wisdom": 9, + "charisma": 10, + "passive": 9, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Martial Fury", + "body": [ + "As a bonus action, the sword wraith can make one weapon attack. If it does so, attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sword Wraith Warrior-MTF", + "__dataclass__": "Monster" + }, + { + "name": "The Angry", + "source": "MTF", + "page": 231, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 17, + "dexterity": 10, + "constitution": 19, + "intelligence": 8, + "wisdom": 13, + "charisma": 6, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Two Heads", + "body": [ + "The Angry has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rising Anger", + "body": [ + "If another creature deals damage to the Angry, the Angry's attack rolls have advantage until the end of its next turn, and the first time it hits with a hook attack on its next turn, the attack's target takes an extra 19 ({@damage 3d12}) psychic damage.", + "On its turn, the Angry has disadvantage on attack rolls if no other creature has dealt damage to it since the end of its last turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Angry makes two hook attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hook", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d12 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "The Angry-MTF", + "__dataclass__": "Monster" + }, + { + "name": "The Hungry", + "source": "MTF", + "page": 232, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "30d8 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 6, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Life Hunger", + "body": [ + "If a creature the Hungry can see regains hit points, the Hungry gains two benefits until the end of its next turn: it has advantage on attack rolls, and its bite deals an extra 22 ({@damage 4d10}) necrotic damage on a hit." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Hungry makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 16}) and is {@condition restrained} until the grapple ends. While grappling a creature, the Hungry can't attack with its claws." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "The Hungry-MTF", + "__dataclass__": "Monster" + }, + { + "name": "The Lonely", + "source": "MTF", + "page": 232, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 16, + "dexterity": 12, + "constitution": 17, + "intelligence": 6, + "wisdom": 11, + "charisma": 6, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Psychic Leech", + "body": [ + "At the start of each of the Lonely's turns, each creature within 5 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thrives on Company", + "body": [ + "The Lonely has advantage on attack rolls while it is within 30 feet of at least two other creatures. It otherwise has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Lonely makes one harpoon arm attack and uses Sorrowful Embrace." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harpoon Arm", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 60 ft., one target. {@h}21 ({@damage 4d8 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature.", + "The Lonely has two harpoon arms and can grapple up to two creatures at once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sorrowful Embrace", + "body": [ + "Each creature {@condition grappled} by the Lonely must make a {@dc 15} Wisdom saving throw. A creature takes 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one. In either case, the Lonely pulls each creature {@condition grappled} by it up to 30 feet straight toward it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "The Lonely-MTF", + "__dataclass__": "Monster" + }, + { + "name": "The Lost", + "source": "MTF", + "page": 233, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 6, + "wisdom": 7, + "charisma": 5, + "passive": 8, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Lost makes two arm spike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arm Spike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Embrace", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}25 ({@damage 4d10 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition frightened}, and it takes 27 ({@damage 6d8}) psychic damage at the end of each of its turns. The Lost can embrace only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Tightening Embrace", + "body": [ + "If the Lost takes damage while it has a creature {@condition grappled}, that creature takes 18 ({@damage 4d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "The Lost-MTF", + "__dataclass__": "Monster" + }, + { + "name": "The Wretched", + "source": "MTF", + "page": 233, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "4d6 - 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 12, + "constitution": 9, + "intelligence": 5, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Wretched Pack Tactics", + "body": [ + "The Wretched has advantage on an attack roll against a creature if at least one of the Wretched's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}. The Wretched otherwise has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage, and the Wretched attaches to the target. While attached, the Wretched can't attack, and at the start of each of the Wretched's turns, the target takes 6 ({@damage 1d10 + 1}) necrotic damage.", + "The attached Wretched moves with the target whenever the target moves, requiring none of the Wretched's movement. The Wretched can detach itself by spending 5 feet of its movement on its turn. A creature, including the target, can use its action to detach a Wretched." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "The Wretched-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Titivilus", + "source": "MTF", + "page": 179, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 19, + "dexterity": 22, + "constitution": 17, + "intelligence": 24, + "wisdom": 22, + "charisma": 26, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+8", + "wis": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Titivilus fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Titivilus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Titivilus's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Titivilus regains 10 hit points at the start of his turn. If he takes cold or radiant damage, this trait doesn't function at the start of his next turn. Titivilus dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ventriloquism", + "body": [ + "Whenever Titivilus speaks, he can choose a point within 60 feet; his voice emanates from that point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Titivilus makes one sword attack and uses his Frightful Word once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Sword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 16 ({@damage 3d10}) necrotic damage, or 9 ({@damage 1d10 + 4}) slashing damage plus 16 ({@damage 3d10}) necrotic damage if used with two hands. If the target is a creature, its hit point maximum is reduced by an amount equal to half the necrotic damage it takes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Word", + "body": [ + "Titivilus targets one creature he can see within 10 feet of him. The target must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} for 1 minute. While {@condition frightened} in this way, the target must take the Dash action and move away from Titivilus by the safest available route on each of its turns, unless there is nowhere to move, in which case it needn't take the Dash action. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Titivilus magically teleports, along with any equipment he is wearing and carrying, up to 120 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Twisting Words", + "body": [ + "Titivilus targets one creature he can see within 60 feet of him. The target must make a {@dc 21} Charisma saving throw. On a failure the target is {@condition charmed} for 1 minute. The {@condition charmed} target can repeat the saving throw if Titivilus deals any damage to it. A creature that succeeds on the saving throw is immune to Titivilus's Twisting Words for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Assault (Costs 2 Actions)", + "body": [ + "Titivilus attacks with his silver sword or uses his Frightful Word." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupting Guidance", + "body": [ + "Titivilus uses Twisting Words. Alternatively, he targets one creature {@condition charmed} by him that is within 60 feet of him; that {@condition charmed} target must make a {@dc 21} Charisma saving throw. On a failure, Titivilus decides how the target acts during its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Titivilus uses his Teleport action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Titivilus's innate spellcasting ability is Charisma (spell save {@dc 21}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell animate dead}", + "{@spell bestow curse}", + "{@spell confusion}", + "{@spell major image}", + "{@spell modify memory}", + "{@spell nondetection}", + "{@spell sending}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell greater invisibility} (self only)", + "{@spell mislead}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell symbol} (discord or sleep only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Titivilus-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Tortle", + "source": "MTF", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 10, + "constitution": 12, + "intelligence": 11, + "wisdom": 13, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The tortle can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TTP", + "page": 23 + } + ], + "subtype": "tortle", + "actions_note": "", + "mythic": null, + "key": "Tortle-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Tortle Druid", + "source": "MTF", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 12, + "intelligence": 11, + "wisdom": 15, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The tortle can hold its breath for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "The tortle withdraws into its shell. Until it emerges, it gains a +4 bonus to AC and has advantage on Strength and Constitution saving throws. While in its shell, the tortle is {@condition prone}, its speed is 0 and can't increase, it has disadvantage on Dexterity saving throws, it can't take reactions, and the only action it can take is a bonus action to emerge." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The tortle is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell produce flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell cure wounds}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TTP", + "page": 23 + } + ], + "subtype": "tortle", + "actions_note": "", + "mythic": null, + "key": "Tortle Druid-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Vampiric Mist", + "source": "MTF", + "page": 246, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 6, + "dexterity": 16, + "constitution": 16, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "saves": { + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Life Sense", + "body": [ + "The mist can sense the location of any creature within 60 feet of it, unless that creature's type is construct or undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forbiddance", + "body": [ + "The mist can't enter a residence without an invitation from one of the occupants." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misty Form", + "body": [ + "The mist can occupy another creature's space and vice versa. In addition, if air can pass through a space, the mist can pass through it without squeezing. Each foot of movement in water costs it 2 extra feet, rather than 1 extra foot. The mist can't manipulate objects in any way that requires fingers or manual dexterity." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "The mist takes 10 radiant damage whenever it starts its turn in sunlight. While in sunlight, the mist has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Life Drain", + "body": [ + "The mist touches one creature in its space. The target must succeed on a {@dc 13} Constitution saving throw (undead and constructs automatically succeed), or it takes 10 ({@damage 2d6 + 3}) necrotic damage, the mist regains 10 hit points, and the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP", + "page": 247 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampiric Mist-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Venom Troll", + "source": "MTF", + "page": 245, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 13, + "constitution": 20, + "intelligence": 7, + "wisdom": 9, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The troll has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Splash", + "body": [ + "When the troll takes damage of any type but psychic, each creature within 5 feet of the troll takes 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The troll regains 10 hit points at the start of each of its turns. If the troll takes acid or fire damage, this trait doesn't function at the start of the troll's next turn. The troll dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troll makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 4 ({@damage 1d8}) poison damage, and the creature is {@condition poisoned} until the start of the troll's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 4 ({@damage 1d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Venom Spray {@recharge}", + "body": [ + "The troll slices itself with a claw, releasing a spray of poison in a 15-foot cube. The troll takes 7 ({@damage 2d6}) slashing damage (this damage can't be reduced in any way). Each creature in the area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} for 1 minute. On a successful save, the creature takes half as much damage and isn't {@condition poisoned}. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Venom Troll-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Wastrilith", + "source": "MTF", + "page": 139, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 80, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 19, + "dexterity": 18, + "constitution": 21, + "intelligence": 19, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "saves": { + "str": "+9", + "con": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The wastrilith can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupt Water", + "body": [ + "At the start of each of the wastrilith's turns, exposed water within 30 feet of it is befouled. Underwater, this effect lightly obscures the area until a current clears it away. Water in containers remains corrupted until it evaporates.", + "A creature that consumes this foul water or swims in it must make a {@dc 18} Constitution saving throw. On a successful save, the creature is immune to the foul water for 24 hours. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and is {@condition poisoned} for 1 minute. At the end of this time, the {@condition poisoned} creature must repeat the saving throw. On a failure, the creature takes 18 ({@damage 4d8}) poison damage and is {@condition poisoned} until it finishes a long rest.", + "If another demon drinks the foul water as an action, it gains 11 ({@dice 2d10}) temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The wastrilith has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undertow", + "body": [ + "As a bonus action when the wastrilith is underwater, it can cause all water within 60 feet of it to be {@quickref difficult terrain||3} for other creatures until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wastrilith uses Grasping Spout and makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}30 ({@damage 4d12 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Spout", + "body": [ + "The wastrilith magically launches a spout of water at one creature it can see within 60 feet of it. The target must make a {@dc 17} Strength saving throw, and it has disadvantage if it's underwater. On a failed save, it takes 22 ({@damage 4d8 + 4}) acid damage and is pulled up to 60 feet toward the wastrilith. On a successful save, it takes half as much damage and isn't pulled." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Wastrilith-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Water Elemental Myrmidon", + "source": "MTF", + "page": 203, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 8, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "one language of its creator's choice" + ], + "traits": [ + { + "title": "Magic Weapons", + "body": [ + "The myrmidon's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The myrmidon makes three trident attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Strikes {@recharge}", + "body": [ + "The myrmidon uses Multiattack. Each attack that hits deals an extra 5 ({@damage 1d10}) cold damage. A target that is hit by one or more of these attacks has its speed reduced by 10 feet until the end of the myrmidon's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + }, + { + "source": "PotA", + "page": 213 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Water Elemental Myrmidon-MTF", + "__dataclass__": "Monster" + }, + { + "name": "White Abishai", + "source": "MTF", + "page": 163, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 16, + "dexterity": 11, + "constitution": 18, + "intelligence": 11, + "wisdom": 12, + "charisma": 13, + "passive": 11, + "saves": { + "str": "+6", + "con": "+7" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Draconic", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the abishai's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The abishai has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The abishai's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of its turn, the abishai can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The abishai makes two attacks: one with its longsword and one with its claw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Vicious Reprisal", + "body": [ + "In response to taking damage, the abishai makes a bite attack against a random creature within 5 feet of it. If no creature is within reach, the abishai moves up to half its speed toward an enemy it can see, without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "White Abishai-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Winter Eladrin", + "source": "MTF", + "page": 197, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d8 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 11, + "dexterity": 10, + "constitution": 16, + "intelligence": 18, + "wisdom": 17, + "charisma": 13, + "passive": 13, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Step {@recharge 4}", + "body": [ + "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eladrin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sorrowful Presence", + "body": [ + "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make a {@dc 13} Wisdom saving throw. On a failed save, the creature is {@condition charmed} for 1 minute. While {@condition charmed} in this way, the creature has disadvantage on ability checks and saving throws. The {@condition charmed} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to any eladrin's Sorrowful Presence for the next 24 hours.", + "Whenever the eladrin deals damage to the {@condition charmed} creature, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) slashing damage, or 5 ({@damage 1d10}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Frigid Rebuke", + "body": [ + "When the eladrin takes damage from a creature the eladrin can see within 60 feet of it, the eladrin can force that creature to succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The eladrin's innate spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fog cloud}", + "{@spell gust of wind}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell cone of cold}", + "{@spell ice storm}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Winter Eladrin-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Yagnoloth", + "source": "MTF", + "page": 252, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 19, + "dexterity": 14, + "constitution": 21, + "intelligence": 16, + "wisdom": 15, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+7", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The yagnoloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The yagnoloth's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yagnoloth makes one massive arm attack and one electrified touch attack, or it makes one massive arm attack and teleports before or after the attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Electrified Touch", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}27 ({@damage 6d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Massive Arm", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}23 ({@damage 3d12 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or is {@condition stunned} until the end of the yagnoloth's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Leech", + "body": [ + "The yagnoloth touches one {@condition incapacitated} creature within 15 feet of it. The target takes 36 ({@damage 7d8 + 4}) necrotic damage, and the yagnoloth gains temporary hit points equal to half the damage dealt. The target must succeed on a {@dc 16} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest, and the target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battlefield Cunning {@recharge 4}", + "body": [ + "Up to two allied yugoloths within 60 feet of the yagnoloth that can hear it can use their reactions to make one melee attack each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The yagnoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The yagnoloth's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell lightning bolt}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Yagnoloth-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Yeenoghu", + "source": "MTF", + "page": 155, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 333, + "formula": "23d12 + 184", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 29, + "dexterity": 16, + "constitution": 26, + "intelligence": 15, + "wisdom": 24, + "charisma": 15, + "passive": 24, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+15", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Yeenoghu fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Yeenoghu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Yeenoghu's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rampage", + "body": [ + "When Yeenoghu reduces a creature to 0 hit points with a melee attack on his turn, Yeenoghu can take a bonus action to move up to half his speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Yeenoghu makes three flail attacks. If an attack hits, he can cause it to create an additional effect of his choice or at random (each effect can be used only once per Multiattack):", + "1. The attack deals an extra 13 ({@damage 2d12}) bludgeoning damage.", + "2. The target must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} until the start of Yeenoghu's next turn.", + "3. The target must succeed on a {@dc 17} Wisdom saving throw or be affected by the {@spell confusion} spell until the start of Yeenoghu's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}15 ({@damage 1d12 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}14 ({@damage 1d10 + 9}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Charge", + "body": [ + "Yeenoghu moves up to his speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swat Away", + "body": [ + "Yeenoghu makes a flail attack. If the attack hits, the target must succeed on a {@dc 24} Strength saving throw or be pushed 15 feet in a straight line away from Yeenoghu. If the saving throw fails by 5 or more, the target falls {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Savage (Costs 2 Actions)", + "body": [ + "Yeenoghu makes a bite attack against each creature within 10 feet of him." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Yeenoghu's spellcasting ability is Charisma (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 247 + }, + { + "source": "BGDIA" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Yeenoghu-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Young Kruthik", + "source": "MTF", + "page": 211, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 10, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 13, + "dexterity": 16, + "constitution": 13, + "intelligence": 4, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "senses": [ + "darkvision 30 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Kruthik" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The kruthik has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kruthik has advantage on an attack roll against a creature if at least one of the kruthik's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 2\u00bd-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Stab", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Kruthik-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Zaratan", + "source": "MTF", + "page": 201, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 307, + "formula": "15d20 + 150", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 30, + "dexterity": 10, + "constitution": 30, + "intelligence": 2, + "wisdom": 21, + "charisma": 18, + "passive": 15, + "saves": { + "wis": "+12", + "cha": "+11" + }, + "dmg_vulnerabilities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Earth-Shaking Movement", + "body": [ + "As a bonus action after moving at least 10 feet on the ground, the zaratan can send a shock wave through the ground in a 120-foot-radius circle centered on itself. That area becomes {@quickref difficult terrain||3} for 1 minute. Each creature on the ground that is {@status concentration||concentrating} must succeed on a {@dc 25} Constitution saving throw or the creature's {@status concentration} is broken.", + "The shock wave deals 100 thunder damage to all structures in contact with the ground in the area. If a creature is near a structure that collapses, the creature might be buried; a creature within half the distance of the structure's height must make a {@dc 25} Dexterity saving throw. On a failed save, the creature takes 17 ({@damage 5d6}) bludgeoning damage, is knocked {@condition prone}, and is trapped in the rubble. A trapped creature is {@condition restrained}, requiring a successful {@dc 20} Strength ({@skill Athletics}) check as an action to escape. Another creature within 5 feet of the buried creature can use its action to clear rubble and grant advantage on the check. If three creatures use their actions in this way, the check is an automatic success. On a successful save, the creature takes half as much damage and doesn't fall {@condition prone} or become trapped." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the zaratan fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The zaratan's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The elemental deals double damage to objects and structures (included in Earth-Shaking Movement)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zaratan makes two attacks: one with its bite and one with its stomp." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}26 ({@damage 3d10 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Rock", + "body": [ + "{@atk rw} {@hit 17} to hit, range 120/240 ft., one target. {@h}31 ({@damage 6d8 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spew Debris {@recharge 5}", + "body": [ + "The zaratan exhales rocky debris in a 90-foot cube. Each creature in that area must make a {@dc 25} Dexterity saving throw. A creature takes 33 ({@damage 6d10}) bludgeoning damage on a failed save, or half as much damage on a successful one. A creature that fails the save by 5 or more is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Stomp", + "body": [ + "The zaratan makes one stomp attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The zaratan moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit (Costs 2 Actions)", + "body": [ + "The zaratan uses Spit Rock." + ], + "__dataclass__": "Entry" + }, + { + "title": "Retract (Costs 2 Actions)", + "body": [ + "The zaratan retracts into its shell. Until it takes its Emerge action, it has resistance to all damage, and it is {@condition restrained}. The next time it takes a legendary action, it must take its Revitalize or Emerge action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Revitalize (Costs 2 Actions)", + "body": [ + "The zaratan can use this option only if it is retracted in its shell. It regains 52 ({@dice 5d20}) hit points. The next time it takes a legendary action, it must take its Emerge action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Emerge (Costs 2 Actions)", + "body": [ + "The zaratan emerges from its shell and uses Spit Rock. It can use this option only if it is retracted in its shell." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zaratan-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Zariel", + "source": "MTF", + "page": 180, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 580, + "formula": "40d10 + 360", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 150, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 27, + "dexterity": 24, + "constitution": 28, + "intelligence": 26, + "wisdom": 27, + "charisma": 30, + "passive": 26, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+16", + "wis": "+16", + "cha": "+18" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede Zariel's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Zariel's weapon attacks are magical. When she hits with any weapon, the weapon deals an extra 36 ({@damage 8d8}) fire damage (included in the weapon attacks below)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Zariel fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Zariel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Zariel regains 20 hit points at the start of her turn. If she takes radiant damage, this trait doesn't function at the start of her next turn. Zariel dies only if she starts her turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zariel attacks twice with her longsword or with her javelins. She can substitute Horrid Touch for one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) slashing damage plus 36 ({@damage 8d8}) fire damage, or 19 ({@damage 2d10 + 8}) slashing damage plus 36 ({@damage 8d8}) fire damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 16} to hit, reach 10 ft. or range 30/120 ft., one target. {@h}15 ({@damage 2d6 + 8}) piercing damage plus 36 ({@damage 8d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrid Touch {@recharge 5}", + "body": [ + "Zariel touches one creature within 10 feet of her. The target must succeed on a {@dc 26} Constitution saving throw or take 44 ({@damage 8d10}) necrotic damage and be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is also {@condition blinded} and {@condition deafened}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Zariel magically teleports, along with any equipment she is wearing and carrying, up to 120 feet to an unoccupied space she can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Immolating Gaze (Costs 2 Actions)", + "body": [ + "Zariel turns her magical gaze toward one creature she can see within 120 feet of her and commands it to combust. The target must succeed on a {@dc 26} Wisdom saving throw or take 22 ({@damage 4d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Zariel uses her Teleport action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Zariel's innate spellcasting ability is Charisma (spell save {@dc 26}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self} (can become Medium when changing her appearance)", + "{@spell detect evil and good}", + "{@spell fireball}", + "{@spell invisibility} (self only)", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell blade barrier}", + "{@spell dispel evil and good}", + "{@spell finger of death}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Zariel-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Zuggtmoy", + "source": "MTF", + "page": 157, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 304, + "formula": "32d10 + 128", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 22, + "dexterity": 15, + "constitution": 18, + "intelligence": 20, + "wisdom": 19, + "charisma": 24, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+11", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "that is nonmagical", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Zuggtmoy fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Zuggtmoy has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Zuggtmoy's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zuggtmoy makes three pseudopod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infestation Spores (3/Day)", + "body": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 19} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of madness (determined by rolling on the Madness of Zuggtmoy table) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Control Spores {@recharge 5}", + "body": [ + "Zuggtmoy releases spores that burst out in a cloud that fills a 20-foot-radius sphere centered on her, and it lingers for 1 minute. Humanoids and beasts in the cloud when it appears, or that enter it later, must make a {@dc 19} Wisdom saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the influence of Zuggtmoy for 24 hours. While infected in this way, the creature is {@condition charmed} by her and can't be reinfected by these spores." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protective Thrall", + "body": [ + "When Zuggtmoy is hit by an attack, one creature within 5 feet of Zuggtmoy that is {@condition charmed} by her must use its reaction to be hit by the attack instead." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Zuggtmoy makes one pseudopod attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Exert Will", + "body": [ + "One creature {@condition charmed} by Zuggtmoy that she can see must use its reaction to move up to its speed as she directs or to make a weapon attack against a target that she designates." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Zuggtmoy's spellcasting ability is Charisma (spell save {@dc 22}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell locate animals or plants}", + "{@spell ray of sickness}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell ensnaring strike}", + "{@spell entangle}", + "{@spell plant growth}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell etherealness}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "OotA", + "page": 249 + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Zuggtmoy-MTF", + "__dataclass__": "Monster" + }, + { + "name": "Awakened Zurkhwood", + "source": "OotA", + "page": 230, + "size_str": "Huge", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d12 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 19, + "dexterity": 6, + "constitution": 15, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "one language known by its creator" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the tree remains motionless, it is indistinguishable from a normal zurkhwood mushroom." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mute", + "body": [ + "If the awakened zurkhwood was created by a myconid sovereign, it can't speak." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Awakened Zurkhwood-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Bridesmaid of Zuggtmoy", + "source": "OotA", + "page": 230, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 14, + "dexterity": 11, + "constitution": 11, + "intelligence": 14, + "wisdom": 8, + "charisma": 18, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Fungus Stride", + "body": [ + "Once on its turn, the bridesmaid can use 10 feet of its movement to step magically into one living mushroom or fungus patch within 5 feet and emerge from another within 60 feet of the first one, appearing in an unoccupied space within 5 feet of the second mushroom or fungus patch. The mushrooms and patches must be large or bigger." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hallucination Spores", + "body": [ + "The bridesmaid ejects spores at one creature it can see within 5 feet of it. The target must succeed on a {@dc 10} Constitution saving throw or be {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target is {@condition incapacitated}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infestation Spores (1/Day)", + "body": [ + "The bridesmaid releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 10} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of indefinite madness (determined by rolling on the Madness of Zuggtmoy table in appendix D) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must be repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bridesmaid of Zuggtmoy-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Chamberlain of Zuggtmoy", + "source": "OotA", + "page": 230, + "size_str": "Large", + "maintype": "plant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 7, + "constitution": 14, + "intelligence": 11, + "wisdom": 8, + "charisma": 12, + "passive": 9, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Undercommon" + ], + "traits": [ + { + "title": "Mushroom Portal", + "body": [ + "The chamberlain counts as a mushroom for the Fungus Stride feature of the bridesmaid of Zuggtmoy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Spores", + "body": [ + "Whenever the chamberlain takes damage, it releases a cloud of spores. Creatures within 5 feet of the chamberlain when this happens must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chamberlain makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infestation Spores (1/Day)", + "body": [ + "The chamberlain releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 12} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of indefinite madness (determined by rolling on the Madness of Zuggtmoy table in appendix D) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must be repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chamberlain of Zuggtmoy-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Chuul Spore Servant", + "source": "OotA", + "page": 228, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 10, + "constitution": 16, + "intelligence": 2, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spore servant makes two pincer attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pincer", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. The target is {@condition grappled} (Escape {@dc 14}) if it is a Large or smaller creature and the spore servant doesn't have two other creatures {@condition grappled}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chuul Spore Servant-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Deepking Horgar Steelshadow V", + "source": "OotA", + "page": 82, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "{@item dwarven plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "saves": { + "con": "+4", + "wis": "+2" + }, + "languages": [ + "Draconic", + "Giant", + "Dwarvish" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "Horgar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Horgar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gauntlets of Ogre Power", + "body": [ + "Horgar wields {@item Gauntlets of Ogre Power} giving him a Strength score of 19 (+4)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brave", + "body": [ + "Horgar has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, Horgar magically increases in size, along with anything he is wearing or carrying. While enlarged, Horgar is Large, doubles his damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If Horgar lacks the room to become Large, he attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "Horgar magically turns {@condition invisible} until he attacks, casts a spell, or uses his Enlarge, or until his {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment Horgar wears or carries is {@condition invisible} with him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack", + "body": [ + "Horgar makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "+2 Warhammer", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 11 ({@damage 1d10 + 6}) bludgeoning damage if used with two hands. While Horgar is enlarged, the damage increases to 15 ({@damage 2d8 + 6}) or 17 ({@damage 2d10 + 6}) bludgeoning damage, respectively." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leadership (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, Horgar can utter a special command or warning whenever a nonhostile creature that he can see within 30 feet of Horgar makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand Horgar. A creature can benefit from only one Leadership die at a time. This effect ends if Horgar is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Horgar adds 2 to its AC against one melee attack that would hit him. To do so, Horgar must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Deepking Horgar Steelshadow V-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Derro", + "source": "OotA", + "page": 224, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 5, + "charisma": 9, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Insanity", + "body": [ + "The derro has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The derro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooked Shortspear", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) piercing damage. If the target is a creature, the derro can choose to deal no damage and try to trip the target instead, in which case the target must succeed on a {@dc 9} Strength saving throw or fall {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Repeating Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 40/160 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "derro", + "actions_note": "", + "mythic": null, + "key": "Derro-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Droki", + "source": "OotA", + "page": 231, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(60 ft. with boots of speed)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 16, + "constitution": 13, + "intelligence": 10, + "wisdom": 5, + "charisma": 16, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Droki wears {@item boots of speed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Insanity", + "body": [ + "Droki has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Droki deals an extra 7 ({@damage 2d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Droki that isn't {@condition incapacitated} and Droki doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The derro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Droki makes two attacks with his shortsword" + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. The sword is coated with serpent venom that wears off after the first hit. A target subjected to the venom must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Droki adds 3 to his AC against one melee attack that would hit him. To do so, Droki must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Droki's innate spellcasting ability is Charisma (spell save {@dc 13}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell fear}", + "{@spell shatter}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "derro", + "actions_note": "", + "mythic": null, + "key": "Droki-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Drow Spore Servant", + "source": "OotA", + "page": 229, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 2, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Drow Spore Servant-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Darkhaft", + "source": "OotA", + "page": 226, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The darkhaft's innate spellcasting ability is Intelligence (spell save {@dc 10}) it can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell disguise self}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Darkhaft-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Keeper of the Flame", + "source": "OotA", + "page": 226, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The Keeper of the Flame's innate spellcasting ability is Wisdom (spell save {@dc 12}.) It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The Keeper of the Flame is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The Keeper of the Flame has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell sacred flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell enhance ability}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Keeper of the Flame-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Spore Servant", + "source": "OotA", + "page": 229, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 2, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Duergar Spore Servant-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Emerald Enclave Scout", + "source": "OotA", + "page": 130, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 11, + "wisdom": 13, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "The scout has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Sight", + "body": [ + "The scout has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scout makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Emerald Enclave Scout-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Giant Riding Lizard", + "source": "OotA", + "page": 131, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The lizard can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Riding Lizard-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Grisha", + "source": "OotA", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 12, + "constitution": 12, + "intelligence": 11, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+5" + }, + "languages": [ + "Common", + "Undercommon" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Grisha makes two attacks with his +1 flail." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Flail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage" + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Grisha is a 6th-level-spellcaster. His spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell divine favor}", + "{@spell inflict wounds}", + "{@spell protection from evil and good}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell continual flame}", + "{@spell hold person}", + "{@spell magic weapon}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Damaran human", + "actions_note": "", + "mythic": null, + "key": "Grisha-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Hook Horror Spore Servant", + "source": "OotA", + "page": 68, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 10, + "constitution": 15, + "intelligence": 2, + "wisdom": 6, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spore servant makes two hook attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hook", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hook Horror Spore Servant-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Ixitxachitl", + "source": "OotA", + "page": 225, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 16, + "constitution": 13, + "intelligence": 12, + "wisdom": 13, + "charisma": 7, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Barbed Tail", + "body": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ixitxachitl-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Ixitxachitl Cleric", + "source": "OotA", + "page": 225, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 16, + "constitution": 13, + "intelligence": 12, + "wisdom": 13, + "charisma": 7, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Barbed Tail", + "body": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The ixitxachitl is a 5th-level spellcaster that uses Wisdom as its spellcasting ability (spell save {@dc 11}, {@hit 3} to hit with spell attacks). The ixitxachitl has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell create or destroy water}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ixitxachitl Cleric-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Lords' Alliance Guard", + "source": "OotA", + "page": 131, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 16, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "The guard has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Halberd", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Lords' Alliance Guard-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Lords' Alliance Spy", + "source": "OotA", + "page": 131, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 15, + "constitution": 10, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of its turns, the spy can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "The spy deals an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the spy that isn't {@condition incapacitated} and the spy doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spy makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Lords' Alliance Spy-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Narrak", + "source": "OotA", + "page": 232, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d6 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 5, + "charisma": 16, + "passive": 7, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Insanity", + "body": [ + "Narrak has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Narrak has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Narrak has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Armor of Shadows (Recharges after a Short or Long Rest)", + "body": [ + "Narrak casts {@spell mage armor} on himself" + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "One with Shadows", + "body": [ + "While he is in a dim light or darkness, Narrak can become {@condition invisible}. He remains so until he moves or takes an action or reaction." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Narrak is a 5th-level spellcaster. His spellcasting ability is Charisma (Save {@dc 13}, {@hit 5} to hit with spell attacks) Narrak has two 2nd-level spell slots, which he regains after finishing a short or long rest, and knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell eldritch blast}", + "{@spell friends}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + null, + { + "slots": 2, + "spells": [ + "{@spell armor of Agathys}", + "{@spell charm person}", + "{@spell hex}", + "{@spell hold person}", + "{@spell ray of enfeeblement}", + "{@spell spider climb}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "derro", + "actions_note": "", + "mythic": null, + "key": "Narrak-OotA", + "__dataclass__": "Monster" + }, + { + "name": "The Pudding King", + "source": "OotA", + "page": 233, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d6 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 16, + "constitution": 14, + "intelligence": 12, + "wisdom": 8, + "charisma": 17, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Gnomish", + "Terran", + "Undercommon" + ], + "traits": [ + { + "title": "Stone Camouflage", + "body": [ + "The Pudding King has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gnome Cunning", + "body": [ + "The Pudding King has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Insanity", + "body": [ + "The Pudding King has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The Pudding King magically transforms into an {@filter ooze|bestiary|type=ooze}, or back into his true form. He reverts to his true form if he dies. Any equipment he is wearing or carrying is absorbed by the new form. In ooze form, the Pudding King retains his alignment, hit points, Hit Dice, and Intelligence, Wisdom, and Charisma scores, as well as this action. His statistics and capabilities are otherwise replaced by those of the new form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Green Slime (Recharges after a Long Rest)", + "body": [ + "The Pudding King creates a patch of green slime (see \"Dungeon Hazards\" in chapter 5 of the Dungeon Master's Guide). The slime appears on a section of wall, ceiling, or floor within 30 feet of the Pudding King." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The Pudding King's innate spellcasting ability is Intelligence (spell save {@dc 12}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell nondetection} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blindness/deafness}", + "{@spell blur}", + "{@spell disguise self}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The Pudding King is a 9th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The Pudding King knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell light}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell mage armor}", + "{@spell ray of sickness}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gaseous form}", + "{@spell stinking cloud}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell confusion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cloudkill}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gnome, shapechanger", + "actions_note": "", + "mythic": null, + "key": "The Pudding King-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Troglodyte Champion of Laogzed", + "source": "OotA", + "page": 229, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 12, + "constitution": 18, + "intelligence": 8, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Troglodyte" + ], + "traits": [ + { + "title": "Chameleon Skin", + "body": [ + "The troglodyte has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench", + "body": [ + "Any creature other than a troglodyte that starts its turn within 5 feet of the troglodyte must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all troglodytes for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the troglodyte has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troglodyte makes three attacks: one with its bite and two with either its claws or its greatclub." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Spray {@recharge}", + "body": [ + "The troglodyte spits acid in a line 15 feet long and 5 feet wide. Each creature in that line must make a {@dc 14} Dexterity saving throw, taking 10 ({@damage 3d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "troglodyte", + "actions_note": "", + "mythic": null, + "key": "Troglodyte Champion of Laogzed-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Vampiric Ixitxachitl", + "source": "OotA", + "page": 226, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 18, + "constitution": 13, + "intelligence": 12, + "wisdom": 13, + "charisma": 7, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "actions": [ + { + "title": "Vampiric Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. The target must succeed on a {@dc 11} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken, and the ixitxachitl regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Barbed Tail", + "body": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampiric Ixitxachitl-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Vampiric Ixitxachitl Cleric", + "source": "OotA", + "page": 226, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 18, + "constitution": 13, + "intelligence": 12, + "wisdom": 13, + "charisma": 7, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Ixitxachitl" + ], + "actions": [ + { + "title": "Vampiric Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. The target must succeed on a {@dc 11} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken, and the ixitxachitl regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Barbed Tail", + "body": [ + "When a creature provokes an opportunity attack from the ixitxachitl, the ixitxachitl can make the following attack instead of using its bite.", + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The ixitxachitl is a 5th-level spellcaster that uses Wisdom as its spellcasting ability (Spell save {@dc 11}, {@hit 3} to hit with spell attacks). The ixitxachitl has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell create or destroy water}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampiric Ixitxachitl Cleric-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Veteran of the Gauntlet", + "source": "OotA", + "page": 130, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Veteran of the Gauntlet-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Yestabrod", + "source": "OotA", + "page": 233, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 10, + "constitution": 14, + "intelligence": 13, + "wisdom": 15, + "charisma": 10, + "passive": 12, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If Yestabrod fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 3d4 + 1}) bludgeoning damage plus 7 ({@damage 3d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Caustic Spores (1/Day)", + "body": [ + "Yestabrod releases spores in a 30-foot cone. Each creature in that area must succeed on a {@dc 12} Dexterity saving throw or take {@damage 1d6} acid damage at the start of each of Yestabrod's turns. A creature can repeat the saving throw at the end of each of its turn, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infestation Spores (1/Day)", + "body": [ + "Yestabrod releases spores that burst out in a cloud that fills a 10-foot-radius sphere centered on it, and the cloud lingers for 1 minute. Any flesh-and-blood creature in the cloud when it appears, or that enters it later, must make a {@dc 12} Constitution saving throw. On a successful save, the creature can't be infected by these spores for 24 hours. On a failed save, the creature is infected with a disease called the spores of Zuggtmoy and also gains a random form of indefinite madness (determined by rolling on the Madness of Zuggtmoy table in appendix D) that lasts until the creature is cured of the disease or dies. While infected in this way, the creature can't be reinfected, and it must be repeat the saving throw at the end of every 24 hours, ending the infection on a success. On a failure, the infected creature's body is slowly taken over by fungal growth, and after three such failed saves, the creature dies and is reanimated as a spore servant if it's a type of creature that can be (see the \"Myconids\" entry in the Monster Manual)." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Corpse Burst", + "body": [ + "Gore, offal, and acid erupt from a corpse within 20 feet of Yestabrod. Creatures within 10 feet of the corpse must succeed on a {@dc 12} Dexterity saving throw or take 7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Foul Absorption", + "body": [ + "Yestabrod absorbs putrescence from a corpse within 5 feet of it, regaining {@dice 1d8 + 2} hit points" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yestabrod-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Zhentarim Thug", + "source": "OotA", + "page": 131, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 11, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thug makes two melee attacks" + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Zhentarim Thug-OotA", + "__dataclass__": "Monster" + }, + { + "name": "Animated Object (Huge)", + "source": "PHB", + "page": 213, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 10, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "80", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 18, + "dexterity": 6, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Animated", + "body": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d12 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Object (Huge)-PHB", + "__dataclass__": "Monster" + }, + { + "name": "Animated Object (Large)", + "source": "PHB", + "page": 213, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 10, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "50", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 10, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Animated", + "body": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d10 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Object (Large)-PHB", + "__dataclass__": "Monster" + }, + { + "name": "Animated Object (Medium)", + "source": "PHB", + "page": 213, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "40", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Animated", + "body": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Object (Medium)-PHB", + "__dataclass__": "Monster" + }, + { + "name": "Animated Object (Small)", + "source": "PHB", + "page": 213, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "25", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 6, + "dexterity": 14, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Animated", + "body": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Object (Small)-PHB", + "__dataclass__": "Monster" + }, + { + "name": "Animated Object (Tiny)", + "source": "PHB", + "page": 213, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "20", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 18, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Animated", + "body": [ + "If the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or larger object, such as a chain bolted to a wall, its speed is 0.", + "When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.", + "The DM might rule that a specific objects slam attack inflicts slashing or piercing damage based on its form." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Object (Tiny)-PHB", + "__dataclass__": "Monster" + }, + { + "name": "Aerisi Kalinoth", + "source": "PotA", + "page": 192, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 8, + "dexterity": 16, + "constitution": 12, + "intelligence": 17, + "wisdom": 10, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Aerisi has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Howling Defeat", + "body": [ + "When Aerisi drops to 0 hit points, her body disappears in a howling whirlwind that disperses quickly and harmlessly. Anything she is wearing or carrying is left behind." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Aerisi fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Windvane", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}9 ({@damage 1d6 + 6}) piercing damage, or 10 ({@damage 1d8 + 6}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Aerisi is a 12th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). Aerisi has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell gust|xge}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell feather fall}", + "{@spell mage armor}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dust devil|xge}", + "{@spell gust of wind}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fly}", + "{@spell gaseous form}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell ice storm}", + "{@spell storm sphere|xge}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cloudkill}", + "{@spell seeming} (cast each day)" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Aerisi Kalinoth-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Bastian Thermandar", + "source": "PotA", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 12, + "dexterity": 14, + "constitution": 15, + "intelligence": 11, + "wisdom": 9, + "charisma": 18, + "passive": 9, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Ignan" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "con", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Bastian's innate spellcasting ability is Constitution (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He can innately cast the following spells:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell produce flame}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell burning hands}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Bastian is a 9th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Bastian knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Fire genasi", + "actions_note": "", + "mythic": null, + "key": "Bastian Thermandar-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Black Earth Guard", + "source": "PotA", + "page": 195, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The guard makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unyielding", + "body": [ + "When the guard is subjected to an effect that would move it, knock it {@condition prone}, or both, it can use its reaction to be neither moved nor knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Black Earth Guard-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Black Earth Priest", + "source": "PotA", + "page": 195, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 12, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Terran" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The priest makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unyielding", + "body": [ + "When the priest is subjected to an effect that would move it, knock it {@condition prone}, or both, it can use its reaction to be neither moved nor knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell blade ward}", + "{@spell light}", + "{@spell mending}", + "{@spell mold earth|xge}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell earth tremor|xge}", + "{@spell expeditious retreat}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell shatter}", + "{@spell spider climb}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell slow}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Black Earth Priest-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Burrowshark", + "source": "PotA", + "page": 196, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 12, + "constitution": 16, + "intelligence": 10, + "wisdom": 11, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Bond of the Black Earth", + "body": [ + "The burrowshark is magically bound to a bulette trained to serve as its mount. While mounted on its bulette, the burrowshark shares the bulette's senses and can ride the bulette while it burrows. The bonded bulette obeys the burrowshark's commands. If its mount dies, the burrowshark can train a new bulette to serve as its bonded mount, a process requiring a month." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The burrowshark makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unyielding", + "body": [ + "When the burrowshark is subjected to an effect that would move it, knock it {@condition prone}, or both, it can use its reaction to be neither moved nor knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Burrowshark-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Crushing Wave Priest", + "source": "PotA", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell ice knife|xge}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell sleet storm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Crushing Wave Priest-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Crushing Wave Reaver", + "source": "PotA", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 14, + "constitution": 13, + "intelligence": 10, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Sharktoothed Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands. Against a target is wearing no armor, the reaver deals an extra die of damage with this sword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Crushing Wave Reaver-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Dark Tide Knight", + "source": "PotA", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 16, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Bonded Mount", + "body": [ + "The knight is magically bound to a beast with an innate swimming speed trained to serve as its mount. While mounted on this beast, the knight gains the beast's senses and ability to breathe underwater. The bonded mount obeys the knight's commands. If its mount dies, the knight can train a new beast to serve as its bonded mount, a process requiring a month." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack", + "body": [ + "The knight deals an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the knight that isn't {@condition incapacitated} and the knight doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The knight makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lance", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "When an attacker the knight can see hits it with an attack, the knight can halve the damage against it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SLW" + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Dark Tide Knight-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Drannin Splithelm", + "source": "PotA", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 10, + "constitution": 18, + "intelligence": 11, + "wisdom": 8, + "charisma": 12, + "passive": 9, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Action Surge (Recharges after a Short or Long Rest)", + "body": [ + "Drannin takes an additional action on his turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when Drannin hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dwarven Resilience", + "body": [ + "Drannin has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indomitable (Recharges after a Short or Long Rest)", + "body": [ + "Drannin can reroll a saving throw that he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "Drannin can use a bonus action to regain 16 ({@dice 1d10 + 11}) hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Drannin wears a control amulet for his {@creature shield guardian} (see the Monster Manual) and a {@item ring of cold resistance}. He also carries a {@item potion of frost giant strength}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Drannin makes three attacks with his greataxe." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d12 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Shield dwarf", + "actions_note": "", + "mythic": null, + "key": "Drannin Splithelm-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Elizar Dryflagon", + "source": "PotA", + "page": 202, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 13, + "dexterity": 15, + "constitution": 14, + "intelligence": 11, + "wisdom": 18, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Druidic" + ], + "traits": [ + { + "title": "Summon Mephits (Recharges after a Long Rest)", + "body": [ + "By puffing on his pipe, Elizar can use an action to cast {@spell conjure minor elementals}. If he does so, he summons four smoke mephits." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger +1", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Elizar is a 7th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Elizar has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell poison spray}", + "{@spell produce flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell faerie fire}", + "{@spell healing word}", + "{@spell jump}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell flame blade}", + "{@spell spike growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell stinking cloud}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell blight}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Elizar Dryflagon-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Eternal Flame Guardian", + "source": "PotA", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "{@item breastplate|phb}, {@item shield|phb}", + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "while using a crossbow", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 13, + "constitution": 14, + "intelligence": 8, + "wisdom": 11, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Flaming Weapon (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the guard can wreath one melee weapon it is wielding in flame. The guard is unharmed by this fire, which lasts until the end of the guard's next turn. While wreathed in flame, the weapon deals an extra 3 ({@damage 1d6}) fire damage on a hit." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The guard makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Eternal Flame Guardian-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Eternal Flame Priest", + "source": "PotA", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Ignan" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell control flames|xge}", + "{@spell create bonfire|xge}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell expeditious retreat}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Eternal Flame Priest-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Fathomer", + "source": "PotA", + "page": 207, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Shapechanger (2/Day)", + "body": [ + "The fathomer can use its action to polymorph into a Medium serpent composed of water, or back into its true form. Anything the fathomer is wearing or carrying is subsumed into the serpent form during the change, inaccessible until the fathomer returns to its true form. The fathomer reverts to its true form after 4 hours, unless it can expend another use of this trait. If the fathomer is knocked {@condition unconscious} or dies, it also reverts to its true form.", + "While in serpent form, the fathomer gains a swimming speed of 40 feet, the ability to breathe underwater, immunity to poison damage, as well as resistance to fire damage and bludgeoning, piercing, and slashing damage from nonmagical attacks. It also has immunity to the following conditions: {@condition exhaustion}, {@condition grappled}, {@condition paralyzed}, {@condition poisoned}, {@condition restrained}, {@condition prone}, {@condition unconscious}. The serpent form can enter a hostile creature's space and stop there. In addition, if water can pass through a space, the serpent can do so without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Olhydra's Armor (Human Form Only)", + "body": [ + "The fathomer can cast {@spell mage armor} at will, without expending material components." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Constrict (Serpent Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 12}). Until the grapple ends, the target is {@condition restrained}, and the fathomer can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger (Human Form Only)", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Human Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Human Form Only)", + "body": [ + "The fathomer is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has two 3rd-level spell slots, which it regains after finishing a short or long rest, and knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell armor of Agathys}", + "{@spell expeditious retreat}", + "{@spell hex}", + "{@spell invisibility}", + "{@spell Vampiric touch}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Fathomer-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Feathergale Knight", + "source": "PotA", + "page": 189, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The knight makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The knight is a 1st-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It knows the following sorcerer spell:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell gust|xge}", + "{@spell light}", + "{@spell message}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell expeditious retreat}", + "{@spell feather fall}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Feathergale Knight-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Flamewrath", + "source": "PotA", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 10, + "dexterity": 14, + "constitution": 16, + "intelligence": 11, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Ignan" + ], + "traits": [ + { + "title": "Wreathed in Flame", + "body": [ + "For the flamewrath, the warm version of the {@spell fire shield} spell has a duration of \"until dispelled.\" The fire shield burns for 10 minutes after the flamewrath dies, consuming its body." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The flamewrath is a 7th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell control flames|xge}", + "{@spell fire bolt}", + "{@spell friends}", + "{@spell light}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell color spray}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell scorching ray}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell hypnotic pattern}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell fire shield} (see Wreathed in Flame)" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Flamewrath-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Gar Shatterkeel", + "source": "PotA", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 15, + "dexterity": 15, + "constitution": 16, + "intelligence": 12, + "wisdom": 18, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Gar can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Gar fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Walk", + "body": [ + "Gar can stand and move on liquid surfaces as if they were solid ground." + ], + "__dataclass__": "Entry" + }, + { + "title": "Watery Fall", + "body": [ + "When Gar drops to 0 hit points, his body collapses into a pool of inky water that rapidly disperses. Anything he was wearing or carrying is left behind." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Gar makes two melee attacks, one with his claw and one with {@item Drown|PotA}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 13}). Until the grapple ends, Gar can't attack other creatures with his claw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drown", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 4 ({@damage 1d8}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Gar is a 9th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). He has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mending}", + "{@spell resistance}", + "{@spell shape water|xge}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell create or destroy water}", + "{@spell cure wounds}", + "{@spell fog cloud}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkvision}", + "{@spell hold person}", + "{@spell protection from poison}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell call lightning}", + "{@spell sleet storm}", + "{@spell tidal wave|xge}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell control water}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Gar Shatterkeel-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Ghald", + "source": "PotA", + "page": 210, + "size_str": "Large", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 17, + "constitution": 16, + "intelligence": 14, + "wisdom": 13, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+6", + "int": "+5", + "wis": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Sahuagin" + ], + "traits": [ + { + "title": "Assassinate", + "body": [ + "During its first turn, Ghald has advantage on attack rolls against any creature that hasn't taken a turn. Any hit Ghald scores against a {@status surprised} creature is a critical hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "Ghald can breathe air and water, but he needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "Ghald can magically command any shark within 120 feet of him, using a limited telepathy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack", + "body": [ + "Ghald deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Ghald's that isn't {@condition incapacitated} and Ghald doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ghald makes three attacks, one with his bite and two with his shortswords." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Garrote", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Medium or Small creature against which Ghald has advantage on the attack roll. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target can't breathe, and Ghald has advantage on attack rolls against it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Ghald-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Hellenrae", + "source": "PotA", + "page": 198, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 13, + "dexterity": 18, + "constitution": 14, + "intelligence": 10, + "wisdom": 15, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "Common", + "Terran" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If Hellenrae is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Strike {@recharge 5}", + "body": [ + "When Hellenrae hits a target with a melee weapon attack, the target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of Hellenrae's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "While Hellenrae is wearing no armor and wielding no shield, her AC includes her Wisdom modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Movement", + "body": [ + "While Hellenrae is wearing no armor and wielding no shield, her speed increases by 20 feet (included in her speed)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hellenrae makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry and Counter", + "body": [ + "Hellenrae adds 3 to her AC against one melee or ranged weapon attack that would hit her. To do so, she must be able to sense the attacker with her blindsight. If the attack misses, Hellenrae can make one melee attack against the attacker if it is within her reach." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Hellenrae-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Howling Hatred Initiate", + "source": "PotA", + "page": 190, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 15, + "constitution": 10, + "intelligence": 10, + "wisdom": 9, + "charisma": 11, + "passive": 9, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Guiding Wind (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the initiate gains advantage on the next ranged attack roll it makes before the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The initiate can hold its breath for 30 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Howling Hatred Initiate-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Howling Hatred Priest", + "source": "PotA", + "page": 190, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 16, + "constitution": 10, + "intelligence": 14, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "traits": [ + { + "title": "Hold Breath", + "body": [ + "The priest can hold its breath for 30 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The priest makes two melee attacks or two ranged attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The priest is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell gust|xge}", + "{@spell light}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell feather fall}", + "{@spell shield}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dust devil|xge}", + "{@spell gust of wind}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell gaseous form}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Howling Hatred Priest-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Hurricane", + "source": "PotA", + "page": 191, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 45, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 16, + "constitution": 13, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the hurricane is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Movement", + "body": [ + "While the hurricane is wearing no armor and wielding no shield, its walking speed increases by 15 feet (included in its speed)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hurricane makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missiles", + "body": [ + "When the hurricane is hit by a ranged weapon attack, it reduces the damage from the attack by {@dice 1d10 + 9}. If the damage is reduced to 0, the hurricane can catch the missile if it is small enough to hold in one hand and the hurricane has at least one hand free." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The hurricane is a 3rd-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell gust|xge}", + "{@spell light}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell feather fall}", + "{@spell jump}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell gust of wind}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Hurricane-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Imix", + "source": "PotA", + "page": 214, + "size_str": "Huge", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 325, + "formula": "26d12 + 156", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 19, + "dexterity": 24, + "constitution": 22, + "intelligence": 15, + "wisdom": 16, + "charisma": 23, + "passive": 13, + "saves": { + "dex": "+13", + "con": "+12", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Common", + "Ignan" + ], + "traits": [ + { + "title": "Empowered Attacks", + "body": [ + "Imix's slam attacks are treated as magical for the purpose of bypassing resistance and immunity to nonmagical attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Aura", + "body": [ + "At the start of each of Imix's turns, each creature within 10 feet of him takes 17 ({@damage 5d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature also takes 17 ({@damage 5d6}) fire damage if it touches Imix or hits him with a melee attack while within 10 feet of him, and a creature takes that damage the first time on a turn that Imix moves into its space. Nonmagical weapons that hit Imix are destroyed by fire immediately after dealing damage to him" + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Form", + "body": [ + "Imix can enter a hostile creature's space and stop there. He can move through a space as narrow as 1 inch without squeezing if fire could pass through that space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "Imix sheds bright light in a 60-foot radius and dim light for an additional 60 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Imix fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Imix has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Imix makes two slam attacks or two flame blast attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) bludgeoning damage plus 18 ({@damage 5d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Blast", + "body": [ + "{@atk rs} {@hit 12} to hit, range 250 ft., one target. {@h}35 ({@damage 10d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Elementals (1/Day)", + "body": [ + "Imix summons up to three {@creature fire elemental||fire elementals} and loses 30 hit points for each elemental he summons. Summoned elementals have maximum hit points, appear within 100 feet of Imix, and disappear if Imix is reduced to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Heat Wave", + "body": [ + "Imix creates a blast of heat within 300 feet of himself. Each creature in the area in physical contact with metal objects (for example, carrying metal weapons or wearing metal armor) takes 9 ({@damage 2d8}) fire damage. Each creature in the area that isn't resistant or immune to fire damage must make a {@dc 21} Constitution saving throw or gain one level of {@condition exhaustion}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport (Costs 2 Actions)", + "body": [ + "Imix magically teleports up to 120 feet to an unoccupied space he can see. Anything Imix is wearing or carrying isn't teleported with him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Combustion (Costs 3 Actions)", + "body": [ + "Imix causes one creature he can see within 30 feet of him to burst into flames. The target must make a {@dc 21} Constitution saving throw. On a failed save, the target takes 70 ({@damage 20d6}) fire damage and catches fire. A target on fire takes 10 ({@damage 3d6}) fire damage when it starts its turn, and remains on fire until it or another creature takes an action to douse the flames. On a successful save, the target takes half as much damage and doesn't catch fire." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Imix's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fireball}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell fire storm}", + "{@spell haste}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Imix-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Marlos Urnrayle", + "source": "PotA", + "page": 199, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 17, + "dexterity": 11, + "constitution": 18, + "intelligence": 12, + "wisdom": 13, + "charisma": 17, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Common", + "Terran" + ], + "traits": [ + { + "title": "Earthen Defeat", + "body": [ + "When Marlos drops to 0 hit points, his body transforms into mud and collapses into a pool. Anything he is wearing or carrying is left behind." + ], + "__dataclass__": "Entry" + }, + { + "title": "Earth Passage", + "body": [ + "Marlos can move in {@quickref difficult terrain||3} composed of anything made from earth or stone as if it were normal terrain. He can move through solid earth and rock as if it were {@quickref difficult terrain||3}. If he ends his turn there, he is shunted into the nearest space he last occupied." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Marlos fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Gaze", + "body": [ + "When a creature that can see Marlos's eyes starts its turn within 30 feet of him, Marlos can force it to make a {@dc 14} Constitution saving throw if Marlos isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is instantly {@condition petrified}. Otherwise, a creature that fails the save begins to turn to stone and is {@condition restrained}. The {@condition restrained} creature must repeat the saving throw at the end of its next turn, becoming {@condition petrified} on a failure or ending the effect on a success. The petrification lasts until the creature is freed by the {@spell greater restoration} spell or other magic.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it can't see Marlos until the start of its next turn, when it can decide to avert its eyes again. If the creature looks at Marlos in the meantime, it must immediately make the save.", + "If Marlos sees himself reflected on a polished surface within 30 feet of him and in an area of bright light, Marlos is, due to his curse, affected by his own gaze." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Marlos makes three melee attacks, one with his snake hair and two with {@item Ironfang|PotA}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snake Hair", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ironfang", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) thunder damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Marlos Urnrayle-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Miraj Vizann", + "source": "PotA", + "page": 198, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 12, + "dexterity": 10, + "constitution": 17, + "intelligence": 13, + "wisdom": 11, + "charisma": 18, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Primordial" + ], + "traits": [ + { + "title": "Earth Walk", + "body": [ + "Moving through {@quickref difficult terrain||3} made of earth or stone costs Miraj no extra movement." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage when used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "con", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Miraj's innate spellcasting ability is Constitution (spell save {@dc 14}). He can innately cast the following spell, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell pass without trace}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Miraj is an 11th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). He knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell blade ward}", + "{@spell friends}", + "{@spell light}", + "{@spell message}", + "{@spell mold earth|xge}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell mage armor}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Maximilian's earthen grasp|xge}", + "{@spell shatter}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell erupting earth|xge}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell polymorph}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell wall of stone}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell move earth}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Earth genasi", + "actions_note": "", + "mythic": null, + "key": "Miraj Vizann-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Ogr\u00e9moch", + "source": "PotA", + "page": 216, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 526, + "formula": "27d20 + 243", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 50, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 26, + "dexterity": 11, + "constitution": 28, + "intelligence": 11, + "wisdom": 15, + "charisma": 22, + "passive": 12, + "saves": { + "str": "+14", + "con": "+15", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft.", + "tremorsense 120 ft." + ], + "languages": [ + "Common", + "Terran" + ], + "traits": [ + { + "title": "Empowered Attacks", + "body": [ + "Ogr\u00e9moch's slam attacks are treated as magical and adamantine for the purpose of bypassing resistance and immunity to nonmagical attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Ogr\u00e9moch fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Ogr\u00e9moch has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "Ogr\u00e9moch deals double damage to objects and structures with his melee and ranged weapon attacks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ogr\u00e9moch makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boulder", + "body": [ + "{@atk rw} {@hit 6} to hit, range 500 ft., one target. {@h}46 ({@damage 7d10 + 8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Elementals (1/Day)", + "body": [ + "Ogr\u00e9moch summons up to three {@creature earth elemental||earth elementals} and loses 30 hit points for each elemental he summons. Summoned elementals have maximum hit points, appear within 100 feet of Ogr\u00e9moch, and disappear if Ogr\u00e9moch is reduced to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Illuminating Crystals", + "body": [ + "Ogr\u00e9moch's crystalline protrusions flare. Each creature within 30 feet of Ogr\u00e9moch becomes outlined in orange light, shedding dim light in a 10-foot radius. Any attack roll against an affected creature has advantage if the attacker can see it, and the affected creature can't benefit from being {@condition invisible}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp (Costs 2 Actions)", + "body": [ + "Ogr\u00e9moch stomps the ground, creating an earth tremor that extends in a 30-foot radius. Other creatures standing on the ground in that radius must succeed on a {@dc 23} Dexterity saving throw or fall {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Gargoyle (Costs 3 Actions)", + "body": [ + "Ogr\u00e9moch's hit points are reduced by 50 as he breaks off a chunk of his body and places it on the ground in an unoccupied space within 15 feet of him. The chunk of rock instantly transforms into a {@creature gargoyle} and acts on the same initiative count as Ogr\u00e9moch. Ogr\u00e9moch can't use this action if he has 50 hit points or fewer. The gargoyle obeys Ogr\u00e9moch's commands and fights until destroyed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Ogr\u00e9moch's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell meld into stone}", + "{@spell move earth}", + "{@spell wall of stone}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ogr\u00e9moch-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Olhydra", + "source": "PotA", + "page": 218, + "size_str": "Huge", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 324, + "formula": "24d12 + 168", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 100, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 21, + "dexterity": 22, + "constitution": 24, + "intelligence": 17, + "wisdom": 18, + "charisma": 23, + "passive": 14, + "saves": { + "str": "+11", + "con": "+13", + "wis": "+10" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Aquan" + ], + "traits": [ + { + "title": "Empowered Attacks", + "body": [ + "Olhydra's slam attacks are treated as magical for the purpose of bypassing resistance and immunity to nonmagical attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Olhydra fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Olhydra has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Form", + "body": [ + "Olhydra can enter a hostile creature's space and stop there. She can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Olhydra makes two slam attacks or two water jet attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 19}). Olhydra can grapple up to four targets. When Olhydra moves, all creatures she is grappling move with her." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Jet", + "body": [ + "{@atk rw} {@hit 12} to hit, range 120 ft., one target. {@h}21 ({@damage 6d6}) bludgeoning damage, and the target is knocked {@condition prone} if it fails a {@dc 19} Strength saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Elementals (1/Day)", + "body": [ + "Olhydra summons up to three {@creature water elemental||water elementals} and loses 30 hit points for each elemental she summons. Summoned elementals have maximum hit points, appear within 100 feet of Olhydra, and disappear if Olhydra is reduced to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Crush", + "body": [ + "One creature that Olhydra is grappling is crushed for 21 ({@damage 3d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fling (Costs 2 Actions)", + "body": [ + "Olhydra releases one creature she is grappling by flinging the creature up to 60 feet away from her, in a direction of her choice. If the flung creature comes into contact with a solid surface, such as a wall or floor, the creature takes {@damage 1d6} bludgeoning damage for every 10 feet it was flung." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water to Acid (Costs 3 Actions)", + "body": [ + "Olhydra transforms her watery body into acid. This effect lasts until Olhydra's next turn. Any creature that comes into contact with Olhydra or hits her with a melee attack while standing within 5 feet of her takes 11 ({@damage 2d10}) acid damage. Any creature {@condition grappled} by Olhydra takes 22 ({@damage 4d10}) acid damage at the start of its turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Olhydra's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell wall of ice}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell storm of vengeance}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell ice storm}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Olhydra-PotA", + "__dataclass__": "Monster" + }, + { + "name": "One-Eyed Shiver", + "source": "PotA", + "page": 207, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 13, + "wisdom": 13, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Chilling Mist", + "body": [ + "While it is alive, the one-eyed shiver projects an aura of cold mist within 10 feet of itself. If the one-eyed shiver deals damage to a creature in this area, the creature also takes 5 ({@damage 1d10}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye of Frost", + "body": [ + "The one-eyed shiver casts {@spell ray of frost} from its missing eye. If it hits, the target is also {@condition restrained}. A target {@condition restrained} in this way can end the condition by using an action, succeeding on a {@dc 13} Strength check." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The one-eyed shiver is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell fog cloud}", + "{@spell mage armor}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell fear}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "One-Eyed Shiver-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Oreioth", + "source": "PotA", + "page": 212, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 14, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 8, + "dexterity": 13, + "constitution": 14, + "intelligence": 16, + "wisdom": 9, + "charisma": 11, + "passive": 9, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+1" + }, + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Grim Harvest", + "body": [ + "Once per turn when Oreioth kills one or more creatures with a spell of 1st level or higher, he regains hit points equal to twice the spell's level." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swift Animation (Recharges after a Long Rest)", + "body": [ + "When a living Medium or Small humanoid within 30 feet of Oreioth dies, he can use an action on his next turn to cast {@spell animate dead} on that humanoid's corpse, instead of using the spell's normal casting time." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Oreioth is a 6th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell false life}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell ray of sickness}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell vampiric touch}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Oreioth-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Razerblast", + "source": "PotA", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 9, + "wisdom": 10, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Ignan" + ], + "traits": [ + { + "title": "Searing Armor", + "body": [ + "The razerblast's armor is hot. Any creature grappling the razerblast or {@condition grappled} by it takes 5 ({@damage 1d10}) fire damage at the end of that creature's turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shrapnel Explosion", + "body": [ + "When the razerblast drops to 0 hit points, a flaming orb in its chest explodes, destroying the razerblast's body and scattering its armor as shrapnel. Creatures within 10 feet of the razerblast when it explodes must succeed on a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) piercing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The razerblast makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 7 ({@damage 1d8 + 3}) piercing damage if used with two hands to make a melee attack, plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Razerblast-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Sacred Stone Monk", + "source": "PotA", + "page": 196, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "tremorsense 10 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the monk is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Movement", + "body": [ + "While the monk is wearing no armor and wielding no shield, its walking speed increases by 10 feet (included in its speed)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The monk makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The monk adds 2 to its AC against one melee or ranged weapon attack that would hit it. To do so, the monk must see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Sacred Stone Monk-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Shoalar Quanderil", + "source": "PotA", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 11, + "dexterity": 12, + "constitution": 16, + "intelligence": 14, + "wisdom": 10, + "charisma": 17, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Aquan", + "Common" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Shoalar can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or ranged 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "con", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Shoalar's innate spellcasting ability is Constitution (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He can innately cast the following spells:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell shape water|xge}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell create or destroy water}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Shoalar is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). He knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell chill touch}", + "{@spell friends}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell mage armor}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell tidal wave|xge}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Water genasi", + "actions_note": "", + "mythic": null, + "key": "Shoalar Quanderil-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Skyweaver", + "source": "PotA", + "page": 191, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The Skyweaver is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell message}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell feather fall}", + "{@spell mage armor}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Skyweaver-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Stonemelder", + "source": "PotA", + "page": 197, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 15, + "dexterity": 10, + "constitution": 16, + "intelligence": 12, + "wisdom": 11, + "charisma": 17, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "tremorsense 30 ft." + ], + "languages": [ + "Common", + "Terran" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the Stonemelder dies, it turns to stone and explodes in a burst of rock shards, becoming a smoking pile of rubble. Each creature within 10 feet of the exploding Stonemelder must make a {@dc 14} Dexterity saving throw, taking 11 ({@damage 2d10}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Black Earth Rod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage. The Stonemelder can also expend a spell slot to deal extra damage, dealing {@damage 2d8} bludgeoning damage for a 1st level slot, plus an additional {@dice 1d8} for each level of the slot above 1st." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The Stonemelder is a 7th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell blade ward}", + "{@spell light}", + "{@spell mending}", + "{@spell mold earth|xge}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell false life}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Maximilian's earthen grasp|xge}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell erupting earth|xge}", + "{@spell meld into stone}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Stonemelder-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Thurl Merosska", + "source": "PotA", + "page": 192, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 11, + "wisdom": 10, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Thurl makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lance", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Thurl adds 2 to his AC against one melee attack that would hit him. To do so, Thurl must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Thurl is a 5th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). Thurl knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell gust|xge}", + "{@spell light}", + "{@spell message}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell feather fall}", + "{@spell jump}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell levitate}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell haste}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Thurl Merosska-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Vanifer", + "source": "PotA", + "page": 203, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 11, + "dexterity": 16, + "constitution": 17, + "intelligence": 12, + "wisdom": 13, + "charisma": 19, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Ignan", + "Infernal" + ], + "traits": [ + { + "title": "Funeral Pyre", + "body": [ + "When Vanifer drops to 0 hit points, her body is consumed in a flash of fire and smoke. Anything she was wearing or carrying is left behind among ashes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Vanifer fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Vanifer makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tinderstrike", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Vanifer is a 10th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). Vanifer knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell message}", + "{@spell produce flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell chromatic orb}", + "{@spell hellish rebuke}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell misty step}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell hypnotic pattern}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dominate person}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "tiefling", + "actions_note": "", + "mythic": null, + "key": "Vanifer-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Wiggan Nettlebee", + "source": "PotA", + "page": 212, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d6 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 8, + "dexterity": 12, + "constitution": 12, + "intelligence": 14, + "wisdom": 15, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Halfling" + ], + "traits": [ + { + "title": "Brave Devotion", + "body": [ + "Wiggan has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Wiggan makes two attacks with his wooden cane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wooden Cane", + "body": [ + "{@atk mw} {@hit 0} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}1 ({@damage 1d4 - 1}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Wiggan is a 4th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell shillelagh}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell animal friendship}", + "{@spell cure wounds}", + "{@spell healing word}", + "{@spell inflict wounds}", + "{@spell speak with animals}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell spike growth}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "halfling", + "actions_note": "", + "mythic": null, + "key": "Wiggan Nettlebee-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Windharrow", + "source": "PotA", + "page": 192, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 16, + "constitution": 12, + "intelligence": 14, + "wisdom": 10, + "charisma": 17, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Windharrow has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Windharrow makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Windharrow is an 8th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Windharrow knows the following bard spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell disguise self}", + "{@spell dissonant whispers}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell shatter}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell nondetection}", + "{@spell sending}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell confusion}", + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Windharrow-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Yan-C-Bin", + "source": "PotA", + "page": 221, + "size_str": "Huge", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 283, + "formula": "21d12 + 147", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 150, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 18, + "dexterity": 24, + "constitution": 24, + "intelligence": 16, + "wisdom": 21, + "charisma": 23, + "passive": 15, + "saves": { + "dex": "+13", + "wis": "+11", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Auran" + ], + "traits": [ + { + "title": "Air Form", + "body": [ + "Yan-C-Bin can enter a hostile creature's space and stop there. He can move through a space as narrow as 1 inch wide without squeezing if air could pass through that space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Empowered Attacks", + "body": [ + "Yan-C-Bin's slam attacks are treated as magical for the purpose of bypassing resistance and immunity to nonmagical attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Yan-C-Bin fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Yan-C-Bin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Yan-C-Bin makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) force damage plus 10 ({@damage 3d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thundercrack (Recharges after a Short or Long Rest)", + "body": [ + "Yan-C-Bin unleashes a terrible thundercrack in a 100-foot-radius sphere centered on himself. All other creatures in the area must succeed on a {@dc 24} Constitution saving throw or take 31 ({@damage 9d6}) thunder damage and be {@condition deafened} for 1 minute. On a successful save, a creature takes half as much damage and is {@condition deafened} until the start of Yan-C-Bin's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Yan-C-Bin polymorphs into a Medium humanoid. While in polymorphed form, a swirling breeze surrounds him, his eyes are pale and cloudy, and he loses the Air Form trait. He can remain in polymorphed form for up to 1 hour. Reverting to his true form requires an action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Elementals (1/Day)", + "body": [ + "Yan-C-Bin summons up to three {@creature air elemental||air elementals} and loses 30 hit points for each elemental he summons. Summoned elementals have maximum hit points, appear within 100 feet of Yan-C-Bin, and disappear if Yan-C-Bin is reduced to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Peal of Thunder", + "body": [ + "Yan-C-Bin unleashes a peal of thunder that can be heard out to a range of 300 feet. Each creature within 30 feet of Yan-C-Bin takes 5 ({@damage 1d10}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport (Costs 2 Actions)", + "body": [ + "Yan-C-Bin magically teleports up to 120 feet to an unoccupied space he can see. Anything Yan-C-Bin is wearing or carrying is teleported with him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Suffocate (Costs 3 Actions)", + "body": [ + "Yan-C-Bin steals the air of one breathing creature he can see within 60 feet of him. The target must make a {@dc 21} Constitution saving throw. On a failed save, the target drops to 0 hit points and is dying. On a successful save, the target can't breathe or speak until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Yan-C-Bin's innate spellcasting ability is Charisma (spell save {@dc 20}, {@hit 12} to hit with spell attacks). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell gust of wind}", + "{@spell invisibility}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell chain lightning}", + "{@spell cloudkill}", + "{@spell haste}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yan-C-Bin-PotA", + "__dataclass__": "Monster" + }, + { + "name": "Dragonfang", + "source": "RoT", + "page": 89, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 11, + "dexterity": 16, + "constitution": 14, + "intelligence": 12, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "traits": [ + { + "title": "Dragon Fanatic", + "body": [ + "The dragonfang has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonfang can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonfang ignores the effects of being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fanatic Advantage", + "body": [ + "Once per turn, if the dragonfang makes a weapon attack with advantage on the attack roll and hits, the target takes an extra 10 ({@damage 3d6}) damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Flight", + "body": [ + "The dragonfang can use a bonus action to gain a flying speed of 30 feet until the end of its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The dragonfang has advantage on an attack roll against a creature if at least one of the dragonfang's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Dragonfang attacks twice with its shortsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 7 ({@damage 2d6}) damage of the type to which the dragonfang has resistance." + ], + "__dataclass__": "Entry" + }, + { + "title": "Orb of Dragon's Breath (2/Day)", + "body": [ + "{@atk rs} {@hit 5} to hit, range 50 ft., one target. {@h}22 ({@damage 5d8}) damage of the type to which the dragonfang has damage resistance." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 182 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Dragonfang-RoT", + "__dataclass__": "Monster" + }, + { + "name": "Dragonsoul", + "source": "RoT", + "page": 89, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": [ + "acid", + "cold", + "fire", + "lightning", + "poison" + ], + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "traits": [ + { + "title": "Dragon Fanatic", + "body": [ + "The dragonsoul has advantage on saving throws against being {@condition charmed} or {@condition frightened}. While the dragonsoul can see a dragon or higher-ranking Cult of the Dragon cultist friendly to it, the dragonsoul ignores the effects of being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fanatic Advantage", + "body": [ + "Once per turn, if the dragonsoul makes a weapon attack with advantage on the attack roll and hits, the target takes an extra 10 ({@damage 3d6}) damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Flight", + "body": [ + "The dragonsoul can use a bonus action to gain a flying speed of 30 feet until the end of its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The dragonsoul has advantage on an attack roll against a creature if at least one of the dragonsoul's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Dragonsoul attacks twice with its shortsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) damage of the type to which the dragonsoul has resistance." + ], + "__dataclass__": "Entry" + }, + { + "title": "Orb of Dragon's Breath (3/Day)", + "body": [ + "{@atk rs} {@hit 7} to hit, range 90 ft., one target. {@h}27 ({@damage 6d8}) damage of the type to which the dragonsoul has damage resistance." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 183 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Dragonsoul-RoT", + "__dataclass__": "Monster" + }, + { + "name": "Ice Toad", + "source": "RoT", + "page": 90, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 10, + "constitution": 14, + "intelligence": 8, + "wisdom": 10, + "charisma": 6, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ice Toad" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The toad can breathe air or water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Aura", + "body": [ + "Any creature that starts its turn within 5 feet of the toad takes 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The toad's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) cold damage. If the target is a Medium or smaller creature it is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the toad can't bite another target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 185 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ice Toad-RoT", + "__dataclass__": "Monster" + }, + { + "name": "Naergoth Bladelord", + "source": "RoT", + "page": 90, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 20, + "dexterity": 12, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Naergoth has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Naergoth makes three attacks, either with his longsword or longbow. He can use Life Drain in place of one longsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}20 ({@damage 5d6 + 3}) necrotic damage. The target must succeed on a {@dc 15} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) if used with two hands, plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 186 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Naergoth Bladelord-RoT", + "__dataclass__": "Monster" + }, + { + "name": "Neronvain", + "source": "RoT", + "page": 91, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 8, + "dexterity": 17, + "constitution": 15, + "intelligence": 16, + "wisdom": 13, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Draconic Majesty", + "body": [ + "Neronvain adds his Charisma bonus to his AC (included)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Magic can't put Neronvain to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Neronvain makes two attacks, either with his shortsword or Eldritch Arrow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 13 ({@damage 3d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Arrow", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}11 ({@damage 2d10}) force damage plus 9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Cloud (2/Day)", + "body": [ + "Poison gas fills a 20-foot-radius sphere centered on a point Neronvain can see within 50 feet of him. The gas spreads around corners and remains until the start of Neronvain's next turn. Each creature that starts its turn in the gas must succeed on a {@dc 16} Constitution saving throw or be {@condition poisoned} 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 187 + } + ], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Neronvain-RoT", + "__dataclass__": "Monster" + }, + { + "name": "Severin", + "source": "RoT", + "page": 92, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 10, + "dexterity": 13, + "constitution": 16, + "intelligence": 17, + "wisdom": 12, + "charisma": 20, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": [ + "acid", + "cold", + "lightning", + "poison", + { + "resist": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "cond": true + } + ], + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": [ + "fire" + ], + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": null, + "__dataclass__": "Scalar" + } + ], + "senses": [ + "While wearing the Mask of the Dragon Queen: darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Severin has the {@item Mask of the Dragon Queen|rot}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Draconic Majesty", + "body": [ + "Severin adds his Charisma bonus to his AC (included)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ignite Enemy", + "body": [ + "If Severin deals fire damage to a creature while wearing the Mask of the Dragon Queen, the target catches fire. At the start of each of its turns, the burning target takes 5 ({@damage 1d10}) fire damage. A creature within reach of the fire can use an action to extinguish it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "While wearing the Mask of the Dragon Queen, if Severin fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Burning Touch", + "body": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flaming Orb", + "body": [ + "{@atk rs} {@hit 9} to hit, range 90 ft., one target. {@h}40 ({@damage 9d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scorching Burst", + "body": [ + "Severin chooses a point he can see within 60 feet of him. Each creature within 5 feet of that point must make a {@dc 17} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Severin makes one attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Teleport (Costs 2 Actions)", + "body": [ + "Severin, along with any objects he is wearing or carrying, teleports up to 60 feet to an unoccupied space he can see. Each creature within 5 feet of Severin before he teleports takes 5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hellish Chains (Costs 3 Actions)", + "body": [ + "Severin targets one creature he can see within 30 feet of him. The target is wrapped in magical chains of fire and {@condition restrained}. The {@condition restrained} target takes 21 ({@damage 6d6}) fire damage at the start of each of its turns. At the end of its turns, the target can make a {@dc 17} Strength saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToD", + "page": 189 + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Severin-RoT", + "__dataclass__": "Monster" + }, + { + "name": "Tiamat", + "source": "RoT", + "page": 92, + "size_str": "Gargantuan", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 25, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 615, + "formula": "30d20 + 300", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "30", + "xp": 155000, + "strength": 30, + "dexterity": 10, + "constitution": 30, + "intelligence": 26, + "wisdom": 26, + "charisma": 28, + "passive": 36, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 26, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 17, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+19", + "dex": "+9", + "wis": "+17" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft.", + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "traits": [ + { + "title": "Discorporation", + "body": [ + "When Tiamat drops to 0 hit points or dies, her body is destroyed but her essence travels back to her domain in the Nine Hells, and she is unable to take physical form for a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If Tiamat fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Magic Immunity", + "body": [ + "Unless she wishes to be affected, Tiamat is immune to spells of 6th level or lower. She has advantage on saving throws against all other spells and magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Tiamat's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiple Heads", + "body": [ + "Tiamat can take one reaction per turn, rather than only one per round. She also has advantage on saving throws against being knocked {@condition unconscious}. If she fails a saving throw against an effect that would stun a creature, one of her unspent legendary actions is spent." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Tiamat regains 30 hit points at the start of her turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tiamat can use her Frightful Presence. She then makes three attacks: two with her claws and one with her tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 15 ft., one target. {@h}24 ({@damage 4d6 + 10}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 25 ft., one target. {@h}28 ({@damage 4d8 + 10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Tiamat's choice that is within 240 feet of Tiamat and aware of her must succeed on a {@dc 26} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Tiamat's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 19} to hit, reach 20 ft., one target. {@h}32 ({@damage 4d10 + 10}) slashing damage plus 14 ({@damage 4d6}) acid damage (black dragon head), lightning damage (blue dragon head), poison damage (green dragon head), fire damage (red dragon head), or cold damage (white dragon head)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Black Dragon Head: Acid Breath (Costs 2 Actions)", + "body": [ + "Tiamat breathes acid in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 27} Dexterity saving throw, taking 67 ({@damage 15d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blue Dragon Head: Lightning Breath (Costs 2 Actions)", + "body": [ + "Tiamat breathes lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 27} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Green Dragon Head: Poison Breath (Costs 2 Actions)", + "body": [ + "Tiamat breathes poisonous gas in a 90-foot cone. Each creature in that area must make a {@dc 27} Constitution saving throw, taking 77 ({@damage 22d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Red Dragon Head: Fire Breath (Costs 2 Actions)", + "body": [ + "Tiamat breathes fire in a 90-foot cone. Each creature in that area must make a {@dc 27} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "White Dragon Head: Cold Breath (Costs 2 Actions)", + "body": [ + "Tiamat breathes an icy blast in a 90-foot cone. Each creature in that area must make a {@dc 27} Dexterity saving throw, taking 72 ({@damage 16d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Tiamat can innately cast the following spell, her spellcasting ability is Charisma (spell save {@dc 26}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell divine word}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "BGDIA" + }, + { + "source": "ToD", + "page": 190 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tiamat-RoT", + "__dataclass__": "Monster" + }, + { + "name": "Archaic", + "source": "SCC", + "page": 184, + "size_str": "Gargantuan", + "maintype": "celestial", + "alignment": "Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 245, + "formula": "14d20 + 98", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 25, + "dexterity": 10, + "constitution": 24, + "intelligence": 27, + "wisdom": 24, + "charisma": 20, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 20, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 20, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+14", + "wis": "+13", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Enigmatic Mind", + "body": [ + "The archaic's mind can't be read, creatures can communicate telepathically with the archaic only if it allows, and magic can't determine whether the archaic is lying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the archaic fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The archaic doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archaic makes two Force Strike attacks. It can also use Gravity Shift, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Strike", + "body": [ + "{@atk ms,rs} {@hit 14} to hit, reach 15 ft. or range 120 ft., one target. {@h}19 ({@damage 2d10 + 8}) force damage, and the target is pulled up to 10 feet toward the archaic or pushed 10 feet away from it, as the archaic chooses." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gravity Shift {@recharge 5}", + "body": [ + "The archaic reverses gravity for one creature it can see within 100 feet of itself. The creature must succeed on a {@dc 22} Wisdom saving throw or fall 100 feet upward. If the falling creature encounters a solid object (such as a ceiling) in this fall, it strikes the object just as it would during a downward fall. If the creature reaches the top of the area without striking anything, it hovers there until the start of the archaic's next turn, at which time gravity returns to normal and the creature falls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The archaic teleports to an unoccupied space that it can see within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Mimicry (1/Day)", + "body": [ + "Immediately after a creature the archaic can see casts a spell of 5th level or lower, that creature must succeed on a {@dc 22} Charisma saving throw, or the archaic immediately casts the same spell at the same level ({@hit 14} to hit with spell attacks, spell save {@dc 22}), requiring no material components and choosing the spell's targets." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Strike", + "body": [ + "The archaic makes one Force Strike attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The archaic uses Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unravel Magic (Costs 2 Actions)", + "body": [ + "The archaic targets one creature it can see within 120 feet of itself. The target must succeed on a {@dc 22} Constitution saving throw or take 35 ({@damage 10d6}) force damage, and each spell of 5th level or lower on the target ends." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The archaic casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell divination}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell forcecage}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Archaic-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Art Elemental Mascot", + "source": "SCC", + "page": 185, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 13, + "constitution": 12, + "intelligence": 8, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "performance", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the elemental dies, it explodes in a burst of colored light. Each creature within 5 feet of the elemental must succeed on a {@dc 11} Constitution saving throw or be {@condition blinded} for 1 minute. A {@condition blinded} creature can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Joyful Flare", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}6 ({@damage 2d4 + 1}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Melancholic Bolt", + "body": [ + "{@atk rw} {@hit 3} to hit, range 30 ft., one target. {@h}6 ({@damage 2d4 + 1}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Captivating Artistry (1/Day)", + "body": [ + "The elemental targets one creature it can see within 30 feet of itself. The target must succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} for 1 minute. The {@condition charmed} target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Art Elemental Mascot-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Beledros Witherbloom", + "source": "SCC", + "page": 186, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral Good", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 28, + "dexterity": 14, + "constitution": 27, + "intelligence": 18, + "wisdom": 28, + "charisma": 17, + "passive": 26, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+15", + "wis": "+16", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Druidic", + "Sylvan" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Beledros fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Beledros doesn't require air, food, or drink." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Beledros makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}14 ({@damage 1d10 + 9}) piercing damage plus 6 ({@damage 1d12}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}12 ({@damage 1d6 + 9}) slashing damage. If the target is a Huge or smaller creature, it is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Decaying Breath {@recharge 5}", + "body": [ + "Beledros exhales decaying energy in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw, taking 39 ({@damage 6d12}) necrotic damage and 39 ({@damage 6d12}) poison damage on a failed save, or half as much damage on a successful one. A creature that takes damage from the breath can't regain hit points until the start of Beledros's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Miasmal Flow", + "body": [ + "Beledros becomes a swirling cloud of green mist and can move up to half her flying speed without provoking opportunity attacks, then resumes her true form. During this movement, she can move through creatures and objects as if they were {@quickref difficult terrain||3}. If she moves through a creature, it must succeed on a {@dc 23} Constitution saving throw or become {@condition poisoned} until the end of its next turn. If Beledros ends this move inside an object, she takes 5 ({@damage 1d10}) force damage and is shunted to the nearest unoccupied space." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "Beledros makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Miasmal Flow (Costs 2 Actions)", + "body": [ + "Beledros uses Miasmal Flow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teeming with Life (Costs 3 Actions)", + "body": [ + "Beledros magically summons {@dice 1d4} {@creature pest mascot|SCC|pest mascots} in unoccupied spaces she can see within 60 feet of herself. The pests obey her commands and take their turns immediately after hers. Any creature, other than a pest, takes 9 ({@damage 2d8}) poison damage if it starts its turn within 5 feet of one or more of these pests. When one of these pests drops to 0 hit points, Beledros regains 9 hit points. These pests disappear after 10 minutes, when Beledros dies, or when she uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Beledros casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell greater restoration}", + "{@spell mass cure wounds}", + "{@spell plant growth}", + "{@spell revivify}", + "{@spell speak with dead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Beledros Witherbloom-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Brackish Trudge", + "source": "SCC", + "page": 187, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 20, + "dexterity": 10, + "constitution": 17, + "intelligence": 4, + "wisdom": 14, + "charisma": 4, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Fungal Fortitude", + "body": [ + "If damage reduces the trudge to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the trudge drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tusk", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 3 ({@damage 1d6}) poison damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Brackish Trudge-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Cogwork Archivist", + "source": "SCC", + "page": 188, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 10, + "constitution": 15, + "intelligence": 17, + "wisdom": 11, + "charisma": 6, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The archivist has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archivist makes two Grasping Limb attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Limb", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). The archivist can have no more than two targets {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The archivist casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell silence}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cogwork Archivist-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Daemogoth", + "source": "SCC", + "page": 189, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 15, + "constitution": 19, + "intelligence": 21, + "wisdom": 14, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+6", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Pact of Pain", + "body": [ + "Using a 10-minute ritual, the daemogoth can forge a magical bond with a willing creature it touches throughout the ritual. The creature becomes bound by the pact until it dies, the daemogoth dies, or the pact is broken by any effect that can remove a curse.", + "The daemogoth chooses one spell from the {@filter necromancy or enchantment school that is 3rd level or lower|spells|level=0;1;2;3|school=N;E}. The bound creature can cast that spell using this pact, requiring no material components and using Intelligence as the spellcasting ability. When it casts the spell, the creature takes 7 ({@damage 2d6}) psychic damage, which can't break the creature's {@status concentration} on a spell. Once the bound creature casts the spell in this way, it can't do so again until it finishes a long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The daemogoth makes three Agonizing Burst attacks. It can use Terrify, if available, in place of one of the attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Agonizing Burst", + "body": [ + "{@atk ms,rs} {@hit 9} to hit, reach 10 ft. or range 120 ft., one target. {@h}11 ({@damage 2d10}) force damage. If the target is a creature, the daemogoth regains 5 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrify {@recharge 4}", + "body": [ + "The daemogoth targets one creature it can see within 120 feet of itself. The target must make a {@dc 17} Wisdom saving throw. On a failed save, the target takes 33 ({@damage 6d10}) psychic damage and is {@condition frightened} of the daemogoth until the end of the daemogoth's next turn, and the daemogoth regains 5 hit points. On a successful save, the target takes half as much damage and isn't {@condition frightened}, and the daemogoth doesn't heal." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Daemogoth-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Daemogoth Titan", + "source": "SCC", + "page": 190, + "size_str": "Gargantuan", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 203, + "formula": "11d20 + 88", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 26, + "dexterity": 10, + "constitution": 26, + "intelligence": 24, + "wisdom": 18, + "charisma": 20, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+9", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the titan fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pact of Suffering", + "body": [ + "Using a 10-minute long ritual, the titan can forge a magical bond with a willing creature it touches throughout the ritual. The creature becomes bound by the pact until it dies, the titan dies, or the pact is broken by a {@spell wish} spell.", + "The titan chooses one spell from the {@filter necromancy or enchantment school that is 8th level or lower|spells|level=0;1;2;3;4;5;6;7;8|school=N;E}. The bound creature can cast that spell using this pact, requiring no material components and using Intelligence as the spellcasting ability. When it casts the spell, the creature takes 21 ({@damage 6d6}) psychic damage, which can't break the creature's {@status concentration} on a spell. Once the bound creature casts the spell in this way, it can't do so again until it finishes a long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The titan makes two Agonizing Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Agonizing Burst", + "body": [ + "{@atk ms,rs} {@hit 12} to hit, reach 15 ft. or range 120 ft., one target. {@h}17 ({@damage 3d6 + 7}) force damage. If the target is a creature, the titan regains 5 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The titan teleports to an unoccupied space it can see within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The titan makes one Agonizing Burst attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stalking Nightmare (Costs 2 Actions)", + "body": [ + "The titan uses Teleport, after which it can target one creature within 20 feet of itself that it can see. The target must make a {@dc 20} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) necrotic damage, and the titan regains 10 hit points. On a successful save, the target takes half as much damage, and the titan doesn't heal." + ], + "__dataclass__": "Entry" + }, + { + "title": "Terrorize (Costs 3 Actions)", + "body": [ + "The titan targets one creature it can see within 120 feet of itself. The target must make a {@dc 20} Wisdom saving throw. On a failed save, the target takes 38 ({@damage 7d10}) psychic damage and is {@condition frightened} of the titan until the end of the target's next turn, and the titan regains 15 hit points. On a successful save, the target takes half as much damage and isn't {@condition frightened}, and the titan doesn't heal." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Daemogoth Titan-SCC", + "__dataclass__": "Monster" + }, + { + "name": "First-Year Student", + "source": "SCC", + "page": 191, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 8, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "languages": [ + "Common plus any two languages" + ], + "traits": [ + { + "title": "Excited to Be Here", + "body": [ + "The student has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Magic Flare", + "body": [ + "{@atk ms,rs} {@hit 3} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d12 + 1}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Beginner's Luck (2/Day)", + "body": [ + "When the student fails a saving throw, it can reroll the {@dice d20}. It must use the new roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The student casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 11}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "First-Year Student-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Fractal Mascot", + "source": "SCC", + "page": 192, + "size_str": "Small", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 14, + "constitution": 13, + "intelligence": 7, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Relative Density", + "body": [ + "The fractal can move through creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quantum Strike", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) force damage, or 6 ({@damage 2d4 + 1}) force damage if the fractal is Medium or bigger." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Augment", + "body": [ + "The fractal's size increases by one category. While the fractal is Medium or bigger, it makes Strength checks and Strength saving throws with advantage. The fractal can become no larger than Huge via this bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Diminish", + "body": [ + "The fractal's size decreases by one category. While the fractal is Tiny, it makes attack rolls, Dexterity checks, and Dexterity saving throws with advantage. The fractal can become no smaller than 1 foot in height via this bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fractal Mascot-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Galazeth Prismari", + "source": "SCC", + "page": 193, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 402, + "formula": "23d20 + 161", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 26, + "dexterity": 14, + "constitution": 25, + "intelligence": 18, + "wisdom": 20, + "charisma": 26, + "passive": 22, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 22, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+14", + "wis": "+12", + "cha": "+15" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Galazeth fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Galazeth makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}13 ({@damage 1d10 + 8}) piercing damage plus 5 ({@damage 1d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d6 + 8}) slashing damage. If the target is a Large or smaller creature, it is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dancing Elements Breath {@recharge 5}", + "body": [ + "Galazeth exhales a blast of flames and ice in a 90-foot cone. Each creature in that area must make a {@dc 22} Dexterity saving throw, gaining no benefit from cover (other than {@quickref Cover||3||total cover}) and taking 38 ({@damage 7d10}) fire damage and 38 ({@damage 7d10}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "Galazeth makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Flash (Costs 2 Actions)", + "body": [ + "Galazeth moves up to half his flying speed without provoking opportunity attacks. When he passes within 15 feet of a creature during this move, that creature must succeed on a {@dc 22} Dexterity saving throw or take 11 ({@damage 2d10}) lightning damage. A creature can take this damage no more than once during the move." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flowing Creation (Costs 3 Actions)", + "body": [ + "Galazeth magically summons {@dice 1d4} {@creature art elemental mascot|SCC|elemental mascots} in unoccupied spaces he can see within 60 feet of himself. The art elementals obey his commands and take their turns immediately after his. Any creature, other than an art elemental, takes 5 ({@damage 1d10}) cold, fire, or lightning damage (Galazeth's choice) if it ends its turn within 5 feet of one or more of these elementals. When one of these elementals drops to 0 hit points, Galazeth can fly up to 20 feet without provoking opportunity attacks. These elementals disappear after 10 minutes, when Galazeth dies, or when he uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Galazeth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell control water}", + "{@spell gust of wind}", + "{@spell wall of stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Galazeth Prismari-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Groff", + "source": "SCC", + "page": 194, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 20, + "dexterity": 10, + "constitution": 17, + "intelligence": 4, + "wisdom": 13, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the groff is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the groff move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the groff isn't an ordinary moss-covered bog patch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The groff can hold its breath for up to 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The groff makes one Bite attack and one Swamp Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swamp Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or become engulfed by the groff. While engulfed, the target can't breathe, is {@condition restrained}, and takes 10 ({@damage 3d6}) poison damage at the start of each of its turns. When the groff moves, the engulfed target moves with it. The groff can have only one target engulfed at a time.", + "An engulfed target can repeat the saving throw at the end of its turns. On a success, the target escapes and enters the nearest unoccupied space." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Groff-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Inkling Mascot", + "source": "SCC", + "page": 195, + "size_str": "Tiny", + "maintype": "ooze", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d4 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 16, + "constitution": 14, + "intelligence": 6, + "wisdom": 7, + "charisma": 11, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The inkling can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Blot", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ink Spray (1/Day)", + "body": [ + "The inkling sprays viscous ink at one creature within 15 feet of itself. The target must succeed on a {@dc 12} Constitution saving throw or be {@condition blinded} until the end of the inkling's next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the inkling takes the Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Inkling Mascot-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Lorehold Apprentice", + "source": "SCC", + "page": 197, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 13, + "intelligence": 15, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "int": "+4" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Scroll Bash", + "body": [ + "{@atk ms} {@hit 4} to hit, reach 30 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reduce to Memory {@recharge}", + "body": [ + "Thundering golden energy erupts around a creature the apprentice can see within 90 feet of it. The creature must make a {@dc 12} Constitution saving throw, taking 33 ({@damage 6d10}) thunder damage on a failed save, or half as much damage on a successful one. A Construct has disadvantage on the saving throw." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Learn from the Past (2/Day)", + "body": [ + "When another creature within 60 feet of the apprentice misses a target with an attack roll, the apprentice magically enables the attacker to reroll the attack roll. It must use the new roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell comprehend languages}", + "{@spell locate object}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Lorehold Apprentice-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Lorehold Pledgemage", + "source": "SCC", + "page": 197, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 16, + "constitution": 13, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "int": "+5" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pledgemage makes two Scroll Bash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scroll Bash", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 30 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reduce to Memory {@recharge 5}", + "body": [ + "Thundering golden energy erupts around a creature the pledgemage can see within 90 feet of it. The creature must make a {@dc 13} Constitution saving throw, taking 44 ({@damage 8d10}) thunder damage on a failed save, or half as much damage on a successful one. A Construct has disadvantage on the saving throw." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Chronal Break (1/Day)", + "body": [ + "The pledgemage chooses a point within 30 feet of itself, shunting the minds of nearby creatures out of this moment in time. Each creature in a 10-foot-radius sphere centered on that point must succeed on a {@dc 13} Wisdom saving throw or be {@condition incapacitated} until the end of the pledgemage's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Learn from the Past (2/Day)", + "body": [ + "When another creature within 60 feet of the pledgemage misses a target with an attack roll, the pledgemage magically enables the attacker to reroll the attack roll. It must use the new roll." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The pledgemage casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell comprehend languages}", + "{@spell locate object}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell mage armor}", + "{@spell speak with dead}", + "{@spell stone shape}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Lorehold Pledgemage-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Lorehold Professor of Chaos", + "source": "SCC", + "page": 198, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 19, + "wisdom": 15, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Voice from the Past (1/Day)", + "body": [ + "The professor can cast the {@spell contact other plane} spell to contact a long-dead spirit, using Intelligence as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Spectral Scroll attacks. It can also use Weight of {@skill History}, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Scroll", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 30 ft., one target. {@h}15 ({@damage 2d10 + 4}) force damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weight of History {@recharge 5}", + "body": [ + "The professor magically compresses time around up to six creatures of its choice that it can see within 30 feet of itself. Each target must succeed on a {@dc 15} Wisdom saving throw or be {@condition restrained} for 1 minute, but the {@condition restrained} target's speed is halved instead of being reduced to 0. At the start of each of its turns, the {@condition restrained} target takes 4 ({@damage 1d8}) force damage. A {@condition restrained} target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell comprehend languages}", + "{@spell dancing lights}", + "{@spell guidance}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell locate object}", + "{@spell mage armor}", + "{@spell passwall}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Lorehold Professor of Chaos-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Lorehold Professor of Order", + "source": "SCC", + "page": 198, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 19, + "wisdom": 15, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Voice from the Past (1/Day)", + "body": [ + "The professor can cast the {@spell contact other plane} spell to contact a long-dead spirit, using Intelligence as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Repelling Burst attacks. It can also use Force Barrier, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repelling Burst", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 30 ft., one target. {@h}13 ({@damage 2d8 + 4}) force damage. If the target is a Large or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be pushed up to 10 feet directly away from the professor and become {@condition restrained} until the start of professor's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Barrier {@recharge 5}", + "body": [ + "The professor magically creates a wall of translucent, golden force within 90 feet of itself. The wall lasts for 1 minute or until the professor uses this action again. The barrier can be a vertical or horizontal plane up to 30 feet on a side or a 10-foot-radius hemispherical dome with a floor. The wall provides {@quickref Cover||3||total cover}. It has AC 17, 30 hit points, and immunity to poison and psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Arcane Stasis (2/Day)", + "body": [ + "When a creature the professor can see within 60 feet of it casts a spell, the professor can magically lock the casting in the moment before completion. The spellcaster must succeed on a {@dc 15} saving throw using the spell's spellcasting ability, or the spell fails and is wasted." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell comprehend languages}", + "{@spell guidance}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dimension door}", + "{@spell locate object}", + "{@spell mage armor}", + "{@spell stone shape}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Lorehold Professor of Order-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Mage Hunter", + "source": "SCC", + "page": 199, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 10, + "note": "(hover sentry form only)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "note": "(hunter form only)", + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 15, + "constitution": 16, + "intelligence": 11, + "wisdom": 17, + "charisma": 10, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+3", + "wis": "+6", + "cha": "+3" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Magic Sense", + "body": [ + "The hunter knows the location of every spellcaster, active spell, and magic item within 120 feet of itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb (Hunter Form Only)", + "body": [ + "The hunter can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Hunter Form Only)", + "body": [ + "The hunter makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Hunter Form Only)", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the hunter can't make a Tail attack against another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mage Tracker (Sentry Form Only)", + "body": [ + "The hunter emits a pulse of energy that helps it better locate its magical quarry. Each creature within 120 feet of the hunter that has the ability to cast spells must succeed on a {@dc 14} Wisdom saving throw or be mystically marked by the hunter for 1 hour.", + "While marked, a creature can't become hidden from the hunter and gains no benefit from the {@condition invisible} condition against the hunter. Additionally, while a marked creature is on the same plane of existence as the hunter, the hunter always knows the distance and direction to the creature." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shift Form", + "body": [ + "The hunter folds into its drone-like sentry form or unfolds into its hunter form. Its game statistics are the same in each form." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Consume and Destroy", + "body": [ + "When the hunter takes damage from a spell, it takes only half the triggering damage (rounded down). If the creature that cast the spell is within 60 feet of the hunter, that creature must succeed on a {@dc 14} Dexterity saving throw or take the other half of the damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mage Hunter-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Murgaxor", + "source": "SCC", + "page": 180, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "blood aegis", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 11, + "dexterity": 14, + "constitution": 18, + "intelligence": 20, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+9", + "wis": "+5", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Blood Aegis", + "body": [ + "The AC of Murgaxor includes his Constitution modifier while he isn't wearing armor or wielding a shield." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oriq Mask", + "body": [ + "Murgaxor wears an Oriq mask. While wearing the mask, Murgaxor can't be targeted by any divination magic or perceived through magical scrying sensors, and he adds double his proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sanguine Sense", + "body": [ + "While Murgaxor isn't {@condition blinded}, he can see any creature that isn't an Undead or a Construct within 60 feet of himself, even through {@quickref Cover||3||total cover}, heavily obscured areas, invisibility, or any other phenomena that would prevent sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Murgaxor makes two Blood Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Lash", + "body": [ + "{@atk ms} {@hit 9} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) necrotic damage. If the target is a creature, it can't regain hit points until the start of Murgaxor's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Boil {@recharge 4}", + "body": [ + "Murgaxor chooses a point within 150 feet of himself, and a 20-foot radius sphere centered on that point fills with a burst of searing, blood-red mist. Each creature of Murgaxor's choice that he can see in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) necrotic damage and is {@condition incapacitated} until the end of its next turn. On a success, a creature takes half as much damage and isn't {@condition incapacitated}. A creature dies if reduced to 0 hit points by this necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "bullywug, warlock", + "actions_note": "", + "mythic": null, + "key": "Murgaxor-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Oracle of Strixhaven", + "source": "SCC", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 15, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 12, + "dexterity": 15, + "constitution": 16, + "intelligence": 21, + "wisdom": 20, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+10", + "wis": "+10", + "cha": "+9" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the Oracle fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Oracle makes two Magic Flare attacks. She can also use Paradoxy, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Flare", + "body": [ + "{@atk ms,rs} {@hit 10} to hit, reach 5 ft. or range 60 ft., one target. {@h}24 ({@damage 3d12 + 5}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paradoxy {@recharge 4}", + "body": [ + "Momentary warps in reality appear at three different points the Oracle can see within 120 feet of her. Each creature in a 20-foot-radius sphere centered on each point must make a {@dc 18} Strength saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) force damage and is pulled up to 15 feet in a straight line toward the center of the sphere. On a successful save, the creature takes half as much damage and isn't pulled. A creature caught in the area of multiple warps is affected by only one, which the Oracle chooses." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The Oracle teleports, along with any equipment she is wearing or carrying, to an unoccupied space she can see within 60 feet of herself." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Vector Shift", + "body": [ + "The Oracle teleports one creature she can see within 60 feet of herself, along with any equipment it is wearing or carrying, to an unoccupied space within 30 feet of herself. An unwilling target must succeed on a {@dc 18} Charisma saving throw to avoid the effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spellcasting (Costs 2 Actions)", + "body": [ + "The Oracle uses Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vortex Jaunt (Costs 2 Actions)", + "body": [ + "The Oracle uses Teleport, and immediately after she disappears, each creature within 30 feet of the space she left must succeed on a {@dc 18} Constitution saving throw or take 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The Oracle casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell mage armor}", + "{@spell remove curse}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell power word stun}", + "{@spell scrying} (as an action)", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, wizard", + "actions_note": "", + "mythic": null, + "key": "Oracle of Strixhaven-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Oriq Blood Mage", + "source": "SCC", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "blood aegis", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 11, + "dexterity": 14, + "constitution": 18, + "intelligence": 20, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+9", + "wis": "+5", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Blood Aegis", + "body": [ + "The AC of the blood mage includes its Constitution modifier while it isn't wearing armor or wielding a shield." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oriq Mask", + "body": [ + "The blood mage wears an Oriq mask. While wearing the mask, the blood mage can't be targeted by any divination magic or perceived through magical scrying sensors, and it adds double its proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sanguine Sense", + "body": [ + "While the blood mage isn't {@condition blinded}, it can see any creature that isn't an Undead or a Construct within 60 feet of itself, even through {@quickref Cover||3||total cover}, heavily obscured areas, invisibility, or any other phenomena that would prevent sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blood mage makes two Blood Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Lash", + "body": [ + "{@atk ms} {@hit 9} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) necrotic damage. If the target is a creature, it can't regain hit points until the start of the blood mage's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Boil {@recharge 4}", + "body": [ + "The blood mage chooses a point within 150 feet of itself, and a 20-foot radius sphere centered on that point fills with a burst of searing, blood-red mist. Each creature of the blood mage's choice that it can see in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) necrotic damage and is {@condition incapacitated} until the end of its next turn. On a success, a creature takes half as much damage and isn't {@condition incapacitated}. A creature dies if reduced to 0 hit points by this necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Oriq Blood Mage-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Oriq Recruiter", + "source": "SCC", + "page": 202, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "misdirecting defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 15, + "charisma": 18, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any two languages" + ], + "traits": [ + { + "title": "Misdirecting Defense", + "body": [ + "The AC of the recruiter includes its Charisma modifier while it isn't wearing armor or wielding a shield." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oriq Mask", + "body": [ + "The recruiter wears an Oriq mask. While wearing the mask, the recruiter can't be targeted by any divination magic or perceived through magical scrying sensors, and it adds double its proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The recruiter makes two Psychic Knife attacks. It can use Spellcasting in place of one of the attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Knife", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 30 ft., one creature. {@h}21 ({@damage 5d6 + 4}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The recruiter casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell disguise self}", + "{@spell silent image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell charm person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Oriq Recruiter-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Pest Mascot", + "source": "SCC", + "page": 203, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d4 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 11, + "dexterity": 14, + "constitution": 17, + "intelligence": 5, + "wisdom": 13, + "charisma": 4, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The pest regains 5 hit points at the start of its turn if it has at least 1 hit point. If it takes fire damage, this trait doesn't function at the start of the pest's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiny Hide", + "body": [ + "At the start of each of its turns, the pest deals 2 ({@damage 1d4}) piercing damage to any creature grappling it or that it is grappling." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pest Mascot-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Prismari Apprentice", + "source": "SCC", + "page": 205, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 13, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "cha": "+4" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Elemental Strike", + "body": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 3d6}) fire or cold damage (the apprentice's choice)." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Surge of Artistry {@recharge 4}", + "body": [ + "The apprentice moves up to its speed, surrounding itself with elemental magic as it moves. Until the end of its turn, the apprentice can move through the space of other creatures. The first time the apprentice enters a creature's space on a turn, that creature must succeed on a {@dc 12} Dexterity saving throw or be knocked {@condition prone}. If the apprentice ends its turn in another creature's space, the apprentice takes 5 ({@damage 1d10}) force damage and is pushed into the nearest unoccupied space." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell gust of wind}", + "{@spell mage armor}", + "{@spell silent image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Prismari Apprentice-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Prismari Pledgemage", + "source": "SCC", + "page": 205, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 15, + "constitution": 13, + "intelligence": 12, + "wisdom": 14, + "charisma": 17, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "cha": "+5" + }, + "languages": [ + "Common plus any two languages" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If the pledgemage is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the pledgemage instead takes no damage if it succeeds on the saving throw and only half damage if it fails, provided it isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pledgemage makes two Elemental Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Elemental Strike", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}12 ({@damage 3d6 + 2}) fire or cold damage (the pledgemage's choice)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Showstopper (1/Day)", + "body": [ + "The pledgemage shines with elemental magic, targeting one creature it can see within 60 feet of itself. The target must make a {@dc 13} Wisdom saving throw. On a failed save, the target takes 28 ({@damage 8d6}) fire or cold damage (the pledgemage's choice) and is {@condition stunned} until the start of the pledgemage's next turn. On a successful save, the target takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Surge of Artistry {@recharge 4}", + "body": [ + "The pledgemage moves up to its speed, surrounding itself with elemental magic as it moves. Until the end of its turn, the pledgemage can move through the space of other creatures. The first time the pledgemage enters a creature's space on a turn, that creature must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}. If the pledgemage ends its turn in another creature's space, the pledgemage takes 5 ({@damage 1d10}) force damage and is pushed into the nearest unoccupied space." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The pledgemage casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell gust of wind}", + "{@spell silent image}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell mage armor}", + "{@spell water walk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Prismari Pledgemage-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Prismari Professor of Expression", + "source": "SCC", + "page": 206, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 16, + "constitution": 15, + "intelligence": 15, + "wisdom": 13, + "charisma": 19, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+5", + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes three Cinder Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cinder Strike", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d8 + 4}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Flourish {@recharge}", + "body": [ + "The professor unleashes arcs of magical lightning at up to two creatures it can see within 60 feet of itself. Each target must make a {@dc 15} Dexterity saving throw, taking 35 ({@damage 10d6}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Flaming Leap", + "body": [ + "The professor is wreathed in flames and jumps up to 30 feet in any direction. When the professor lands, the flames erupt in a 10-foot radius around the professor and then vanish. Each creature of the professor's choice in that area must succeed on a {@dc 15} Dexterity saving throw or take 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell fog cloud}", + "{@spell gust of wind}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Prismari Professor of Expression-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Prismari Professor of Perfection", + "source": "SCC", + "page": 206, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 16, + "constitution": 15, + "intelligence": 15, + "wisdom": 13, + "charisma": 19, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+5", + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Water Walking", + "body": [ + "The professor can walk across water and other liquids as if they were solid ground." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes three Tidal Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tidal Strike", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 2d8 + 4}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Rushing Wave", + "body": [ + "The professor is momentarily surrounded by a swirling wave of water and moves up to 30 feet. When the professor moves within 5 feet of any other creature during this bonus action, that creature must succeed on a {@dc 15} Strength saving throw, or the creature is knocked {@condition prone} and it can't take reactions until the start of its next turn. A creature can suffer this effect only once during a turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell wall of ice}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell control water}", + "{@spell create or destroy water}", + "{@spell mage armor}", + "{@spell stone shape}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Prismari Professor of Perfection-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Quandrix Apprentice", + "source": "SCC", + "page": 208, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 12, + "constitution": 13, + "intelligence": 15, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+4", + "wis": "+4" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The apprentice makes two Exponential Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Exponential Lash", + "body": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 60 ft., one target. {@h}5 ({@damage 1d6 + 2}) force damage, and the apprentice can cause one creature it can see within 30 feet of the target to take 9 ({@damage 2d6 + 2}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Quandrix Apprentice-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Quandrix Pledgemage", + "source": "SCC", + "page": 208, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 14, + "constitution": 13, + "intelligence": 17, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pledgemage makes two Exponential Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Exponential Lash", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}6 ({@damage 1d6 + 3}) force damage, and the pledgemage can cause one creature it can see within 30 feet of the target to take 10 ({@damage 2d6 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Vortex Calculus {@recharge 4}", + "body": [ + "The pledgemage teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 60 feet of itself. Immediately after it teleports, each creature within 20 feet of the space it left must make a {@dc 13} Constitution saving throw. On a failed save, a creature takes 7 ({@damage 2d6}) force damage and is moved 10 feet in a random horizontal direction. On a successful save, a creature takes half as much damage and isn't moved." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The pledgemage casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dimension door}", + "{@spell enlarge/reduce}", + "{@spell mage armor}", + "{@spell plant growth}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Quandrix Pledgemage-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Quandrix Professor of Substance", + "source": "SCC", + "page": 209, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 19, + "wisdom": 14, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Spatial Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spatial Blade", + "body": [ + "{@atk ms,rs} {@hit 7} to hit (the target can't benefit from cover less than {@quickref Cover||3||total cover}), reach 5 ft. or range 120 ft., one target. {@h}13 ({@damage 2d8 + 4}) force damage, or 22 ({@damage 4d8 + 4}) force damage if the professor is Large or larger, and the professor can push the target horizontally up to 10 feet away." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Dilation {@recharge 5}", + "body": [ + "The professor magically alters its physical form until it uses this bonus action again, until it is {@condition incapacitated} or dies, or until it dismisses the effect (no action required). Choose one of the following options:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Expand", + "body": [ + "The professor becomes Large if there is sufficient room for it to grow. It has advantage on attack rolls and on ability checks and saving throws that rely on Strength." + ], + "__dataclass__": "Entry" + }, + { + "title": "Contract", + "body": [ + "The professor becomes Small. Its walking speed increases to 60 feet, attack rolls against it have disadvantage, and it has advantage on ability checks and saving throws that rely on Dexterity." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Avoidant Translation (2/Day)", + "body": [ + "When the professor is hit by an attack roll, it can increase its AC by 3 against that attack, potentially causing it to miss. The professor can then teleport, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell mending} (as an action)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell creation} (as an action)", + "{@spell dimension door}", + "{@spell mage armor}", + "{@spell plant growth}", + "{@spell polymorph}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Quandrix Professor of Substance-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Quandrix Professor of Theory", + "source": "SCC", + "page": 209, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 19, + "wisdom": 15, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "int": "+7", + "wis": "+5", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Heuristic Lance attacks. It can also use Overriding Theorem, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heuristic Lance", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 60 ft., one creature. {@h}13 ({@damage 2d8 + 4}) psychic damage, and the target is {@condition poisoned} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Overriding Theorem {@recharge 4}", + "body": [ + "The professor magically influences the mind of up to two creatures it can see within 60 feet of itself. Each target must succeed on a {@dc 15} Intelligence saving throw or become {@condition charmed} by the professor until the start of the professor's next turn. The {@condition charmed} creature must immediately use its reaction, if available, to move up its speed toward another creature of the professor's choice and make one melee attack against that other creature." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Divide by Zero (2/Day)", + "body": [ + "When the professor sees another creature within 60 feet of itself casting a spell, the professor can try to nullify the spell's formation. The creature must succeed on a {@dc 15} saving throw using the spell's spellcasting ability, or the spell fails and is wasted." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell mage armor}", + "{@spell major image}", + "{@spell mirage arcane} (as an action)", + "{@spell Rary's telepathic bond}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Quandrix Professor of Theory-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Relic Sloth", + "source": "SCC", + "page": 210, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 20, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage, and the target is {@condition grappled} (escape {@dc 15}). The relic sloth can grapple no more than two targets at a time." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Slow but Sturdy", + "body": [ + "When the relic sloth is subjected to an effect that would move it out of its current space or knock it {@condition prone}, it is neither moved nor knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Relic Sloth-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Ruin Grinder", + "source": "SCC", + "page": 211, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d10 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 22, + "dexterity": 13, + "constitution": 15, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Fire Absorption", + "body": [ + "Whenever the ruin grinder is subjected to fire damage, it regains a number of hit points equal to half the fire damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The ruin grinder deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The ruin grinder can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ruin grinder makes two Excavator attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Excavator", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) force damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be pushed up to 10 feet away and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ruin Grinder-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Scufflecup Teacup", + "source": "SCC", + "page": 159, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "2d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 14, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d3 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Scufflecup Teacup-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Shadrix Silverquill", + "source": "SCC", + "page": 212, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 363, + "formula": "22d20 + 132", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 25, + "dexterity": 14, + "constitution": 23, + "intelligence": 18, + "wisdom": 18, + "charisma": 26, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+13", + "wis": "+11", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Shadrix fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Shadrix makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}12 ({@damage 1d10 + 7}) piercing damage plus 4 ({@damage 1d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d6 + 7}) slashing damage. If the target is a creature, it is wracked with despair and has disadvantage on attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illuminating Shadow Breath {@recharge 5}", + "body": [ + "Shadrix exhales an entwined burst of blinding radiance and unnerving shadow in a 90-foot cone. Each creature in that area must make a {@dc 21} Constitution saving throw. On a failed save, a creature takes 31 ({@damage 7d8}) radiant damage and 31 ({@damage 7d8}) psychic damage and is {@condition blinded} until the start of Shadrix's next turn. On a successful save, a creature takes half as much damage and isn't {@condition blinded}." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "Shadrix makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Slip (Costs 2 Actions)", + "body": [ + "Shadrix becomes an inky cloud of shadow and can move up to half his flying speed without provoking opportunity attacks, then resumes his true form. During this movement, he can move through creatures and objects as if they were {@quickref difficult terrain||3}. If he moves through a creature, it must succeed on a {@dc 21} Constitution saving throw or become {@condition blinded} until the end of its next turn. If Shadrix ends this move inside an object, he takes 5 ({@damage 1d10}) force damage and is shunted to the nearest unoccupied space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flash of Inspiration (Costs 3 Actions)", + "body": [ + "Shadrix magically summons {@dice 1d4} {@creature inkling mascot|SCC|inkling mascots} in unoccupied spaces he can see within 60 feet of himself. The inklings obey his commands and take their turns immediately after his. While any of these inklings live, Shadrix has advantage on attack rolls and saving throws. These inklings disappear after 10 minutes, when Shadrix dies, or when he uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Shadrix casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell daylight}", + "{@spell hypnotic pattern}", + "{@spell sending}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard", + "actions_note": "", + "mythic": null, + "key": "Shadrix Silverquill-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Silverquill Apprentice", + "source": "SCC", + "page": 214, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "cha": "+4" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Ink Blade", + "body": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 9 ({@damage 2d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Rousing Verse", + "body": [ + "When a creature the apprentice can see within 30 feet of it fails a saving throw, the apprentice magically weaves together stirring prose, allowing the creature to reroll the saving throw and use the higher result." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard", + "actions_note": "", + "mythic": null, + "key": "Silverquill Apprentice-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Silverquill Pledgemage", + "source": "SCC", + "page": 214, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 16, + "constitution": 13, + "intelligence": 12, + "wisdom": 11, + "charisma": 17, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+2", + "cha": "+5" + }, + "languages": [ + "Common plus any two languages" + ], + "actions": [ + { + "title": "Ink Blade", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}5 ({@damage 1d8 + 3}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Demotivate (2/Day)", + "body": [ + "The pledgemage hurls magical insults at one creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or become {@condition frightened} of the pledgemage for 1 minute. While {@condition frightened} in this way, the target can't take reactions, its speed is halved, and any hit the pledgemage scores against the creature is a critical hit. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Rousing Verse", + "body": [ + "When a creature the pledgemage can see within 30 feet of it fails a saving throw, the pledgemage magically weaves together stirring prose, allowing the creature to reroll the saving throw and use the higher result." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The pledgemage casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}", + "{@spell confusion}", + "{@spell mage armor}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard", + "actions_note": "", + "mythic": null, + "key": "Silverquill Pledgemage-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Silverquill Professor of Radiance", + "source": "SCC", + "page": 215, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 16, + "wisdom": 13, + "charisma": 19, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+6", + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Radiant Strike attacks. The professor can replace one of the attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Strike", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) radiant damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw be {@condition blinded} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell bless}", + "{@spell command}", + "{@spell cure wounds}", + "{@spell daylight}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell hypnotic pattern}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard", + "actions_note": "", + "mythic": null, + "key": "Silverquill Professor of Radiance-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Silverquill Professor of Shadow", + "source": "SCC", + "page": 215, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 14, + "constitution": 14, + "intelligence": 16, + "wisdom": 13, + "charisma": 19, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+6", + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 300 ft." + ], + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the professor's darkvision." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Ink Lance attacks. The professor can replace one of the attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ink Lance", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) necrotic damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw be {@condition blinded} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell friends}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell darkness}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard", + "actions_note": "", + "mythic": null, + "key": "Silverquill Professor of Shadow-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Spirit Statue Mascot", + "source": "SCC", + "page": 216, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 9, + "constitution": 15, + "intelligence": 12, + "wisdom": 13, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any languages it knew in life" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the spirit statue is reduced to 0 hit points, the statue crumbles, and the spirit returns to the afterlife in a burst of ghostly white flame. Each creature within 5 feet of it must succeed on a {@dc 12} Constitution saving throw or take 3 ({@damage 1d6}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Counsel of the Past (2/Day)", + "body": [ + "The spirit statue touches one creature. Once within the next 10 minutes, that creature can roll a {@dice d4} and add the number rolled to one ability check of its choice, immediately after rolling the {@dice d20}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spirit Statue Mascot-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Strixhaven Campus Guide", + "source": "SCC", + "page": 217, + "size_str": "Small", + "maintype": "construct", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 14, + "constitution": 13, + "intelligence": 10, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Common plus any three languages" + ], + "traits": [ + { + "title": "Campus Knowledge", + "body": [ + "While at Strixhaven, the guide can't become lost by magical or nonmagical means. The guide also has advantage on ability checks made to locate creatures or objects at Strixhaven." + ], + "__dataclass__": "Entry" + }, + { + "title": "Univocal Speech", + "body": [ + "When the guide speaks, any creature that knows at least one language and can hear the guide understands what it says." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The guide doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The guide makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Smile and Wave", + "body": [ + "Each creature of the guide's choice that is within 30 feet of the guide must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition charmed} by the guide for 1 hour.", + "A {@condition charmed} target must move on its turn toward the guide, trying to get within 5 feet of the guide. The target doesn't move into obviously dangerous ground, such as a fire or a pit. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success.", + "A target that successfully saves is immune to any guide's Smile and Wave ability for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Need Directions", + "body": [ + "The guide takes the Help action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Strixhaven Campus Guide-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Tanazir Quandrix", + "source": "SCC", + "page": 218, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 28, + "dexterity": 14, + "constitution": 27, + "intelligence": 28, + "wisdom": 18, + "charisma": 17, + "passive": 28, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 23, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 23, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+15", + "wis": "+11", + "cha": "+10" + }, + "dmg_immunities": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Tanazir fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tanazir makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}14 ({@damage 1d10 + 9}) piercing damage plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage. If the target is a creature, it is addled by recursive thoughts, reducing its speed to 0 until the start of Tanazir's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Diminution Breath {@recharge 5}", + "body": [ + "Tanazir exhales a weakening equation in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 45 ({@damage 13d6}) force damage and 45 ({@damage 13d6}) psychic damage and is weakened until the start of Tanazir's next turn. While weakened, it has disadvantage on the following rolls that rely on Strength: attack rolls, ability checks, and saving throws. On a successful save, a creature takes half as much damage and isn't weakened." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Tanazir teleports to an unoccupied space she can see within 100 feet of herself." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "Tanazir makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fold Space (Costs 2 Actions)", + "body": [ + "Tanazir uses Teleport, and each other creature within 20 feet of the space she left must succeed on a {@dc 24} Strength saving throw or be pulled up to 30 feet closer to the center of that space and take 16 ({@damage 3d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fractal Refraction (Costs 3 Actions)", + "body": [ + "Tanazir magically summons {@dice 1d4} {@creature fractal mascot|SCC|fractal mascots} in unoccupied spaces she can see within 120 feet of herself. The fractals obey her commands and take their turns immediately after hers. While any of these fractals remain, attack rolls made against Tanazir have disadvantage. A summoned fractal disappears after 1 minute, when it or Tanazir dies, or when she uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Tanazir casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 24}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell divination}", + "{@spell enlarge/reduce}", + "{@spell mirage arcane} (as an action)", + "{@spell polymorph}", + "{@spell scrying} (as an action)", + "{@spell seeming}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Tanazir Quandrix-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Velomachus Lorehold", + "source": "SCC", + "page": 219, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 487, + "formula": "25d20 + 225", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 30, + "dexterity": 14, + "constitution": 29, + "intelligence": 30, + "wisdom": 20, + "charisma": 18, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+17", + "wis": "+13", + "cha": "+12" + }, + "dmg_immunities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Velomachus fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Velomachus makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 15 ft., one target. {@h}15 ({@damage 1d10 + 10}) piercing damage plus 6 ({@damage 1d12}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 10 ft., one target. {@h}13 ({@damage 1d6 + 10}) slashing damage. If the target is a Huge or smaller creature, it is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battle Tide Breath {@recharge 5}", + "body": [ + "Velomachus exhales thunderous sound in a 90-foot cone. Each creature in that area must make a {@dc 25} Constitution saving throw. On a failure, a creature takes 45 ({@damage 7d12}) force damage and 45 ({@damage 7d12}) thunder damage and is pushed up to 20 feet in a horizontal direction of Velomachus' choice. On a success, the creature takes half as much damage and isn't pushed. Objects that aren't being worn or carried take the damage and are pushed as if they were creatures that failed the saving throw." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Claw", + "body": [ + "Velomachus makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chaotic Flow (Costs 2 Actions)", + "body": [ + "Velomachus moves up to half her flying speed. If a creature hits or misses her with an opportunity attack during this move, the attacker takes 19 ({@damage 3d12}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repeating History (Costs 3 Actions)", + "body": [ + "Velomachus magically summons {@dice 1d4} {@creature spirit statue mascot|SCC|statue mascots} in unoccupied spaces she can see within 60 feet of herself. The spirit statues obey her commands and take their turns immediately after hers. Any creature, other than a spirit statue or Velomachus, is {@condition restrained} if it starts its turn within 5 feet of one or more of these spirit statues. This {@condition restrained} condition lasts until the end of the creature's turn. These spirit statues disappear after 10 minutes, when Velomachus dies, or when she uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Velomachus casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell contact other plane} (as an action, contacting a long-dead spirit)", + "{@spell divination}", + "{@spell move earth}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Velomachus Lorehold-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Witherbloom Apprentice", + "source": "SCC", + "page": 221, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "wis": "+4" + }, + "languages": [ + "Common plus any two languages" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The apprentice regains 5 hit points at the start of its turn if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Verdant Talisman", + "body": [ + "At the end of a 10-minute ritual, the apprentice can touch one willing creature (including itself) and bestow upon it a small talisman imbued with magic. Upon receiving the talisman, the creature gains 10 temporary hit points, and it can add {@dice 1d6} to its initiative rolls while it wears the talisman. These benefits last for 1 hour or until the apprentice conducts another ritual to bestow another talisman. When the benefits expire, the talisman crumbles to dust." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Briar Vine", + "body": [ + "{@atk ms} {@hit 4} to hit, reach 15 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 9 ({@damage 2d8}) poison damage. If the target is a Large or smaller creature, the apprentice can pull it up to 10 feet closer to itself." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Wither Burst", + "body": [ + "When the apprentice sees a creature within 30 feet of itself drop to 0 hit points, the apprentice channels the expended life essence and targets another creature it can see within 30 feet of itself. The target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target takes 3 ({@damage 1d6}) poison damage at the start of each of its turns. The target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell pass without trace}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Witherbloom Apprentice-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Witherbloom Pledgemage", + "source": "SCC", + "page": 222, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 12, + "note": "15 with vociferous form", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 15, + "constitution": 13, + "intelligence": 14, + "wisdom": 17, + "charisma": 11, + "passive": 17, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any two languages" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "As long as the pledgemage has at least 1 hit point remaining, the pledgemage regains 5 hit points at the start of its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Verdant Talisman", + "body": [ + "At the end of a 10-minute ritual, the pledgemage can touch one willing creature (including itself) and bestow upon it a small talisman imbued with magic. Upon receiving the talisman, the creature gains 10 temporary hit points, and it can add {@dice 1d6} to its initiative rolls while it wears the talisman. These benefits last for 1 hour or until the pledgemage conducts another ritual to bestow another talisman. When the benefits expire, the talisman crumbles to dust." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Briar Vine", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 15 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 18 ({@damage 4d8}) poison damage. If the target is a Large or smaller creature, the apprentice can pull it up to 10 feet closer to itself." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Vociferous Form (1/Day)", + "body": [ + "The pledgemage transforms into an avatar of plants and shadow. While in this form, the pledgemage adds its Wisdom modifier to its AC if it isn't wearing armor or wielding a shield, and it has advantage on attack rolls against any creature missing hit points. This form lasts for 1 minute or until the pledgemage is reduced to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Wither Burst", + "body": [ + "When the pledgemage sees a creature within 30 feet of itself drop to 0 hit points, the pledgemage channels the expended life essence and targets another creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Constitution saving throw or become {@condition poisoned} for 1 minute. While {@condition poisoned} in this way, the target takes 3 ({@damage 1d6}) poison damage at the start of each of its turns. The target can repeat the save at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell death ward}", + "{@spell pass without trace}", + "{@spell speak with plants}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Witherbloom Pledgemage-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Witherbloom Professor of Decay", + "source": "SCC", + "page": 223, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 14, + "constitution": 16, + "intelligence": 16, + "wisdom": 19, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+6", + "wis": "+7", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Essence Transfer (1/Day)", + "body": [ + "The professor can cast the {@spell animate dead} spell, using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Mortality Spear attacks. It can replace one of the attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mortality Spear", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 5 ft. or range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) necrotic damage, and the target can't regain hit points until the start of the professor's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Essence Pulse {@recharge 5}", + "body": [ + "The professor creates a life-draining vortex in a 30-foot-radius sphere centered on itself. Each creature of the professor's choice that it can see within that area must make a {@dc 15} Constitution saving throw, taking 23 ({@damage 5d8}) necrotic damage on a failed save, or half as much damage on a successful one. The professor then regains 10 hit points. An affected creature's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the creature finishes a long rest. The creature dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell antilife shell}", + "{@spell bane}", + "{@spell feign death}", + "{@spell speak with dead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Witherbloom Professor of Decay-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Witherbloom Professor of Growth", + "source": "SCC", + "page": 223, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 11, + "dexterity": 13, + "constitution": 16, + "intelligence": 16, + "wisdom": 19, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+6", + "wis": "+7", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The professor makes two Verdant Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Verdant Lash", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 30 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 7 ({@damage 2d6}) poison damage, and the target must succeed on a {@dc 15} Strength saving throw or be pulled up to 10 feet closer to the professor." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Nature's Avatar (Recharges after a Short or Long Rest)", + "body": [ + "The professor magically summons a Groff. The groff appears in an unoccupied space within 60 feet of the professor, acts as the professor's ally, and takes its turns immediately after the professor's. The professor can communicate telepathically with this groff while it remains. The groff remains for 10 minutes, until it or the professor dies, or until the professor dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The professor casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell greater restoration}", + "{@spell lesser restoration}", + "{@spell mass cure wounds}", + "{@spell pass without trace}", + "{@spell plant growth}", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Witherbloom Professor of Growth-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Y'demi", + "source": "SCC", + "page": 172, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "blood aegis", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 11, + "dexterity": 14, + "constitution": 18, + "intelligence": 20, + "wisdom": 12, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+9", + "wis": "+5", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any four languages" + ], + "traits": [ + { + "title": "Blood Aegis", + "body": [ + "The AC of Y'demi includes her Constitution modifier while she isn't wearing armor or wielding a shield." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oriq Mask", + "body": [ + "Y'demi wears an Oriq mask. While wearing the mask, Y'demi can't be targeted by any divination magic or perceived through magical scrying sensors, and she adds double her proficiency bonus to Charisma ({@skill Deception}) checks (included above)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sanguine Sense", + "body": [ + "While Y'demi isn't {@condition blinded}, she can see any creature that isn't an Undead or a Construct within 60 feet of itself, even through {@quickref Cover||3||total cover}, heavily obscured areas, invisibility, or any other phenomena that would prevent sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Y'demi makes two Blood Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Lash", + "body": [ + "{@atk ms} {@hit 9} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) necrotic damage. If the target is a creature, it can't regain hit points until the start of the Y'demi's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Boil {@recharge 4}", + "body": [ + "Y'demi chooses a point within 150 feet of itself, and a 20-foot radius sphere centered on that point fills with a burst of searing, blood-red mist. Each creature of Y'demi's choice that she can see in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) necrotic damage and is {@condition incapacitated} until the end of its next turn. On a success, a creature takes half as much damage and isn't {@condition incapacitated}. A creature dies if reduced to 0 hit points by this necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Sanguine Tentacles (1/Day)", + "body": [ + "The blood in the copper basin disappears as tentacles of congealed blood fill a 10-foot cube centered at a point on the ground that Y'demi can see within 15 feet of her. The effect lasts for 1 minute, during which time that area is {@quickref difficult terrain||3}. Any creature entering that area for the first time on a turn or starting its turn there must succeed on a {@dc 13} Dexterity saving throw or be {@condition restrained} by the tentacles. A creature that starts its turn {@condition restrained} by the tentacles takes 10 ({@damage 3d6}) bludgeoning damage. A creature {@condition restrained} by the tentacles can use its action to make either a {@dc 13} Strength ({@skill Athletics}) check or a {@dc 13} Dexterity ({@skill Acrobatics}) check, ending the {@condition restrained} condition on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human, warlock", + "actions_note": "", + "mythic": null, + "key": "Y'demi-SCC", + "__dataclass__": "Monster" + }, + { + "name": "Expert", + "source": "SDW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 18, + "constitution": 12, + "intelligence": 14, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Helpful", + "body": [ + "The expert can take the Help action as a bonus action, and the creature who receives the help gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "When the expert is not {@condition incapacitated} and subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it failed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tools", + "body": [ + "The expert has thieves' tools and a musical instrument." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Extra Attack", + "body": [ + "The expert can attack twice, instead of once, whenever it takes the attack action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 8} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Expert-SDW", + "__dataclass__": "Monster" + }, + { + "name": "Giant Shark Skeleton", + "source": "SDW", + "page": 0, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 23, + "dexterity": 11, + "constitution": 21, + "intelligence": 1, + "wisdom": 10, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The giant shark skeleton has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Shark Skeleton-SDW", + "__dataclass__": "Monster" + }, + { + "name": "Lhammaruntosz", + "source": "SDW", + "page": 0, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 212, + "formula": "17d12 + 102", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 25, + "dexterity": 10, + "constitution": 23, + "intelligence": 16, + "wisdom": 15, + "charisma": 19, + "passive": 22, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+11", + "wis": "+7", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Lhammaruntosz can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Lhammaruntosz fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Lhammaruntosz regains 5 hit points at the start of her turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Lhammaruntosz can use her Frightful Presence. She then makes three attacks: one with her bite and two with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Lhammaruntosz's choice that is within 120 feet of her and aware of her must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Lhammaruntosz's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapons {@recharge 5}", + "body": [ + "Lhammaruntosz uses one of the following breath weapons." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath", + "body": [ + "Lhammaruntosz exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a {@dc 19} Dexterity saving throw, taking 66 ({@damage 12d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repulsion Breath", + "body": [ + "Lhammaruntosz exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a {@dc 19} Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Lhammaruntosz magically polymorphs into a humanoid or beast that has a challenge rating no higher than her own, or back into her true form. She reverts to her true form if she dies. Any equipment she is wearing or carrying is absorbed or borne by the new form (Lhammaruntosz's choice).", + "In a new form, Lhammaruntosz retains her alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Her statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "Lhammaruntosz makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "Lhammaruntosz makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "Lhammaruntosz beats its wings. Each creature within 10 feet of Lhammaruntosz must succeed on a {@dc 20} Dexterity saving throw or take 14 ({@damage 2d6 + 7}) bludgeoning damage and be knocked {@condition prone}. Lhammaruntosz can then fly up to half her flying speed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Lhammaruntosz's spellcasting ability is Charisma (spell save {@dc 17}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell create food and water}", + "{@spell detect thoughts}", + "{@spell fog cloud}", + "{@spell speak with animals}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Lhammaruntosz is an 8th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 17}; {@hit 9} to hit with spell attacks). She has the following sorcerer spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell expeditious retreat}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell invisibility}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell protection from energy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dimension door}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lhammaruntosz-SDW", + "__dataclass__": "Monster" + }, + { + "name": "Spellcaster (Healer)", + "source": "SDW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 15, + "wisdom": 18, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+8" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Potent Cantrip", + "body": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Healer)", + "body": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell protection from energy}", + "{@spell revivify}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell death ward}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell greater restoration}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "healer", + "actions_note": "", + "mythic": null, + "key": "Spellcaster (Healer)-SDW", + "__dataclass__": "Monster" + }, + { + "name": "Spellcaster (Mage)", + "source": "SDW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 18, + "wisdom": 14, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Potent Cantrip", + "body": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Mage)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Mage)", + "body": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell polymorph}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "mage", + "actions_note": "", + "mythic": null, + "key": "Spellcaster (Mage)-SDW", + "__dataclass__": "Monster" + }, + { + "name": "Warrior", + "source": "SDW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB|plate}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Battle Readiness", + "body": [ + "The warrior has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Improved Critical", + "body": [ + "The warrior's attack rolls score a critical hit on a roll of 19 or 20 on the {@dice d20}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indomitable (1/Day)", + "body": [ + "The warriorcan reroll a saving throw that it fails, but it must use the new result." + ], + "__dataclass__": "Entry" + }, + { + "title": "Martial Role", + "body": [ + "The warrior has one of the following traits of your choice:", + { + "title": "Attacker", + "body": [ + "The warrior gains a +2 bonus to attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Defender", + "body": [ + "The warrior gains the Protection reaction below." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "The warrior can use a bonus action on its turn to regain hit points equal to {@dice 1d10} + its level." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Extra Attack", + "body": [ + "The warrior can attack twice, instead of once, whenever it takes the attack action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection (Defender Only)", + "body": [ + "When a creature the warrior can see attacks a target other than the warrior that is within 5 feet of the warrior, the warrior can use their reaction to impose disadvantage on the attack roll. The warrior must be wielding a shield." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warrior-SDW", + "__dataclass__": "Monster" + }, + { + "name": "Aarakocra Simulacrum", + "source": "SKT", + "page": 188, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 6, + "formula": "3d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 11, + "wisdom": 12, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Aarakocra" + ], + "traits": [ + { + "title": "Dive Attack", + "body": [ + "If the aarakocra is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 3 ({@damage 1d6}) damage to the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Simulacra", + "body": [ + "When a simulacrum drops to 0 hit points or is subjected to a successful {@spell dispel magic} spell ({@dc 17}), it reverts to ice and snow and is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Air Elemental", + "body": [ + "Five aarakocra within 30 feet of each other can magically summon an air elemental. Each of the five must use its action and movement on three consecutive turns to perform an aerial dance and must maintain {@status concentration} while doing so (as if {@status concentration||concentrating} on a spell). When all five have finished their third turn of the dance, the elemental appears in an unoccupied space within 60 feet of them. It is friendly toward them and obeys their spoken commands. It remains for 1 hour, until it or all its summoners die, or until any of its summoners dismisses it as a bonus action. A summoner can't perform the dance again until it finishes a short rest. When the elemental returns to the Elemental Plane of Air, any aarakocra within 5 feet of it can return with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "aarakocra", + "actions_note": "", + "mythic": null, + "key": "Aarakocra Simulacrum-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Augrek Brighthelm", + "source": "SKT", + "page": 247, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 11, + "constitution": 15, + "intelligence": 10, + "wisdom": 11, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Augrek has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "Sheriff's deputy Augrek guards the southwest gate of Bryn Shander and welcomes visitors to town. She has a good heart.", + "Ideal: \"You'll get farther in life with a kind word than an axe.\"", + "Bond: \"Bryn Shander is my home. It's my job to protect her.\"", + "Flaw: \"I'm head over heels in love with Sheriff Southwell. One day I hope to marry him.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Warhammer", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, or 7 ({@damage 1d10 + 2}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Augrek carries ten crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Shield dwarf", + "actions_note": "", + "mythic": null, + "key": "Augrek Brighthelm-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Beldora", + "source": "SKT", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 16, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Halfling" + ], + "traits": [ + { + "title": "Roleplaying Information", + "body": [ + "Beldora is a member of the harpers who survives using her wits and wiles. She looks like a homeless waif, but she's a survivor who shies away from material wealth.", + "Ideal: \"We should all strive to help one another\"", + "Bond: \"I'll risk my life to protect the powerless.\"", + "Flaw: \"I like lying to people. Makes life more interesting, no?\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. Beldora carries ten crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Duck and Cover", + "body": [ + "Beldora adds 2 to her AC against one ranged attack that would hit her. To do so, Beldora must see the attacker and can't be {@condition grappled} or {@condition restrained}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Beldora-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Chief Guh", + "source": "SKT", + "page": 140, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 9, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 160, + "formula": "10d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 21, + "dexterity": 1, + "constitution": 19, + "intelligence": 5, + "wisdom": 9, + "charisma": 6, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Giant", + "Goblin" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two greatclub attacks or two unarmed attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Attack", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 3d4 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chief Guh-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Countess Sansuri", + "source": "SKT", + "page": 192, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 27, + "dexterity": 10, + "constitution": 22, + "intelligence": 16, + "wisdom": 16, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+7", + "cha": "+7" + }, + "languages": [ + "Auran", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "Sansuri has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fling", + "body": [ + "Sansuri tries to throw a Small or Medium creature within 10 feet of her. The target must succeed on a {@dc 20} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of Sansuri's choice and land {@condition prone}, taking {@damage 1d8} bludgeoning damage for every 10 feet it was thrown." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wind Aura", + "body": [ + "A magical aura of wind surrounds Sansuri. The aura is a 10-foot-radius sphere that lasts as long as Sansuri maintains {@status concentration} on it (as if {@status concentration||concentrating} on a spell). While the aura is in effect, Sansuri gains a +2 bonus to its AC against ranged weapon attacks, and all open flames within the aura are extinguished unless they are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack", + "body": [ + "Sansuri makes two spear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Sansuri's innate spellcasting ability is Charisma. She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell control weather}", + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Sansuri casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}; {@hit 7} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell arcane lock}", + "{@spell gust of wind}", + "{@spell invisibility}", + "{@spell magic missile}", + "{@spell unseen servant}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell globe of invulnerability}", + "{@spell haste}", + "{@spell hypnotic pattern}", + "{@spell ice storm}", + "{@spell lightning bolt}", + "{@spell Mordenkainen's sword}", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Countess Sansuri-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Crag Cat", + "source": "SKT", + "page": 240, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 34, + "formula": "4d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 17, + "constitution": 16, + "intelligence": 4, + "wisdom": 14, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Nondetection", + "body": [ + "The cat cannot be targeted or detected by any divination magic or perceived through magical scrying sensors." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the cat moves at least 20 feet straight toward a creature then hits it with a claw attack on the same turn, that target must succeed on a DC13 Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the cat can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Turning", + "body": [ + "The cat has advantage on saving throws against any spell that targets only the cat (not an area). If the cat's saving throw succeeds and the spell is of 7th level or lower, the spell has no effect on the cat and instead targets the caster." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IDRotF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Crag Cat-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Darathra Shendrel", + "source": "SKT", + "page": 253, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 14, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 16, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "history", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "Darathra has advantage on saving throws against being {@condition frightened}" + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "As the Lord Protector of Triboar and a secret agent of the Harpers, Darathra has sworn an oath to defend the town. She takes her duty very seriously. In addition to her gear, Darathra has an unarmored warhorse named Buster.", + "Ideal: \"Good people should be given every chance to prosper, free of tyranny.\"", + "Bond: \"I'll lay down my life to protect Triboar and its citizens.\"", + "Flaw: \"I refuse to back down. Push me, and I'll push back.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Darthra makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage" + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Darathra carries twenty crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Chondathan human", + "actions_note": "", + "mythic": null, + "key": "Darathra Shendrel-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Darz Helgar", + "source": "SKT", + "page": 253, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 15, + "dexterity": 15, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Darz deals an extra 7 ({@damage 2d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Darz that isn't {@condition incapacitated} and Darz doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "In his youth, Darz was a member of the Xanathar Thieves' Guild in Waterdeep. After serving ten years in prison for his crimes, he cut all ties to the city and moved north to be a campground caretaker.", + "Ideal: \"You can run from your past, but you can't hide from it.\"", + "Bond: \"I've made a new life in Triboar. I'm not gonna run away this time. \"", + "Flaw: \"I have no regrets. I do whatever it takes to survive.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Darz carries twenty sling stones." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Darz Helgar-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Duke Zalto", + "source": "SKT", + "page": 184, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 221, + "formula": "13d12 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 25, + "dexterity": 9, + "constitution": 23, + "intelligence": 10, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+10", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Elvish", + "Giant" + ], + "traits": [ + { + "title": "Siege Monster", + "body": [ + "Zalto deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Zalto wears a {@item ring of lightning resistance}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tackle", + "body": [ + "When Zalto enters any enemy's space for the first time on a turn, the enemy must succeed on a {@dc 19} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zalto makes two maul attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}28 ({@damage 6d6 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Duke Zalto-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Duvessa Shane", + "source": "SKT", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 11, + "constitution": 10, + "intelligence": 16, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Dwarvish", + "Giant", + "Orc" + ], + "traits": [ + { + "title": "Roleplaying Information", + "body": [ + "The daughter of a Waterdhavian trader and a tavern server, Duvessa has her mother's talent for negotiation and her father's charm. As the first woman to serve as Town Speaker of Bryn Shander, and a young one at that, she has much to prove.", + "Ideal: \"The people of Icewind Dale are survivors. They can weather any storm.\"", + "Bond: \"My mother taught me what it means to be a good leader. I won't disappoint her.\"", + "Flaw: \"I don't give an inch in any argument of conflict.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Duvessa carries only one dagger." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Duvessa adds 2 to her AC against one melee attack that would hit her. To do so, Duvessa must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Duvessa Shane-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Ghelryn Foehammer", + "source": "SKT", + "page": 255, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 14, + "note": "{@item breastplate|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 18, + "dexterity": 7, + "constitution": 17, + "intelligence": 10, + "wisdom": 11, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Ghelryn has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + }, + { + "title": "Giant Slayer", + "body": [ + "Any weapon attack that Ghelryn makes against a giant deals an extra 7 ({@damage 2d6}) damage on a hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "The blacksmith Ghelryn has a good heart, but he hates orcs and giants\u2014hates them with a fiery passion. He considers it the solemn duty of all dwarves to cave in their skulls!", + "Ideal: \"It is incumbent upon every dwarf to forge a legacy.\"", + "Bond: \"I stand for Clan Foehammer and all dwarvenkind.\"", + "Flaw: \"I never run from a fight, especially if it involves killing orcs or giants.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ghelryn makes two battleaxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Shield dwarf", + "actions_note": "", + "mythic": null, + "key": "Ghelryn Foehammer-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Harshnag", + "source": "SKT", + "page": 120, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 21, + "note": "{@item +3 plate armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 204, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 23, + "dexterity": 9, + "constitution": 21, + "intelligence": 9, + "wisdom": 10, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+4", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If Harshnag fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Weighted Net", + "body": [ + "{@atk rw} {@hit 5} to hit, ranged 20/60 ft., one Small, Medium, or Large creature. {@h}The target is {@condition restrained} until it escapes the net. Any creature can use its action to make a {@dc 17} Strength check to free itself or another creature in the net, ending the effect on a success. Dealing 15 slashing damage to the net (AC 12) destroys the net and frees the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack", + "body": [ + "The giant makes two greataxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gurt's Greataxe", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) slashing damage, or 39 ({@damage 5d12 + 7}) slashing damage if the target is human." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harshnag-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Hulking Crab", + "source": "SKT", + "page": 240, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 8, + "constitution": 16, + "intelligence": 3, + "wisdom": 11, + "charisma": 3, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The crab can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Camouflage", + "body": [ + "While the crab remains motionless with its eyestalks and pincers tucked close to its body, it resembles a natural formation or a pile of detritus. A creature within 30 feet of it can discern its true nature with a successful {@dc 15} Intelligence ({@skill Nature}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The crab makes two attacks with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d10 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). The crab has two claws, each of which can grapple only one target" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hulking Crab-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Iymrith", + "source": "SKT", + "page": 241, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 481, + "formula": "26d20 + 208", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 29, + "dexterity": 10, + "constitution": 27, + "intelligence": 18, + "wisdom": 17, + "charisma": 21, + "passive": 27, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+15", + "wis": "+10", + "cha": "+12" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Giant", + "Terran" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Iymrith fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Iymrith can use her Frightful Presence. She then makes three attacks: one with her bite and two with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 9}) piercing damage plus 11 ({@damage 2d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d6 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}18 ({@damage 2d8 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Iymrith's choice that is within 120 feet of Iymrith and aware of it must succeed on a {@dc 20} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Iymrith's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Breath {@recharge 5}", + "body": [ + "Iymrith exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a {@dc 23} Dexterity saving throw, taking 88 ({@damage 16d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Iymrith magically polymorphs into a female {@creature storm giant} or back into her true form. She reverts to her true form if she dies. Any equipment she is wearing or carrying is absorbed or borne by the new form (Iymrith's choice).", + "In storm giant form, Iymrith retains her alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Her statistics are otherwise replaced by those of the new form." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "Iymrith makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "Iymrith makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "Iymrith beats her wings. Each creature within 15 feet of Iymrith must succeed on a {@dc 24} Dexterity saving throw or take 16 ({@damage 2d6 + 9}) bludgeoning damage and be knocked {@condition prone}. Iymrith can then fly up to half her flying speed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Iymrith casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell ice storm}", + "{@spell stone shape}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Iymrith-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Jarl Storvald", + "source": "SKT", + "page": 165, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "barding scraps", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 23, + "dexterity": 9, + "constitution": 21, + "intelligence": 9, + "wisdom": 16, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+6", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant", + "Giant Owl" + ], + "actions": [ + { + "title": "Weighted Net", + "body": [ + "{@atk rw} {@hit 5} to hit, ranged 20/60 ft., one Small, Medium, or Large creature. {@h}The target is {@condition restrained} until it escapes the net. Any creature can use its action to make a {@dc 17} Strength check to free itself or another creature in the net, ending the effect on a success. Dealing 15 slashing damage to the net (AC 12) destroys the net and frees the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack", + "body": [ + "The giant makes two greataxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Storvald casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell jump}", + "{@spell locate animals or plants}", + "{@spell locate object}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Jarl Storvald-SKT", + "__dataclass__": "Monster" + }, + { + "name": "King Hekaton", + "source": "SKT", + "page": 222, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 330, + "formula": "20d12 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 29, + "dexterity": 14, + "constitution": 20, + "intelligence": 16, + "wisdom": 18, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+14", + "con": "+10", + "wis": "+9", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Hekaton can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hekaton makes two broken chain attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Broken Chain", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ballista", + "body": [ + "{@atk rw} {@hit 6} to hit, range 120/480 ft., one target. {@h}18 ({@damage 3d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Strike {@recharge 5}", + "body": [ + "Hekaton hurls a magical lightning bolt at a point he can see within 500 feet of it. Each creature within 10 feet of that point must make a {@dc 17} Dexterity saving throw, taking 54 ({@damage 12d8}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Stomp {@recharge}", + "body": [ + "Hekaton stomps the ground, triggering a thunderclap. All other creatures within 15 feet of him must succeed on a {@dc 17} Constitution saving throw or take 33 ({@damage 6d10}) thunder damage and be {@condition deafened} until the start of Hekaton's next turn. On a successful save, a creature takes half as much damage and isn't {@condition deafened}. The thunderclap can be heard out to a range of 1,200 feet." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The giant's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell feather fall}", + "{@spell levitate}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell control weather}", + "{@spell water breathing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "King Hekaton-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Klauth", + "source": "SKT", + "page": 95, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 30, + "dexterity": 10, + "constitution": 29, + "intelligence": 18, + "wisdom": 15, + "charisma": 23, + "passive": 26, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+17", + "wis": "+10", + "cha": "+14" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Klauth fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dual Wand Wielder", + "body": [ + "If Klauth is carrying two wands, he can use an action to expend 1 charge from each wand, triggering the effects of both wands simultaneously." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Klauth carries a {@item wand of fireballs} and a {@item wand of lightning bolts}, and he wears a {@item ring of cold resistance}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Klauth can use his Frightful Presence. He then makes three attacks: one with his bite and two with his claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}21 ({@damage 2d10 + 10}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d6 + 10}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d8 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence", + "body": [ + "Each creature of Klauth's choice that is within 120 feet of Klauth and aware of him must succeed on a {@dc 21} Wisdom saving throw or become {@condition frightened} 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. If a creature's saving throw is successful or the effect ends for it, the creature is immune to Klauth's Frightful Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath {@recharge 5}", + "body": [ + "Klauth exhales fire in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw, taking 91 ({@damage 26d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "Klauth makes a Wisdom ({@skill Perception}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Attack", + "body": [ + "Klauth makes a tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (Costs 2 Actions)", + "body": [ + "Klauth beats his wings. Each creature within 15 feet of Klauth must succeed on a {@dc 25} Dexterity saving throw or take 17 ({@damage 2d6 + 10}) bludgeoning damage and be knocked {@condition prone}. Klauth can then fly up to half his flying speed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Klauth casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell ice storm}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell cloudkill}", + "{@spell disintegrate}", + "{@spell etherealness}", + "{@spell find the path} (cast as 1 action)", + "{@spell greater invisibility}", + "{@spell haste}", + "{@spell locate object}", + "{@spell mass suggestion}", + "{@spell mirage arcane} (cast as 1 action)", + "{@spell prismatic spray}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Klauth-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Lifferlas", + "source": "SKT", + "page": 250, + "size_str": "Huge", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d12 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 19, + "dexterity": 6, + "constitution": 15, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While Lifferlas remains motionless, it is indistinguishable from a normal tree." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "A druid of the Emerald Enclave awakened the tree Lifferlas with a spell. Goldenfields is his home, its people his friends. Children like to carve their name and initials into his body and hang from his boughs, and he's happy with that.", + "Ideal: \"I exist to protect the people and plants of Goldenfields.\"", + "Bond: \"Children are wonderful. I would do anything to make them feel happy and safe.\"", + "Flaw: \"I can't remember people's names and often get them mixed up.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Lifferlas makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lifferlas-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Maegera the Dawn Titan", + "source": "SKT", + "page": 241, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 341, + "formula": "22d20 + 110", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 21, + "dexterity": 22, + "constitution": 20, + "intelligence": 10, + "wisdom": 10, + "charisma": 19, + "passive": 10, + "saves": { + "con": "+12", + "wis": "+7", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Ignan" + ], + "traits": [ + { + "title": "Empowered Attacks", + "body": [ + "Maegera's slam attacks are treated as magical for the purpose of overcoming resistance and immunity to damage from nonmagical attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Aura", + "body": [ + "At the start of each of Maegera's turns, each creature within 30 feet of it takes 35 ({@damage 10d6}) fire damage, and flammable objects in the aura that aren't being worn or carried ignite. A creature also takes 35 ({@damage 10d6}) fire damage from touching Maegera or from hitting it with a melee attack while within 10 feet of it, and a creature takes that damage the first time on a turn that Maegera moves into its space. Nonmagical weapons that hit Maegera are destroyed by fire immediately after dealing damage to it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Form", + "body": [ + "Maegera can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch wide without squeezing if fire could pass through that space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "Maegera sheds bright light in a 120-foot radius and dim light in an additional 120 ft.." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Maegera has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Maegera makes three slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}15 ({@damage 3d6 + 5}) bludgeoning damage plus 35 ({@damage 10d6}) fire damage" + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Quench Magic", + "body": [ + "Maegera targets one creature that it can see within 60 feet of it. Any resistance or immunity to fire damage that the target gains from a spell or magic item is suppressed. The effect lasts until the end of Maegera's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Smoke Cloud (Costs 2 Actions)", + "body": [ + "Maegera exhales a billowing cloud of hot smoke and embers that fills a 60 feet cube. Each creature in the area takes 11 ({@damage 2d10}) fire damage. The cloud lasts until the end of Maegera's next turn. Creatures completely in the cloud are {@condition blinded} and can't be seen." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Fire Elemental (Costs 3 Actions)", + "body": [ + "Maegera's hit points are reduced by 50 as part of it separates and becomes a {@creature fire elemental} with 102 hit points. The fire element appears in an unoccupied space within 15 feet of Maegera and acts on Maegera's initiative count. Maegera can't use this action if it has 50 hit points or fewer. The fire element obeys Maegera's commands and fights until destroyed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Maegera casts {@spell fireball} (spell save {@dc 19}), requiring no material components and using Charisma as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Maegera the Dawn Titan-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Markham Southwell", + "source": "SKT", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 15, + "dexterity": 13, + "constitution": 14, + "intelligence": 11, + "wisdom": 16, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Roleplaying Information", + "body": [ + "Sheriff Markham of Bryn Shander is a brawny, likable man of few words. Nothing is more important to him than protecting Icewind Dale. He judges others by their actions, not their words.", + "Ideal: \"All people deserve to be treated with dignity.\"", + "Bond: \"Duvessa is a natural leader, but she needs help. That's my job.\"", + "Flaw: \"I bury my emotions and have no interest in small talk.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Markham makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage. Markham carries twenty crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Turami human", + "actions_note": "", + "mythic": null, + "key": "Markham Southwell-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Miros Xelbrin", + "source": "SKT", + "page": 251, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 16, + "dexterity": 10, + "constitution": 15, + "intelligence": 11, + "wisdom": 12, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Roleplaying Information", + "body": [ + "Innkeeper Miros is a retired carnival attraction, dubbed \"the Yeti\" because of his barrel-shaped body and the thick, white hair covering his arms, chest, back, and head. When Goldenfields suffers, so does his business, so he takes strides to protect the compound.", + "Ideal: \"As does the Emerald Enclave, I believe that civilization and the wilderness need to learn to coexist.\"", + "Bond: \"Make fun of me all you like, but don't speak ill of my inn or my employees.\"", + "Flaw: \"When something upsets me, I have a tendency to fly into a rage.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bear Hug", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage, and the target {@condition grappled} (escape {@dc 13}) and takes 5 ({@damage 1d4 + 3}) bludgeoning damage at the start of each of Miros's turns until the grapple ends. Miros cannot make attacks while grappling a creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 1}) bludgeoning damage" + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Miros carries ten crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Damaran human", + "actions_note": "", + "mythic": null, + "key": "Miros Xelbrin-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Narth Tezrin", + "source": "SKT", + "page": 254, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 15, + "constitution": 10, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of his turns, Narth can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "Narth sells gear to adventurers, and he also has an adventurous spirit. The Lionshield Coster pays him well, but he longs to make a name for himself. At the same time, he runs a business with his partner Alaestra and knows she wouldn't forgive him if he ran off and never returned.", + "Ideal: \"The bigger the risk, the greater the reward.\"", + "Bond: \"I adore my colleague Alestra, and I'd like to do something to impress her.\"", + "Flaw: \"I'll risk life and limb to become a legend.-\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. Narth carries twenty crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Tethyrian human", + "actions_note": "", + "mythic": null, + "key": "Narth Tezrin-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Naxene Drathkala", + "source": "SKT", + "page": 252, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 11, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "traits": [ + { + "title": "Roleplaying Information", + "body": [ + "Goldenfields' crops are vital Waterdeep's survival, which is why the Watchful Order of Magists and Protectors sent Naxene to make sure the temple-farm is adequately defended. At first she regarded the task as a punishment, but now she appreciates the peace and quiet.", + "Ideal: \"There's no problem that can't be solved with magic.\"", + "Bond: \"I have great respect for Lady Laeral Silverhand of Waterdeep. She and the Lords' Alliance are going to bring some much-needed order to this lawless land.\"", + "Flaw: \"I'm too smart to be wrong about anything.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Naxene casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fire bolt} ({@damage 1d10} fire damage)", + "{@spell light}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Turami human", + "actions_note": "", + "mythic": null, + "key": "Naxene Drathkala-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Oren Yogilvy", + "source": "SKT", + "page": 252, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 13, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Halfling" + ], + "traits": [ + { + "title": "Halfling Nimbleness", + "body": [ + "Oren can move through the space of any creature that is of a size larger than his." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lucky", + "body": [ + "When Oren rolls a 1 on an attack roll, ability check, or saving throw, he can reroll the die and must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stout Resilience", + "body": [ + "Oren has advantage on saving throws against poison" + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "Oren came to Nurthfurrow's End looking for easy work and found it. He sings for his supper, drinks like a fish, and wanders the fields at night dreaming up new lyrics to entertain the inn's other guests. Oren likes to stir up trouble from time to time, but he doesn't have a mean bone in his body.", + "Ideal: \"Music is food for the soul.\"", + "Bond: \"You had me at \"Can I buy you a drink.\"", + "Flaw: \"I have a knack for putting myself in harm's way. Good thing I'm lucky!\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage. Duvessa carries only one dagger." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Strongheart halfling", + "actions_note": "", + "mythic": null, + "key": "Oren Yogilvy-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Othovir", + "source": "SKT", + "page": 255, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 11, + "dexterity": 10, + "constitution": 13, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Roleplaying Information", + "body": [ + "Othovir is a gifted harness-maker who doesn't talk about his family or where he came from. He cares about his business, his clients, and his good name.", + "Ideal: \"Find what you do well, and do it to the best of your ability.\"", + "Bond: \"I won't allow my name to be tarnished.\"", + "Flaw: \"I get angry when others pry into my private life.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Othovir adds 2 to its AC against one melee attack that would hit him. To do so, Othovir must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Othovir casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}; {@hit 5} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fire bolt} ({@damage 1d10} fire damage)", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell mage armor}", + "{@spell thunderwave}", + "{@spell witch bolt}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Othovir-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Purple Wormling", + "source": "SKT", + "page": 242, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 7, + "constitution": 16, + "intelligence": 1, + "wisdom": 6, + "charisma": 2, + "passive": 8, + "senses": [ + "blindsight 30 ft.", + "tremorsense 30 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wormling makes two attacks: one with its bite and one with its stinger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 5}) piercing damage. If the target is a Small or smaller creature, it must succeed on a {@dc 13} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the wormling, and it takes 3 ({@damage 1d6}) acid damage at the start of each of the wormling's turns.", + "If the wormling takes 10 damage or more on a single turn from a creature inside it, the wormling must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the wormling. If the wormling dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 5 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Stinger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must make a {@dc 13} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Purple Wormling-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Shalvus Martholio", + "source": "SKT", + "page": 250, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 15, + "constitution": 10, + "intelligence": 12, + "wisdom": 14, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Shalvus deals an extra 7 ({@damage 2d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Shalvus that isn't {@condition incapacitated} and Shalvus doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "Nalaskur Thaelond of Bargewright Inn has entrusted the shepherd Shalvus with an important assignment: to figure out the best way by which Goldenfields can be brought under the Black Network's control. Shalvus believes that success will ensure his swift rise through the Zhentarim ranks.", + "Ideal: \"I'll do what it takes to prove myself to the Zhentarim.\"", + "Bond: \"I love animals, and I'm very protective of them.\"", + "Flaw: \"I can't resist taking risks to feed my ambitions.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with both hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. Shalvus carries ten crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Turami human", + "actions_note": "", + "mythic": null, + "key": "Shalvus Martholio-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Sir Baric Nylef", + "source": "SKT", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 18, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 15, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "Baric has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "As a knight of the Order of the Gauntlet, Sir Baric has sworn oaths to catch evildoers and bring them to justice. His current quarry is a dwarf brigand, Worvil \"the Weevil\" Forkbeard, who is rumored to be hiding in Icewind Dale. In addition to his gear, Sir Baric has an unarmored warhorse, Henry.", + "Ideal: \"Evil must not be allowed to thrive in this world.\"", + "Bond: \"Tyr is my lord; the order, my family. Through my actions, I shall honor both.\"", + "Flaw: \"I'm not afraid to die. When Tyr finally calls me, I'll go to him happily.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage. Baric carries twenty crossbow bolts." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Sir Baric Nylef-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Sirac of Suzail", + "source": "SKT", + "page": 247, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 17, + "constitution": 11, + "intelligence": 12, + "wisdom": 13, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Roleplaying Information", + "body": [ + "An acolyte of Torm, Sirac grew up on the streets of Suzail, the capital of Cormyr. He came to Icewind Dale to become a knucklehead trout fisher but instead found religion. The misbegotten son of Artus Cimber, a renowned human adventurer, Sirac hasn't seen his father since he was a baby.", + "Ideal: \"Without duty or loyalty, a man is nothing.\"", + "Bond: \"Icewind Dale is where i belong for the rest of my life.\"", + "Flaw: \"I am honest to a fault.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. Sirac carries six darts." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Sirac adds 2 to his AC against on melee attack that would hit him. To do so, Sirac must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Chondathan human", + "actions_note": "", + "mythic": null, + "key": "Sirac of Suzail-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Slarkrethel", + "source": "SKT", + "page": 224, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 472, + "formula": "27d20 + 189", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 30, + "dexterity": 11, + "constitution": 25, + "intelligence": 22, + "wisdom": 18, + "charisma": 20, + "passive": 14, + "saves": { + "str": "+18", + "dex": "+8", + "con": "+15", + "int": "+14", + "wis": "+12" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "understands Abyssal", + "Celestial", + "Infernal", + "and Primordial but can't speak", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Slarkrethel fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amphibious", + "body": [ + "Slarkrethel can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freedom of Movement", + "body": [ + "Slarkrethel ignores {@quickref difficult terrain||3}, and magical effects can't reduce its speed or cause it to be {@condition restrained}. It can spend 5 feet of movement to escape from nonmagical restraints or being {@condition grappled}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "Slarkrethel deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Slarkrethel makes three tentacle attacks, each of which it can replace with one use of Fling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d8 + 10}) piercing damage. If the target is a Large or smaller creature {@condition grappled} by Slarkrethel, that creature is swallowed, and the grapple ends. While swallowed, the creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside Slarkrethel, and it takes 42 ({@damage 12d6}) acid damage at the start of each of Slarkrethel's turns. If Slarkrethel takes 50 damage or more on a single turn from a creature inside it, Slarkrethel must succeed on a {@dc 25} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of Slarkrethel. If Slarkrethel dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 15 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 30 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}. Slarkrethel has ten tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fling", + "body": [ + "One Large or smaller object held or creature {@condition grappled} by Slarkrethel is thrown up to 60 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 18} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm", + "body": [ + "Slarkrethel magically creates three bolts of lightning, each of which can strike a target Slarkrethel can see within 120 feet of it. A target must make a {@dc 23} Dexterity saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tentacle Attack or Fling", + "body": [ + "Slarkrethel makes one tentacle attack or uses its Fling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm (Costs 2 Actions)", + "body": [ + "Slarkrethel uses Lightning Storm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ink Cloud (Costs 3 Actions)", + "body": [ + "While underwater, Slarkrethel expels an ink cloud in a 60-foot radius. The cloud spreads around corners, and that area is heavily obscured to creatures other than Slarkrethel. Each creature other than Slarkrethel that ends its turn there must succeed on a {@dc 23} Constitution saving throw, taking 16 ({@damage 3d10}) poison damage on a failed save, or half as much damage on a successful one. A strong current disperses the cloud, which otherwise disappears at the end of Slarkrethel's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Slarkrethel casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell control weather} (cast as 1 action)", + "{@spell fly}", + "{@spell ice storm}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell arcane eye}", + "{@spell chain lightning}", + "{@spell feeblemind}", + "{@spell foresight}", + "{@spell locate creature}", + "{@spell mass suggestion}", + "{@spell nondetection}", + "{@spell power word kill}", + "{@spell scrying} (cast as 1 action)", + "{@spell sequester}", + "{@spell telekinesis}", + "{@spell teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Slarkrethel-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Thane Kayalithica", + "source": "SKT", + "page": 153, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 170, + "formula": "11d12 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 23, + "dexterity": 15, + "constitution": 20, + "intelligence": 10, + "wisdom": 12, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+8", + "wis": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Stone Camouflage", + "body": [ + "The giant has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Olach Morrah", + "body": [ + "The giant meditates for 1 hour, during which time it can do nothing else. At the end of the hour, provided the giant's meditation has been uninterrupted, it becomes {@condition petrified} for 8 hours. At the end of this time, the giant is no longer {@condition petrified} and gains tremorsense out to a range of 30 feet, as well as a measure of innate spellcasting ability for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fling", + "body": [ + "The giant tries to throw a Small or Medium creature within 10 feet of it. The target must succeed on a {@dc 17} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of the giant's choice. and land {@condition prone}, taking {@damage 1d6} bludgeoning damage for every 10 feet it was thrown." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rolling Rock", + "body": [ + "The giant sends a rock tumbling along the ground in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 17} Dexterity saving throw, taking 22 ({@damage 3d10 + 6}) bludgeoning damage and falling {@condition prone} on a failed save" + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack", + "body": [ + "The giant makes two adamantine greatclub attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Rock Catching", + "body": [ + "If a rock or similar object is hurled at the giant, the giant can, with a successful {@dc 10} Dexterity saving throw, catch the missile and take no bludgeoning damage from it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The giant's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell meld into stone}", + "{@spell stone shape}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell stoneskin}", + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thane Kayalithica-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Thunderbeast Skeleton", + "source": "SKT", + "page": 99, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d12 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 11, + "constitution": 15, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., {@h}18 ({@damage 4d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@hit 7} to hit, reach 10 ft., one target. {@h}18 ({@damage 4d6 + 4}) bludgeoning damage. Succeed on a DC14 Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thunderbeast Skeleton-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Tressym", + "source": "SKT", + "page": 242, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "2d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 3, + "dexterity": 15, + "constitution": 10, + "intelligence": 11, + "wisdom": 12, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Detect Invisibility", + "body": [ + "Within 60 feet of the tressym, magical invisibility fails to conceal anything from the tressym's sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The tressym has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Sense", + "body": [ + "The tressym can detect whether a substance is poisonous by taste, touch, or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Familiar", + "body": [ + "With the DM's permission, a person who casts the {@spell find familiar} spell can choose to conjure a tressym instead of a normal cat." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tressym-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Urgala Meltimer", + "source": "SKT", + "page": 254, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 12, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Giant Slayer", + "body": [ + "Any weapon attack that Urgala makes against a giant deals an extra 7 ({@damage 2d6}) damage on a hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "A retired adventurer, Urgala owns a respectable inn, the North shield House, and she doesn't want to see it or her neighbors' homes destroyed. She has no tolerance for monsters or bullies.", + "Ideal: \"We live in a violent world, and sometimes violence is necessary for survival.\"", + "Bond: \"My home is my life. Threaten it, and I'll hurt you.\"", + "Flaw: \"I know how treacherous and greedy adventurers can be. I don't trust them\u2014any of them.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Urgala makes two attacks with her morningstar or her shortbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 1}) piercing damage. Urgala carries a quiver of twenty arrows." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Turami human", + "actions_note": "", + "mythic": null, + "key": "Urgala Meltimer-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Uthgardt Shaman", + "source": "SKT", + "page": 243, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 12, + "constitution": 13, + "intelligence": 10, + "wisdom": 15, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Bothii", + "Common" + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if wielded with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Requires a Sacred Bundle)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Requires a Sacred Bundle)", + "body": [ + "The shaman casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}; {@hit 4} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell message}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell augury} (cast as 1 action)", + "{@spell bestow curse}", + "{@spell cordon of arrows}", + "{@spell detect magic}", + "{@spell speak with dead}", + "{@spell spirit guardians}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Uthgardt Shaman-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Yakfolk Priest", + "source": "SKT", + "page": 245, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 12, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 11, + "constitution": 15, + "intelligence": 14, + "wisdom": 18, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Yikaria" + ], + "traits": [ + { + "title": "Possession (Recharges after a Short or Long Rest)", + "body": [ + "The yakfolk attempts to magically possess a humanoid or giant. The yakfolk must touch the target throughout a short rest, or the attempt fails. At the end of the rest, the target must succeed on a {@dc 12} Constitution saving throw or be possessed by the yakfolk, which disappears with everything it is carrying and wearing. Until the possession ends, the target is {@condition incapacitated}, loses control of its body, and is unaware of its surroundings. The yakfolk now controls the body and can't be targeted by any attack, spell, or other effect, and it retains its alignment; its Intelligence, Wisdom, and Charisma scores; and its proficiencies. It otherwise uses the target's statistics, except the target's knowledge, class features, feats, and proficiencies.", + "The possession lasts until either the body drops to 0 hit points, the yakfolk ends the possession as an action, or the yakfolk is forced out of the body by an effect such as the {@spell dispel evil and good} spell. When the possession ends, the yakfolk reappears in an unoccupied space within 5 feet of the body and is {@condition stunned} until the end of its next turn. If the host body dies while it is possessed by the yakfolk, the yakfolk dies as well, and its body doesn't reappear." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yakfolk makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, or 12 ({@damage 2d8 + 3}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Earth Elemental (1/Day)", + "body": [ + "The yakfolk summons an {@creature earth elemental}. The elemental appears in an unoccupied space within 60 feet of its summoner and acts as an ally of the summoner. It remains for 10 minutes, until it dies, or until its summoner dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The yakfolk is a 7th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The priest has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell command}", + "{@spell cure wounds}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bestow curse}", + "{@spell protection from energy}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell banishment}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yakfolk Priest-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Yakfolk Warrior", + "source": "SKT", + "page": 244, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 11, + "constitution": 15, + "intelligence": 14, + "wisdom": 15, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Yikaria" + ], + "traits": [ + { + "title": "Possession (Recharges after a Short or Long Rest)", + "body": [ + "The yakfolk attempts to magically possess a humanoid or giant. The yakfolk must touch the target throughout a short rest, or the attempt fails. At the end of the rest, the target must succeed on a {@dc 12} Constitution saving throw or be possessed by the yakfolk, which disappears with everything it is carrying and wearing. Until the possession ends, the target is {@condition incapacitated}, loses control of its body, and is unaware of its surroundings. The yakfolk now controls the body and can't be targeted by any attack, spell, or other effect, and it retains its alignment; its Intelligence, Wisdom, and Charisma scores; and its proficiencies. It otherwise uses the target's statistics, except the target's knowledge, class features, feats, and proficiencies.", + "The possession lasts until either the body drops to 0 hit points, the yakfolk ends the possession as an action, or the yakfolk is forced out of the body by an effect such as the {@spell dispel evil and good} spell. When the possession ends, the yakfolk reappears in an unoccupied space within 5 feet of the body and is {@condition stunned} until the end of its next turn. If the host body dies while it is possessed by the yakfolk, the yakfolk dies as well, and its body doesn't reappear." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The yakfolk makes two attacks, either with its greatsword or its longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 150/600 ft., one target. {@h}9 ({@damage 2d8}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yakfolk Warrior-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Zaltember", + "source": "SKT", + "page": 180, + "size_str": "Large", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 17, + "dexterity": 10, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zaltember-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Zephyros", + "source": "SKT", + "page": 33, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Good", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 27, + "dexterity": 10, + "constitution": 22, + "intelligence": 18, + "wisdom": 16, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+11", + "wis": "+8", + "cha": "+8" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "Zephyros has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fling", + "body": [ + "Zephyros tries to throw a Small or Medium creature within 10 feet of it. The target must succeed on a {@dc 20} Dexterity saving throw or be hurled up to 60 feet horizontally in a direction of Zephyros's choice and land {@condition prone}, taking {@damage 1d8} bludgeoning damage for every 10 feet it was thrown." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wind Aura", + "body": [ + "A magical aura of wind surrounds Zephyros. The aura is a 10-foot-radius sphere that lasts as long as he maintains {@status concentration} on it (as if {@status concentration||concentrating} on a spell). While the aura is in effect, Zephyros gains a +2 bonus to his AC against ranged weapon attacks, and all open flames within the aura are extinguished unless they are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack", + "body": [ + "Zephyros makes two staff attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of the Magi", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d6 + 10}) bludgeoning damage, or 23 ({@damage 3d8 + 10}) bludgeoning damage if used with two hands. This damage is considered magical.." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Zephyros's innate spellcasting ability is Charisma. He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell control weather}", + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Zephyros casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}, {@hit 11} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell message}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell gust of wind}", + "{@spell levitate}", + "{@spell magic missile}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell cone of cold}", + "{@spell contact other plane} (cast as 1 action)", + "{@spell greater invisibility}", + "{@spell mass suggestion}", + "{@spell nondetection}", + "{@spell Otiluke's resilient sphere}", + "{@spell protection from energy}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zephyros-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Zi Liang", + "source": "SKT", + "page": 251, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 12, + "dexterity": 15, + "constitution": 11, + "intelligence": 14, + "wisdom": 16, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish", + "Goblin" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While Zi is wearing no armor and wielding no shield, her AC includes her Wisdom modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Roleplaying Information", + "body": [ + "Zi Liang is a devout worshiper of Chauntea, the Earth Mother. She has considerably less faith in Goldenfields' defenders, so she patrols the temple-farm during her off-duty hours.", + "Ideal: \"If we faithfully tend to our gardens and our fields, Chauntea will smile upon us.\"", + "Bond: \"Goldenfields is the breadbasket of the North. People depend on its safety and prosperity, and I'll do what must be done to protect it.\"", + "Flaw: \"I don't trust authority. I do what my heart says is right.\"" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zi makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with both hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage. Zi carries twenty sling stones." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Shou human", + "actions_note": "", + "mythic": null, + "key": "Zi Liang-SKT", + "__dataclass__": "Monster" + }, + { + "name": "Expert", + "source": "SLW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 16, + "constitution": 12, + "intelligence": 14, + "wisdom": 10, + "charisma": 14, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Helpful", + "body": [ + "The expert can take the Help action as a bonus action, and the creature who receives the help gains a {@dice 1d6} bonus to the {@dice d20} roll. If that roll is an attack roll, the creature can forgo adding the bonus to it, and then if the attack hits, the creature can add the bonus to the attack's damage roll against one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tools", + "body": [ + "The expert has {@item thieves' tools|phb} and a musical instrument." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Extra Attack", + "body": [ + "The expert can attack twice, instead of once, whenever it takes the {@action Attack} action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Expert-SLW", + "__dataclass__": "Monster" + }, + { + "name": "Skull Flier", + "source": "SLW", + "page": 0, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 24, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, and the target must make a {@dc 11} Constitution saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces the target to 0 hit points, the target is stable but {@condition poisoned} for 1 hour, even after regaining hit points, and is {@condition paralyzed} while {@condition poisoned} in this way." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Skull Flier-SLW", + "__dataclass__": "Monster" + }, + { + "name": "Spellcaster (Healer)", + "source": "SLW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 15, + "wisdom": 16, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Potent Cantrip", + "body": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Healer)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Healer)", + "body": [ + "The spellcaster's spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The spellcaster has following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell resistance}", + "{@spell sacred flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell aid}", + "{@spell lesser restoration}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell protection from energy}", + "{@spell revivify}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell death ward}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "healer", + "actions_note": "", + "mythic": null, + "key": "Spellcaster (Healer)-SLW", + "__dataclass__": "Monster" + }, + { + "name": "Spellcaster (Mage)", + "source": "SLW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 16, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Potent Cantrip", + "body": [ + "The spellcaster can add its spellcasting ability modifier to the damage it deals with any cantrip." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Mage)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Mage)", + "body": [ + "The spellcaster's spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The spellcaster has following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell flaming sphere}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "mage", + "actions_note": "", + "mythic": null, + "key": "Spellcaster (Mage)-SLW", + "__dataclass__": "Monster" + }, + { + "name": "Statue of Talos", + "source": "SLW", + "page": 0, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 11, + "constitution": 20, + "intelligence": 6, + "wisdom": 11, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the statue remains motionless, it is indistinguishable from an inanimate statue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The statue makes five attacks: one with its headbutt and four with its lightning bolt blades." + ], + "__dataclass__": "Entry" + }, + { + "title": "Headbutt", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Bolt Blades", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Statue of Talos-SLW", + "__dataclass__": "Monster" + }, + { + "name": "Tooth-N-Claw", + "source": "SLW", + "page": 0, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 12, + "constitution": 14, + "intelligence": 6, + "wisdom": 13, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Infernal but can't speak it" + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "Tooth-N-Claw has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "Tooth-N-Claw has advantage on an attack roll against a creature if at least one of its allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Breath {@recharge 5}", + "body": [ + "Tooth-N-Claw exhales an icy blast in a 15-foot cone. Each creature in that area must make a {@dc 12} Dexterity saving throw, taking 21 ({@damage 6d6}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tooth-N-Claw-SLW", + "__dataclass__": "Monster" + }, + { + "name": "Warrior", + "source": "SLW", + "page": 0, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5" + }, + "languages": [ + "Common", + "plus one of your choice" + ], + "traits": [ + { + "title": "Battle Readiness", + "body": [ + "The warrior has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Improved Critical", + "body": [ + "The warrior's attack rolls score a critical hit on a roll of 19 or 20 on the d20." + ], + "__dataclass__": "Entry" + }, + { + "title": "Martial Role", + "body": [ + "The warrior has one of the following traits of your choice:", + { + "title": "Attacker", + "body": [ + "The warrior gains a +2 bonus to attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Defender", + "body": [ + "The warrior gains the Protection reaction below." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Extra Attack", + "body": [ + "The warrior can attack twice, instead of once, whenever it takes the {@action Attack} action on its turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection (Defender Only)", + "body": [ + "The warrior imposes disadvantage on the attack roll of a creature within 5 feet of it whose target isn't the warrior. The warrior must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warrior-SLW", + "__dataclass__": "Monster" + }, + { + "name": "Juvenile Mimic", + "source": "TCE", + "page": 167, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d4 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 12, + "constitution": 13, + "intelligence": 10, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Undercommon", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "False Appearance (Object Form Only)", + "body": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The mimic can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}1 piercing damage plus 2 ({@damage 1d4}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shape-Shift", + "body": [ + "The mimic polymorphs into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Juvenile Mimic-TCE", + "__dataclass__": "Monster" + }, + { + "name": "Mighty Servant of Leuk-o", + "source": "TCE", + "page": 131, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 310, + "formula": "27d12 + 135", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 30, + "dexterity": 14, + "constitution": 20, + "intelligence": 1, + "wisdom": 14, + "charisma": 10, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+9", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "incapacitated", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "understands the languages of creatures attuned to it but can't speak" + ], + "traits": [ + { + "title": "Immutable Existence", + "body": [ + "The servant is immune to any spell or effect that would alter its form or send it to another plane of existence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The servant has advantage on saving throws against spells and other magical effects, and spell attacks made against it have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The servant regains 10 hit points at the start of its turn. If it is reduced to 0 hit points, this trait doesn't function until an attuned creature spends 24 hours repairing the artifact or until the artifact is subjected to lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The servant's long jump is up to 50 feet and its high jump is up to 25 feet, with or without a running start." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The servant doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Destructive Fist", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 10 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage. Or Ranged Weapon Attack: {@hit 17} to hit, range 120 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage. If the target is an object, it takes triple damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crushing Leap", + "body": [ + "If the servant jumps at least 25 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures is pushed to an unoccupied space within 5 feet of the servant and must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 26 ({@damage 4d12}) bludgeoning damage and is knocked {@condition prone}. On a successful save, a creature takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mighty Servant of Leuk-o-TCE", + "__dataclass__": "Monster" + }, + { + "name": "Animated Table", + "source": "TftYP", + "page": 230, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 8, + "constitution": 13, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The table is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the table must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the table remains motionless, it is indistinguishable from a normal table." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charge", + "body": [ + "If the table moves at least 20 feet straight toward a target and then hits it with a ram attack on the same turn, the target takes an extra 9 ({@damage 2d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 6}, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Table-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Belak the Outcast", + "source": "TftYP", + "page": 9, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Druidic plus any two languages" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh or if wielded with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The druid is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell poison spray}", + "{@spell shillelagh}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell faerie fire}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell flaming sphere}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Belak the Outcast-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Calcryx", + "source": "TftYP", + "page": 23, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 15, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 5, + "wisdom": 10, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+4", + "wis": "+2", + "cha": "+2" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Draconic" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage plus 2 ({@damage 1d4}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Breath {@recharge 5}", + "body": [ + "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 22 ({@damage 5d8}) cold damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Calcryx-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Centaur Mummy", + "source": "TftYP", + "page": 231, + "size_str": "Large", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 12, + "constitution": 16, + "intelligence": 5, + "wisdom": 14, + "charisma": 12, + "passive": 12, + "saves": { + "wis": "+5" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the centaur mummy moves at least 20 feet straight toward a target and then hits it with a pike attack on the same turn, the target takes an extra 10 ({@damage 3d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The centaur mummy makes two melee attacks, one with its pike and one with its hooves, or it attacks with its pike and uses Dreadful Glare." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pike", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 14} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the {@spell remove curse} spell or similar magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Glare", + "body": [ + "The centaur mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, the target must succeed on a {@dc 12} Wisdom saving throw against this magic or become {@condition frightened} until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also {@condition paralyzed} for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Centaur Mummy-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Dread Warrior", + "source": "TftYP", + "page": 233, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 11, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the dread warrior to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the dread warrior drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dread warrior makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if wielded with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dread Warrior-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Duergar Spy", + "source": "TftYP", + "page": 234, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 16, + "constitution": 12, + "intelligence": 12, + "wisdom": 10, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of its turns, the spy can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Duergar Resilience", + "body": [ + "The spy has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack", + "body": [ + "Once per turn, the spy can deal an extra 7 ({@damage 2d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the spy that isn't {@condition incapacitated} and the spy doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the spy has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spy makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the spy magically increases in size, along with anything it is wearing or carrying. While enlarged, the spy is Large, doubles her damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the spy lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, or 10 ({@damage 2d6 + 3}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The spy magically turns {@condition invisible} until it attacks, deals damage, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the spy wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Duergar Spy-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Durnn", + "source": "TftYP", + "page": 25, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "{@item splint armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 12, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Martial Advantage", + "body": [ + "Once per turn, the hobgoblin can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a weapon attack if that creature is within 5 feet of an ally of the hobgoblin that isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Durnn-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Erky Timbers", + "source": "TftYP", + "page": 22, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Gnomish", + "Goblin" + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Channel Divinity: Turn Undead (1/Short Rest)", + "body": [ + "Erky presents his holy Symbol and speaks a prayer censuring the Undead. Each Undead that can see or hear Erky within 30 feet of him must make a {@dc 12} Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.", + "A turned creature must spend its turns trying to move as far away from Erky as it can, and it can't willingly move to a space within 30 feet of him. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The acolyte is a 1st-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The acolyte has following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell bless}", + "{@spell cure wounds}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gnome", + "actions_note": "", + "mythic": null, + "key": "Erky Timbers-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Four-Armed Gargoyle", + "source": "TftYP", + "page": 129, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 63, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 11, + "constitution": 16, + "intelligence": 6, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gargoyle makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Four-Armed Gargoyle-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Giant Crayfish", + "source": "TftYP", + "page": 235, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d10 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 13, + "constitution": 13, + "intelligence": 1, + "wisdom": 9, + "charisma": 3, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The giant crayfish can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant crayfish makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}). The crayfish has two claws, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Crayfish-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Giant Ice Toad", + "source": "TftYP", + "page": 235, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 8, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Ice Toad" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The toad can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cold Aura", + "body": [ + "Any creature that starts its turn within 10 feet of the toad takes 5 ({@damage 1d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The toad's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}, and the toad can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Medium or smaller creature the toad is grappling. {@h}10 ({@damage 2d6 + 3}) piercing damage, the target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the toad, and it takes 10 ({@damage 3d6}) acid damage and 11 ({@damage 2d10}) cold damage at the start of each of the toad's turns. The toad can have only one target swallowed at a time.", + "If the toad dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Ice Toad-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Giant Lightning Eel", + "source": "TftYP", + "page": 236, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 17, + "constitution": 16, + "intelligence": 2, + "wisdom": 12, + "charisma": 3, + "passive": 11, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Water Breathing", + "body": [ + "The eel can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eel makes two bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 4 ({@damage 1d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Jolt {@recharge 5}", + "body": [ + "One creature the eel touches within 5 feet of it outside water, or each creature within 15 feet of it in a body of water, must make a {@dc 12} Constitution saving throw. On failed save, a target takes 13 ({@damage 3d8}) lightning damage. If the target takes any of this damage, the target is {@condition stunned} until the end of the eel's next turn. On a successful save, a target takes half as much damage and isn't {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Lightning Eel-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Giant Skeleton", + "source": "TftYP", + "page": 236, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 115, + "formula": "10d12 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 21, + "dexterity": 10, + "constitution": 20, + "intelligence": 4, + "wisdom": 6, + "charisma": 6, + "passive": 8, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Giant but can't speak" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If the skeleton is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The skeleton has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Immunity", + "body": [ + "The skeleton is immune to effects that turn undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The skeleton makes three scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "SDW" + }, + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Skeleton-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Giant Subterranean Lizard", + "source": "TftYP", + "page": 236, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 21, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lizard makes two attacks: one with its bite and one with its tail. One attack can be replaced by Swallow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage and the target is {@condition grappled} (escape {@dc 15}). Until this grapple ends, the target is {@condition restrained}, and the lizard can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Medium or smaller creature the lizard is grappling. {@h}16 ({@damage 2d10 + 5}) piercing damage. The target is swallowed, and the grapple ends. The swallowed target is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the lizard, and it takes 10 ({@damage 3d6}) acid damage at the start of each of the lizard's turns. The lizard can have only one target swallowed at a time.", + "If the lizard dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Subterranean Lizard-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Greater Zombie", + "source": "TftYP", + "page": 237, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 4, + "wisdom": 6, + "charisma": 6, + "passive": 8, + "saves": { + "wis": "+1" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Turn Resistance", + "body": [ + "The zombie has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zombie makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Empowered Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage and 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "SDW" + }, + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Greater Zombie-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Grenl", + "source": "TftYP", + "page": 25, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 13, + "charisma": 8, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nimble Escape", + "body": [ + "The goblin can take the Disengage or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 4}, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4}, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Grenl is a 1st-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 11}, {@hit 3} to hit with spell attacks). She has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell poison spray}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell bane}", + "{@spell inflict wounds}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Grenl-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Guthash", + "source": "TftYP", + "page": 21, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 15, + "constitution": 11, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 10} Constitution saving throw or contract a disease. Until the disease is cured, the target can't regain hit points except by magical means, and the target's hit point maximum decreases by 3 ({@dice 1d6}) every 24 hours. If the target's hit point maximum drops to 0 as a result of this disease, the target dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guthash-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Huge Giant Crab", + "source": "TftYP", + "page": 103, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 15, + "constitution": 20, + "intelligence": 1, + "wisdom": 9, + "charisma": 3, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Banded Claw", + "body": [ + "On one of its claws, the crab wears a rune-covered copper band that makes it immune to being {@condition charmed}, {@condition frightened}, and {@condition paralyzed}. The copper band is worthless as a treasure, as the magic is keyed to this crab." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amphibious", + "body": [ + "The crab can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}27 ({@damage 4d10 + 5}) bludgeoning damage, and the target is {@condition grappled}, escape {@dc 14}. The crab has two claws, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SLW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Huge Giant Crab-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Kaarghaz", + "source": "TftYP", + "page": 45, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 6, + "wisdom": 10, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Draconic", + "Troglodyte" + ], + "traits": [ + { + "title": "Chameleon Skin", + "body": [ + "The troglodyte has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench", + "body": [ + "Any creature other than a troglodyte that starts its turn within 5 feet of the troglodyte must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all troglodytes for 1 hour." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the troglodyte has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The troglodyte makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Kaarghaz is a 4th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 6, + "spells": [ + "{@spell burning hands}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "troglodyte", + "actions_note": "", + "mythic": null, + "key": "Kaarghaz-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Kalka-Kylla", + "source": "TftYP", + "page": 238, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 12, + "constitution": 16, + "intelligence": 15, + "wisdom": 16, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "languages": [ + "Olman" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Kalka-Kylla can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While Kalka-Kylla remains motionless and hidden in its shell, it is indistinguishable from a polished boulder." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell", + "body": [ + "Kalka-Kylla can use a bonus action to retract into or emerge from its shell. While retracted, Kalka-Kylla gains a +4 bonus to AC, and it has a speed of 0 and can't benefit from bonuses to speed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Kalka-Kylla makes two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and if the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained}. Kalka-Kylla has two claws, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kalka-Kylla-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Kelpie", + "source": "TftYP", + "page": 238, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 14, + "dexterity": 14, + "constitution": 16, + "intelligence": 7, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kelpie can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Seaweed Shape", + "body": [ + "The kelpie can use its action to reshape its body into the form of a humanoid or beast that is Small, Medium, or Large. Its statistics are otherwise unchanged. The disguise is convincing, unless the kelpie is in bright light or the viewer is within 30 feet of it, in which case the seams between the seaweed strands are visible. The kelpie returns to its true form if takes a bonus action to do so or if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the kelpie remains motionless in its true form, it is indistinguishable from normal seaweed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kelpie makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 12})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drowning Hypnosis", + "body": [ + "The kelpie chooses one humanoid it can see within 150 feet of it. If the target can see the kelpie, the target must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition charmed} while the kelpie maintains {@status concentration}, up to 10 minutes (as if {@status concentration||concentrating} on a spell). The {@condition charmed} target is {@condition incapacitated}, and instead of holding its breath underwater, it tries to breathe normally and immediately runs out of breath, unless it can breathe water. If the {@condition charmed} target is more than 5 feet away from the kelpie, the target must move on its turn toward the kelpie by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks.", + "Before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the kelpie or drowning, the target can repeat the saving throw. A {@condition charmed} target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", + "A target that successfully saves is immune to this kelpie's hypnosis for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kelpie-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Malformed Kraken", + "source": "TftYP", + "page": 239, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 25, + "dexterity": 11, + "constitution": 20, + "intelligence": 11, + "wisdom": 15, + "charisma": 15, + "passive": 12, + "saves": { + "str": "+11", + "con": "+9", + "int": "+4", + "wis": "+6", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "understands Common but can't speak", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The kraken can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The kraken deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kraken makes three tentacle attacks. One of them can be replaced with a bite attack, and any of them can be replaced with Fling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 20 ft., one target. {@h}14 ({@damage 2d6 + 7}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained}. The kraken has ten tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fling", + "body": [ + "One Medium or smaller object held or creature {@condition grappled} by the kraken's tentacles is thrown up to 60 feet in a random direction and knocked {@condition prone}. If a thrown target strikes a solid surface, the target takes 3 ({@damage 1d6}) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a {@dc 16} Dexterity saving throw or take the same damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Storm", + "body": [ + "The kraken creates three bolts of lightning, each of which can strike a target the kraken can see within 150 feet of it. A target must make a {@dc 16} Dexterity saving throw, taking 16 ({@damage 3d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Malformed Kraken-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Nahual", + "source": "TftYP", + "page": 91, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The doppelganger can use its action to polymorph into a Small or Medium humanoid it has seen, or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ambusher", + "body": [ + "In the first round of a combat, the doppelganger has advantage on attack rolls against any creature it has {@status surprised}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Surprise Attack", + "body": [ + "If the doppelganger surprises a creature and hits it with an attack during the first round of combat, the target takes an extra 10 ({@damage 3d6}) damage from the attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The doppelganger makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Read Thoughts", + "body": [ + "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's {@status concentration} isn't broken (as if {@status concentration||concentrating} on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom ({@skill Insight}) and Charisma ({@skill Deception}, {@skill Intimidation}, and {@skill Persuasion}) checks against the target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Nahual-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Nereid", + "source": "TftYP", + "page": 240, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Any Chaotic Alignment", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 17, + "constitution": 12, + "intelligence": 13, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Aquan", + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The nereid can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aquatic Invisibility", + "body": [ + "If immersed in water, the nereid can make itself {@condition invisible} as a bonus action. It remains {@condition invisible} until it leaves the water, ends the invisibility as a bonus action, or dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mantle Dependent", + "body": [ + "The nereid wears a mantle of silky cloth the color of sea foam, which holds the creature's spirit. The mantle has an AC and hit points equal to that of the nereid, but the garment can't be directly harmed while the nereid wears it. If the mantle is destroyed, the nereid becomes {@condition poisoned} and dies within 1 hour. A nereid is willing to do anything in its power to recover the mantle if it is stolen, including serving the thief." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shape Water", + "body": [ + "The nereid can cast {@spell control water} at will, requiring no components. Its spellcasting ability for it is Charisma. This use of the spell has a range of 30 feet and can affect a cube of water no larger than 30 feet on a side." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak With Animals", + "body": [ + "The nereid can comprehend and verbally communicate with beasts." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Blinding Acid", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 30 ft., one target. {@h}16 ({@damage 2d12 + 3}) acid damage, and the target is {@condition blinded} until the start of the nereid's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drowning Kiss {@recharge 5}", + "body": [ + "The nereid touches one creature it can see within 5 feet of it. The target must succeed on a {@dc 13} Constitution saving throw or take 22 ({@damage 3d12 + 3}) acid damage. On a failure, it also runs out of breath and can't speak for 1 minute. At the end of each of its turns, it can repeat the save, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Lash", + "body": [ + "The nereid causes a 5-foot cube of water within 60 feet of it to take a shape of its choice and strike one target it can see within 5 feet of that water. The target must make a {@dc 13} Strength saving throw. On a failed save, it takes 17 ({@damage 4d6 + 3}) bludgeoning damage, and if it is a Large or smaller creature, it is pushed up to 15 feet in a straight line or is knocked {@condition prone} (nereid's choice). On a successful save, the target takes half as much damage and isn't pushed or knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nereid-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Ooze Master", + "source": "TftYP", + "page": 241, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 9, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 16, + "dexterity": 1, + "constitution": 20, + "intelligence": 17, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Common", + "Primordial", + "Thayan" + ], + "traits": [ + { + "title": "Corrosive Form", + "body": [ + "A creature that touches the Ooze Master or hits it with a melee attack while within 5 feet of it takes 9 ({@damage 2d8}) acid damage. Any nonmagical weapon that hits the Ooze Master corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. If its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition that hits the Ooze Master is destroyed after dealing damage.", + "The Ooze Master can eat through 2-inch-thick, nonmagical wood or metal in 1 round." + ], + "__dataclass__": "Entry" + }, + { + "title": "Instinctive Attack", + "body": [ + "When the Ooze Master casts a spell with a casting time of 1 action, it can make one pseudopod attack as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The Ooze Master can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 3d6 + 3}) bludgeoning damage plus 10 ({@damage 3d6}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Instinctive Charm", + "body": [ + "If a creature the Ooze Master can see makes an attack roll against it while within 30 feet of it, the Ooze Master can use a reaction to divert the attack if another creature is within the attack's range. The attacker must make a {@dc 15} Wisdom saving throw. On a failed save, the attacker targets the creature that is closest to it, not including itself or the Ooze Master. If multiple creatures are closest, the attacker chooses which one to target. On a successful save, the attacker is immune to this Instinctive Charm for 24 hours. Creatures that can't be {@condition charmed} are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The Ooze Master is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell ray of sickness}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell Melf's acid arrow}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fear}", + "{@spell slow}", + "{@spell stinking cloud}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell Evard's black tentacles}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cloudkill}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ooze Master-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Sea Lion", + "source": "TftYP", + "page": 242, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 17, + "dexterity": 15, + "constitution": 15, + "intelligence": 3, + "wisdom": 12, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Amphibious", + "body": [ + "The sea lion can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The sea lion has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The sea lion has advantage on an attack roll against a creature if at least one of the sea lion's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swimming Leap", + "body": [ + "With a 10-foot swimming start, the sea lion can long jump out of or across the water up to 25 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sea lion makes three attacks: one bite attack and two claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "LR" + }, + { + "source": "GoS", + "page": 252 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sea Lion-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Sharwyn Hucrele", + "source": "TftYP", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "Barkskin trait", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 13, + "constitution": 14, + "intelligence": 16, + "wisdom": 14, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Draconic", + "Goblin" + ], + "traits": [ + { + "title": "Barkskin", + "body": [ + "Sharwyn's AC can't be lower than 16." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Sharwyn has a {@item spellbook|phb} that contains the spells listed in her Spellcasting trait, plus {@spell detect magic} and {@spell silent image}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tree Thrall", + "body": [ + "If the Gulthias Tree dies, Sharwyn dies 24 hours later." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4}, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Sharwyn is a 1st-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell color spray}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Sharwyn Hucrele-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Sir Braford", + "source": "TftYP", + "page": 243, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 9, + "constitution": 14, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Barkskin", + "body": [ + "Sir Braford's AC can't be lower than 16." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Sir Braford wields {@item Shatterspike|tftyp}, a magic longsword that grants a +1 bonus to attack and damage rolls made with it (included in his attack). See the Shatterspike handout for the item's other properties." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tree Thrall", + "body": [ + "If the Gulthias Tree dies, Sir Braford dies 24 hours later." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection", + "body": [ + "When a creature Sir Braford can see attacks a target other than him that is within 5 feet of him, he can use a reaction to use his shield to impose disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Sir Braford-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Siren", + "source": "TftYP", + "page": 243, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 18, + "constitution": 12, + "intelligence": 13, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Siren can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Siren has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stupefying Touch", + "body": [ + "Siren touches one creature she can see within 5 feet of her. The creature must succeed on a {@dc 13} Intelligence saving throw or take 13 ({@damage 3d6 + 3}) psychic damage and be {@condition stunned} until the start of Siren's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Siren's innate spellcasting ability is Charisma (spell save {@dc 13}). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell fog cloud}", + "{@spell greater invisibility}", + "{@spell polymorph} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Siren-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Snarla", + "source": "TftYP", + "page": 102, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "in humanoid form", + "__dataclass__": "AC" + }, + { + "value": 12, + "note": "in wolf and hybrid forms", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(40 ft. in wolf form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 15, + "dexterity": 13, + "constitution": 14, + "intelligence": 16, + "wisdom": 11, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common (can't speak in wolf form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "The werewolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Humanoid or Hybrid Form Only)", + "body": [ + "The werewolf makes two attacks: one with its bite and one with its claws or spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Wolf or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 12} Constitution saving throw or be cursed with werewolf lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws (Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear (Humanoid Form Only)", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Snarla is a 6th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, +6 to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fear}", + "{@spell haste}", + "{@spell stinking cloud}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Snarla-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Snurrevin", + "source": "TftYP", + "page": 53, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 11, + "constitution": 14, + "intelligence": 14, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Duergar Resilience", + "body": [ + "The duergar has advantage on saving throws against poison, spells, and illusions, as well as to resist being {@condition charmed} or {@condition paralyzed}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the duergar has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available." + ], + "__dataclass__": "Entry" + }, + { + "title": "War Pick", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, or 11 ({@damage 2d8 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 9 ({@damage 2d6 + 2}) piercing damage while enlarged." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Recharges after a Short or Long Rest)", + "body": [ + "The duergar magically turns {@condition invisible} until it attacks, casts a spell, or uses its Enlarge, or until its {@status concentration} is broken, up to 1 hour (as if {@status concentration||concentrating} on a spell). Any equipment the duergar wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Snurrevin is a 3rd-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell color spray}", + "{@spell shield}", + "{@spell silent image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell hold person}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Snurrevin-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Tarul Var", + "source": "TftYP", + "page": 244, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 11, + "dexterity": 16, + "constitution": 16, + "intelligence": 19, + "wisdom": 14, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+9", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal", + "Primordial", + "Thayan" + ], + "traits": [ + { + "title": "Focused Conjuration", + "body": [ + "While Var is {@status concentration||concentrating} on a conjuration spell, his {@status concentration} can't be broken as a result of taking damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Var fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If Var is destroyed but his phylactery remains intact, Var gains a new body in {@dice 1d10} days, regaining all his hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "Var has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Paralyzing Touch", + "body": [ + "{@atk ms} {@hit 9} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 17} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Benign Transposition", + "body": [ + "Var teleports up to 30 feet to an unoccupied space he can see. Alternatively, he can choose a space within range that is occupied by a Small or Medium creature. If that creature is willing, both creatures teleport, swapping places. Var can use this feature again only after he finishes a long rest or casts a conjuration spell of 1st level or higher." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip", + "body": [ + "Var casts a cantrip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Touch (Costs 2 Actions)", + "body": [ + "Var uses Paralyzing Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightening Gaze (Costs 2 Actions)", + "body": [ + "Var fixes his gaze on one creature he can see within 10 feet of him. The target must succeed on a {@dc 17} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to Var's gaze for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Var is a 12th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He has the following wizard spells prepared:", + "*Conjuration spell of 1st level or higher" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell unseen servant}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell flaming sphere}*", + "{@spell mirror image}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dimension door}*", + "{@spell Evard's black tentacles}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloudkill}*", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell circle of death}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tarul Var-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Tecuziztecatl", + "source": "TftYP", + "page": 245, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 10, + "constitution": 16, + "intelligence": 15, + "wisdom": 16, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "languages": [ + "Olman", + "Primordial" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Tecuziztecatl can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glowing", + "body": [ + "Tecuziztecatl sheds dim light within 20 feet of itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flexible", + "body": [ + "Tecuziztecatl can enter a space large enough for a Medium creature without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Tecuziztecatl can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tecuziztecatl makes two pseudopod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Acid {@recharge 4}", + "body": [ + "Tecuziztecatl exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a {@dc 13} Dexterity saving throw, taking 18 ({@damage 4d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tecuziztecatl-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Thayan Apprentice", + "source": "TftYP", + "page": 245, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 15, + "wisdom": 13, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Thayan" + ], + "traits": [ + { + "title": "Doomvault Devotion", + "body": [ + "Within the Doomvault, the apprentice has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice is a 4th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blur}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Thayan Apprentice-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Thayan Warrior", + "source": "TftYP", + "page": 246, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 16, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Thayan" + ], + "traits": [ + { + "title": "Doomvault Devotion", + "body": [ + "Within the Doomvault, the warrior has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The warrior has advantage on an attack roll against a creature if at least one of the warrior's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warrior makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Thayan Warrior-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Thorn Slinger", + "source": "TftYP", + "page": 246, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d10 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Adhesive Blossoms", + "body": [ + "The thorn slinger adheres to anything that touches it. A Medium or smaller creature adhered to the thorn slinger is also {@condition grappled} by it (escape {@dc 11}). Ability checks made to escape this grapple have disadvantage.", + "At the end of each of the thorn slinger's turns, anything {@condition grappled} by it takes 3 ({@damage 1d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the thorn slinger remains motionless, it is indistinguishable from an inanimate bush." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Thorns", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 30 ft., one target. {@h}8 ({@damage 2d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thorn Slinger-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Tloques-Popolocas", + "source": "TftYP", + "page": 68, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 16, + "constitution": 16, + "intelligence": 11, + "wisdom": 10, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The vampire regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or running water. If the vampire takes radiant damage or damage from holy water, this trait doesn't function at the start of the vampire's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vampire can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "The vampire has the following flaws:", + "Forbiddance. The vampire can't enter a residence without an invitation from one of the occupants.", + "Harmed by Running Water. The vampire takes 20 acid damage when it ends its turn in running water.", + "Stake to the Heart. The vampire is destroyed if a piercing weapon made of wood is driven into its heart while it is {@condition incapacitated} in its resting place.", + "Sunlight Hypersensitivity. The vampire takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "If the vampire isn't in sunlight or running water, it can use its action to Polymorph into a Tiny bat, or back into its true form.", + "While in bat form, the vampire can't speak, its walking speed is 5 feet, and it has a flying speed of 30 feet. Its Statistics, other than its size and speed, are unchanged. Anything it is wearing transforms with it, but nothing it is carrying does. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vampire makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}8 ({@damage 2d4 + 3}) slashing damage. Instead of dealing damage, the vampire can grapple the target, escape {@dc 13}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Children of the Night (1/Day)", + "body": [ + "The vampire magically calls {@dice 2d4} swarms of bats, provided that the sun isn't up. The called creatures arrive in {@dice 1d4} rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tloques' Berserker Axe +2", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": null, + "header": { + "title": "Innate Spellcasting", + "body": [ + "Tloques can cast {@spell hold person} ({@dc 14}) at will, requiring no components, but his target must be able to see him." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tloques-Popolocas-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "White Maw", + "source": "TftYP", + "page": 248, + "size_str": "Gargantuan", + "maintype": "ooze", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 5 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 217, + "formula": "14d20 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 18, + "dexterity": 1, + "constitution": 20, + "intelligence": 12, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "telepathy 50 ft." + ], + "traits": [ + { + "title": "Amorphous Form", + "body": [ + "White Maw can occupy another creature's space and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrode Metal", + "body": [ + "Any nonmagical weapon made of metal that hits White Maw corrodes. After dealing damage, the weapon takes a permanent and cumulative \u22121 penalty to damage rolls. if its penalty drops to \u22125, the weapon is destroyed. Nonmagical ammunition made of metal that hits White Maw is destroyed after dealing damage.", + "White Maw can eat through 2-inch-thick, nonmagical metal in 1 round." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While White Maw remains motionless, it is indistinguishable from white stone." + ], + "__dataclass__": "Entry" + }, + { + "title": "Killer Response", + "body": [ + "Any creature that starts its turn in White Maw's space is targeted by a pseudopod attack if White Maw isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage plus 9 ({@damage 2d8}) acid damage. If the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative \u22121 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "White Maw-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Yusdrayl", + "source": "TftYP", + "page": 248, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Yusdrayl has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "Yusdrayl has advantage on an attack roll against a creature if at least one of her allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Yusdrayl is a 2nd-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}", + "{@spell chromatic orb}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Yusdrayl-TftYP", + "__dataclass__": "Monster" + }, + { + "name": "Acererak", + "source": "ToA", + "page": 209, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 285, + "formula": "30d8 + 150", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 13, + "dexterity": 16, + "constitution": 20, + "intelligence": 27, + "wisdom": 21, + "charisma": 20, + "passive": 22, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "int": "+15", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Giant", + "Infernal", + "Primordial", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Acererak carries the {@item Staff of the Forgotten One|ToA}. He wears a {@item Talisman of the Sphere} and has a {@item Sphere of Annihilation} under his control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Acererak fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "Acererak's body turns to dust when he drops to 0 hit points, and his equipment is left behind. Acererak gains a new body after {@dice 1d10} days, regaining all his hit points and becoming active again. The new body appears within 5 feet of Acererak's phylactery, the location of which is hidden." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "Acererak has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Paralyzing Touch", + "body": [ + "{@atk ms} {@hit 15} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage, and the target must succeed on a {@dc 20} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff (+3 Quarterstaff)", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage, or 8 ({@damage 1d8 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) necrotic damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invoke Curse", + "body": [ + "While holding the Staff of the Forgotten One, Acererak expends 1 charge from it and targets one creature he can see within 60 feet of him. The target must succeed on a {@dc 23} Constitution saving throw or be cursed. Until the curse is ended, the target can't regain hit points and has vulnerability to necrotic damage. {@spell Greater restoration}, {@spell remove curse}, or similar magic ends the curse on the target." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "At-Will Spell", + "body": [ + "Acererak casts one of his at-will spells." + ], + "__dataclass__": "Entry" + }, + { + "title": "Melee Attack", + "body": [ + "Acererak uses Paralyzing Touch or makes one melee attack with his staff." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightening Gaze (Costs 2 Actions)", + "body": [ + "Acererak fixes his gaze on one creature he can see within 10 feet of him. The target must succeed on a {@dc 20} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target its immune to Acererak's gaze for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talisman of the Sphere (Costs 2 Actions)", + "body": [ + "Acererak uses his {@item Talisman of the Sphere} to move the {@item Sphere of Annihilation} under his control up to 90 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disrupt Life (Costs 3 Actions)", + "body": [ + "Each creature within 20 feet of Acererak must make a {@dc 20} Constitution saving throw against this magic, taking 42 ({@damage 12d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Acererak is a 20th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 23}, {@hit 15} to hit with spell attacks). Acererak has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 0, + "spells": [ + "{@spell ray of sickness}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 0, + "spells": [ + "{@spell arcane lock}", + "{@spell knock}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 0, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell ice storm}", + "{@spell phantasmal killer}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell hold monster}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell chain lightning}", + "{@spell circle of death}", + "{@spell disintegrate}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell maze}", + "{@spell mind blank}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell power word kill}", + "{@spell time stop}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Acererak-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Albino Dwarf Spirit Warrior", + "source": "ToA", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 13, + "constitution": 17, + "intelligence": 12, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "The dwarf has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Handaxe", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The dwarf's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell hunter's mark}", + "{@spell jump}", + "{@spell pass without trace}", + "{@spell speak with animals}", + "{@spell speak with plants}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Albino Dwarf Spirit Warrior-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Albino Dwarf Warrior", + "source": "ToA", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 13, + "constitution": 17, + "intelligence": 12, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "The dwarf has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Handaxe", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Albino Dwarf Warrior-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Aldani (Lobsterfolk)", + "source": "ToA", + "page": 210, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 8, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The aldani can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aldani makes two attacks with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, and the target is {@condition grappled} (escape {@dc 11}). The aldani has two claws, each of which can grapple only one target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aldani (Lobsterfolk)-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Almiraj", + "source": "ToA", + "page": 211, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 16, + "constitution": 10, + "intelligence": 2, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Keen Senses", + "body": [ + "The almiraj has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Familiar", + "body": [ + "With the DM's permission, the {@spell find familiar} spell can summon an almiraj." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Horn", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Almiraj-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Ankylosaurus Zombie", + "source": "ToA", + "page": 240, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d12 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 9, + "constitution": 15, + "intelligence": 2, + "wisdom": 6, + "charisma": 3, + "passive": 8, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target {@h}18 ({@damage 4d6 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ankylosaurus Zombie-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Artus Cimber", + "source": "ToA", + "page": 212, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 10, + "dexterity": 15, + "constitution": 13, + "intelligence": 17, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": [ + "cold" + ], + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Goblin" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Artus wears the {@item Ring of Winter|toa}. He and the ring can't be targeted by divination magic or perceived through magical scrying sensors. While attuned to and wearing the ring, Artus ceases to age and is immune to cold damage and the effects of extreme cold.", + "Artus wields {@item Bookmark|toa} a +3 dagger with additional magical properties. As a bonus action, Artus can activate any one of the following properties while attuned to the dagger, provided he has the weapon drawn:", + "Cause a blue gem set into the dagger's pommel to shed bright light in a 20-foot radius and dim light for an additional 20 feet, or make the gem go dark.", + "Turn the dagger into a compass that, while resting on your palm, points north.", + "Cast {@spell dimension door} from the dagger. Once this property is used, it can't be used again until the next dawn.", + "Cast {@spell compulsion} (save {@dc 15}) from the dagger. The range of the spell increases to 90 feet but it targets only spiders that are beasts. Once this property is used, it can't be used again until the next dawn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Artus makes three attacks with Bookmark or his longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bookmark (+3 Dagger)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ring of Winter", + "body": [ + "The Ring of Winter has 12 charges and regains all its expended charges daily at dawn. While attuned to and wearing the ring, Artus can expend the necessary number of charges to activate one of the following properties:", + "Artus can expend 1 charge and use the ring to lower the temperature in a 120-foot-radius sphere centered on a point he can see within 300 feet of him. The temperature in that area drops 20 degrees per minute, to a minimum of \u221230 degrees Fahrenheit. Frost and ice begin to form on surfaces once the temperature drops below 32 degrees. This effect is permanent unless Artus uses the ring to end the effect as an action, at which point the temperature in the area returns to normal at a rate of 10 degrees per minute.", + "Artus can cast one of the following spells from the ring (spell save {@dc 17}) by expending the necessary number of charges: {@spell Bigby's hand} (2 charges) the hand is made of ice, is immune to cold damage, and deals bludgeoning damage instead of force damage as a clenched fist, {@spell cone of cold} (2 charges), {@spell flesh to stone||flesh to ice} (3 charges); as flesh to stone except that the target turns to solid ice with the density and durability of stone, {@spell ice storm} (2 charges), {@spell Otiluke's freezing sphere} (3 charges), {@spell sleet storm} (1 charge), {@spell spike growth} (1 charge) the spikes are made of ice, or {@spell wall of ice} (2 charges).", + "Artus can expend the necessary number of charges and use the ring to create either an inanimate ice object (2 charges) or an animated ice creature (4 charges). The ice object can't have any moving parts, must be able to fit inside a 10-foot cube, and has the density and durability of metal or stone (Artus's choice). The ice creature must be modeled after a beast with a challenge rating of 2 or less. The ice creature has the same statistics as the beast it models, with the following changes: the creature is a construct with vulnerability to fire damage, immunity to cold and poison damage, and immunity to the following conditions: {@condition charmed}, {@condition exhaustion}, {@condition frightened}, {@condition paralyzed}, {@condition petrified}, and {@condition poisoned}. The ice creature obeys only its creator's commands. The object or creature appears in an unoccupied space within 60 feet of Artus. It melts into a pool of normal water after 24 hours or when it drops to 0 hit points. In extreme heat, it loses 5 ({@dice 1d10}) hit points per minute as it melts. Use the guidelines in chapter 8 of the Dungeon Master's Guide to determine the hit points of an inanimate object if they become necessary." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Artus Cimber-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Asharra", + "source": "ToA", + "page": 69, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 10, + "intelligence": 14, + "wisdom": 17, + "charisma": 11, + "passive": 17, + "skills": { + "skills": [ + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "traits": [ + { + "title": "Dive Attack", + "body": [ + "If the aarakocra is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 3 ({@damage 1d6}) damage to the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dance of the Seven Winds", + "body": [ + "Asharra knows a ritual called the Dance of the Seven Winds, which temporarily grants magical flight to as many as ten nonflying creatures. The ritual, which takes 10 minutes to complete, can only be performed by an aarakocra elder and requires a black orchid as a material component.", + "Asharra must grind the orchid to powder, inhale it, and dance in circles around the ritual's beneficiaries uninterrupted while seven other aarakocra chant prayers to the Wind Dukes of Aaqa. When the dance concludes, Asharra's wings disappear and she loses the ability to fly. The ritual's beneficiaries each gain a magical flying speed of 30 feet (allowing them to fly 4 miles per hour). This benefit lasts for 3 days, after which Asharra's wings reappear and she regains the ability to fly." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Air Elemental", + "body": [ + "Five aarakocra within 30 feet of each other can magically summon an {@creature air elemental}. Each of the five must use its action and movement on three consecutive turns to perform an aerial dance and must maintain {@status concentration} while doing so (as if {@status concentration||concentrating} on a spell). When all five have finished their third turn of the dance, the elemental appears in an unoccupied space within 60 feet of them. It is friendly toward them and obeys their spoken commands. It remains for 1 hour, until it or all its summoners die, or until any of its summoners dismisses it as a bonus action. A summoner can't perform the dance again until it finishes a short rest. When the elemental returns to the Elemental Plane of Air, any aarakocra within 5 feet of it can return with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Asharra is a 5th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Asharra has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell mending}", + "{@spell produce flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell faerie fire}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell hold person}", + "{@spell lesser restoration}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell call lightning}", + "{@spell wind wall}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "aarakocra", + "actions_note": "", + "mythic": null, + "key": "Asharra-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Assassin Vine", + "source": "ToA", + "page": 213, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 5, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 10, + "constitution": 16, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the assassin vine remains motionless, it is indistinguishable from a normal plant." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 20 ft., one creature. {@h}The target takes 11 ({@damage 2d6 + 4}) bludgeoning damage, and it is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, and it takes 21 ({@damage 6d6}) poison damage at the start of each of its turns. The vine can constrict only one target at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entangling Vines", + "body": [ + "The assassin vine can animate normal vines and roots on the ground in a 15-foot square within 30 feet of it. These plants turn the ground in that area into {@quickref difficult terrain||3}. A creature in that area when the effect begins must succeed on a {@dc 13} Strength saving throw or be {@condition restrained} by entangling vines and roots. A creature {@condition restrained} by the plants can use its action to make a {@dc 13} Strength ({@skill Athletics}) check, freeing itself on a successful check. The effect ends after 1 minute or when the assassin vine dies or uses Entangling Vines again." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "SDW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Assassin Vine-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Atropal", + "source": "ToA", + "page": 214, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 7 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 225, + "formula": "18d12 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 19, + "dexterity": 5, + "constitution": 22, + "intelligence": 25, + "wisdom": 19, + "charisma": 24, + "passive": 14, + "saves": { + "con": "+11", + "wis": "+9" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 120 ft." + ], + "languages": [ + "understands Celestial but utters only obscene nonsense" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The atropal has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Negative Energy Aura", + "body": [ + "Creatures within 30 feet of the atropal can't regain hit points, and any creature that starts its turn within 30 feet of the atropal takes 10 ({@damage 3d6}) necrotic damage. If the atropal is struck by a {@item vorpal sword}, the wielder can cut the atropal's umbilical cord instead of dealing damage. If its umbilical cord is cut, the atropal loses this feature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance Aura", + "body": [ + "The atropal and any other undead creature within 30 feet of it has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Touch", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Cold", + "body": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}21 ({@damage 6d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "The atropal targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 19} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. The atropal regains a number of hit points equal to half the amount of damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Wraith {@recharge}", + "body": [ + "The atropal summons a {@creature wraith} which materializes within 30 feet of it in an unoccupied space it can see. The wraith obeys its summoner's commands and can't be controlled by any other creature. The Wraith vanishes when it drops to 0 hit points or when its summoner dies." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Touch", + "body": [ + "The atropal makes a touch attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ray of Cold (Costs 2 Actions)", + "body": [ + "The atropal uses its Ray of Cold." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wail (Costs 3 Actions)", + "body": [ + "The atropal lets out a withering wail. Any creature within 120 feet of the atropal that can hear the wail must succeed on a {@dc 19} Constitution saving throw or gain 1 level of {@condition exhaustion}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Atropal-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Bag of Nails", + "source": "ToA", + "page": 102, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 16, + "constitution": 14, + "intelligence": 13, + "wisdom": 11, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+4" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Thieves' cant", + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Feline Agility", + "body": [ + "When Bag of Nails moves on its turn in combat, he can double his speed until the end of the turn. Once he uses this trait, Bag of Nails can't use it again until he moves 0 feet on one of his turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Assassinate", + "body": [ + "During his first turn, Bag of Nails has advantage on attack rolls against any creature that hasn't taken a turn. Any hit Bag of Nails scores against a {@status surprised} creature is a critical hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If Bag of Nails is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Bag of Nails instead takes no damage if he succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Bag of Nails deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of his that isn't {@condition incapacitated} and Bag of Nails doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bag of Nails makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "tabaxi", + "actions_note": "", + "mythic": null, + "key": "Bag of Nails-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Chwinga", + "source": "ToA", + "page": 216, + "size_str": "Tiny", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 5, + "formula": "2d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 20, + "constitution": 10, + "intelligence": 14, + "wisdom": 16, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The chwinga doesn't require air, food, or drink. When it dies, it turns into a handful of flower petals, a cloud of pollen, a stone statuette resembling its former self, a tiny sphere of smooth stone, or a puddle of fresh water (your choice)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "When the chwinga is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Magical Gift (1/Day)", + "body": [ + "The chwinga targets a humanoid it can see within 5 feet of it. The target gains a {@filter supernatural charm|rewards|type=charm} of the DM's choice. See {@book chapter 7|DMG|7|Other Rewards} of the Dungeon Masters Guide for more information on supernatural charms." + ], + "__dataclass__": "Entry" + }, + { + "title": "Natural Shelter", + "body": [ + "The chwinga magically takes shelter inside a rock, a living plant, or a natural source of fresh water in its space. The chwinga can't be targeted by any attack, spell, or other effect while inside this shelter, and the shelter doesn't impair the chwinga's blindsight. The chwinga can use its action to emerge from a shelter. If its shelter is destroyed, the chwinga is forced out and appears in the shelter's space, but is otherwise unharmed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The chwinga's innate spellcasting ability is Wisdom. It can innately cast the following spells, requiring no material or verbal components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}", + "{@spell pass without trace}", + "{@spell resistance}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chwinga-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Clay Gladiator", + "source": "ToA", + "page": 100, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "dex": "+5", + "con": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Climbing", + "body": [ + "The gladiator can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steadfast", + "body": [ + "The gladiator can't be disarmed, and cannot make ranged attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when the gladiator hits with it (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gladiator makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield Bash", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The gladiator adds 3 to its AC against one melee attack that would hit it. To do so, the gladiator must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clay Gladiator-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Dragonbait", + "source": "ToA", + "page": 218, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "{@item breastplate|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 15, + "dexterity": 13, + "constitution": 17, + "intelligence": 14, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+7" + }, + "cond_immunities": [ + { + "value": "disease", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Divine Health", + "body": [ + "Dragonbait is immune to disease." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "While holding his {@item holy avenger longsword}, Dragonbait creates an aura in a 10-foot radius around him. While this aura is active, Dragonbait and all creatures friendly to him in the aura have advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Dragonbait makes two melee weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Holy Avenger (+3 Longsword)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage, or 10 ({@damage 1d10 + 5}) slashing damage when used with two hands. If the target is a fiend or an undead it takes an extra 11 ({@damage 2d10}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sense Alignment", + "body": [ + "Dragonbait chooses one creature he can see within 60 feet of him and determines its alignment, as long as the creature isn't hidden from divination magic by a spell or other magical effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "saurial", + "actions_note": "", + "mythic": null, + "key": "Dragonbait-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Eblis", + "source": "ToA", + "page": 219, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 11, + "dexterity": 16, + "constitution": 12, + "intelligence": 12, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eblis attacks twice with its beak." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The eblis's innate spellcasting ability is Intelligence (spell save {@dc 11}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell blur}", + "{@spell hypnotic pattern}", + "{@spell minor illusion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eblis-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Flying Monkey", + "source": "ToA", + "page": 220, + "size_str": "Small", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 8, + "dexterity": 14, + "constitution": 11, + "intelligence": 5, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The flying monkey has advantage on an attack roll against a creature if at least one of the monkey's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Familiar", + "body": [ + "With the DM's permission, the {@spell find familiar} spell can summon a flying monkey." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target {@h}1 ({@damage 1d4 - 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flying Monkey-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Giant Four-Armed Gargoyle", + "source": "ToA", + "page": 221, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 147, + "formula": "14d10 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 11, + "constitution": 20, + "intelligence": 6, + "wisdom": 11, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with adamantine weapons", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Terran" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gargoyle makes five attacks: one with its bite and four with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Four-Armed Gargoyle-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Giant Snapping Turtle", + "source": "ToA", + "page": 222, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 12, + "note": "while prone", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 19, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The turtle can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stable", + "body": [ + "Whenever an effect knocks the turtle {@condition prone}, it can make a {@dc 10} Constitution saving throw to avoid being knocked {@condition prone}. A {@condition prone} turtle is upside down. To stand up, it must succeed on a {@dc 10} Dexterity check on its turn and then use all its movement for that turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}18 ({@damage 4d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Snapping Turtle-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Girallon Zombie", + "source": "ToA", + "page": 240, + "size_str": "Large", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 12, + "constitution": 16, + "intelligence": 3, + "wisdom": 7, + "charisma": 5, + "passive": 8, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the zombie can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zombie makes five attacks: one with its bite and four with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Girallon Zombie-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Hew Hackinstone", + "source": "ToA", + "page": 33, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 12, + "constitution": 17, + "intelligence": 9, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "skills": { + "skills": [ + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Hew has resistance to poison damage and advantage on saving throws against being {@condition poisoned}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of his turn, Hew can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against him have advantage until the start of his next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Hew Hackinstone-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Jaculi", + "source": "ToA", + "page": 225, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 14, + "constitution": 11, + "intelligence": 2, + "wisdom": 8, + "charisma": 3, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Camouflage", + "body": [ + "The jaculi has advantage on Dexterity ({@skill Stealth}) checks made to hide." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The jaculi has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spring", + "body": [ + "The jaculi springs up to 30 feet in a straight line and makes a bite attack against a target within its reach. This attack has advantage if the jaculi springs at least 10 feet. If the attack hits, the bite deals an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Jaculi-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Kamadan", + "source": "ToA", + "page": 225, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 16, + "constitution": 14, + "intelligence": 3, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The kamadan has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the kamadan moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn that target must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}. If the target is knocked {@condition prone}, the kamadan can make two attacks\u2014one with its bite and one with its snakes\u2014against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kamadan makes two attacks: one with its bite or claw and one with its snakes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snakes", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 12} Constitution saving throw, taking 21 ({@damage 6d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleep Breath (Recharges after a Short or Long Rest)", + "body": [ + "The kamadan exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 12} Constitution saving throw or fall {@condition unconscious} for 10 minutes. This effect ends for a creature if it takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kamadan-ToA", + "__dataclass__": "Monster" + }, + { + "name": "King of Feathers", + "source": "ToA", + "page": 106, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "19d12 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 25, + "dexterity": 10, + "constitution": 19, + "intelligence": 2, + "wisdom": 12, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Detect Invisibility", + "body": [ + "The King of Feathers can see {@condition invisible} creatures and objects as if they were visible." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the King of Feathers fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The King of Feathers makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}33 ({@damage 4d12 + 7}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained}, and the tyrannosaurus can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Swarm {@recharge 5}", + "body": [ + "The King of Feathers exhales a {@creature swarm of wasps||swarm of insects (wasps)} that forms in a space within 20 feet of it. The swarm acts as an ally of the King of Feathers and takes its turn immediately after it. The swarm disperses after 1 minute. It can't use the Summon Swarm action while it is grappling a creature with its jaws." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The King of Feathers's innate spellcasting ability is Wisdom. It can innately cast the following spell, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "King of Feathers-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Liara Portyr", + "source": "ToA", + "page": 227, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 12, + "constitution": 15, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+4", + "wis": "+4" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "Liara has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flaming Fury", + "body": [ + "Once per turn, when Liara hits a creature with a melee weapon, she can cause fire to magically erupt from her weapon and deal an extra 10 ({@damage 3d6}) fire damage to the target." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Liara makes three melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BGDIA" + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Liara Portyr-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Mantrap", + "source": "ToA", + "page": 227, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d10 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 14, + "constitution": 12, + "intelligence": 1, + "wisdom": 10, + "charisma": 2, + "passive": 10, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "tremorsense 30 ft." + ], + "traits": [ + { + "title": "Attractive Pollen (1/Day)", + "body": [ + "When the mantrap detects any creatures nearby, it can use its reaction to release pollen out to a radius of 30 feet. Any beast or humanoid within the area must succeed on a {@dc 11} Wisdom saving throw or be forced to use all its movement on its turns to get as close to the the mantrap as possible. An affected target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the mantrap remains motionless, it is indistinguishable from an ordinary tropical plant." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Engulf", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one Medium or smaller creature. {@h}The target is trapped inside the mantrap's leafy jaws. While trapped in this way, the target is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} from an attacks and other effects outside the mantrap, and takes 14 ({@damage 4d6}) acid damage at the start of each of the target's turns. If the mantrap dies, the creature inside it is no longer {@condition restrained} by it. A mantrap can engulf only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mantrap-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Mwaxanar\u00e9", + "source": "ToA", + "page": 228, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 6, + "dexterity": 10, + "constitution": 11, + "intelligence": 13, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common", + "telepathy 30 ft." + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 2} to hit. reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Mwaxanar\u00e9 is a 2nd-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). She regains her expended spell slots when she finishes a short or long rest. She knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell eldritch blast}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell charm person}", + "{@spell protection from evil and good}", + "{@spell unseen servant}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Mwaxanar\u00e9-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Na", + "source": "ToA", + "page": 228, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 3, + "formula": "1d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "languages": [ + "Common" + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Na-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Pterafolk", + "source": "ToA", + "page": 229, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 13, + "constitution": 12, + "intelligence": 9, + "wisdom": 10, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Terror Dive", + "body": [ + "If the pterafolk is flying and dives at least 30 feet straight toward a target, and then hits that target with a melee weapon attack, the target is {@condition frightened} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pterafolk makes three attacks: one with its bite and two with its claws. Alternatively, it makes two melee attacks with its javelin." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pterafolk-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Ras Nsi", + "source": "ToA", + "page": 230, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item bracers of defense}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "127 ({@dice 17d8 + 51}) reduced to 107; subtract 1 for each day that passes during the adventure", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 16, + "constitution": 17, + "intelligence": 18, + "wisdom": 18, + "charisma": 21, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+7" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Ras Nsi wears {@item bracers of defense}, wields a {@item flame tongue longsword}, and carries a {@item sending stones||sending stone} matched to the one carried by the guide Salida (see chapter 1)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "Ras Nsi can use his action to polymorph into a Medium snake or back into his yuan-ti form. His statistics are the same in each form. Any equipment he is wearing or carrying isn't transformed. He doesn't change form if he dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Ras Nsi has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ras Nsi makes three melee attacks, but can use Constrict only once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Snake Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}). Until this grapple ends, the target is {@condition restrained}, and Ras Nsi can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Tongue Longsword (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands, plus 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Ras Nsi's innate spellcasting ability is Charisma (spell save {@dc 16}). He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Ras Nsi is an 11th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks).", + "Ras Nsi has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell false life}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell hold person}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell contact other plane}", + "{@spell geas}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell create undead}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Ras Nsi-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Spiked Tomb Guardian", + "source": "ToA", + "page": 154, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 9, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Berserk", + "body": [ + "Whenever the tomb guardian starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the tomb guardian goes berserk. On each of its turns while berserk, the tomb guardian attacks the nearest creature it can see. If no creature is near enough to move to and attack, the tomb guardian attacks an object, with preference for an object smaller than itself. Once the tomb guardian goes berserk, it continues to do so until it is destroyed or regains all its hit points. The golem's creator, if within 60 feet of the berserk tomb guardian, can try to calm it by speaking firmly and persuasively. The tomb guardian must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the tomb guardian ceases being berserk. If it takes damage while still at 40 hit points or fewer, the tomb guardian might go berserk again." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion of Fire", + "body": [ + "If the tomb guardian takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The tomb guardian is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Absorption", + "body": [ + "Whenever the tomb guardian is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The tomb guardian has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chained", + "body": [ + "{@note This trait applies when two guardians are chained together.}", + "A magical spiked chain that binds a pair of guardians together prevents them from moving more than 15 feet apart. Additionally, as long as the chain is intact, damage dealt to either guardian is divided evenly between them. The spiked chain can be attacked separately and has AC 18, a damage threshold of 10, 5 hit points, and immunity to poison and psychic damage. If the chain breaks, both tomb guardians instantly go berserk." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tomb guardian makes two spiked gauntlet attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Gauntlet", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 9 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spiked Tomb Guardian-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Stone Juggernaut", + "source": "ToA", + "page": 231, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "note": "(in one direction chosen at the start of its turn)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 16, + "dexterity": 12, + "constitution": 15, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with adamantine weapons", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "traits": [ + { + "title": "Devastating Roll", + "body": [ + "The juggernaut can move through the space of a {@condition prone} creature. A creature whose space the juggernaut enters for the first time on a turn must make a {@dc 17} Dexterity saving throw, taking 55 ({@damage 10d10}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The juggernaut is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "As long as it has 1 hit point left, the juggernaut magically regains all its hit points daily at dawn. The juggernaut is destroyed and doesn't regenerate if it drops to 0 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The juggernaut deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}25 ({@damage 3d12 + 6}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Juggernaut-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Su-monster", + "source": "ToA", + "page": 232, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 15, + "constitution": 12, + "intelligence": 9, + "wisdom": 13, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Multiattack", + "body": [ + "The su-monster makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage, or 12 ({@damage 4d4 + 2}) slashing damage if the su-monster is hanging by its tail and all four of its limbs are free." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Crush {@recharge 5}", + "body": [ + "The su-monster targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw or take 17 ({@damage 5d6}) psychic damage and be {@condition stunned} for 1 minute. The {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Su-monster-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Tabaxi Hunter", + "source": "ToA", + "page": 232, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 17, + "constitution": 11, + "intelligence": 13, + "wisdom": 14, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Feline Agility", + "body": [ + "When the tabaxi moves on its turn in combat, it can double its speed until the end of the turn. Once it uses this ability, the tabaxi can't use it again until it moves 0 feet on one of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tabaxi makes two attacks with its claws, its shortsword, or its shortbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "tabaxi", + "actions_note": "", + "mythic": null, + "key": "Tabaxi Hunter-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Tabaxi Minstrel", + "source": "ToA", + "page": 233, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 15, + "constitution": 11, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus any two languages" + ], + "traits": [ + { + "title": "Feline Agility", + "body": [ + "When the tabaxi moves on its turn in combat, it can double its speed until the end of the turn. Once it uses this ability, the tabaxi can't use it again until it moves 0 feet on one of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inspire (1/Day)", + "body": [ + "While taking a short rest, the tabaxi can spend 1 minute singing, playing an instrument, telling a story, or reciting a poem to soothe and inspire creatures other than itself. Up to five creatures of the tabaxi's choice that can see and hear its performance gain 8 temporary hit points at the end of the tabaxi's short rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tabaxi makes two claws attacks or two dart attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "tabaxi", + "actions_note": "", + "mythic": null, + "key": "Tabaxi Minstrel-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Tomb Dwarf", + "source": "ToA", + "page": 135, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 14, + "constitution": 16, + "intelligence": 10, + "wisdom": 13, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the tomb dwarf has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tomb dwarf makes two longsword attacks or two crossbow attacks. It can use its Life Drain in place of one longsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.A humanoid slain by this attack rises 24 hours later as a zombie under the tomb dwarf's control, unless the humanoid is restored to life or its body is destroyed. The tomb dwarf can have no more than twelve zombies under its control at one time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tomb Dwarf-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Tomb Guardian", + "source": "ToA", + "page": 127, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 9, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Berserk", + "body": [ + "Whenever the tomb guardian starts its turn with 40 hit points or fewer, roll a {@dice d6}. On a 6, the tomb guardian goes berserk. On each of its turns while berserk, the tomb guardian attacks the nearest creature it can see. If no creature is near enough to move to and attack, the tomb guardian attacks an object, with preference for an object smaller than itself. Once the tomb guardian goes berserk, it continues to do so until it is destroyed or regains all its hit points. The golem's creator, if within 60 feet of the berserk tomb guardian, can try to calm it by speaking firmly and persuasively. The tomb guardian must be able to hear its creator, who must take an action to make a {@dc 15} Charisma ({@skill Persuasion}) check. If the check succeeds, the tomb guardian ceases being berserk. If it takes damage while still at 40 hit points or fewer, the tomb guardian might go berserk again." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aversion of Fire", + "body": [ + "If the tomb guardian takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The tomb guardian is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Absorption", + "body": [ + "Whenever the tomb guardian is subjected to lightning damage, it takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The tomb guardian has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The golem's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tomb guardian makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tomb Guardian-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Tri-flower Frond", + "source": "ToA", + "page": 234, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 15, + "constitution": 12, + "intelligence": 9, + "wisdom": 13, + "charisma": 9, + "passive": 10, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tri-flower frond uses its orange blossom, then its yellow blossom, and then its red blossom." + ], + "__dataclass__": "Entry" + }, + { + "title": "Orange Blossom", + "body": [ + "The tri-flower frond chooses one creature it can see within 5 feet of it. The target must succeed on a {@dc 11} Constitution saving throw or be {@condition poisoned} for 1 hour. While {@condition poisoned} in this way, the target is {@condition unconscious}. At the end of each minute, the {@condition poisoned} target can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Yellow Blossom", + "body": [ + "The tri-flower frond chooses one creature it can see within 5 feet of it. The target must succeed on a {@dc 11} Dexterity saving throw, or it is covered with corrosive sap and takes 5 acid damage at the start of each of its turns. Dousing the target with water reduces the acid damage by 1 point per pint or flask of water used." + ], + "__dataclass__": "Entry" + }, + { + "title": "Red Blossom", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}2 ({@damage 1d4}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the target takes 5 ({@damage 2d4}) poison damage at the start of each of its turns. The red blossom can grapple only one target at a time. Another creature within reach of the tri-flower frond can use its action to end the grapple on the target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tri-flower Frond-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Tyrannosaurus Zombie", + "source": "ToA", + "page": 241, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "13d12 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 25, + "dexterity": 6, + "constitution": 19, + "intelligence": 1, + "wisdom": 3, + "charisma": 5, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Disgorge Zombie", + "body": [ + "As a bonus action, the tyrannosaurus zombie can disgorge a normal {@creature zombie}, which appears in an unoccupied space within 10 feet of it. The disgorged {@creature zombie} acts on its own initiative count. After a zombie is disgorged, roll a {@dice d6}. On a roll of 1, the tyrannosaurus zombie runs out of zombies to disgorge and loses this trait. If the tyrannosaurus zombie still has this trait when it dies, {@dice 1d4} normal zombies erupt from its corpse at the start of its next turn. These zombies act on their own initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the tyrannosaurus zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5+the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tyrannosaurus zombie makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}33 ({@damage 4d12 + 7}) piercing damage. If the target is a Medium or smaller creature, it is {@condition grappled} (escape {@dc 17}). Until this grapple ends, the target is {@condition restrained} and the tyrannosaurus zombie can't bite another target or disgorge zombies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tyrannosaurus Zombie-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Valindra Shadowmantle", + "source": "ToA", + "page": 58, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 11, + "dexterity": 16, + "constitution": 16, + "intelligence": 20, + "wisdom": 14, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 19, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+12", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Abyssal", + "Draconic", + "Dwarvish", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Mask", + "body": [ + "As a bonus action, Valindra can mask her shriveled flesh and appear to be a living elf. This magical illusion lasts until she ends it as a bonus action or until she uses her Frightening Gaze legendary action. The effect also ends if Valindra drops to 30 hit points or fewer, or if {@spell dispel magic} is cast on her." + ], + "__dataclass__": "Entry" + }, + { + "title": "Preparation", + "body": [ + "When preparing her spells, Valindra can swap out any spell on her list of prepared spells for another wizard spell of the same level." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Valindra fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If destroyed Valindra gains a new body in {@dice 1d10} days, regaining all her hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "Valindra has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Paralyzing Touch", + "body": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cantrip", + "body": [ + "Valindra casts a cantrip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paralyzing Touch (Costs 2 Actions)", + "body": [ + "Valindra uses her Paralyzing Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightening Gaze (Costs 2 Actions)", + "body": [ + "Valindra fixes her gaze on one creature she can see within 10 feet of her. The target must succeed on a {@dc 18} Wisdom saving throw against this magic or become {@condition frightened} for 1 minute. The {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to the Valindra's gaze for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disrupt Life (Costs 3 Actions)", + "body": [ + "Each non-undead creature within 20 feet of Valindra must make a {@dc 18} Constitution saving throw against this magic, taking 21 ({@damage 6d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Valindra is an 18th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). Valindra has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Valindra Shadowmantle-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Volothamp \"Volo\" Geddarm", + "source": "ToA", + "page": 235, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 9, + "dexterity": 12, + "constitution": 10, + "intelligence": 15, + "wisdom": 11, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+2", + "wis": "+2" + }, + "languages": [ + "Common", + "Dwarvish", + "Elvish" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Volo is a 1st-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mending}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell comprehend languages}", + "{@spell detect magic}", + "{@spell disguise self}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDH" + } + ], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Volothamp \"Volo\" Geddarm-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Withers", + "source": "ToA", + "page": 145, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 15, + "dexterity": 14, + "constitution": 16, + "intelligence": 16, + "wisdom": 13, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "the languages he knew in life" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Withers carries the {@item amulet of the black skull|ToA}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Withers has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Withers makes two longsword attacks. He can use his Life Drain in place of one longsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) necrotic damage. The target must succeed on a {@dc 13} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A humanoid slain by this attack rises 24 hours later as a zombie under the Withers's control, unless the humanoid is restored to life or its body is destroyed. Withers can have no more than twelve zombies under its control at one time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Withers is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). Withers has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell expeditious retreat}", + "{@spell feather fall}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell darkness}", + "{@spell hold person}", + "{@spell rope trick}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell telekinesis}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Withers-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Xandala", + "source": "ToA", + "page": 236, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 10, + "dexterity": 11, + "constitution": 14, + "intelligence": 18, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Halfling" + ], + "traits": [ + { + "title": "Quickened Spell (3/Day)", + "body": [ + "When she casts a spell that has a casting time of 1 action, Xandala changes the casting time to 1 bonus action for that casting." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage when used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Xandala is a 9th-level spellcaster. Her spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Xandala has the following sorcerer spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell feather fall}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell invisibility}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell ice storm}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell dominate person}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Xandala-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Yellow Musk Creeper", + "source": "ToA", + "page": 237, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 6 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 5, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 3, + "constitution": 12, + "intelligence": 1, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the creeper remains motionless, it is indistinguishable from an ordinary flowering vine." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The creeper regains 10 hit points at the start of its turn. If the creeper takes fire, necrotic, or radiant damage, this trait doesn't function at the start of its next turn. The creeper dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Touch", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d8}) psychic damage. If the target is a humanoid that drops to 0 hit points as a result of this damage, it dies and is implanted with a yellow musk creeper bulb. Unless the bulb is destroyed, the corpse animates as a yellow musk zombie after being dead for 24 hours. The bulb is destroyed if the creature is raised from the dead before it can transform into a yellow musk zombie, or if the corpse is targeted by a {@spell remove curse} spell or similar magic before it animates." + ], + "__dataclass__": "Entry" + }, + { + "title": "Yellow Musk (3/Day)", + "body": [ + "The creeper's flowers release a strong musk that targets all humanoids within 30 feet of it. Each target must succeed on a {@dc 11} Wisdom saving throw or be {@condition charmed} by the creeper for 1 minute. A creature {@condition charmed} in this way does nothing on its turn except move as close as it can to the creeper. A creature {@condition charmed} by the creeper can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yellow Musk Creeper-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Yellow Musk Zombie", + "source": "ToA", + "page": 237, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 13, + "dexterity": 9, + "constitution": 12, + "intelligence": 1, + "wisdom": 6, + "charisma": 3, + "passive": 8, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 +the damage taken, unless the damage is fire or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yellow Musk Zombie-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Zindar", + "source": "ToA", + "page": 239, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 16, + "wisdom": 15, + "charisma": 18, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Primordial" + ], + "traits": [ + { + "title": "Dragon Wings", + "body": [ + "As a bonus action on his turn, Zindar can sprout a pair of dragon wings from his back, gaining a flying speed of 30 feet until he dismisses them as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "Zindar uses one of the following options:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Breath", + "body": [ + "Zindar exhales fire in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weakening Breath", + "body": [ + "Zindar exhales gas in a 15-foot cone. Each creature in that area must succeed on a {@dc 15} 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." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Zindar is a 14th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Zindar knows the following sorcerer spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell friends}", + "{@spell light}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 6, + "spells": [ + "{@spell magic missile}", + "{@spell shield}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect thoughts}", + "{@spell knock}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold monster}", + "{@spell telekinesis}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell fire storm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-dragon", + "actions_note": "", + "mythic": null, + "key": "Zindar-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Zorbo", + "source": "ToA", + "page": 241, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 10, + "note": "see Natural Armor feature", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 11, + "constitution": 13, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The zorbo has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Natural Armor", + "body": [ + "The zorbo magically absorbs the natural strength of its surroundings, adjusting its Armor Class based on the material it is standing or climbing on: AC 15 for wood or bone, AC 17 for earth or stone, or AC 19 for metal. If the zorbo isn't in contact with any of these substances, its AC is 10." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Destructive Claws", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) slashing damage, and if the target is a creature wearing armor, carrying a shield, or in possession of a magic item that improves its AC, it must make a {@dc 11} Dexterity saving throw. On a failed save, one such item worn or carried by the creature (the target's choice) magically deteriorates, taking a permanent and cumulative \u22121 penalty to the AC it offers, and the zorbo gains a +1 bonus to AC until the start of its next turn. Armor reduced to an AC of 10 or a shield or magic item that drops to a 0 AC increase is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zorbo-ToA", + "__dataclass__": "Monster" + }, + { + "name": "Abjurer", + "source": "VGM", + "page": 209, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 9, + "dexterity": 14, + "constitution": 14, + "intelligence": 18, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+5" + }, + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Arcane Ward", + "body": [ + "The abjurer has a magical ward that has 30 hit points. Whenever the abjurer takes damage, the ward takes the damage instead. If the ward is reduced to 0 hit points, the abjurer takes any remaining damage. When the abjurer casts an abjuration spell of 1st level or higher, the ward regains a number of hit points equal to twice the level of the spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The abjurer is a 13th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The abjurer has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell dancing lights}", + "{@spell mending}", + "{@spell message}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell alarm}*", + "{@spell mage armor}*", + "{@spell magic missile}", + "{@spell shield}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell arcane lock}*", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}*", + "{@spell dispel magic}*", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}*", + "{@spell stoneskin}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell flesh to stone}", + "{@spell globe of invulnerability}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell symbol}*", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Abjurer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Alhoon", + "source": "VGM", + "page": 172, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any Evil Alignment", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 11, + "dexterity": 12, + "constitution": 16, + "intelligence": 19, + "wisdom": 17, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The alhoon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The alhoon has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Chilling Grasp", + "body": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The alhoon magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The alhoon's innate spellcasting ability is Intelligence (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The alhoon is a 12th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). The alhoon has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell mirror image}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell Evard's black tentacles}", + "{@spell phantasmal killer}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell modify memory}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Alhoon-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Annis Hag", + "source": "VGM", + "page": 159, + "size_str": "Large", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 21, + "dexterity": 12, + "constitution": 14, + "intelligence": 13, + "wisdom": 14, + "charisma": 15, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant", + "Sylvan" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The annis makes three attacks: one with her bite and two with her claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crushing Hug", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}36 ({@damage 9d6 + 5}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. Until the grapple ends, the target takes 36 ({@damage 9d6 + 5}) bludgeoning damage at the start of each of the hag's turns. The hag can't make attacks while grappling a creature in this way." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 13}). She can innately cast the following spells:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell disguise self} (including the form of a Medium humanoid)", + "{@spell fog cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Annis Hag-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Apprentice Wizard", + "source": "VGM", + "page": 209, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 14, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The apprentice is a 1st-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "ERLW" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Apprentice Wizard-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Archdruid", + "source": "VGM", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item hide armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 132, + "formula": "24d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 12, + "wisdom": 20, + "charisma": 11, + "passive": 19, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+9" + }, + "languages": [ + "Druidic plus any two languages" + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape (2/Day)", + "body": [ + "The archdruid magically polymorphs into a beast or elemental with a challenge rating of 6 or less, and can remain in this form for up to 9 hours. The archdruid can choose whether its equipment falls to the ground, melds with its new form, or is worn by the new form. The archdruid reverts to its true form if it dies or falls {@condition unconscious}. The archdruid can revert to its true form using a bonus action on its turn.", + "While in a new form, the archdruid retains its game statistics and ability to speak, but its AC, movement modes, Strength, and Dexterity are replaced by those of the new form, and it gains any special senses, proficiencies, traits, actions, and reactions (except class features, legendary actions, and lair actions) that the new form has but that it lacks. It can cast its spells with verbal or somatic components in its new form.", + "The new form's attacks count as magical for the purpose of overcoming resistances and immunity to nonmagical attacks." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The archdruid is an 18th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell mending}", + "{@spell poison spray}", + "{@spell produce flame}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell entangle}", + "{@spell faerie fire}", + "{@spell speak with animals}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell beast sense}", + "{@spell hold person}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell conjure animals}", + "{@spell meld into stone}", + "{@spell water breathing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dominate beast}", + "{@spell locate creature}", + "{@spell stoneskin}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell commune with nature}", + "{@spell mass cure wounds}", + "{@spell tree stride}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell heal}", + "{@spell heroes' feast}", + "{@spell sunbeam}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell fire storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell animal shapes}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell foresight}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "GoS" + }, + { + "source": "MOT" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Archdruid-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Archer", + "source": "VGM", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 18, + "constitution": 16, + "intelligence": 11, + "wisdom": 13, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Archer's Eye (3/Day)", + "body": [ + "As a bonus action, the archer can add {@dice 1d10} to its next attack or damage roll with a longbow or shortbow." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archer makes two attacks with its longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 150/600 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "MOT" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Archer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Aurochs", + "source": "VGM", + "page": 207, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "4d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 20, + "dexterity": 10, + "constitution": 19, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "traits": [ + { + "title": "Charge", + "body": [ + "If the aurochs moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 9 ({@damage 2d8}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aurochs-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Babau", + "source": "VGM", + "page": 136, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 16, + "constitution": 16, + "intelligence": 11, + "wisdom": 12, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The babau makes two melee attacks. It can also use Weakening Gaze before or after making these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage when used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weakening Gaze", + "body": [ + "The babau targets one creature that it can see within 20 feet of it. The target must make a {@dc 13} Constitution saving throw. On a failed save, the target deals only half damage with weapon attacks that use Strength for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The babau's innate spellcasting ability is Wisdom (spell save {@dc 11}). The babau can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}", + "{@spell dispel magic}", + "{@spell fear}", + "{@spell heat metal}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Babau-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Banderhobb", + "source": "VGM", + "page": 122, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 11, + "wisdom": 14, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common and the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Resonant Connection", + "body": [ + "If the banderhobb has even a tiny piece of a creature or an object in its possession, such as a lock of hair or a splinter of wood, it knows the most direct route to that creature or object if it is within 1 mile of the banderhobb." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the banderhobb can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}22 ({@damage 5d6 + 5}) piercing damage, and the target is {@condition grappled} (escape {@dc 15}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the banderhobb can't use its bite attack or tongue attack on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 15 ft., one target. {@h}10 ({@damage 3d6}) necrotic damage, and the target must make a {@dc 15} Strength saving throw. On a failed save, the target is pulled to a space within 5 feet of the banderhobb, which can use a bonus action to make a bite attack against the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The banderhobb makes a bite attack against a Medium or smaller creature it is grappling. If the attack hits, the target is swallowed, and the grapple ends. The swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the banderhobb and it takes 10 ({@damage 3d6}) necrotic damage at the start of each of the banderhobb's turns. A creature reduced to 0 hit points in this way stops taking necrotic damage and becomes stable.", + "The banderhobb can have only one target swallowed at a time. While the banderhobb isn't {@condition incapacitated}, it can regurgitate the creature at any time (no action required) in a space within 5 feet of it. The creature exits {@condition prone}. If the banderhobb dies, it likewise regurgitates a swallowed creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Step", + "body": [ + "The banderhobb magically teleports up to 30 feet to an unoccupied space of dim light or darkness that it can see. Before or after teleporting, it can make a bite or tongue attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Banderhobb-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Bard", + "source": "VGM", + "page": 211, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+3" + }, + "languages": [ + "any two languages" + ], + "traits": [ + { + "title": "Song of Rest", + "body": [ + "The bard can perform a song while taking a short rest. Any ally who hears the song regains an extra {@dice 1d6} hit points if it spends any Hit Dice to regain hit points at the end of that rest. The bard can confer this benefit on itself as well." + ], + "__dataclass__": "Entry" + }, + { + "title": "Taunt (2/Day)", + "body": [ + "The bard can use a bonus action on its turn to target one creature within 30 feet of it. If the target can hear the bard, the target must succeed on a {@dc 12} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of the bard's next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The bard is a 4th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following bard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell healing word}", + "{@spell heroism}", + "{@spell sleep}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "GoS" + }, + { + "source": "SDW" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Bard-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Barghest", + "source": "VGM", + "page": 123, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "note": "(30 ft. in goblin form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 15, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Goblin", + "Infernal", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The barghest can use its action to polymorph into a Small goblin or back into its true form. Other than its size and speed, its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. The barghest reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Banishment", + "body": [ + "When the barghest starts its turn engulfed in flames that are at least 10 feet high or wide, it must succeed on a {@dc 15} Charisma saving throw or be instantly banished to Gehenna. Instantaneous bursts of flame (such as a red dragon's breath or a {@spell fireball} spell) don't have this effect on the barghest." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The barghest has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Feeding", + "body": [ + "A barghest can feed on the corpse of a humanoid that it killed that has been dead for less than 10 minutes, devouring both flesh and soul in doing so. This feeding takes at least 1 minute, and it destroys the victim's body. The victim's soul is trapped in the barghest for 24 hours, after which time it is digested. If the barghest dies before the soul is digested, the soul is released.", + "While a humanoid's soul is trapped in a barghest, any form of revival that could work has only a {@chance 50} chance of doing so, freeing the soul from the barghest if it is successful. Once a creature's soul is digested, however, no mortal magic can return that humanoid to life." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The barghest's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell levitate}", + "{@spell minor illusion}", + "{@spell pass without trace}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell dimension door}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Barghest-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Bheur Hag", + "source": "VGM", + "page": 160, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 13, + "dexterity": 16, + "constitution": 14, + "intelligence": 12, + "wisdom": 13, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Auran", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Graystaff Magic", + "body": [ + "The hag carries a graystaff, a length of gray wood that is a focus for her inner power. She can ride the staff as if it were a {@item broom of flying}. While holding the staff, she can cast additional spells with her Innate Spellcasting trait (these spells are marked with an asterisk). If the staff is lost or destroyed, the hag must craft another, which takes a year and a day. Only a bheur hag can use a graystaff." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Walk", + "body": [ + "The hag can move across and climb icy surfaces without needing to make an ability check. Additionally, {@quickref difficult terrain||3} composed of ice or snow doesn't cost her extra moment." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d8 + 1}) bludgeoning damage plus 3 ({@damage 1d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maddening Feast", + "body": [ + "The hag feasts on the corpse of one enemy within 5 feet of her that died within the past minute. Each creature of the hag's choice that is within 60 feet of her and able to see her must succeed on a {@dc 15} Wisdom saving throw or be {@condition frightened} of her for 1 minute. While {@condition frightened} in this way, a creature is {@condition incapacitated}, can't understand what others say, can't read, and speaks only in gibberish; the DM controls the creature's movement, which is erratic. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the hag's Maddening Feast for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The hag's innate spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell hold person}*", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell cone of cold}*", + "{@spell ice storm}*", + "{@spell wall of ice}*" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell control weather}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bheur Hag-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Black Guard Drake", + "source": "VGM", + "page": 158, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The guard drake can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drake attacks twice, once with its bite and once with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Black Guard Drake-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Blackguard", + "source": "VGM", + "page": 211, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Good Alignment", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 11, + "constitution": 18, + "intelligence": 11, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+5" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blackguard makes three attacks with its glaive or its shortbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Aspect (Recharges after a Short or Long Rest)", + "body": [ + "The blackguard exudes magical menace. Each enemy within 30 feet of the blackguard must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. If a {@condition frightened} target ends its turn more than 30 feet away from the blackguard, the target can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The blackguard is a 10th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following paladin spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell protection from evil and good}", + "{@spell thunderous smite}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell branding smite}", + "{@spell find steed}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell blinding smite}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "MOT" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Blackguard-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Blue Guard Drake", + "source": "VGM", + "page": 158, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drake attacks twice, once with its bite and once with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blue Guard Drake-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Bodak", + "source": "VGM", + "page": 127, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 15, + "dexterity": 16, + "constitution": 15, + "intelligence": 7, + "wisdom": 12, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "the languages it knew in life" + ], + "traits": [ + { + "title": "Aura of Annihilation", + "body": [ + "The bodak can activate or deactivate this feature as a bonus action. While active, the aura deals 5 necrotic damage to any creature that ends its turn within 30 feet of the bodak. Undead and fiends ignore this effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Gaze", + "body": [ + "When a creature that can see the bodak's eyes starts its turn within 30 feet of the bodak, the bodak can force it to make a {@dc 13} Constitution saving throw if the bodak isn't {@condition incapacitated} and can see the creature. If the saving throw fails by 5 or more, the creature is reduced to 0 hit points, unless it is immune to the {@condition frightened} condition. Otherwise, a creature takes 16 ({@damage 3d10}) psychic damage on a failed save.", + "Unless {@status surprised}, a creature can avert its eyes to avoid the saving throw at the start of its turn. If the creature does so, it has disadvantage on attack rolls against the bodak until the start of its next turn. If the creature looks at the bodak in the meantime, it must immediately make the saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "The bodak takes 5 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Gaze", + "body": [ + "One creature that the bodak can see within 60 feet of it must make a {@dc 13} Constitution saving throw, taking 22 ({@damage 4d10}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "GoS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bodak-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Boggle", + "source": "VGM", + "page": 128, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 8, + "dexterity": 18, + "constitution": 13, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Sylvan" + ], + "traits": [ + { + "title": "Boggle Oil", + "body": [ + "The boggle excretes nonflammable oil from its pores. The boggle chooses whether the oil is slippery or sticky and can change the oil on its skin from one consistency to another as a bonus action.", + "Slippery Oil: While coated in slippery oil, the boggle gains advantage on Dexterity ({@skill Acrobatics}) checks made to escape bonds, squeeze through narrow spaces, and end grapples.", + "Sticky Oil: While coated in sticky oil, the boggle gains advantage on Strength ({@skill Athletics}) checks made to grapple and any ability check made to maintain a hold on another creature, a surface, or an object. The boggle can also climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dimensional Rift", + "body": [ + "As a bonus action, the boggle can create an {@condition invisible} and immobile rift within an opening or frame it can see within 5 feet of it, provided that the space is no bigger than 10 feet on any side. The dimensional rift bridges the distance between that space and any point within 30 feet of it that the boggle can see or specify by distance and direction (such as \"30 feet straight up\"). While next to the rift, the boggle can see through it and is considered to be next to the destination as well, and anything the boggle puts through the rift (including a portion of its body) emerges at the destination. Only the boggle can use the rift, and it lasts until the end of the boggle's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Uncanny Smell", + "body": [ + "The boggle has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pummel", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oil Puddle", + "body": [ + "The boggle creates a puddle of oil that is either slippery or sticky (boggle's choice). The puddle is 1 inch deep and covers the ground in the boggle's space. The puddle is {@quickref difficult terrain||3} For all creatures except boggles and lasts for 1 hour.", + "If the oil is slippery, any creature that enters the puddle's area or starts its turn there must succeed on a {@dc 11} Dexterity saving throw or fall {@condition prone}.", + "If the oil is sticky, any creature that enters the puddle's area or starts its turn there must succeed on a {@dc 11} Strength saving throw or be {@condition restrained}. On its turn. a creature can use an action to try to extricate itself from the sticky puddle, ending the effect and moving into the nearest safe unoccupied space with a successful {@dc 11} Strength check." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IMR" + }, + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boggle-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Brontosaurus", + "source": "VGM", + "page": 139, + "size_str": "Gargantuan", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 121, + "formula": "9d20 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 21, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "saves": { + "con": "+6" + }, + "actions": [ + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}27 ({@damage 5d8 + 5}) bludgeoning damage, and the target must succeed on a {@dc 14} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}32 ({@damage 6d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Brontosaurus-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Catoblepas", + "source": "VGM", + "page": 129, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 12, + "constitution": 21, + "intelligence": 3, + "wisdom": 14, + "charisma": 8, + "passive": 12, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The catoblepas has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench", + "body": [ + "Any creature other than a catoblepas that starts its turn within 10 feet of the catoblepas must succeed on a {@dc 16} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of any catoblepas for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}21 ({@damage 5d6 + 4}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} until the start of the catoblepas's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Ray {@recharge 5}", + "body": [ + "The catoblepas targets a creature that it can see within 30 feet of it. The target must make a {@dc 16} Constitution saving throw, taking 36 ({@damage 8d8}) necrotic damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the target instead takes 64 necrotic damage. The target dies if reduced to 0 hit points by this ray." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Catoblepas-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Cave Fisher", + "source": "VGM", + "page": 130, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 3, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Adhesive Filament", + "body": [ + "The cave fisher can use its action to extend a sticky filament up to 60 feet, and the filament adheres to anything that touches it. A creature adhered to the filament is {@condition grappled} by the cave fisher (escape {@dc 13}), and ability checks made to escape this grapple have disadvantage. The filament can be attacked (AC 15; 5 hit points; immunity to poison and psychic damage), but a weapon that fails to sever it becomes stuck to it, requiring an action and a successful {@dc 13} Strength check to pull free. Destroying the filament causes no damage to the cave fisher, which can extrude a replacement filament on its next turn" + ], + "__dataclass__": "Entry" + }, + { + "title": "Flammable Blood", + "body": [ + "If the cave fisher drops to half its hit points or fewer, it gains vulnerability to fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The cave fisher can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cave fisher makes two attacks with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Filament", + "body": [ + "One creature {@condition grappled} by the cave fisher's adhesive filament must make a {@dc 13} Strength saving throw, provided that the target weighs 200 pounds or less. On a failure, the target is pulled into an unoccupied space within 5 feet of the cave fisher, and the cave fisher makes a claw attack against it as a bonus action. Reeling up the target releases anyone else who was attached to the filament. Until the grapple ends on the target, the cave fisher can't extrude another filament." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cave Fisher-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Champion", + "source": "VGM", + "page": 212, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 14, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+6" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Indomitable (2/Day)", + "body": [ + "The champion rerolls a failed saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the champion can regain 20 hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes three attacks with its greatsword or its shortbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage, plus 7 ({@damage 2d6}) slashing damage if the champion has more than half of its total hit points remaining." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 7 ({@damage 2d6}) piercing damage if the champion has more than half of its total hit points remaining." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDMM" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Champion-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Chitine", + "source": "VGM", + "page": 131, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The chitine has advantage on saving throws against being {@condition charmed}, and magic can't put the chitine to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the chitine has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the chitine knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The chitine ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chitine makes three attacks with its daggers." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Chitine-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Choldrith", + "source": "VGM", + "page": 132, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 16, + "constitution": 12, + "intelligence": 11, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The choldrith has advantage on saving throws against being {@condition charmed}, and magic can't put the choldrith to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The choldrith can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the choldrith has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the choldrith knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The choldrith ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web {@recharge 5}", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/60 ft., one Large or smaller creature. {@h}The target is {@condition restrained} by webbing. As an action, the {@condition restrained} target can make a {@dc 11} Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; 5 hit points; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The choldrith is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The choldrith has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell healing word}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon} (dagger)" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Choldrith-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Cloud Giant Smiling One", + "source": "VGM", + "page": 146, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 262, + "formula": "21d12 + 128", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 26, + "dexterity": 12, + "constitution": 22, + "intelligence": 15, + "wisdom": 16, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+6", + "wis": "+7" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The giant has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two attacks with its morningstar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage. The attack deals an extra 14 ({@damage 4d6}) damage if the giant has advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage. The attack deals an extra 14 ({@damage 4d6}) damage if the giant has advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The giant magically polymorphs into a beast or humanoid it has seen, or back into its true form. Any equipment the giant is wearing or carrying is absorbed by the new form. Its statistics, other than its size, are the same in each form. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The giant's innate spellcasting ability is Charisma (spell save {@dc 15}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell feather fall}", + "{@spell fly}", + "{@spell misty step}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell control weather}", + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The giant is a 5th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The giant has the following bard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell disguise self}", + "{@spell silent image}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell major image}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "cloud giant", + "actions_note": "", + "mythic": null, + "key": "Cloud Giant Smiling One-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Conjurer", + "source": "VGM", + "page": 212, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Benign Transportation (Recharges after the Conjurer Casts a Conjuration Spell of 1st Level or Higher)", + "body": [ + "As a bonus action, the conjurer teleports up to 30 feet to an unoccupied space that it can see. If it instead chooses a space within range that is occupied by a willing Small or Medium creature, they both teleport, swapping places." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The conjurer is a 9th-level spellcaster. Its spellcasting ability is intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The conjurer has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell unseen servant}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloud of daggers}*", + "{@spell misty step}*", + "{@spell web}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell stinking cloud}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Evard's black tentacles}*", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cloudkill}*", + "{@spell conjure elemental}*" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Conjurer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Cow", + "source": "VGM", + "page": 207, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "traits": [ + { + "title": "Charge", + "body": [ + "If the cow moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cow-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Cranium Rat", + "source": "VGM", + "page": 133, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 14, + "constitution": 10, + "intelligence": 4, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "As a bonus action, the cranium rat can shed dim light from its brain in a 5-foot radius or extinguish the light." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Shroud", + "body": [ + "The cranium rat is immune to any effect that would sense its emotions or read its thoughts, as well as to all divination spells." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cranium Rat-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Darkling", + "source": "VGM", + "page": 134, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 9, + "dexterity": 16, + "constitution": 12, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Death Flash", + "body": [ + "When the darkling dies, nonmagical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area and able to see the bright light must succeed on a {@dc 10} Constitution saving throw or be {@condition blinded} until the end of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Sensitivity", + "body": [ + "While in bright light, the darkling has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. If the darkling has advantage on the attack roll, the attack deals an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Darkling-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Darkling Elder", + "source": "VGM", + "page": 134, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 17, + "constitution": 12, + "intelligence": 10, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Death Burn", + "body": [ + "When the darkling elder dies, magical light flashes out from it in a 10-foot radius as its body and possessions, other than metal or magic objects, burn to ash. Any creature in that area must make a {@dc 11} Constitution saving throw. On a failure, the creature takes 7 ({@damage 2d6}) radiant damage and, if the creature can see the light, is {@condition blinded} until the end of its next turn. If the saving throw is successful, the creature takes half the damage and isn't {@condition blinded}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The darkling elder makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage. If the darkling elder had advantage on the attack roll, the attack deals as: extra 10 ({@damage 3d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Darkness (Recharges after a Short or Long Rest)", + "body": [ + "The darkling elder casts {@spell darkness} without any components. Wisdom is its spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Darkling Elder-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Death Kiss", + "source": "VGM", + "page": 124, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "17d10 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Lightning Blood", + "body": [ + "A creature within 5 feet of the death kiss takes 5 ({@damage 1d10}) lightning damage whenever it hits the death kiss with a melee attack that deals piercing or slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The death kiss makes three tentacle attacks. Up to three of these attacks can be replaced by Blood Drain, one replacement per tentacle grappling a creature" + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Huge or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the death kiss can't use the same tentacle on another target. The death kiss has ten tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Drain", + "body": [ + "One creature {@condition grappled} by a tentacle of the death kiss must make a {@dc 16} Constitution saving throw. On a failed save, the target takes 22 ({@damage 4d10}) lightning damage, and the death kiss regains half as many hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Death Kiss-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Deep Roth\u00e9", + "source": "VGM", + "page": 208, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "2d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the roth\u00e9 moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The deep roth\u00e9's spellcasting ability is Charisma. It can innately cast {@spell dancing lights} at will, requiring no components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deep Roth\u00e9-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Deep Scion", + "source": "VGM", + "page": 135, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(20 ft. and swim 40 ft. in hybrid form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Aquan", + "Common", + "Thieves' cant" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The deep scion can use its action to polymorph into a humanoid-piscine hybrid form, or back into its true form. Its statistics, other than its speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. The deep scion reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amphibious (Hybrid Form Only)", + "body": [ + "The deep scion can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "In humanoid form, the deep scion makes two melee attacks. In hybrid form, the deep scion makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe (Humanoid Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Screech (Hybrid Form Only; Recharges after a Short or Long Rest)", + "body": [ + "The deep scion emits a terrible scream audible within 300 feet. Creatures within 30 feet of the deep scion must succeed on a {@dc 13} Wisdom saving throw or be {@condition stunned} until the end of the deep scion's next turn. In water, the psychic screech also telepathically transmits the deep scion's memories of the last 24 hours to its master, regardless of distance, so long as it and its master are in the same body of water." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Deep Scion-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Deinonychus", + "source": "VGM", + "page": 139, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 15, + "constitution": 14, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Pounce", + "body": [ + "If the deinonychus moves at least 20 feet straight toward a creature and then hits it with a claw attack on the same turn, that target must succeed on a {@dc 12} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the deinonychus can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deinonychus makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "PSX", + "page": 30 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deinonychus-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Devourer", + "source": "VGM", + "page": 138, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 178, + "formula": "17d10 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 13, + "wisdom": 10, + "charisma": 16, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The devourer makes two claw attacks and can use either Imprison Soul or Soul Rend." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 21 ({@damage 6d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Imprison Soul", + "body": [ + "The devourer chooses a living humanoid with 0 hit points that it can see within 30 feet of it. That creature is teleported inside the devourer's ribcage and imprisoned there. A creature imprisoned in this manner has disadvantage on death saving throws. If it dies while imprisoned, the devourer regains 25 hit points, immediately recharges Soul Rend, and gains an additional action on its next turn. Additionally, at the start of its next turn, the devourer regurgitates the slain creature as a bonus action, and the creature becomes an undead. If the victim had 2 or fewer Hit Dice, it becomes a zombie. if it had 3 to 5 Hit Dice, it becomes a ghoul. Otherwise, it becomes a wight. A devourer can imprison only one creature at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Rend {@recharge}", + "body": [ + "The devourer creates a vortex of life-draining energy in a 20-foot radius centered on itself. Each humanoid in that area must make a {@dc 18} Constitution saving throw, taking 44 ({@damage 8d10}) necrotic damage on a failed save, or half as much damage on a successful one. Increase the damage by 10 for each living humanoid with 0 hit points in that area." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Devourer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Dimetrodon", + "source": "VGM", + "page": 139, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 10, + "constitution": 15, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dimetrodon-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Diviner", + "source": "VGM", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "15d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 18, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Portent (Recharges after the Diviner Casts a Divination Spell of 1st Level or Higher)", + "body": [ + "When the diviner or a creature it can see makes an attack roll, a saving throw, or an ability check, the diviner can roll a {@dice d20} and choose to use this roll in place of the attack roll, saving throw, or ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The diviner is a 15th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The diviner has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell true strike}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}*", + "{@spell feather fall}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}*", + "{@spell locate object}*", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}*", + "{@spell fly}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell arcane eye}*", + "{@spell ice storm}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell Rary's telepathic bond}*", + "{@spell seeming}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell mass suggestion}", + "{@spell true seeing}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell delayed blast fireball}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell maze}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Diviner-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Dolphin", + "source": "VGM", + "page": 208, + "size_str": "Medium", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 14, + "dexterity": 13, + "constitution": 13, + "intelligence": 6, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the dolphin moves at least 30 feet straight toward a target and then hits it with a slam attack on the same turn, the target takes an extra 3 ({@damage 1d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hold Breath", + "body": [ + "The dolphin can hold its breath for 20 minutes." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dolphin-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Draegloth", + "source": "VGM", + "page": 141, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "13d10 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 20, + "dexterity": 15, + "constitution": 18, + "intelligence": 13, + "wisdom": 11, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The draegloth has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The draegloth makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The draegloth's innate spellcasting ability is Charisma (spell save {@dc 11}). The draegloth can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell darkness}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dancing lights}", + "{@spell faerie fire}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Draegloth-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Elder Brain", + "source": "VGM", + "page": 173, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 10, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 15, + "dexterity": 10, + "constitution": 20, + "intelligence": 21, + "wisdom": 19, + "charisma": 24, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+10", + "wis": "+9", + "cha": "+12" + }, + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "understands Common", + "Deep Speech", + "and Undercommon but can't speak", + "telepathy 5 miles" + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The elder brain is aware of the presence of creatures within 5 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the elder brain fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The elder brain has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Hub", + "body": [ + "The elder brain can use its telepathy to initiate and maintain telepathic conversations with up to ten creatures at a time. The elder brain can let those creatures telepathically hear each other while connected in this way." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 30 ft., one target. {@h}20 ({@damage 4d8 + 2}) bludgeoning damage. If the target is a Huge or smaller creature, it is {@condition grappled} (escape {@dc 15}) and takes 9 ({@damage 1d8 + 5}) psychic damage at the start of each of its turns until the grapple ends. The elder brain can have up to four targets {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The elder brain magically emits psychic energy. Creatures of the elder brain's choice within 60 feet of it must succeed on a {@dc 18} Intelligence saving throw or take 32 ({@damage 5d10 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Link", + "body": [ + "The elder brain targets one {@condition incapacitated} creature it can perceive with its Creature Sense trait and establishes a psychic link with that creature. Until the psychic link ends, the elder brain can perceive everything the target senses. The target becomes aware that something is linked to its mind once it is no longer {@condition incapacitated}, and the elder brain can terminate the link at any time (no action required). The target can use an action on its turn to attempt to break the psychic link, doing so with a successful {@dc 18} Charisma saving throw. On a successful save, the target takes 10 ({@damage 3d6}) psychic damage. The psychic link also ends if the target and the elder brain are more than 5 miles apart, with no consequences to the target. The elder brain can form psychic links with up to ten creatures at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sense Thoughts", + "body": [ + "The elder brain targets a creature with which it has a psychic link. The elder brain gains insight into the target's reasoning, its emotional state, and thoughts that loom large in its mind (including things the target worries about, loves, or hates). The elder brain can also make a Charisma ({@skill Deception}) check with advantage to deceive the target's mind into thinking it believes one idea or feels a particular emotion. The target contests this attempt with a Wisdom ({@skill Insight}) check. If the elder brain succeeds, the mind believes the deception for 1 hour or until evidence of the lie is presented to the target." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tentacle", + "body": [ + "The elder brain makes a tentacle attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Break Concentration", + "body": [ + "The elder brain targets a creature within 120 feet of it with which it has a psychic link. The elder brain breaks the creature's {@status concentration} on a spell it has cast. The creature also takes {@damage 1d4} psychic damage per level of the spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Pulse", + "body": [ + "The elder brain targets a creature within 120 feet of it with which it has a psychic link. Enemies of the elder brain within 10 feet of that creature take 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sever Psychic Link", + "body": [ + "The elder brain targets a creature within 120 feet of it with which it has a psychic link. The elder brain ends the link, causing the creature to have disadvantage on all ability checks, attack rolls, and saving throws until the end of the creature's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The elder brain's innate spellcasting ability is Intelligence (spell save {@dc 18}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elder Brain-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Enchanter", + "source": "VGM", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Instinctive Charm (Recharges after the Enchanter Casts an Enchantment Spell of 1st level or Higher)", + "body": [ + "The enchanter tries to magically divert an attack made against it, provided that the attacker is within 30 feet of it and visible to it. The enchanter must decide to do so before the attack hits or misses.", + "The attacker must make a {@dc 14} Wisdom saving throw. On a failed save, the attacker targets the creature closest to it, other than the enchanter or itself. If multiple creatures are closest, the attacker chooses which one to target." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The enchanter is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The enchanter has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}*", + "{@spell mage armor}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}*", + "{@spell invisibility}", + "{@spell suggestion}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell haste}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dominate beast}*", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell hold monster}*" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Enchanter-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Evoker", + "source": "VGM", + "page": 214, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+5" + }, + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Sculpt Spells", + "body": [ + "When the evoker casts an evocation spell that forces other creatures it can see to make a saving throw, it can choose a number of them equal to 1 + the spell's level. These creatures automatically succeed on their saving throws against the spell. If a successful save means a chosen creature would take half damage from the spell, it instead takes no damage from it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The evoker is a 12th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The evoker has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}*", + "{@spell light}*", + "{@spell prestidigitation}", + "{@spell ray of frost}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell burning hands}*", + "{@spell mage armor}", + "{@spell magic missile}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell mirror image}", + "{@spell misty step}", + "{@spell shatter}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}*", + "{@spell lightning bolt}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell ice storm}*", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell Bigby's hand}*", + "{@spell cone of cold}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}*", + "{@spell wall of ice}*" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "ERLW" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Evoker-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Fire Giant Dreadnought", + "source": "VGM", + "page": 147, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 21, + "note": "{@item plate armor|phb}, {@item shield|phb|shields}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "15d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 27, + "dexterity": 9, + "constitution": 23, + "intelligence": 8, + "wisdom": 10, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+11", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Dual Shields", + "body": [ + "The giant carries two shields, each of which is accounted for in the giant's AC. The giant must stow or drop one of its shields to hurl rocks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two fireshield attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fireshield", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d6 + 8}) bludgeoning damage plus 7 ({@damage 2d6}) fire damage plus 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shield Charge", + "body": [ + "The giant moves up to 30 feet in a straight line and can move through the space of any creature smaller than Huge. The first time it enters a creature's space during this move, it makes a fireshield attack against that creature. If the attack hits, the target must also succeed on a {@dc 21} Strength saving throw or be pushed ahead of the giant for the rest of this move. If a creature fails the save by 5 or more, it is also knocked {@condition prone} and takes 18 ({@damage 3d6 + 8}) bludgeoning damage, or 29 ({@damage 6d6 + 8}) bludgeoning damage if it was already {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "fire giant", + "actions_note": "", + "mythic": null, + "key": "Fire Giant Dreadnought-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Firenewt Warlock of Imix", + "source": "VGM", + "page": 143, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 11, + "constitution": 12, + "intelligence": 9, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "languages": [ + "Draconic", + "Ignan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The firenewt can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Imix's Blessing", + "body": [ + "When the firenewt reduces an enemy to 0 hit points, the firenewt gains 5 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The firenewt's innate spellcasting ability is Charisma. It can innately cast {@spell mage armor} (self only) at will, requiring no material components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The firenewt is a 3rd-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell guidance}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + null, + { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell flaming sphere}", + "{@spell hellish rebuke}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "firenewt", + "actions_note": "", + "mythic": null, + "key": "Firenewt Warlock of Imix-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Firenewt Warrior", + "source": "VGM", + "page": 142, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain shirt|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 13, + "constitution": 12, + "intelligence": 7, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Draconic", + "Ignan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The firenewt can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The firenewt makes two attacks with its scimitar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Fire (Recharges after a Short or Long Rest)", + "body": [ + "The firenewt spits fire at a creature within 10 feet of it. The creature must make a {@dc 11} Dexterity saving throw, taking 9 ({@damage 2d8}) fire damage on a failed save, or half as much damage on a successful one" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "firenewt", + "actions_note": "", + "mythic": null, + "key": "Firenewt Warrior-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Flail Snail", + "source": "VGM", + "page": 144, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "5d10 + 25", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 5, + "constitution": 20, + "intelligence": 3, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Antimagic Shell", + "body": [ + "The snail has advantage on saving throws against spells, and any creature making a spell attack against the snail has disadvantage on the attack roll. If the snail succeeds on its saving throw against a spell or a spell attack misses it, an additional effect might occur, as determined by rolling a {@dice d6}:", + { + "title": "1\u20132", + "body": [ + "If the spell affects an area or has multiple targets, it fails and has no effect. If the spell targets only the snail, it has no effect on the snail and is reflected back at the caster, using the spell slot level, spell save DC, attack bonus, and spellcasting ability of the caster." + ], + "__dataclass__": "Entry" + }, + { + "title": "3\u20134", + "body": [ + "No additional effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "5\u20136", + "body": [ + "The snail's shell converts some of the spell's energy into a burst of destructive force. Each creature within 30 feet of the snail must make a {@dc 15} Constitution saving throw, taking {@damage 1d6} force damage per level of the spell on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail Tentacles", + "body": [ + "The flail snail has five flail tentacles. Whenever the snail takes 10 damage or more on a single turn, one of its tentacles dies. If even one tentacle remains, the snail regrows all dead ones within {@dice 1d4} days. If all its tentacles die, the snail retracts into its shell, gaining {@quickref Cover||3||total cover}, and it begins wailing, a sound that can be heard for 600 feet, stopping only when it dies {@dice 5d6} minutes later. Healing magic that restores limbs, such as the {@spell regenerate} spell, can halt this dying process." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The flail snail makes as many flail tentacle attacks as it has flail tentacles, all against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scintillating Shell (Recharges after a Short or Long Rest)", + "body": [ + "The snail's shell emits dazzling, colored light until the end of the snail's next turn. During this time, the shell sheds bright light in a 30-foot radius and dim light for an additional 30 feet, and creatures that can see the snail have disadvantage on attack rolls against it. In addition, any creature within the bright light and able to see the snail when this power is activated must succeed on a {@dc 15} Wisdom saving throw or be {@condition stunned} until the light ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "The flail snail withdraws into its shell, gaining a +4 bonus to AC until it emerges. It can emerge from its shell as a bonus action on its turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flail Snail-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Flind", + "source": "VGM", + "page": 153, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 10, + "constitution": 19, + "intelligence": 11, + "wisdom": 13, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Gnoll" + ], + "traits": [ + { + "title": "Aura of Blood Thirst", + "body": [ + "If the flind isn't {@condition incapacitated}, any creature with the Rampage trait can make a bite attack as a bonus action while within 10 feet of the flind." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The flind makes three attacks: one with each of its different flail attacks or three with its longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail of Madness", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must make a {@dc 16} Wisdom saving throw. On a failed save, the target must make a melee attack against a random target within its reach on its next turn. If it has no targets within its reach even after moving, it loses its action on that turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail of Pain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage plus 22 ({@damage 4d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flail of Paralysis", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage, and the target must succeed on a {@dc 16} Constitution saving throw or be {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}4 ({@damage 1d8}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "gnoll", + "actions_note": "", + "mythic": null, + "key": "Flind-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Froghemoth", + "source": "VGM", + "page": 145, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 184, + "formula": "16d12 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 13, + "constitution": 20, + "intelligence": 2, + "wisdom": 12, + "charisma": 5, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The froghemoth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shock Susceptibility", + "body": [ + "If the froghemoth takes lightning damage, it suffers several effects until the end of its next turn: its speed is halved, it takes a \u22122 penalty to AC and Dexterity saving throws, it can't use reactions or Multiattack, and on its turn, it can use either an action or a bonus action, not both." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The froghemoth makes two attacks with its tentacles. It can also use its tongue or bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 20 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Huge or smaller creature. Until the grapple ends, the froghemoth can't use this tentacle on another target. The froghemoth has four tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage, and the target is swallowed if it is a Medium or smaller creature. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the froghemoth, and takes 10 ({@damage 3d6}) acid damage at the start of each of the froghemoth's turns.", + "The froghemoth's gullet can hold up to two creatures at a time. If the Froghemoth takes 20 damage or more on a single turn from a creature inside it, the Froghemoth must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which falls {@condition prone} in a space within 10 feet of the froghemoth. If the froghemoth dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "The Froghemoth targets one Medium or smaller creature that it can see within 20 feet of it. The target must make a {@dc 18} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the froghemoth, and the froghemoth can make a bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Froghemoth-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Frost Giant Everlasting One", + "source": "VGM", + "page": 148, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "patchwork armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "14d12 + 98", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 25, + "dexterity": 9, + "constitution": 24, + "intelligence": 9, + "wisdom": 10, + "charisma": 12, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "con": "+11", + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Extra Heads", + "body": [ + "The giant has a {@chance 25} chance of having more than one head. If it has more than one, it has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}, {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The giant regains 10 hit points at the start of its turn. If the giant takes acid or fire damage, this trait doesn't function at the start of its next turn. The giant dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vaprak's Rage (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, the giant can enter a rage at the start of its turn. The rage lasts for 1 minute or until the giant is {@condition incapacitated}. While raging, the giant gains the following benefits:", + "- The giant has advantage on Strength checks and Strength saving throws", + "- When it makes a melee weapon attack, the giant gains a +4 bonus to the damage roll.", + "- The giant has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two attacks with its greataxe." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}26 ({@damage 3d12 + 7}) slashing damage, or 30 ({@damage 3d12 + 11}) slashing damage while raging." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "frost giant", + "actions_note": "", + "mythic": null, + "key": "Frost Giant Everlasting One-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Gauth", + "source": "VGM", + "page": 125, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 10, + "dexterity": 14, + "constitution": 16, + "intelligence": 15, + "wisdom": 15, + "charisma": 13, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+5", + "cha": "+4" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Stunning Gaze", + "body": [ + "When a creature that can see the gauth's central eye starts its turn within 30 feet of the gauth, the gauth can force it to make a {@dc 14} Wisdom saving throw if the gauth isn't {@condition incapacitated} and can see the creature. A creature that fails the save is {@condition stunned} until the start of its next turn, when it can avert its eyes again. If the creature looks at the gauth in the meantime, it must immediately make the save." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Throes", + "body": [ + "When the gauth dies, the magical energy within it explodes, and each creature within 10 feet of it must make a {@dc 14} Dexterity saving throw, taking 13 ({@damage 3d8}) force damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The gauth shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "title": "1. Devour Magic Ray", + "body": [ + "The targeted creature must succeed on a {@dc 14} Dexterity saving throw or have one of its magic items lose all magical properties until the start of the gauth's next turn. If the object is a charged item, it also loses {@dice 1d4} charges. Determine the affected item randomly, ignoring single-use items such as potions and scrolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Enervation Ray", + "body": [ + "The targeted creature must make a {@dc 14} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Pushing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 14} Strength saving throw or be pushed up to 15 feet directly away from the gauth and have its speed halved until the start of the gauth's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Fire Ray", + "body": [ + "The targeted creature must succeed on a {@dc 14} Dexterity saving throw or take 22 ({@damage 4d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "5. Paralyzing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "6. Sleep Ray", + "body": [ + "The targeted creature must succeed on a {@dc 14} Wisdom saving throw or fall asleep and remain {@condition unconscious} for 1 minute. The target awakens if it takes damage or another creature takes an action to wake it. This ray has no effect on constructs and undead." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gauth-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Gazer", + "source": "VGM", + "page": 126, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d4 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 17, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the gazer can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mimicry", + "body": [ + "The gazer can mimic simple sounds of speech it has heard, in any language. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The gazer shoots two of the following magical eye rays at random (reroll duplicates), choosing one or two targets it can see within 60 feet of it:", + { + "title": "1. Dazing Ray", + "body": [ + "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition charmed} until the start of the gazer's next turn. While the target is {@condition charmed} in this way, its speed is halved, and it has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Fear Ray", + "body": [ + "The targeted creature must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} until the start of the gazer's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Frost Ray", + "body": [ + "The targeted creature must succeed on a {@dc 12} Dexterity saving throw or take 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Telekinetic Ray", + "body": [ + "If the target is a creature that is Medium or smaller, it must succeed on a {@dc 12} Strength saving throw or be moved up to 30 feet directly away from the gazer.", + "If the target is an object weighing 10 pounds or less that isn't being worn or carried, the gazer moves it up to 30 feet in any direction. The gazer can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a container." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gazer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Giant Strider", + "source": "VGM", + "page": 143, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "3d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 18, + "dexterity": 13, + "constitution": 14, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Fire Absorption", + "body": [ + "Whenever the giant strider is subjected to fire damage, it takes no damage and regains a number of hit points equal to half the fire damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Burst {@recharge 5}", + "body": [ + "The giant strider hurls a gout of flame at a point it can see within 60 feet of it. Each creature in a 10-foot-radius sphere centered on that point must make a {@dc 12} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners, and it ignites flammable objects in that area that aren't being worn or carried." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Strider-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Girallon", + "source": "VGM", + "page": 152, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 16, + "constitution": 16, + "intelligence": 5, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the girallon can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The girallon has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The girallon makes five attacks: one with its bite and four with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit. reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Girallon-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Flesh Gnawer", + "source": "VGM", + "page": 154, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 14, + "constitution": 12, + "intelligence": 8, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "saves": { + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Gnoll" + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gnoll makes three attacks: one with its bite and two with its shortsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sudden Rush", + "body": [ + "Until the end of the turn, the gnoll's speed increases by 60 feet and it doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "gnoll", + "actions_note": "", + "mythic": null, + "key": "Gnoll Flesh Gnawer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Hunter", + "source": "VGM", + "page": 154, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 14, + "constitution": 12, + "intelligence": 8, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Gnoll" + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When the gnoll reduces a creature to 0 hit points with a melee attack on its turn, the gnoll can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gnoll makes two melee attacks with its spear or two ranged attacks with its longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage when used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage, and the target's speed is reduced by 10 feet until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "gnoll", + "actions_note": "", + "mythic": null, + "key": "Gnoll Hunter-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Gnoll Witherling", + "source": "VGM", + "page": 155, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 8, + "constitution": 12, + "intelligence": 5, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Gnoll but can't speak" + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When the witherling reduces a creature to 0 hit points with a melee attack on its turn, it can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The witherling makes two attacks: one with its bite and one with its club, or two with its club." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Vengeful Strike", + "body": [ + "In response to a gnoll being reduced to 0 hit points within 30 feet of the witherling, the witherling makes a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gnoll Witherling-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Green Guard Drake", + "source": "VGM", + "page": 158, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The guard drake can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drake attacks twice, once with its bite and once with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Green Guard Drake-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Grung", + "source": "VGM", + "page": 156, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d6 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 14, + "constitution": 15, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Grung" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The grung can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Skin", + "body": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "grung", + "actions_note": "", + "mythic": null, + "key": "Grung-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Grung Elite Warrior", + "source": "VGM", + "page": 157, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d6 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 7, + "dexterity": 16, + "constitution": 15, + "intelligence": 10, + "wisdom": 11, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Grung" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The grung can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Skin", + "body": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mesmerizing Chirr {@recharge}", + "body": [ + "The grung makes a chirring noise to which grungs are immune. Each humanoid or beast that is within 15 feet of the grung and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition stunned} until the end of the grung's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "grung", + "actions_note": "", + "mythic": null, + "key": "Grung Elite Warrior-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Grung Wildling", + "source": "VGM", + "page": 157, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 25, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 7, + "dexterity": 16, + "constitution": 15, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Grung" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The grung can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Skin", + "body": [ + "Any creature that grapples the grung or otherwise comes into direct contact with the grung's skin must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A {@condition poisoned} creature no longer in direct contact with the grung can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The grung's long jump is up to 25 feet and its high jump is up to 15 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must succeed on a {@dc 12} Constitution saving throw or take 5 ({@damage 2d4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The grung is a 9th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It knows the following ranger spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell jump}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell barkskin}", + "{@spell spike growth}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell plant growth}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "grung", + "actions_note": "", + "mythic": null, + "key": "Grung Wildling-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Hadrosaurus", + "source": "VGM", + "page": 140, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 10, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "PSX", + "page": 29 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hadrosaurus-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Hobgoblin Devastator", + "source": "VGM", + "page": 161, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 13, + "dexterity": 12, + "constitution": 14, + "intelligence": 16, + "wisdom": 13, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Arcane Advantage", + "body": [ + "Once per turn, the hobgoblin can deal an extra 7 ({@damage 2d6}) damage to a creature it hits with a damaging spell attack if that target is within 5 feet of an ally of the hobgoblin and that ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Army Arcana", + "body": [ + "When the hobgoblin casts a spell that causes damage or that forces other creatures to make a saving throw, it can choose itself and any number of allies to be immune to the damage caused by the spell and to succeed on the required saving throw." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The hobgoblin is a 7th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell fire bolt}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell fog cloud}", + "{@spell magic missile}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell gust of wind}", + "{@spell Melf's acid arrow}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Hobgoblin Devastator-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Hobgoblin Iron Shadow", + "source": "VGM", + "page": 162, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 16, + "constitution": 15, + "intelligence": 14, + "wisdom": 15, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the hobgoblin is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hobgoblin makes four attacks, each of which can be an unarmed strike or a dart attack. It can also use Shadow Jaunt once, either before or after one of the attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Jaunt", + "body": [ + "The hobgoblin magically teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see. Both the space it is leaving and its destination must be in dim light or darkness." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The hobgoblin is a 2nd-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell true strike}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell charm person}", + "{@spell disguise self}", + "{@spell expeditious retreat}", + "{@spell silent image}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Hobgoblin Iron Shadow-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Illithilich", + "source": "VGM", + "page": 172, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Any Evil Alignment", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 11, + "dexterity": 16, + "constitution": 16, + "intelligence": 20, + "wisdom": 14, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 19, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+12", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the illithilich fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If it has a phylactery, a destroyed illithilich gains a new body in {@dice 1d10} days, regaining all its hit points and becoming active again. The new body appears within 5 feet of the phylactery." + ], + "__dataclass__": "Entry" + }, + { + "title": "Turn Resistance", + "body": [ + "The illithilich has advantage on saving throws against any effect that turns undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The illithilich has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Paralyzing Touch", + "body": [ + "{@atk ms} {@hit 12} to hit, reach 5 ft., one creature. {@h}10 ({@damage 3d6}) cold damage. The target must succeed on a {@dc 18} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one creature. {@h}21 ({@damage 3d10 + 5}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 20} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the lich. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the lich kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The illithilich magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 18} Intelligence saving throw or take 27 ({@damage 5d8 + 5}) psychic damage and be {@condition stunned} 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." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tentacles", + "body": [ + "The illithilich makes one attack with its tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain (Costs 2 Actions)", + "body": [ + "The illithilich uses Extract Brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast (Costs 3 Actions)", + "body": [ + "The illithilich recharges its Mind Blast and uses it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast Spell (Costs 1\u20133 Actions)", + "body": [ + "The illithilich uses a spell slot to cast a 1st-, 2nd-, or 3rd-level spell that it has prepared. Doing so costs 1 legendary action per level of the spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The illithilich's innate spellcasting ability is Intelligence (spell save {@dc 20}). It can innately cast the following spells, requiring no components." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The illithilich is an 18th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 20}, {@hit 12} to hit with spell attacks). The lich has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell Melf's acid arrow}", + "{@spell mirror image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell dimension door}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cloudkill}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell disintegrate}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell plane shift}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell power word stun}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell power word kill}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Illithilich-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Illusionist", + "source": "VGM", + "page": 214, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d8 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 14, + "constitution": 13, + "intelligence": 16, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+2" + }, + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Displacement (Recharges after the Illusionist Casts an Illusion Spell of 1st Level or Higher)", + "body": [ + "As a bonus action, the illusionist projects an illusion that makes the illusionist appear to be standing in a place a few inches from its actual location, causing any creature to have disadvantage on attack rolls against the illusionist. The effect ends if the illusionist takes damage, it is {@condition incapacitated}, or its speed becomes 0." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 1} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The illusionist is a 7th-level spellcaster. its spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks). The illusionist has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell color spray}*", + "{@spell disguise self}*", + "{@spell mage armor}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}*", + "{@spell mirror image}*", + "{@spell phantasmal force}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell major image}*", + "{@spell phantom steed}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell phantasmal killer}*" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Illusionist-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Ki-rin", + "source": "VGM", + "page": 163, + "size_str": "Huge", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 152, + "formula": "16d12 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 21, + "dexterity": 16, + "constitution": 16, + "intelligence": 19, + "wisdom": 20, + "charisma": 20, + "passive": 19, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the ki-rin fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The ki-rin has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The ki-rin's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ki-rin makes three attacks: two with its hooves and one with its horn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hoof", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}10 ({@damage 2d4 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horn", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Detect", + "body": [ + "The ki-rin makes a Wisdom ({@skill Perception}) check or a Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Smite", + "body": [ + "The ki-rin makes a hoof attack or casts {@spell sacred flame}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Move", + "body": [ + "The ki-rin moves up to its half its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The ki-rin's innate spellcasting ability is Charisma (spell save {@dc 17}). The ki-rin can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell gaseous form}", + "{@spell major image} (6th-level version)", + "{@spell wind walk}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell create food and water}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The ki-rin is a 18th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 17}, {@hit 9} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell cure wounds}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell lesser restoration}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell remove curse}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}", + "{@spell guardian of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater restoration}", + "{@spell mass cure wounds}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell heroes' feast}", + "{@spell true seeing}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell etherealness}", + "{@spell plane shift}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell control weather}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell true resurrection}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ki-rin-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Dragonshield", + "source": "VGM", + "page": 165, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d6 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 12, + "dexterity": 15, + "constitution": 14, + "intelligence": 8, + "wisdom": 9, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Dragon's Resistance", + "body": [ + "The kobold has resistance to a type of damage based on the color of dragon that invested it with power (choose or roll a {@damage d10}): 1\u20132, acid (black); 3\u20134, cold (white); 5\u20136, fire (red); 7\u20138, lightning (blue); 9\u201310, poison (green)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heart of the Dragon", + "body": [ + "If the kobold is {@condition frightened} or {@condition paralyzed} by an effect that allows a saving throw, it can repeat the save at the start of its turn to end the effect on itself and all kobolds within 30 feet of it. Any kobold that benefits from this trait (including the dragonshield) has advantage on its next attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kobold makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + } + ], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Kobold Dragonshield-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Inventor", + "source": "VGM", + "page": 166, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 7, + "charisma": 8, + "passive": 10, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 0, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weapon Invention", + "body": [ + "The kobold uses one of the following options (roll a {@dice d8} or choose one); the kobold can use each one no more than once per day:", + { + "title": "1. Acid", + "body": [ + "The kobold hurls a flask of {@item Acid (vial)|phb|acid}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Alchemist's fire", + "body": [ + "The kobold throws a flask of {@item Alchemist's Fire (flask)|phb|alchemist's fire}. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}2 ({@damage 1d4}) fire damage at the start of each of the target's turns. A creature can end this damage by using its action to make a {@dc 10} Dexterity check to extinguish the flames." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Basket of Centipedes", + "body": [ + "The kobold throws a small basket into a 5-foot-square space within 20 feet of it. A {@creature swarm of centipedes||swarm of insects (centipedes)} with 11 hit points emerges from the basket and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Green Slime Pot", + "body": [ + "The kobold throws a clay pot full of green slime at the target, and it breaks open on impact. {@atk rw} {@hit 4} to hit, range 5/20 ft., one target. {@h}The target is covered in a patch of {@hazard green slime} (see chapter 5 of the Dungeon Master's Guide). Miss: A patch of green slime covers a randomly determined 5-foot-square section of wall or floor within 5 feet of the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "5. Rot Grub Pot", + "body": [ + "The kobold throws a clay pot into a 5-foot-square space within 20 feet of it, and it breaks open on impact. A {@creature swarm of rot grubs|vgm} (see appendix A) emerges from the shattered pot and remains a hazard in that square." + ], + "__dataclass__": "Entry" + }, + { + "title": "6. Scorpion on a Stick", + "body": [ + "The kobold makes a melee attack with a scorpion tied to the end of a 5-foot-long pole. {@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage, and the target must make a {@dc 9} Constitution saving throw, taking 4 ({@damage 1d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "7. Skunk in a Cage", + "body": [ + "The kobold releases a skunk into an unoccupied space within 5 feet of it. The skunk has a walking speed of 20 feet, AC 10, 1 hit point, and no effective attacks. It rolls initiative and, on its turn, uses its action to spray musk at a random creature within 5 feet of it. The target must make a {@dc 9} Constitution saving throw. On a failed save, the target retches and can't take actions for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that doesn't need to breathe or is immune to poison automatically succeeds on the saving throw. Once the skunk has sprayed its musk, it can't do so again until it finishes a short or long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "8. Wasp Nest in a Bag", + "body": [ + "The kobold throws a small bag into a 5-foot-square space within 20 feet of it. A {@creature swarm of wasps||swarm of insects (wasps)} with 11 hit points emerges from the bag and rolls initiative. At the end of each of the swarm's turns, there's a {@chance 50} chance that the swarm disperses." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Kobold Inventor-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Scale Sorcerer", + "source": "VGM", + "page": 167, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d6 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 7, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 9, + "charisma": 14, + "passive": 9, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Sorcery Points", + "body": [ + "The kobold has 3 sorcery points. It regains all its spent sorcery points when it finishes a long rest. It can spend its sorcery points on the following options:", + "Heightened Spell: When it casts a spell that forces a creature to a saving throw to resist the spell's effects, the kobold can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw against the spell.", + "Subtle Spell: When the kobold casts a spell, it can spend 1 sorcery point to cast the spell without any somatic or verbal components." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature it at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The kobold is a 3rd-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It has the following sorcerer spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell chromatic orb}", + "{@spell expeditious retreat}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Kobold Scale Sorcerer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Korred", + "source": "VGM", + "page": 168, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d6 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 23, + "dexterity": 14, + "constitution": 20, + "intelligence": 10, + "wisdom": 15, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "languages": [ + "Dwarvish", + "Gnomish", + "Sylvan", + "Terran", + "Undercommon" + ], + "traits": [ + { + "title": "Command Hair", + "body": [ + "The korred has at least one 50-foot-long rope woven out of its hair. As a bonus action, the korred commands one such rope within 30 feet of it to move up to 20 feet and entangle a Large or smaller creature that the korred can see. The target must succeed on a {@dc 13} Dexterity saving throw or become {@condition grappled} by the rope (escape {@dc 13}). Until this grapple ends. the target is {@condition restrained}. The korred can use a bonus action to release the target, which is also freed if the korred dies or becomes {@condition incapacitated}.", + "A rope of korred hair has AC 20 and 20 hit points. It regains 1 hit point at the start of each of the korred's turns while it has at least 1 hit point and the korred is alive. If the rope drops to 0 hit points, it is destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Camouflage", + "body": [ + "The korred has advantage on Dexterity ({@skill Stealth}) checks made to hide in rocky terrain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone's Strength", + "body": [ + "While on the ground, the korred deals 2 extra dice of damage with any weapon attack (included in its attacks)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The korred makes two attacks with its greatclub or hurls two rocks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage, or 19 ({@damage 3d8 + 6}) bludgeoning damage if the korred is on the ground." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/120 ft., one target. {@h}15 ({@damage 2d8 + 6}) bludgeoning damage, or 24 ({@damage 4d8 + 6}) bludgeoning damage if the korred is on the ground." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The korred's innate spellcasting ability is Wisdom (save {@dc 13}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell commune with nature}", + "{@spell meld into stone}", + "{@spell stone shape}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell conjure elemental} (as 6th-level spell; {@creature galeb duhr}, {@creature gargoyle}, {@creature earth elemental}, or {@creature xorn} only)", + "{@spell Otto's irresistible dance}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Korred-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Kraken Priest", + "source": "VGM", + "page": 215, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Evil Alignment", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 10, + "constitution": 16, + "intelligence": 10, + "wisdom": 15, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "any two languages" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The priest can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Thunderous Touch", + "body": [ + "{@atk ms} {@hit 5} to hit, reach 5 ft., one creature. {@h}27 ({@damage 5d10}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Voice of the Kraken (Recharges after a Short or Long Rest)", + "body": [ + "A kraken speaks through the priest with a thunderous voice audible within 300 feet. Creatures of the priest's choice that can hear the kraken's words (which are spoken in Abyssal, Infernal, or Primordial) must succeed on a {@dc 14} Charisma saving throw or be {@condition frightened} for 1 minute. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The priest's spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell create or destroy water}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell control water}", + "{@spell darkness}", + "{@spell water breathing}", + "{@spell water walk}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell call lightning}", + "{@spell Evard's black tentacles}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "GoS" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "LR" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Kraken Priest-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Leucrotta", + "source": "VGM", + "page": 169, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 9, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Gnoll" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The leucrotta has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Kicking Retreat", + "body": [ + "If the leucrotta attacks with its hooves, it can take the Disengage action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mimicry", + "body": [ + "The leucrotta can mimic animal sounds and humanoid voices. A creature that hears the sounds can tell they are imitations with a successful {@dc 14} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rampage", + "body": [ + "When the leucrotta reduces a creature to 0 hit points with a melee attack on its turn, it can take a bonus action to move up to half its speed and make an attack with its hooves." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The leucrotta makes two attacks: one with its bite and one with its hooves." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage. If the leucrotta scores a critical hit, it rolls the damage dice three times, instead of twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Leucrotta-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Martial Arts Adept", + "source": "VGM", + "page": 216, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "11d8 + 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 17, + "constitution": 13, + "intelligence": 11, + "wisdom": 16, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the adept is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The adept makes three unarmed strikes or three dart attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the target is a creature, the adept can choose one of the following additional effects:", + "The target must succeed on a {@dc 13} Strength saving throw or drop one item it is holding (adept's choice).", + "The target must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}.", + "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the adept's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, the adept deflects the missile. The damage it takes from the attack is reduced by {@dice 1d10 + 3}. If the damage is reduced to 0, the adept catches the missile if it's small enough to hold in one hand and the adept has a hand free." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "TftYP" + }, + { + "source": "ToA" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Martial Arts Adept-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Master Thief", + "source": "VGM", + "page": 216, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 83, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+3" + }, + "languages": [ + "any one language (usually Common) plus Thieves' cant" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of its turns, the thief can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If the thief is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, the thief instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "The thief deals an extra 14 ({@damage 4d6}) damage when it hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the thief that isn't {@condition incapacitated} and the thief doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thief makes three attacks with its shortsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "The thief halves the damage that it takes from an attack that hits it. The thief must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + }, + { + "source": "IMR", + "page": 216 + }, + { + "source": "MOT" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Master Thief-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Maw Demon", + "source": "VGM", + "page": 137, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 8, + "constitution": 13, + "intelligence": 5, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the maw demon can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Maw Demon-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Meenlock", + "source": "VGM", + "page": 170, + "size_str": "Small", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 7, + "dexterity": 15, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Fear Aura", + "body": [ + "Any beast or humanoid that starts its turn within 10 feet of the meenlock must succeed on a {@dc 11} Wisdom saving throw or be {@condition frightened} until the start of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Sensitivity", + "body": [ + "While in bright light, the meenlock has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Teleport {@recharge 5}", + "body": [ + "As a bonus action, the meenlock can teleport to an unoccupied space within 30 feet of it, provided that both the space it's teleporting from and its destination are in dim light or darkness. The destination need not be within line of sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage, and the target must succeed on a {@dc 11} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Meenlock-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Mind Flayer Psion", + "source": "VGM", + "page": 71, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 12, + "constitution": 12, + "intelligence": 19, + "wisdom": 17, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it is {@condition grappled} (escape {@dc 15}) and must succeed on a {@dc 15} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the mind flayer. {@h}The target takes 55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The mind flayer magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) psychic damage and be {@condition stunned} 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." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The mind flayer is a 10th-level spellcaster. Its innate spellcasting ability is Intelligence (spell save {@dc 15}; {@hit 7} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell command}", + "{@spell comprehend languages}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell phantasmal force}", + "{@spell see invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell fear}", + "{@spell meld into stone}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell stone shape}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell scrying}", + "{@spell telekinesis}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mage hand}", + "{@spell vicious mockery}", + "{@spell true strike}", + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mind Flayer Psion-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Mindwitness", + "source": "VGM", + "page": 176, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 20, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 14, + "constitution": 14, + "intelligence": 15, + "wisdom": 15, + "charisma": 10, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 600 ft." + ], + "traits": [ + { + "title": "Telepathic Hub", + "body": [ + "When the mindwitness receives a telepathic message, it can telepathically share that message with up to seven other creatures within 600 feet of it that it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mindwitness makes two attacks: one with its tentacles and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}16 ({@damage 4d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}20 ({@damage 4d8 + 2}) psychic damage. if the target is Large or smaller, it is {@condition grappled} (escape {@dc 13}) and must succeed on a {@dc 13} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Rays", + "body": [ + "The mindwitness shoots three of the following magical eye rays at random (reroll duplicates), choosing one to three targets it can see within 120 feet of it:", + { + "title": "1. Aversion Ray", + "body": [ + "The targeted creature must make a {@dc 13} Charisma saving throw. On a failed save, the target has disadvantage on attack rolls for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "2. Fear Ray", + "body": [ + "The targeted creature must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "3. Psychic Ray", + "body": [ + "The target must succeed on a {@dc 13} Intelligence saving throw or take 27 ({@damage 6d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "4. Slowing Ray", + "body": [ + "The targeted creature must make a {@dc 13} Dexterity saving throw. On a failed save, the target's speed is halved for 1 minute. In addition, the creature can't take reactions, and it can take either an action or a bonus action on its turn but not both. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "5. Stunning Ray", + "body": [ + "The targeted creature must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} for 1 minute. The target can repeat the saving throw at the start of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "6. Telekinetic Ray", + "body": [ + "If the target is a creature, it must make a {@dc 13} Strength saving throw. On a failed save, the mindwitness moves it up to 30 feet in any direction, and it is {@condition restrained} by the ray's telekinetic grip until the start of the mindwitness's next turn or until the mindwitness is {@condition incapacitated}.", + "If the target is an object weighing 300 pounds or less that isn't being worn or carried, it is telekinetically moved up to 30 feet in any direction. The mindwitness can also exert fine control on objects with this ray, such as manipulating a simple tool or opening a door or a container." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mindwitness-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Morkoth", + "source": "VGM", + "page": 177, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 130, + "formula": "20d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 14, + "dexterity": 14, + "constitution": 14, + "intelligence": 20, + "wisdom": 15, + "charisma": 13, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+9", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The morkoth can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The morkoth makes three attacks: two with its bite and one with its tentacles or three with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}15 ({@damage 3d8 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends. the target is {@condition restrained} and takes 15 ({@damage 3d8 + 2}) bludgeoning damage at the start of each of the morkoth's turns. and the morkoth can't use its tentacles on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hypnosis", + "body": [ + "The morkoth projects a 30-foot cone of magical energy. Each creature in that area must make a {@dc 17} Wisdom saving throw. On a failed save, the creature is {@condition charmed} by the morkoth for 1 minute. While {@condition charmed} in this way, the target tries to get as close to the morkoth as possible, using its actions to Dash until it is within 5 feet of the morkoth. A {@condition charmed} target can repeat the saving throw at the end of each of its turns and whenever it takes damage, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature has advantage on saving throws against the morkoth's Hypnosis for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Reflection", + "body": [ + "If the morkoth makes a successful saving throw against a spell, or a spell attack misses it, the morkoth can choose another creature (including the spellcaster) it can see within 120 feet of it. The spell targets the chosen creature instead of the morkoth. If the spell forced a saving throw, the chosen creature makes its own save. If the spell was an attack, the attack roll is rerolled against the chosen creature." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The morkoth is an 11th-level spellcaster. Its spellcasting ability is Intelligence (save {@dc 17}, {@hit 9} to hit with spell attacks). The morkoth has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell acid splash}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell shield}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell detect thoughts}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell lightning bolt}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dimension door}", + "{@spell Evard's black tentacles}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell geas}", + "{@spell scrying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Morkoth-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Mouth of Grolantor", + "source": "VGM", + "page": 149, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 21, + "dexterity": 10, + "constitution": 18, + "intelligence": 5, + "wisdom": 7, + "charisma": 5, + "passive": 11, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Mouth of Madness", + "body": [ + "The giant is immune to {@spell confusion} spells and similar magic.", + "On each of its turns, the giant uses all its movement to move toward the nearest creature or whatever else it might perceive as food. Roll a {@dice d10} at the start of each of the giant's turns to determine its action for that turn:", + "1\u20133. The giant makes three attacks with its fists against one random target within its reach. If no other creatures are within its reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn.", + "4\u20135. The giant makes one attack with its fist against every creature within its reach. If no other creatures are within its reach, the giant makes one fist attack against itself.", + "6\u20137. The giant makes one attack with its bite against one random target within its reach. If no other creatures are within its reach, its eyes glaze over and it becomes {@condition stunned} until the start of its next turn.", + "8\u201310. The giant makes three attacks against one random target within its reach: one attack with its bite and two with its fists. If no other creatures are within its reach, the giant flies into a rage and gains advantage on all attack rolls until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}15 ({@damage 3d6 + 5}) piercing damage, and the giant magically regains hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "hill giant", + "actions_note": "", + "mythic": null, + "key": "Mouth of Grolantor-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Necromancer", + "source": "VGM", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Grim Harvest (1/Turn)", + "body": [ + "When necromancer kills a creature that is neither a construct nor undead with a spell of 1st level or higher, the necromancer regains hit points equal to twice the spell's level, or three times if it is a necromancy spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Withering Touch", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one creature. {@h}5 ({@damage 2d4}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The necromancer is a 12th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 15}, {@hit 7} to hit with spell attacks). The necromancer has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell mending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell false life}*", + "{@spell mage armor}", + "{@spell ray of sickness}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}*", + "{@spell ray of enfeeblement}*", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}*", + "{@spell bestow curse}*", + "{@spell vampiric touch}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}*", + "{@spell dimension door}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell Bigby's hand}", + "{@spell cloudkill}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell circle of death}*" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + }, + { + "source": "DC" + }, + { + "source": "DIP" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Necromancer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi", + "source": "VGM", + "page": 180, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 6, + "dexterity": 16, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon" + ], + "traits": [ + { + "title": "Mental Fortitude", + "body": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The neogi makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enslave (Recharges after a Short or Long Rest)", + "body": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neogi-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi Hatchling", + "source": "VGM", + "page": 179, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "3d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 6, + "wisdom": 10, + "charisma": 9, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Mental Fortitude", + "body": [ + "The hatchling has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the hatchling to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The hatchling can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage plus 7 ({@damage 2d6}) poison damage, and the target must succeed on a {@dc 10} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neogi Hatchling-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Neogi Master", + "source": "VGM", + "page": 180, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 6, + "dexterity": 16, + "constitution": 14, + "intelligence": 16, + "wisdom": 12, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3" + }, + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "languages": [ + "Common", + "Deep Speech", + "Undercommon", + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Mental Fortitude", + "body": [ + "The neogi has advantage on saving throws against being {@condition charmed} or {@condition frightened}, and magic can't put the neogi to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The neogi can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The neogi makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enslave (Recharges after a Short or Long Rest)", + "body": [ + "The neogi targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} by the neogi for 1 day, or until the neogi dies or is more than 1 mile from the target. The {@condition charmed} target obeys the neogi's commands and can't take reactions, and the neogi and the target can communicate telepathically with each other at a distance of up to 1 mile. Whenever the {@condition charmed} target takes damage, it can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The neogi is a 7th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell eldritch blast} (range 300 ft., +4 bonus to each damage roll)", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell counterspell}", + "{@spell dimension door}", + "{@spell fear}", + "{@spell hold person}", + "{@spell hunger of Hadar}", + "{@spell invisibility}", + "{@spell unseen servant}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neogi Master-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Neothelid", + "source": "VGM", + "page": 181, + "size_str": "Gargantuan", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 325, + "formula": "21d20 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 27, + "dexterity": 7, + "constitution": 21, + "intelligence": 3, + "wisdom": 16, + "charisma": 12, + "passive": 13, + "saves": { + "int": "+1", + "wis": "+8", + "cha": "+6" + }, + "senses": [ + "blindsight 120 ft." + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The neothelid is aware of the presence of creatures within 1 mile of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The neothelid has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage plus 13 ({@damage 3d8}) psychic damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be swallowed by the neothelid. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the neothelid, and it takes 35 ({@damage 10d6}) acid damage at the start of each of the neothelid's turns.", + "If the neothelid takes 30 damage or more on a single turn from a creature inside it, the neothelid must succeed on a {@dc 18} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the neothelid. If the neothelid dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Breath {@recharge 5}", + "body": [ + "The neothelid exhales acid in a 60-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 35 ({@damage 10d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The neothelid's innate spellcasting ability is Wisdom (spell save {@dc 16}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell feeblemind}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Neothelid-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Nilbog", + "source": "VGM", + "page": 182, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 8, + "charisma": 15, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nilbogism", + "body": [ + "Any creature that attempts to damage the nilbog must first succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} until the end of the creature's next turn. A creature {@condition charmed} in this way must use its action praising the nilbog. The nilbog can't regain hit points, including through magical healing, except through its Reversal of Fortune reaction." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimble Escape", + "body": [ + "The nilbog can take the Disengage or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fool's Scepter", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Reversal of Fortune", + "body": [ + "In response to another creature dealing damage to the nilbog, the nilbog reduces the damage to 0 and regains {@dice 1d6} hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The nilbog's innate spellcasting ability is Charisma (spell save {@dc 12}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell Tasha's hideous laughter}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Nilbog-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Orc Blade of Ilneval", + "source": "VGM", + "page": 183, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 11, + "constitution": 17, + "intelligence": 10, + "wisdom": 12, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Foe Smiter of Ilneval", + "body": [ + "The orc deals an extra die of damage when it hits with a longsword attack (included in the attack)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The orc makes two melee attacks with its longsword or two ranged attacks with its javelins. If Ilneval's Command is available to use, the orc can use it after these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage, or 14 ({@damage 2d10 + 3}) slashing damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ilneval's Command {@recharge 4}", + "body": [ + "Up to three allied orcs within 120 feet of this orc that can hear it can use their reactions to each make one weapon attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc Blade of Ilneval-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Orc Claw of Luthic", + "source": "VGM", + "page": 183, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 15, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The orc makes two claw attacks, or four claw attacks if it has fewer than half of its hit points remaining." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The orc is a 5th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). The orc has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell cure wounds}", + "{@spell guiding bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell warding bond}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell bestow curse}", + "{@spell create food and water}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc Claw of Luthic-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Orc Hand of Yurtrus", + "source": "VGM", + "page": 184, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 11, + "constitution": 16, + "intelligence": 11, + "wisdom": 14, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common and Orc but can't speak" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Touch of the White Hand", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The orc is a 4th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It requires no verbal components to cast its spells. The orc has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell mending}", + "{@spell resistance}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell bane}", + "{@spell detect magic}", + "{@spell inflict wounds}", + "{@spell protection from evil and good}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blindness/deafness}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc Hand of Yurtrus-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Orc Nurtured One of Yurtrus", + "source": "VGM", + "page": 184, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 8, + "constitution": 16, + "intelligence": 7, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the orc can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupted Carrier", + "body": [ + "When the orc is reduced to 0 hit points, it explodes, and any creature within 10 feet of it must make a {@dc 13} Constitution saving throw. On a failed save, the creature takes 14 ({@damage 4d6}) poison damage and becomes {@condition poisoned}. On a success, the creature takes half as much damage and isn't {@condition poisoned}. A creature {@condition poisoned} by this effect can repeat the save at the end of each of its turn, ending the effect on itself on a success. While {@condition poisoned} by this effect, a creature can't regain hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nurtured One of Yurtrus", + "body": [ + "The orc has advantage on saving throws against poison and disease." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage plus 2 ({@damage 1d4}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupted Vengeance", + "body": [ + "The orc reduces itself to 0 hit points, triggering its Corrupted Carrier trait." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc Nurtured One of Yurtrus-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Orc Red Fang of Shargaas", + "source": "VGM", + "page": 185, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 16, + "constitution": 15, + "intelligence": 9, + "wisdom": 11, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of its turns, the orc can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand of Shargaas", + "body": [ + "The orc deals 2 extra dice of damage when it hits a target with a weapon attack (included in its attacks)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shargaas's Sight", + "body": [ + "Magical darkness doesn't impede the orc's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slayer", + "body": [ + "In the first round of a combat, the orc has advantage on attack rolls against any creature that hasn't taken a turn yet. If the orc hits a creature that round who was {@status surprised}, the hit is automatically a critical hit." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The orc makes two scimitar or dart attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}13 ({@damage 3d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}10 ({@damage 3d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Veil of Shargaas (Recharges after a Short or Long Rest)", + "body": [ + "The orc casts {@spell darkness} without any components. Wisdom is its spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Orc Red Fang of Shargaas-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Ox", + "source": "VGM", + "page": 208, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "traits": [ + { + "title": "Charge", + "body": [ + "If the ox moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beast of Burden", + "body": [ + "The oxen is considered to be a Huge animal for the purposes of determining its carrying capacity." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "PotA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ox-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Quetzalcoatlus", + "source": "VGM", + "page": 140, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d12 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 13, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Dive Attack", + "body": [ + "If the quetzalcoatlus is flying and dives at least 30 feet toward a target and then hits with a bite attack, the attack deals an extra 10 ({@damage 3d6}) damage to the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The quetzalcoatlus doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one creature. {@h}12 ({@damage 3d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Quetzalcoatlus-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Quickling", + "source": "VGM", + "page": 187, + "size_str": "Tiny", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 120, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 4, + "dexterity": 23, + "constitution": 13, + "intelligence": 10, + "wisdom": 12, + "charisma": 7, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Blurred Movement", + "body": [ + "Attack rolls against the quickling have disadvantage unless the quickling is {@condition incapacitated} or {@condition restrained}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If the quickling is subjected to an effect that allows it to make a Dexterity saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quickling makes three dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Quickling-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Red Guard Drake", + "source": "VGM", + "page": 158, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drake attacks twice, once with its bite and once with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Red Guard Drake-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Redcap", + "source": "VGM", + "page": 188, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d6 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 18, + "intelligence": 10, + "wisdom": 12, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Iron Boots", + "body": [ + "While moving, the redcap has disadvantage on Dexterity ({@skill Stealth}) checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Outsize Strength", + "body": [ + "While grappling, the redcap is considered to be Medium. Also, wielding a heavy weapon doesn't impose disadvantage on its attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The redcap makes three attacks with its wicked sickle." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wicked Sickle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ironbound Pursuit", + "body": [ + "The redcap moves up to its speed to a creature it can see and kicks with its iron boots. The target must succeed on a {@dc 14} Dexterity saving throw or take 20 ({@damage 3d10 + 4}) bludgeoning damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "BGDIA" + }, + { + "source": "IMR" + }, + { + "source": "WBtW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Redcap-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Roth\u00e9", + "source": "VGM", + "page": 208, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the roth\u00e9 moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CoA", + "page": 48 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Roth\u00e9-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Sea Spawn", + "source": "VGM", + "page": 189, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 15, + "dexterity": 8, + "constitution": 15, + "intelligence": 6, + "wisdom": 10, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Aquan and Common but can't speak" + ], + "traits": [ + { + "title": "Limited Amphibiousness", + "body": [ + "The sea spawn can breathe air and water, but needs to be submerged in the sea at least once a day for 1 minute to avoid suffocating." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sea spawn makes three attacks: two unarmed strikes and one with its Piscine Anatomy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Piscine Anatomy", + "body": [ + "The sea spawn has one or more of the following attack options, provided it has the appropriate anatomy:", + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Quills", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}3 ({@damage 1d6}) poison damage, and the target must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 12}) if it is a Medium or smaller creature. Until this grapple ends, the sea spawn can't use this tentacle on another target." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sea Spawn-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Shadow Mastiff", + "source": "VGM", + "page": 190, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 5, + "wisdom": 12, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks while in dim light or darkness", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Ethereal Awareness", + "body": [ + "The shadow mastiff can see ethereal creatures and objects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Smell", + "body": [ + "The shadow mastiff has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Blend", + "body": [ + "While in dim light or darkness, the shadow mastiff can use a bonus action to become {@condition invisible}, along with anything it is wearing or carrying. The invisibility lasts until the shadow mastiff uses a bonus action to end it or until the shadow mastiff attacks, is in bright light, or is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Weakness", + "body": [ + "While in bright light created by sunlight, the shadow mastiff has disadvantage on attack rolls, ability checks, and saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shadow Mastiff-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Shoosuva", + "source": "VGM", + "page": 137, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d10 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 13, + "constitution": 17, + "intelligence": 7, + "wisdom": 14, + "charisma": 9, + "passive": 12, + "saves": { + "dex": "+4", + "con": "+6", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Gnoll", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Rampage", + "body": [ + "When it reduces a creature to 0 hit points with a melee attack on its turn, the shoosuva can take a bonus action to move up to half its speed and make a bite attack." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shoosuva makes two attacks: one with its bite and one with its tail stinger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}26 ({@damage 4d10 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Stinger", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one creature. {@h}13 ({@damage 2d8 + 4}) piercing damage, and the target must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned}, the target is also {@condition paralyzed}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Shoosuva-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Slithering Tracker", + "source": "VGM", + "page": 191, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 19, + "constitution": 15, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "understands languages it knew in its previous form but can't speak" + ], + "traits": [ + { + "title": "Ambusher", + "body": [ + "In the first round of a combat, the slithering tracker has advantage on attack rolls against any creature it {@status surprised}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Damage Transfer", + "body": [ + "While grappling a creature, the slithering tracker takes only haIf the damage dealt to it, and the creature it is grappling takes the other half." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the slithering tracker remains motionless, it is indistinguishable from a puddle, unless an observer succeeds on a {@dc 18} Intelligence ({@skill Investigation}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Tracker", + "body": [ + "The slithering tracker has advantage on Wisdom checks to track prey." + ], + "__dataclass__": "Entry" + }, + { + "title": "Liquid Form", + "body": [ + "The slithering tracker can enter an enemy's space and stop there. It can also move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The slithering tracker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Watery Stealth", + "body": [ + "While underwater, the slithering tracker has advantage on Dexterity ({@skill Stealth}) checks made to hide, and it can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Leech", + "body": [ + "One Large or smaller creature that the slithering tracker can see within 5 feet of it must succeed on a {@dc 13} Dexterity saving throw or be {@condition grappled} (escape {@dc 13}). Until this grapple ends, the target is {@condition restrained} and unable to breathe unless it can breathe water. In addition, the {@condition grappled} target takes 16 ({@damage 3d10}) necrotic damage at the start of each of its turns. The slithering tracker can grapple only one target at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "IMR" + }, + { + "source": "MOT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Slithering Tracker-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Spawn of Kyuss", + "source": "VGM", + "page": 192, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "9d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 11, + "constitution": 18, + "intelligence": 5, + "wisdom": 7, + "charisma": 3, + "passive": 8, + "saves": { + "wis": "+1" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The spawn of Kyuss regains 10 hit points at the start of its turn if it has at least 1 hit point and isn't in sunlight or a body of running water. If the spawn takes acid, fire, or radiant damage, this trait doesn't function at the start of the spawn's next turn. The spawn is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Worms", + "body": [ + "If the spawn of Kyuss is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away, and it loses its Burrowing Worm action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spawn of Kyuss makes two attacks with its claws and uses Burrowing Worm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Burrowing Worm", + "body": [ + "A worm launches from the spawn of Kyuss at one humanoid that the spawn can see within 10 feet of it. The worm latches onto the target's skin unless the target succeeds on a {@dc 11} Dexterity saving throw. The worm is a Tiny undead with AC 6, 1 hit point, a 2 (-4) in every ability score, and a speed of 1 foot. While on the target's skin, the worm can be killed by normal means or scraped off using an action (the spawn can use this action to launch a scraped-off worm at a humanoid it can see within 10 feet of the worm). Otherwise, the worm burrows under the target's skin at the end of the target's next turn, dealing 1 piercing damage to it. At the end of each of its turns thereafter, the target takes 7 ({@damage 2d6}) necrotic damage per worm infesting it (maximum of {@damage 10d6}). A worm-infested target dies if it drops to 0 hit points, then rises 10 minutes later as a spawn of Kyuss. If a worm-infested creature is targeted by an effect that cures disease or removes a curse, all the worms infesting it wither away." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spawn of Kyuss-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Stegosaurus", + "source": "VGM", + "page": 140, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d12 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 20, + "dexterity": 9, + "constitution": 17, + "intelligence": 2, + "wisdom": 11, + "charisma": 5, + "passive": 10, + "actions": [ + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}26 ({@damage 6d6 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stegosaurus-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Stench Kow", + "source": "VGM", + "page": 208, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 15, + "formula": "2d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 14, + "intelligence": 2, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the kow moves at least 20 feet straight toward a target and then hits it with a gore attack on the same turn, the target takes an extra 7 ({@damage 2d6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stench", + "body": [ + "Any creature other than a stench kow that starts its turn within 5 feet of the stench kow must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of the creature's next turn. On a successful saving throw, the creature is immune to the stench of all stench kows for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stench Kow-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Stone Giant Dreamwalker", + "source": "VGM", + "page": 150, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 14, + "constitution": 21, + "intelligence": 10, + "wisdom": 8, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+9", + "wis": "+3" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Dreamwalker's Charm", + "body": [ + "An enemy that starts its turn within 30 feet of the giant must make a {@dc 13} Charisma saving throw, provided that the giant isn't {@condition incapacitated}. On a failed save, the creature is {@condition charmed} by the giant. A creature {@condition charmed} in this way can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it succeeds on the saving throw, the creature is immune to this giant's Dreamwalker's Charm for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two attacks with its greatclub." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Touch", + "body": [ + "The giant touches one Medium or smaller creature within 10 feet of it that is {@condition charmed} by it. The target must make a {@dc 17} Constitution saving throw. On a failed save, the target becomes {@condition petrified}, and the giant can adhere the target to its stony body. {@spell Greater restoration} spells and other magic that can undo petrification have no effect on a {@condition petrified} creature on the giant unless the giant is dead, in which case the magic works normally, freeing the {@condition petrified} creature as well as ending the {@condition petrified} condition on it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "stone giant", + "actions_note": "", + "mythic": null, + "key": "Stone Giant Dreamwalker-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Storm Giant Quintessent", + "source": "VGM", + "page": 151, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 230, + "formula": "20d12 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 29, + "dexterity": 14, + "constitution": 20, + "intelligence": 17, + "wisdom": 20, + "charisma": 19, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+14", + "con": "+10", + "wis": "+10", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The giant can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Lightning Sword attacks or uses Wind Javelin twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Sword", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}40 ({@damage 9d6 + 9}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Windjavelin", + "body": [ + "The giant coalesces wind into a javelin-like form and hurls it at a creature it can see within 600 feet of it. The javelin is considered a magic weapon and deals 19 ({@damage 3d6 + 9}) piercing damage to the target, striking unerringly. The javelin disappears after it hits." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Gust", + "body": [ + "The giant targets a creature it can see within 60 feet of it and creates a magical gust of wind around it. The target must succeed on a {@dc 18} Strength saving throw or be pushed up to 20 feet in any horizontal direction the giant chooses." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderbolt (2 Actions)", + "body": [ + "The giant hurls a thunderbolt at a creature it can see within 600 feet of it. The target must make a {@dc 18} Dexterity saving throw, taking 22 ({@damage 4d10}) thunder damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "One with the Storm (3 Actions)", + "body": [ + "The giant vanishes, dispersing itself into the storm surrounding its lair. The giant can end this effect at the start of any of its turns, becoming a giant once more and appearing in any location it chooses within its lair. While dispersed, the giant can't take any actions other than lair actions, and it can't be targeted by attacks, spells, or other effects. The giant can't use this ability outside its lair, nor can it use this ability if another creature is using a {@spell control weather} spell or similar magic to quell the storm." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": "storm giant", + "actions_note": "", + "mythic": null, + "key": "Storm Giant Quintessent-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Cranium Rats", + "source": "VGM", + "page": 133, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 10, + "intelligence": 15, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "As a bonus action, the swarm can shed dim light from its brains in a 5-foot radius, increase the illumination to bright light in a 5 to 20-foot radius (and dim light for an additional number of feet equal to the chosen radius), or extinguish the light." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Shroud", + "body": [ + "The swarm is immune to any effect that would sense its emotions or read its thoughts. as well as to all divination spells." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The swarm's innate spellcasting ability is Intelligence (spell save {@dc 13}). As long as it has more than half of its hit points, it can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command}", + "{@spell comprehend languages}", + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dominate monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Cranium Rats-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Rot Grubs", + "source": "VGM", + "page": 208, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 5, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 2, + "dexterity": 7, + "constitution": 10, + "intelligence": 1, + "wisdom": 2, + "charisma": 1, + "passive": 6, + "dmg_resistances": [ + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny maggot. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 0 ft., one creature in the swarm's space. {@h}The target is infested by {@dice 1d4} rot grubs. At the start of each of the target's turns, the target takes {@damage 1d6} piercing damage per rot grub infesting it. Applying fire to the bite wound before the end of the target's next turn deals 1 fire damage to the target and kills these rot grubs. After this time, these rot grubs are too far under the skin to be burned. If a target infested by rot grubs ends its turn with 0 hit points, it dies as the rot grubs burrow into its heart and kill it. Any effect that cures disease kills all rot grubs infesting the target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GoS" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Rot Grubs-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Swashbuckler", + "source": "VGM", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any Non-Lawful Alignment", + "ac": [ + { + "value": 17, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 18, + "constitution": 12, + "intelligence": 14, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Lightfooted", + "body": [ + "The swashbuckler can take the Dash or Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Suave Defense", + "body": [ + "While the swashbuckler is wearing light or no armor and wielding no shield, its AC includes its Charisma modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The swashbuckler makes three attacks: one with a dagger and two with its rapier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "WDH" + }, + { + "source": "ToA" + }, + { + "source": "DIP" + }, + { + "source": "SLW" + }, + { + "source": "SDW" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Swashbuckler-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Tanarukk", + "source": "VGM", + "page": 186, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 13, + "constitution": 20, + "intelligence": 9, + "wisdom": 9, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Orc" + ], + "traits": [ + { + "title": "Aggressive", + "body": [ + "As a bonus action, the tanarukk can move up to its speed toward a hostile creature that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The tanarukk has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tanarukk makes two attacks: one with its bite and one with its greatsword." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unbridled Fury", + "body": [ + "In response to being hit by a melee attack, the tanarukk can make one melee weapon attack with advantage against the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon, orc", + "actions_note": "", + "mythic": null, + "key": "Tanarukk-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Thorny", + "source": "VGM", + "page": 197, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 12, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The thorny has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The thorny regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the thorny's next turn. The thorny dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thorny Body", + "body": [ + "At the start of its turn, the thorny deals 2 ({@damage 1d4}) piercing damage to any creature grappling it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Thorny-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Tlincalli", + "source": "VGM", + "page": 193, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 13, + "constitution": 16, + "intelligence": 8, + "wisdom": 12, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Tlincalli" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tlincalli makes two attacks: one with its longsword or spiked chain, and one with its sting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Chain", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target is {@condition grappled} (escape {@dc 11}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the tlincalli can't use the spiked chain against another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 14 ({@damage 4d6}) poison damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition poisoned} for 1 minute. If it fails the saving throw by 5 or more, the target is also {@condition paralyzed} while {@condition poisoned}. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tlincalli-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Transmuter", + "source": "VGM", + "page": 218, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "any four languages" + ], + "traits": [ + { + "title": "Transmuter's Stone", + "body": [ + "The transmuter carries a magic stone it crafted that grants its bearer one of the following effects:", + "Darkvision out to a range of 60 feet", + "An extra 10 feet of speed while the bearer is unencumbered", + "Proficiency with Constitution saving throws", + "Resistance to acid, cold, fire, lightning, or thunder damage (transmuter's choice whenever the transmuter chooses this benefit)", + "If the transmuter has the stone and casts a transmutation spell of 1st level or higher, it can change the effect of the stone." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The transmuter is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). The transmuter has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell chromatic orb}", + "{@spell expeditious retreat}*", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell alter self}*", + "{@spell hold person}", + "{@spell knock}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blink}*", + "{@spell fireball}", + "{@spell slow}*" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell polymorph}*", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell telekinesis}*" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "TftYP" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Transmuter-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Trapper", + "source": "VGM", + "page": 194, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 10, + "constitution": 17, + "intelligence": 2, + "wisdom": 13, + "charisma": 4, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the trapper is attached to a ceiling, floor, or wall and remains motionless, it is almost indistinguishable from an ordinary section of ceiling, floor, or wall. A creature that can see it and succeeds on a {@dc 20} Intelligence ({@skill Investigation}) or Intelligence ({@skill Nature}) check can discern its presence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The trapper can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Smother", + "body": [ + "One Large or smaller creature within 5 feet of the trapper must succeed on a {@dc 14} Dexterity saving throw or be {@condition grappled} (escape {@dc 14}). Until the grapple ends, the target takes 17 ({@damage 4d6 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) acid damage at the start of each of its turns. While {@condition grappled} in this way, the target is {@condition restrained}, {@condition blinded}, and at risk of suffocating. The trapper can smother only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Trapper-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Ulitharid", + "source": "VGM", + "page": 175, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "17d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 15, + "dexterity": 12, + "constitution": 15, + "intelligence": 21, + "wisdom": 19, + "charisma": 21, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+8", + "cha": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Undercommon", + "telepathy 2 miles" + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The ulitharid is aware of the presence of creatures within 2 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each creature's intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The ulitharid has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionic Hub", + "body": [ + "If an elder brain establishes a psychic link with the ulitharid, the elder brain can form a psychic link with any other creature the ulitharid can detect using its Creature Sense. Any such link ends if the creature falls outside the telepathy ranges of both the ulitharid and the elder brain. The ulitharid can maintain its psychic link with the elder brain regardless of the distance between them, so long as they are both on the same plane of existence. If the ulitharid is more than 5 miles away from the elder brain, it can end the psychic link at any time (no action required)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}27 ({@damage 4d10 + 5}) psychic damage. If the target is Large or smaller, it is {@condition grappled} (escape {@dc 14}) and must succeed on a {@dc 17} Intelligence saving throw or be {@condition stunned} until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition incapacitated} humanoid {@condition grappled} by the ulitharid. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ulitharid kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The ulitharid magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 17} Intelligence saving throw or take 31 ({@damage 4d12 + 5}) psychic damage and be {@condition stunned} for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The ulitharid's innate spellcasting ability is Intelligence (spell save {@dc 17}). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell dominate monster}", + "{@spell eyebite}", + "{@spell feeblemind}", + "{@spell mass suggestion}", + "{@spell plane shift} (self only)", + "{@spell project image}", + "{@spell scrying}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "WDMM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ulitharid-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Vargouille", + "source": "VGM", + "page": 195, + "size_str": "Tiny", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d4 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 6, + "dexterity": 14, + "constitution": 14, + "intelligence": 4, + "wisdom": 7, + "charisma": 2, + "passive": 8, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal", + "Infernal", + "and any languages it knew before becoming a vargouille but can't speak" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Kiss", + "body": [ + "The vargouille kisses one {@condition incapacitated} humanoid within 5 feet of it. The target must succeed on a {@dc 12} Charisma saving throw or become cursed. The cursed target loses 1 point of Charisma after each hour, as its head takes on fiendish aspects. The curse doesn't advance while the target is in sunlight or the area of a {@spell daylight} spell; don't count that time. When the cursed target's Charisma becomes 2, it dies, and its head tears from its body and becomes a new vargouille. Casting {@spell remove curse}, {@spell greater restoration}, or a similar spell on the target before the transformation is complete can end the curse. Doing so undoes the changes made to the target by the curse." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Shriek", + "body": [ + "The vargouille shrieks. Each humanoid and beast within 30 feet of the vargouille and able to hear it must succeed on a {@dc 12} Wisdom saving throw or be {@condition frightened} until the end of the vargouille's next turn. While {@condition frightened} in this way, a target is {@condition stunned}. If a target's saving throw is successful or the effect ends for it, the target is immune to the Stunning Shriek of all vargouilles for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vargouille-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Vegepygmy", + "source": "VGM", + "page": 196, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 14, + "constitution": 13, + "intelligence": 6, + "wisdom": 11, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Vegepygmy" + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vegepygmy regains 3 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vegepygmy-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Vegepygmy Chief", + "source": "VGM", + "page": 197, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d6 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 14, + "constitution": 14, + "intelligence": 7, + "wisdom": 12, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Vegepygmy" + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vegepygmy regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vegepygmy makes two attacks with its claws or two melee attacks with its spear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spores (1/Day)", + "body": [ + "A 15-foot-radius cloud of toxic spores extends out from the vegepygmy. The spores spread around corners. Each creature in that area that isn't a plant must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned}. While {@condition poisoned} in this way, a target takes 9 ({@damage 2d8}) 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vegepygmy Chief-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Velociraptor", + "source": "VGM", + "page": 140, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 6, + "dexterity": 14, + "constitution": 13, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The velociraptor has advantage on an attack roll against a creature if at least one of the velociraptor's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The velociraptor makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + }, + { + "source": "PSX", + "page": 30 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Velociraptor-VGM", + "__dataclass__": "Monster" + }, + { + "name": "War Priest", + "source": "VGM", + "page": 218, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 16, + "dexterity": 10, + "constitution": 14, + "intelligence": 11, + "wisdom": 17, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+7" + }, + "languages": [ + "any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The priest makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Guided Strike (Recharges after a Short or Long Rest)", + "body": [ + "The priest grants a +10 bonus to an attack roll made by itself or another creature within 30 feet of it. The priest can make this choice after the roll is made but before it hits or misses." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The priest is a 9th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell divine favor}", + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell magic weapon}", + "{@spell prayer of healing}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell beacon of hope}", + "{@spell crusader's mantle}", + "{@spell dispel magic}", + "{@spell revivify}", + "{@spell spirit guardians}", + "{@spell water walk}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}", + "{@spell guardian of faith}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell flame strike}", + "{@spell mass cure wounds}", + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "DC" + }, + { + "source": "DIP" + }, + { + "source": "SDW" + }, + { + "source": "MOT" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "War Priest-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Warlock of the Archfey", + "source": "VGM", + "page": 219, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 14, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "11d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 9, + "dexterity": 13, + "constitution": 11, + "intelligence": 11, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "any two languages (usually Sylvan)" + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Misty Escape (Recharges after a Short or Long Rest)", + "body": [ + "In response to taking damage, the warlock turns {@condition invisible} and teleports up to 60 feet to an unoccupied space it can see. It remains {@condition invisible} until the start of its next turn or until it attacks, makes a damage roll, or casts a spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The warlock's innate spellcasting ability is Charisma. It can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell disguise self}", + "{@spell mage armor} (self only)", + "{@spell silent image}", + "{@spell speak with animals}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell conjure fey}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The warlock is an 11th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell eldritch blast}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + null, + null, + { + "slots": 3, + "spells": [ + "{@spell blink}", + "{@spell charm person}", + "{@spell dimension door}", + "{@spell dominate beast}", + "{@spell faerie fire}", + "{@spell fear}", + "{@spell hold monster}", + "{@spell misty step}", + "{@spell phantasmal force}", + "{@spell seeming}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Warlock of the Archfey-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Warlock of the Fiend", + "source": "VGM", + "page": 219, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 10, + "dexterity": 14, + "constitution": 15, + "intelligence": 12, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": [ + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any two languages (usually Abyssal or Infernal)" + ], + "traits": [ + { + "title": "Dark One's Own Luck (Recharges after a Short or Long Rest)", + "body": [ + "When the warlock makes an ability check or saving throw, it can add a {@dice d10} to the roll. It can do this after the roll is made but before any of the roll's effects occur." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The warlock's innate spellcasting ability is Charisma. It can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell false life}", + "{@spell levitate} (self only)", + "{@spell mage armor} (self only)", + "{@spell silent image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell finger of death}", + "{@spell plane shift}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The warlock is a 17th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell eldritch blast}", + "{@spell fire bolt}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + null, + null, + { + "slots": 4, + "spells": [ + "{@spell banishment}", + "{@spell burning hands}", + "{@spell flame strike}", + "{@spell hellish rebuke}", + "{@spell magic circle}", + "{@spell scorching ray}", + "{@spell scrying}", + "{@spell stinking cloud}", + "{@spell suggestion}", + "{@spell wall of fire}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Warlock of the Fiend-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Warlock of the Great Old One", + "source": "VGM", + "page": 220, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 15, + "intelligence": 12, + "wisdom": 12, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any two languages", + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Whispering Aura", + "body": [ + "At the start of each of the warlock's turns, each creature of its choice within 5 feet of it must succeed on a {@dc 15} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage, provided that the warlock isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The warlock's innate spellcasting ability is Charisma. It can innately cast the following spells (spell save {@dc 15}), requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell jump}", + "{@spell levitate}", + "{@spell mage armor} (self only)", + "{@spell speak with dead}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell arcane gate}", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The warlock is a 14th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 15}, {@hit 7} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast}", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + null, + null, + { + "slots": 3, + "spells": [ + "{@spell armor of Agathys}", + "{@spell arms of Hadar}", + "{@spell crown of madness}", + "{@spell clairvoyance}", + "{@spell contact other plane}", + "{@spell detect thoughts}", + "{@spell dimension door}", + "{@spell dissonant whispers}", + "{@spell dominate beast}", + "{@spell telekinesis}", + "{@spell vampiric touch}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Warlock of the Great Old One-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Warlord", + "source": "VGM", + "page": 220, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 229, + "formula": "27d8 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 20, + "dexterity": 16, + "constitution": 18, + "intelligence": 12, + "wisdom": 12, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "dex": "+7", + "con": "+8" + }, + "languages": [ + "any two languages" + ], + "traits": [ + { + "title": "Indomitable (3/Day)", + "body": [ + "The warlord can reroll a saving throw it fails. It must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Survivor", + "body": [ + "The warlord regains 10 hit points at the start of its turn if it has at least 1 hit point but fewer hit points than half its hit point maximum." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warlord makes two weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Weapon Attack", + "body": [ + "The warlord makes a weapon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Command Ally", + "body": [ + "The warlord targets one ally it can see within 30 feet of it. If the target can see and hear the warlord, the target can make one weapon attack as a reaction and gains advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frighten Foe (Costs 2 Actions)", + "body": [ + "The warlord targets one enemy it can see within 30 feet of it. If the target can see and hear it, the target must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} until the end of warlord's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "IMR" + } + ], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Warlord-VGM", + "__dataclass__": "Monster" + }, + { + "name": "White Guard Drake", + "source": "VGM", + "page": 158, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 11, + "constitution": 16, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Draconic but can't speak it" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drake attacks twice, once with its bite and once with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "White Guard Drake-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Wood Woad", + "source": "VGM", + "page": 198, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 12, + "constitution": 16, + "intelligence": 10, + "wisdom": 13, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Sylvan" + ], + "traits": [ + { + "title": "Magic Club", + "body": [ + "In the wood woad's hand, its club is magical and deals 7 ({@damage 3d4}) extra damage (included in its attacks)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plant Camouflage", + "body": [ + "The wood woad has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring plant life." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The wood woad regains 10 hit points at the start of its turn if it is in contact with the ground. If the wood woad takes fire damage, this trait doesn't function at the start of the wood woad's next turn. The wood woad dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tree Stride", + "body": [ + "Once on each of its turns, the wood woad can use 10 feet of its movement to step magically into one living tree within 5 feet of it and emerge from a second living tree within 60 feet of it that it can see, appearing in an unoccupied space within 5 feet of the second tree. Both trees must be Large or bigger." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wood woad makes two attacks with its club." + ], + "__dataclass__": "Entry" + }, + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "DIP" + }, + { + "source": "SDW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wood Woad-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Xvart", + "source": "VGM", + "page": 200, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 8, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Abyssal" + ], + "traits": [ + { + "title": "Low Cunning", + "body": [ + "The xvart can take the Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Overbearing Pack", + "body": [ + "The xvart has advantage on Strength ({@skill Athletics}) checks to shove a creature if at least one of the xvart's allies is within 5 feet of the target and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raxivort's Tongue", + "body": [ + "The xvart can communicate with ordinary bats and rats, as well as giant bats and giant rats." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "xvart", + "actions_note": "", + "mythic": null, + "key": "Xvart-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Xvart Speaker", + "source": "VGM", + "page": 200, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 13, + "wisdom": 7, + "charisma": 7, + "passive": 8, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Abyssal and one additional language (usually Common or Goblin)" + ], + "traits": [ + { + "title": "Low Cunning", + "body": [ + "The xvart can take the Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Overbearing Pack", + "body": [ + "The xvart has advantage on Strength ({@skill Athletics}) checks to shove a creature if at least one of the xvart's allies is within 5 feet of the target and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raxivort's Tongue", + "body": [ + "The xvart can communicate with ordinary bats and rats, as well as giant bats and giant rats." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "xvart", + "actions_note": "", + "mythic": null, + "key": "Xvart Speaker-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Xvart Warlock of Raxivort", + "source": "VGM", + "page": 200, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 8, + "dexterity": 14, + "constitution": 12, + "intelligence": 8, + "wisdom": 11, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Abyssal" + ], + "traits": [ + { + "title": "Low Cunning", + "body": [ + "The xvart can take the Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Overbearing Pack", + "body": [ + "The xvart has advantage on Strength ({@skill Athletics}) checks to shove a creature if at least one of the xvart's allies is within 5 feet of the target and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Raxivort's Tongue", + "body": [ + "The xvart can communicate with ordinary bats and rats, as well as giant bats and giant rats." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The xvart's innate spellcasting ability is Charisma. it can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The xvart is a 3rd-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 11}, {@hit 3} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell eldritch blast}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + null, + { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell expeditious retreat}", + "{@spell invisibility}", + "{@spell scorching ray}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "xvart", + "actions_note": "", + "mythic": null, + "key": "Xvart Warlock of Raxivort-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yeth Hound", + "source": "VGM", + "page": 201, + "size_str": "Large", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 51, + "formula": "6d10 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 17, + "constitution": 16, + "intelligence": 5, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with silvered weapons", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Common", + "Elvish", + "and Sylvan but can't speak" + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The yeth hound has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Banishment", + "body": [ + "If the yeth hound starts its turn in sunlight, it is transported to the Ethereal Plane. While sunlight shines on the spot from which it vanished, the hound must remain in the Deep Ethereal. After sunset, it returns to the Border Ethereal at the same spot, whereupon it typically sets out to find its pack or its master. The hound is visible on the Material Plane while it is in the Border Ethereal, and vice versa, but it can't affect or be affected by anything on the other plane. Once it is adjacent to its master or a pack mate that is on the Material Plane, a yeth hound in the Border Ethereal can return to the Material Plane as an action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Bond", + "body": [ + "While the yeth hound is on the same plane of existence as its master, it can magically convey what it senses to its master, and the two can communicate telepathically with each other." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage, plus 14 ({@damage 4d6}) psychic damage if the target is {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Baleful Baying", + "body": [ + "The yeth hound bays magically. Every enemy within 300 feet of the hound that can hear it must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} until the end of the hound's next turn or until the hound is {@condition incapacitated}. A {@condition frightened} target that starts its turn within 30 feet of the hound must use all its movement on that turn to get as far from the hound as possible, must finish the move before taking an action, and must take the most direct route, even if hazards lie that way. A target that successfully saves is immune to the baying of all yeth hounds for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Yeth Hound-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Anathema", + "source": "VGM", + "page": 202, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d12 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 23, + "dexterity": 13, + "constitution": 19, + "intelligence": 19, + "wisdom": 17, + "charisma": 20, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "blindsight 30 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The anathema has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ophidiophobia Aura", + "body": [ + "Any creature of the anathema's choice, other than a snake or a yuan-ti, that starts its turn within 30 feet of the anathema and can see or hear it must succeed on a {@dc 17} Wisdom saving throw or become {@condition frightened} of snakes and yuan-ti. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this aura for the next 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "The anathema can use its action to polymorph into a Huge giant constrictor snake, or back into its true form. its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Six Heads", + "body": [ + "The anathema has advantage on Wisdom ({@skill Perception}) checks and on saving throws against being {@condition blinded}. {@condition charmed}, {@condition deafened}, {@condition frightened}, {@condition stunned}, or knocked {@condition unconscious}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Anathema Form Only)", + "body": [ + "The anathema makes two claw attacks, one constrict attack, and one Flurry of Bites attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Anathema Form Only)", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage, and the target is {@condition grappled} (escape {@dc 16}). Until this grapple ends, the target is {@condition restrained} and takes 16 ({@damage 3d6 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) acid damage at the start of each of its turns, and the anathema can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flurry of Bites", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one creature. {@h}27 ({@damage 6d6 + 6}) piercing damage plus 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Anathema Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Anathema Form Only)", + "body": [ + "The anathema's innate spellcasting ability is Charisma (spell save {@dc 17}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell divine word}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell darkness}", + "{@spell entangle}", + "{@spell fear}", + "{@spell haste}", + "{@spell suggestion}", + "{@spell polymorph}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Anathema-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Broodguard", + "source": "VGM", + "page": 203, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 14, + "constitution": 14, + "intelligence": 6, + "wisdom": 11, + "charisma": 4, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "dex": "+4", + "wis": "+2" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Mental Resistance", + "body": [ + "The broodguard has advantage on saving throws against being {@condition charmed}, and magic can't paralyze it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless", + "body": [ + "At the start of its turn, the broodguard can gain advantage on all melee weapon attack rolls it makes during that turn, but attack rolls against it have advantage until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The broodguard makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Broodguard-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Malison (Type 4)", + "source": "VGM", + "page": 96, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Malison Type", + "body": [ + "The yuan-ti has one of the following types:", + { + "title": "Type 4:", + "body": [ + "Human form with one or more serpentine tails" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 5:", + "body": [ + "Human form covered in scales" + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes two ranged attacks or two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Snake Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow (Yuan-ti Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Malison (Type 4)-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Malison (Type 5)", + "source": "VGM", + "page": 96, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake, or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Malison Type", + "body": [ + "The yuan-ti has one of the following types:", + { + "title": "Type 4:", + "body": [ + "Human form with one or more serpentine tails" + ], + "__dataclass__": "Entry" + }, + { + "title": "Type 5:", + "body": [ + "Human form covered in scales" + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes two ranged attacks or two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Snake Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow (Yuan-ti Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Malison (Type 5)-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Mind Whisperer", + "source": "VGM", + "page": 204, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Fangs (2/Day)", + "body": [ + "The first time the yuan-ti hits with a melee attack on its turn, it can deal an extra 16 ({@damage 3d10}) psychic damage to the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sseth's Blessing", + "body": [ + "When the yuan-ti reduces an enemy to 0 hit points, the yuan-ti gains 9 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes one bite attack and one scimitar attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell eldritch blast} (range 300 ft., +3 bonus to each damage roll)", + "{@spell friends}", + "{@spell message}", + "{@spell minor illusion}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell charm person}", + "{@spell crown of madness}", + "{@spell detect thoughts}", + "{@spell expeditious retreat}", + "{@spell fly}", + "{@spell hypnotic pattern}", + "{@spell illusory script}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Mind Whisperer-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Nightmare Speaker", + "source": "VGM", + "page": 205, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. If it dies, it stays in its current form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Fangs (2/Day)", + "body": [ + "The first time the yuan-ti hits with a melee attack on its turn, it can deal an extra 16 ({@damage 3d10}) necrotic damage to the target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes one constrict attack and one scimitar attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}10 ({@damage 2d6 + 3}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 14}) if it is a Large or smaller creature. Until this grapple ends, the target is {@condition restrained}, and the yuan-ti can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Yuan-ti Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invoke Nightmare (Recharges after a Short or Long Rest)", + "body": [ + "The yuan-ti taps into the nightmares of a creature it can see within 60 feet of it and creates an illusory, immobile manifestation of the creature's deepest fears, visible only to that creature. The target must make a {@dc 13} Intelligence saving throw. On a failed save, the target takes 11 ({@damage 2d10}) psychic damage and is {@condition frightened} of the manifestation, believing it to be real. The yuan-ti must concentrate to maintain the illusion (as if {@status concentration||concentrating} on a spell), which lasts for up to 1 minute and can't be harmed. The target can repeat the saving throw at the end of each of its turns, ending the illusion on a success, or taking 11 ({@damage 2d10}) psychic damage on a failure." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell chill touch}", + "{@spell eldritch blast} (range 300 ft., +3 bonus to each damage roll)", + "{@spell mage hand}", + "{@spell message}", + "{@spell poison spray}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell arms of Hadar}", + "{@spell darkness}", + "{@spell fear}", + "{@spell hex}", + "{@spell hold person}", + "{@spell hunger of Hadar}", + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToA" + } + ], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Nightmare Speaker-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Yuan-ti Pit Master", + "source": "VGM", + "page": 206, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft. (penetrates magical darkness)" + ], + "languages": [ + "Abyssal", + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The yuan-ti can use its action to polymorph into a Medium snake or back into its true form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It doesn't change form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The yuan-ti has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison's Disciple (2/Day)", + "body": [ + "The first time the yuan-ti hits with a melee attack on its turn, it can deal an extra 16 ({@damage 3d10}) poison damage to the target." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Yuan-ti Form Only)", + "body": [ + "The yuan-ti makes two bite attacks using its snake arms." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Merrshaulk's Slumber (1/Day)", + "body": [ + "The yuan-ti targets up to five creatures that it can see within 60 feet of it. Each target must succeed on a {@dc 13} Constitution saving throw or fall into a magical sleep and be {@condition unconscious} for 10 minutes. A sleeping target awakens if it takes damage or if someone uses an action to shake or slap it awake. This magical sleep has no effect on a creature immune to being {@condition charmed}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti's innate spellcasting ability is Charisma (spell save {@dc 13}). The yuan-ti can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell animal friendship} (snakes only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting (Yuan-ti Form Only)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Yuan-ti Form Only)", + "body": [ + "The yuan-ti is a 6th-level spellcaster. Its spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It regains its expended spell slots when it finishes a short or long rest. It knows the following warlock spells:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell eldritch blast} (range 300 ft., +3 bonus to each damage roll)", + "{@spell friends}", + "{@spell guidance}", + "{@spell mage hand}", + "{@spell message}", + "{@spell poison spray}" + ], + "__dataclass__": "SpellList" + }, + null, + null, + { + "slots": 2, + "spells": [ + "{@spell command}", + "{@spell counterspell}", + "{@spell hellish rebuke}", + "{@spell invisibility}", + "{@spell misty step}", + "{@spell unseen servant}", + "{@spell vampiric touch}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "shapechanger, yuan-ti", + "actions_note": "", + "mythic": null, + "key": "Yuan-ti Pit Master-VGM", + "__dataclass__": "Monster" + }, + { + "name": "Bodytaker Plant", + "source": "VRGR", + "page": 226, + "size_str": "Huge", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 92, + "formula": "8d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 10, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 8, + "constitution": 20, + "intelligence": 14, + "wisdom": 14, + "charisma": 18, + "passive": 12, + "dmg_vulnerabilities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Podling Link", + "body": [ + "The plant can see through and communicate telepathically with any of its podlings within 10 miles of it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "When the plant dies, it returns to life in the place where it died {@dice 1d12} months later, unless the ground where it took root is sown with salt or soaked with poison." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The plant doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The plant makes three Vine Lash attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vine Lash", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 20 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is a creature, it is {@condition grappled} (escape {@dc 15}). Until the grapple ends, the target is {@condition restrained}. The plant has four vines, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entrapping Pod", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Medium or smaller creature {@condition grappled} by the plant. {@h}22 ({@damage 4d8 + 4}) acid damage, and the target is pulled into the plant's space and enveloped by the pod, and the grapple ends. While enveloped, the target is {@condition restrained}, and it has {@quickref Cover||3||total cover} against attacks and effects originating outside the pod. The enveloped target must also immediately succeed on a {@dc 16} Constitution saving throw or be {@condition stunned} by the plant's sapping enzymes until it is removed from the pod or the plant dies. The enveloped target doesn't require air and gains 1 level of {@condition exhaustion} for each hour it spends in the pod. If the target dies while enveloped, it immediately emerges from the pod as a living podling, wearing or carrying all of the original creature's equipment.", + "As an action, a creature within 5 feet of the bodytaker plant that is outside the pod can open the pod and pull the target free with a successful {@dc 15} Strength check. If the plant dies, the target is no longer {@condition restrained} and can escape from the pod by spending 10 feet of movement, exiting {@condition prone}. The plant has one pod, which can envelop one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bodytaker Plant-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Boneless", + "source": "VRGR", + "page": 228, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 14, + "constitution": 15, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Compression", + "body": [ + "The boneless can move through any opening at least 1 inch wide without squeezing. It can also squeeze to fit into a space that a Tiny creature could fit in." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The boneless doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The boneless makes two Slam attacks. If both attacks hit a Large or smaller creature, the creature is {@condition grappled} (escape {@dc 13}), and the boneless can use Crushing Embrace." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crushing Embrace", + "body": [ + "The boneless wraps its body around a Large or smaller creature {@condition grappled} by it. While the boneless is attached, the target is {@condition blinded} and is unable to breathe. The target must succeed on a {@dc 13} Strength saving throw at the start of each of the boneless' turns or take 5 ({@damage 1d4 + 3}) bludgeoning damage. If something moves the target, the boneless moves with it. The boneless can detach itself by spending 5 feet of its movement. A creature, including the target, can use its action to try to detach the boneless and force it to move into the nearest unoccupied space, doing so with a successful {@dc 13} Strength check. When the boneless dies, it detaches from any creature it is attached to." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boneless-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Brain in a Jar", + "source": "VRGR", + "page": 278, + "size_str": "Small", + "maintype": "undead", + "alignment": "Any", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d6 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 10, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 1, + "dexterity": 3, + "constitution": 15, + "intelligence": 19, + "wisdom": 10, + "charisma": 15, + "passive": 10, + "saves": { + "int": "+6", + "cha": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius); see also \"detect sentience\" below" + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Detect Sentience", + "body": [ + "The brain can sense the presence and location of any creature within 300 feet of it that has an Intelligence of 3 or higher, regardless of interposing barriers, unless the creature is protected by a {@spell mind blank} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The brain has advantage on saving throws against spells and other magic effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The brain doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Chill Touch (Cantrip)", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}13 ({@damage 3d8}) necrotic damage, and the target can't regain hit points until the start of the brain's next turn. If the target is undead, it also has disadvantage on attack rolls against the brain until the end of the brain's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "The brain magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 14} Intelligence saving throw or take 17 ({@damage 3d8 + 4}) psychic damage and be {@condition stunned} 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." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The brain's innate spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). It can innately cast the following spells, requiring no components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell chill touch} (see \"Actions\" below)", + "{@spell detect thoughts}", + "{@spell mage hand}", + "{@spell zone of truth}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell hold person}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell compulsion}", + "{@spell hold monster}", + "{@spell sleep} (3rd-level version)", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "IDRotF", + "page": 278 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Brain in a Jar-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Carrion Stalker", + "source": "VRGR", + "page": 230, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 35, + "formula": "10d4 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 6, + "dexterity": 16, + "constitution": 12, + "intelligence": 2, + "wisdom": 13, + "charisma": 6, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "tremorsense 60 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The carrion stalker makes three Tentacle attacks. If it is attached to a creature, it can replace one Tentacle attack with Larval Burst, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage, and the carrion stalker attaches to the target and pulls itself into the target's space. While attached, the carrion stalker moves with the target and has advantage on attack rolls against it.", + "A creature can use its action to try to detach the carrion stalker and force it to move into the nearest unoccupied space, doing so with a successful {@dc 11} Strength check. On its turn, the carrion stalker can detach itself from the target by using 5 feet of movement. When it dies, the carrion stalker detaches from any creature it is attached to." + ], + "__dataclass__": "Entry" + }, + { + "title": "Larval Burst (1/Day)", + "body": [ + "The carrion stalker releases a burst of larvae in a 10-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or be {@condition poisoned}. A creature {@condition poisoned} in this way takes 7 ({@damage 2d6}) poison damage at the start of each of its turns as larvae infest its body. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Any effect that cures disease or removes the {@condition poisoned} condition instantly kills the larvae in the creature, ending the effect on it.", + "If a creature is reduced to 0 hit points by the infestation, it dies. The larvae remain in the corpse, and one survives to become a fully grown carrion stalker in {@dice 1d4} weeks. Any effect that cures diseases or removes the {@condition poisoned} condition that targets the corpse instantly kills the larvae." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Carrion Stalker-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Carrionette", + "source": "VRGR", + "page": 231, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 8, + "wisdom": 14, + "charisma": 14, + "passive": 12, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands the languages of its creator" + ], + "traits": [ + { + "title": "False Object", + "body": [ + "If the carrionette is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the carrionette move or act, that creature must succeed on a {@dc 15} Wisdom ({@skill Perception}) check to discern that the carrionette is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The carrionette doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Silver Needle", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}1 piercing damage plus 3 ({@damage 1d6}) necrotic damage, and the target must succeed on a {@dc 12} Charisma saving throw or become cursed for 1 minute. While cursed in this way, the target's speed is reduced by 10 feet, and it must roll a {@dice 1d4} and subtract the number rolled from each ability check or attack roll it makes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Swap", + "body": [ + "The carrionette targets a creature it can see within 15 feet of it that is cursed by its Silver Needle. Unless the target is protected by a {@spell protection from evil and good} spell, it must succeed on a {@dc 12} Charisma saving throw or have its consciousness swapped with the carrionette. The carrionette gains control of the target's body, and the target is {@condition unconscious} for 1 hour, after which it gains control of the carrionette's body. While controlling the target's body, the carrionette retains its Intelligence, Wisdom, and Charisma scores. It otherwise uses the controlled body's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.", + "If the carrionette's body is destroyed, both the carrionette and the target die. A {@spell protection from evil and good} spell cast on the controlled body drives the carrionette out and returns the consciousness of both creatures to their original bodies. The swap is also undone if the controlled body takes damage from the carrionette's Silver Needle." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Carrionette-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Death's Head", + "source": "VRGR", + "page": 232, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d4 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 8, + "dexterity": 13, + "constitution": 12, + "intelligence": 5, + "wisdom": 14, + "charisma": 3, + "passive": 12, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Beheaded Form", + "body": [ + "When created, a death's head takes one of three forms: Aberrant Head, Gnashing Head, or Petrifying Head. This form determines the creature's attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The death's head doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gnashing Bite (Gnashing Head Only)", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind-Bending Bite (Aberrant Head Only)", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage plus 5 ({@damage 1d10}) necrotic damage, and the target must succeed on a {@dc 10} Intelligence saving throw or it can't take a reaction until the end of its next turn. Moreover, on its next turn, the target must choose whether it gets a move, an action, or a bonus action; it gets only one of the three." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Bite (Petrifying Head Only)", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage, and the target must succeed on a {@dc 10} Constitution saving throw or be {@condition restrained} as it begins to turn to stone. The target must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the target is {@condition petrified} for 10 minutes." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Death's Head-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Dullahan", + "source": "VRGR", + "page": 233, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 135, + "formula": "18d8 + 54", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 18, + "dexterity": 14, + "constitution": 16, + "intelligence": 11, + "wisdom": 15, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Headless Summoning (Recharges after a Short or Long Rest)", + "body": [ + "If the dullahan is reduced to 0 hit points, it doesn't die or fall {@condition unconscious}. Instead, it regains 97 hit points. In addition, it summons three {@creature death's head|VRGR|death's heads}, one of each type, in unoccupied spaces within 5 feet of it. The death's heads are under the dullahan's control and act immediately after the dullahan in the initiative order. Additionally, the dullahan can now use the options in the \"Mythic Actions\" section. Award a party an additional 5,900 XP (11,800 XP total) for defeating the dullahan after it uses Headless Summoning." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the dullahan fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The dullahan doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dullahan makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage if used with two hands, plus 11 ({@damage 2d10}) necrotic damage. If the dullahan scores a critical hit against a creature, the target must succeed on a {@dc 15} Constitution saving throw or the dullahan cuts off the target's head. The target dies if it can't survive without the lost head. A creature that doesn't have or need a head, or has legendary actions, instead takes an extra 27 ({@damage 6d8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Skull", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The dullahan makes one attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Frightful Presence (Costs 2 Actions)", + "body": [ + "Each creature of the dullahan's choice within 30 feet of it must succeed on a {@dc 15} Wisdom saving throw or become {@condition frightened} of the dullahan until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Head Hunt (Costs 3 Actions)", + "body": [ + "The dullahan moves up to its speed without provoking opportunity attacks and makes one Battleaxe attack with advantage. If the attack hits, but is not a critical hit, the attack deals an extra 27 ({@damage 6d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dullahan-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Elise", + "source": "VRGR", + "page": 143, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 9 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 9, + "constitution": 18, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "Elise is immune to any spell or effect that would alter her form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Absorption", + "body": [ + "Whenever Elise is subjected to lightning damage, she takes no damage and instead regains a number of hit points equal to the lightning damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Elise has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "Elise's weapon attacks are magical." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Elise makes two slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Elise-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Gallows Speaker", + "source": "VRGR", + "page": 234, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "19d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 12, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "any languages its component spirits knew in life" + ], + "traits": [ + { + "title": "Divination Senses", + "body": [ + "The gallows speaker can see 60 feet into the Ethereal Plane when it is on the Material Plane and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The gallows speaker can move through other creatures and objects as if they were {@quickref difficult terrain||3}. It takes 5 ({@damage 1d10}) force damage if it ends it turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The gallows speaker doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Foretelling Touch", + "body": [ + "{@atk ms} {@hit 7} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage, and the target must roll a {@dice d4} and subtract the number rolled from the next attack roll or saving throw it makes before the start of the gallows speaker's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Suffering Echoes", + "body": [ + "The gallows speaker targets a creature it can see within 30 feet of it. The target must make a {@dc 15} Wisdom saving throw. On a failed save, the target takes 19 ({@damage 3d12}) psychic damage, and waves of painful memories leap from the target to up to three other creatures of the gallows speaker's choice that are within 30 feet of the target, each of which takes 13 ({@damage 3d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gallows Speaker-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Greater Star Spawn Emissary", + "source": "VRGR", + "page": 245, + "size_str": "Huge", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 290, + "formula": "20d12 + 160", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 24, + "dexterity": 13, + "constitution": 26, + "intelligence": 27, + "wisdom": 22, + "charisma": 25, + "passive": 23, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+15", + "int": "+15", + "wis": "+13", + "cha": "+14" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 1,000 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the emissary fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The emissary doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The emissary makes three attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lashing Maw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 15 ft., one target. {@h}20 ({@damage 2d10 + 7}) piercing damage plus 13 ({@damage 3d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Orb", + "body": [ + "{@atk rs} {@hit 15} to hit, range 120 ft., one creature. {@h}27 ({@damage 3d12 + 8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unearthly Bile {@recharge 5}", + "body": [ + "The emissary expels bile that splashes all creatures in a 30-foot-radius sphere centered on a point within 120 feet of the emissary. Each creature in that area must make a {@dc 23} Dexterity saving throw, taking 55 ({@damage 10d10}) acid damage on a failed save, or half as much damage on a successful one. For each creature that fails the saving throw, a {@creature gibbering mouther} (see its entry in the Monster Manual) appears in an unoccupied space on a surface that can support it within 30 feet of that creature. The gibbering mouthers act right after the emissary on the same initiative count, gaining a +7 bonus to their attack and damage rolls, and fighting until they are destroyed. They disappear when the emissary dies." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The emissary teleports up to 30 feet to an unoccupied space it can see and makes one attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Warp Space (Costs 2 Actions)", + "body": [ + "The emissary causes the ground in a 20-foot square that it can see within 90 feet of it to turn into teeth and maws until the start of its next turn. The area becomes {@quickref difficult terrain||3} for the duration. Any creature takes 10 ({@damage 3d6}) piercing damage for each 5 feet it moves on this terrain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Cloud (Costs 3 Actions)", + "body": [ + "The emissary unleashes a psychic wave. Each creature within 30 feet of the emissary must succeed on a {@dc 23} Wisdom saving throw or take 32 ({@damage 5d12}) psychic damage. In addition, every spell ends on creatures and objects of the emissary's choice in that area." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Greater Star Spawn Emissary-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Gremishka", + "source": "VRGR", + "page": 235, + "size_str": "Tiny", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "4d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 6, + "dexterity": 14, + "constitution": 10, + "intelligence": 12, + "wisdom": 11, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4 + 2}) piercing damage plus 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Magic Allergy (1/Day)", + "body": [ + "Immediately after a creature within 30 feet of the gremishka casts a spell, the gremishka can spontaneously react to the magic. Roll a {@dice d6} to determine the effect:", + { + "title": "1-2", + "body": [ + "The gremishka emanates magical energy. Each creature within 30 feet of the gremishka must succeed on a {@dc 10} Constitution saving throw or take 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "3-4", + "body": [ + "The gremishka surges with magical energy and regains 3 ({@dice 1d6}) hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "5-6", + "body": [ + "The gremishka explodes and dies, and one swarm of gremishkas instantly appears in the space where this gremishka died. The swarm uses the gremishka's initiative." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gremishka-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Inquisitor of the Mind Fire", + "source": "VRGR", + "page": 248, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 77, + "formula": "14d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 16, + "charisma": 19, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+6", + "cha": "+7" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 30 ft." + ], + "languages": [ + "any three languages", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The inquisitor attacks twice with its Silver Longsword or uses Mind Fire twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@dice 1d10 + 4}) if used with two hands, plus 18 ({@damage 4d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Fire", + "body": [ + "The inquisitor targets one creature it can see within 120 feet of it. The target must succeed on a {@dc 15} Intelligence saving throw or take 17 ({@damage 3d8 + 4}) psychic damage and be {@condition stunned} until the start of the inquisitor's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inquisitor's Command {@recharge 5}", + "body": [ + "Each creature of the inquisitor's choice that it can see within 60 feet of it must succeed on a {@dc 15} Wisdom saving throw or be {@condition charmed} until the start of the inquisitor's next turn. On the {@condition charmed} target's turn, the inquisitor can telepathically control the target's move, action, or both. When controlled in this way, the target can take only the Attack (inquisitor chooses the target) or Dash action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The inquisitor casts one of the following spells, requiring no components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell arcane eye}", + "{@spell calm emotions}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell sending}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell mass suggestion}", + "{@spell modify memory}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Inquisitor of the Mind Fire-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Inquisitor of the Sword", + "source": "VRGR", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 12, + "dexterity": 14, + "constitution": 14, + "intelligence": 15, + "wisdom": 18, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+7", + "cha": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 30 ft." + ], + "languages": [ + "any two languages", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Metabolic Control", + "body": [ + "At the start of each of its turns, the inquisitor regains 10 hit points and can end one condition on itself, provided the inquisitor has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The inquisitor attacks twice with its Silver Longsword. After it hits or misses with an attack, the inquisitor can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) if used with two hands, plus 18 ({@damage 4d8}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Blink Step", + "body": [ + "The inquisitor teleports up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The inquisitor casts one of the following spells, requiring no components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell dispel magic}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dimension door}", + "{@spell fly}", + "{@spell greater invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Inquisitor of the Sword-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Inquisitor of the Tome", + "source": "VRGR", + "page": 249, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 77, + "formula": "14d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 10, + "dexterity": 12, + "constitution": 12, + "intelligence": 19, + "wisdom": 16, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+5" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 30 ft." + ], + "languages": [ + "any four languages", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The inquisitor attacks twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Bolt", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}22 ({@damage 4d8 + 4}) force damage, and if the target is a Large or smaller creature, the inquisitor can push it up to 10 feet away." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) if used with two hands, plus 18 ({@damage 4d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Implode {@recharge 4}", + "body": [ + "Each creature in a 20-foot-radius sphere centered on a point the inquisitor can see within 120 feet of it must succeed on a {@dc 15} Constitution saving throw or take 31 ({@damage 6d8 + 4}) force damage and be knocked {@condition prone} and moved to the unoccupied space closest to the sphere's center. Large and smaller objects that aren't being worn or carried in the sphere automatically take the damage and are similarly moved." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Telekinetic Deflection", + "body": [ + "In response to being hit by an attack roll, the inquisitor increases its AC by 4 against the attack. If this causes the attack to miss, the attacker is hit by the attack instead." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (Psionics)", + "body": [ + "The inquisitor casts one of the following spells, requiring no components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell levitate}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Otiluke's resilient sphere}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Inquisitor of the Tome-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Isolde", + "source": "VRGR", + "page": 86, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Any Evil Alignment", + "ac": [ + { + "value": 19, + "note": "{@item scale mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 18, + "constitution": 16, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+6", + "int": "+5", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Fiendish Blessing", + "body": [ + "The AC of Isolde includes her Charisma bonus." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance Aura", + "body": [ + "While holding {@item Nepenthe|VRGR}, Isolde creates an aura in a 10-foot radius around her. While this aura is active, Isolde and all creatures friendly to her in the aura have advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Isolde makes two melee attacks or uses its Fire Ray twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nepenthe", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft.., one target. {@h}11 ({@damage 1d8 + 7}) slashing damage, or 12 ({@damage 1d10 + 7}) slashing damage if used with two hands to make a melee attack. If the target is a fiend or an undead, it takes an extra 11 ({@damage 2d10}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Ray", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiendish Charm", + "body": [ + "One humanoid Isolde can see within 30 feet of it must succeed on a {@dc 14} Wisdom saving throw or be magically {@condition charmed} for 1 day. The {@condition charmed} target obeys Isolde's spoken commands. If the target suffers any harm from Isolde or another creature or receives a suicidal command from Isolde, the target can repeat the saving throw, ending the effect on itself on a success. If a target's saving throw is successful, or if the effect ends for it, the creature is immune to Isolde's Fiendish Charm for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Isolde's spellcasting ability is Charisma (spell save {@dc 14}). Isolde can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell alter self}", + "{@spell command}", + "{@spell detect magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Isolde-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Jiangshi", + "source": "VRGR", + "page": 236, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d8 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 3, + "constitution": 18, + "intelligence": 17, + "wisdom": 14, + "charisma": 12, + "passive": 12, + "saves": { + "con": "+8", + "int": "+7", + "wis": "+6", + "cha": "+5" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "any languages it knew in life" + ], + "traits": [ + { + "title": "Jiangshi Weaknesses", + "body": [ + "The jiangshi has the following flaws:", + "{@i Fear of Its Own Reflection.} If the jiangshi sees its own reflection, it immediately uses its reaction, if available, to move as far away from the reflection as possible.", + "{@i Susceptible to Holy Symbols.} While the jiangshi is wearing or touching a holy symbol, it automatically fails saving throws against effects that turn Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The jiangshi doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The jiangshi makes three Slam attacks and uses Consume Energy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Consume Energy", + "body": [ + "The jiangshi draws energy from a creature it can see within 30 feet of it. The target makes a {@dc 16} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one. The jiangshi regains hit points equal to the amount of necrotic damage dealt. After regaining hit points from this action, the jiangshi gains the following benefits for 7 days: its walking speed increases to 40 feet, and it gains a flying speed equal to its walking speed and can hover.", + "A Humanoid slain by this necrotic damage rises as a wight (see its entry in the Monster Manual) at the end of the jiangshi's turn. The wight acts immediately after the jiangshi in the initiative order. If this wight slays a Humanoid with its Life Drain, the wight transforms into a jiangshi 5 days later." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The jiangshi polymorphs into a Beast, a Humanoid, or an Undead that is Medium or Small or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying is absorbed or borne by the new form (the jiangshi's choice). It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Jiangshi-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Lesser Star Spawn Emissary", + "source": "VRGR", + "page": 245, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 241, + "formula": "21d8 + 147", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 21, + "dexterity": 18, + "constitution": 24, + "intelligence": 25, + "wisdom": 20, + "charisma": 23, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 19, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+13", + "wis": "+11", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 1,000 ft." + ], + "traits": [ + { + "title": "Aberrant Rejuvenation", + "body": [ + "When the emissary drops to 0 hit points, its body melts away. A greater star spawn emissary instantly appears in an unoccupied space within 60 feet of where the lesser emissary disappeared. The greater emissary uses the lesser emissary's initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the emissary fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The emissary doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The emissary makes three attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lashing Maw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 13 ({@damage 3d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Orb", + "body": [ + "{@atk rs} {@hit 13} to hit, range 120 ft., one creature. {@h}18 ({@damage 2d10 + 7}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "The emissary polymorphs into a Small or Medium creature of its choice or back into its true form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Psychic Orb", + "body": [ + "The emissary makes a Psychic Orb attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleportation Maw (Costs 2 Actions)", + "body": [ + "The emissary teleports to an unoccupied space it can see within 30 feet of it and can make a Lashing Maw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Lash (Costs 3 Actions)", + "body": [ + "The emissary targets a creature it can see within 30 feet of it and psychically lashes at that creature's mind. The target must succeed on a {@dc 21} Wisdom saving throw or take 36 ({@damage 8d8}) psychic damage and be {@condition stunned} until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lesser Star Spawn Emissary-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Loup Garou", + "source": "VRGR", + "page": 237, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 170, + "formula": "20d8 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(40 ft. in hybrid form, 50 ft. in dire wolf form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 14, + "wisdom": 16, + "charisma": 16, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+9", + "cha": "+8" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common (can't speak in wolf form)" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The loup garou has advantage on attack rolls against a creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "When the loup garou fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The loup garou regains 10 hit points at the start of each of its turns. If the loup garou takes damage from a silver weapon, this trait doesn't function at the start of the loup garou's next turn. The loup garou dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The loup garou makes two attacks: two with its Longsword (humanoid form) or one with its Bite and one with its Claws (dire wolf or hybrid form)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Dire Wolf or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 14 ({@damage 4d6}) necrotic damage. If the target is a Humanoid, it must succeed on a {@dc 17} Constitution saving throw or be cursed with loup garou lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws (Dire Wolf or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword (Humanoid Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The loup garou polymorphs into a Large wolf-humanoid hybrid or into a Large dire wolf, or back into its true form, which appears humanoid. Its statistics, other than its size and speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Swipe", + "body": [ + "The loup garou makes one Claws attack (dire wolf or hybrid form only) or one Longsword attack (humanoid form only)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mauling Pounce (Costs 2 Actions)", + "body": [ + "The loup garou moves up to its speed without provoking opportunity attacks, and it can make one Claws attack (dire wolf or hybrid form only) or one Longsword attack (humanoid form only) against each creature it moves past." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 3 Actions)", + "body": [ + "The loup garou changes into hybrid or dire wolf form and then makes one Bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Loup Garou-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Necrichor", + "source": "VRGR", + "page": 238, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 8, + "dexterity": 15, + "constitution": 17, + "intelligence": 17, + "wisdom": 13, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+6", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "languages": [ + "any three languages", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the necrichor fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "Unless its lifeless remains are splashed with holy water or placed in a vessel under the effects of the {@spell hallow} spell, the destroyed necrichor re-forms in {@dice 1d10} days, regaining all its hits points and appearing in the place it died or in the nearest unoccupied space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The necrichor can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The necrichor doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The necrichor makes two attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) necrotic damage, and the target must succeed on a {@dc 14} Constitution saving throw or be {@condition paralyzed} until the start of the necrichor's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one creature. {@h}12 ({@damage 2d8 + 3}) necrotic damage, and the target can't regain hit points until the start of the necrichor's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Puppeteering {@recharge}", + "body": [ + "The necrichor targets a creature it can see within 5 feet of it that is missing any of its hit points. If the target isn't a Construct or an Undead, it must succeed on a {@dc 14} Constitution saving throw or the necrichor enters the target's space and attaches itself to the target for 1 minute. While attached, the necrichor takes only half damage dealt to it (round down), and the target takes the remaining damage. The necrichor can attach to only one creature at a time.", + "The attached necrichor can telepathically control the target's move, action, or both. When controlled this way, the target can take only the Attack action (necrichor chooses the target) or the Dash action. The attached target can repeat the saving throw at the end of each of its turns, detaching from the necrichor and forcing it to move into the nearest unoccupied space on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "AATM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Necrichor-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Nosferatu", + "source": "VRGR", + "page": 239, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "9d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 18, + "constitution": 21, + "intelligence": 6, + "wisdom": 17, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+8", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "the languages it knew in life" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The nosferatu regains 10 hit points at the start of each of its turns if it has at least 1 hit point and isn't in sunlight. If the nosferatu takes radiant damage, this trait doesn't function until the start of the nosferatu's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The nosferatu can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "The nosferatu takes 20 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The nosferatu doesn't require air." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nosferatu makes two Claw attacks followed by one Bite attack. If both Claw attacks hit the same creature, the Bite attack is made with advantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 7 ({@damage 2d6}) necrotic damage. If the target is missing any of its hit points, it instead takes 11 ({@damage 2d10}) necrotic damage.", + "The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the nosferatu regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A Humanoid slain in this way and then buried in the ground rises as a nosferatu after {@dice 1d10} days." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Disgorge {@recharge 5}", + "body": [ + "The nosferatu vomits blood in a 15-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) necrotic damage, and it can't regain hit points for 1 minute. On a successful save, the creature takes half as much damage with no additional effects." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nosferatu-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Podling", + "source": "VRGR", + "page": 227, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "languages": [ + "Deep Speech", + "the languages the creature knew in life" + ], + "traits": [ + { + "title": "Semblance of Life", + "body": [ + "The podling is a physical copy of a creature digested by a bodytaker plant. The podling has the digested creature's memories and behaves like that creature, but with occasional lapses. An observer familiar with the digested creature can recognize the discrepancies with a successful {@dc 20} Wisdom ({@skill Insight}) check, or automatically if the podling does something in direct contradiction to the digested creature's established beliefs or behavior. The podling melts into a slurry when it dies, when the bodytaker plant that created it dies, or when the bodytaker plant dismisses it (no action required)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The podling doesn't require sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Podling-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Priest of Osybus", + "source": "VRGR", + "page": 241, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 10, + "dexterity": 14, + "constitution": 16, + "intelligence": 18, + "wisdom": 17, + "charisma": 11, + "passive": 13, + "saves": { + "int": "+7", + "wis": "+6", + "cha": "+3" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "any three languages" + ], + "traits": [ + { + "title": "Tattoo of Osybus", + "body": [ + "If the priest drops to 0 hit points, roll on the Boons of Undeath table for the boon the priest receives. The priest dies if it receives a boon it already has. If it receives a new boon, it revives at the start of its next turn with half its hit points restored, and its creature type is now Undead.", + "To prevent this revival, the Tattoo of Osybus on the priest's body must be destroyed. The tattoo is invulnerable while the priest has at least 1 hit point. The tattoo is otherwise an object with AC 15, and it is immune to poison and psychic damage. It has 15 hit points, but it regains all its hit points at the end of every combatant's turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The priest attacks twice." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Blade", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) piercing damage, and if the target is a creature, it is {@condition paralyzed} until the start of the priest's next turn. If this damage reduces a Medium or smaller creature to 0 hit points, the creature dies, and its soul is trapped in the priest's body, manifesting as a shadowy Soul Tattoo on the priest. The soul is freed if the priest dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Bolt", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) necrotic damage, and the target can't regain hit points until the start of the priest's next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Soul Tattoo {@recharge 5}", + "body": [ + "The priest touches one of the Soul Tattoos on its body. The tattoo vanishes as the trapped soul manifests as a shadowy creature that appears in an unoccupied space the priest can see within 30 feet of it. The creature has the size and silhouette of its original body, but it otherwise uses the stat block of a shadow.", + "The shadow obeys the priest's mental commands (no action required) and takes its turn immediately after the priest. If the creature is within 5 feet of the priest, it can turn back into a tattoo as an action, reappearing on the priest's flesh and regaining all its hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "VEoR" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Priest of Osybus-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Relentless Juggernaut", + "source": "VRGR", + "page": 243, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "14d10 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 22, + "dexterity": 12, + "constitution": 22, + "intelligence": 8, + "wisdom": 15, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+6", + "cha": "+7" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands all languages but can't speak" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the juggernaut fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The juggernaut regains 20 hit points at the start of its turn. If the juggernaut takes radiant damage, this trait doesn't function at the start of its next turn. The juggernaut dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The juggernaut doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The juggernaut makes two attacks. It can replace one attack with Deadly Shaping if it is ready." + ], + "__dataclass__": "Entry" + }, + { + "title": "Executioner's Pick", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage, and if the target is a creature, its speed is reduced by 10 feet until the start of the juggernaut's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) bludgeoning damage, and if the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deadly Shaping {@recharge 5}", + "body": [ + "The juggernaut magically shapes a feature of its surroundings into a deadly implement. A creature the juggernaut can see within 60 feet of it must make a {@dc 18} Dexterity saving throw. If the saving throw fails, the targeted creature is struck by one of the following (juggernaut's choice):" + ], + "__dataclass__": "Entry" + }, + { + "title": "Flying Stone", + "body": [ + "The target takes 22 ({@damage 5d8}) bludgeoning damage and is {@condition incapacitated} until the start of the juggernaut's next turn, and the implement vanishes." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scything Shrapnel", + "body": [ + "The target takes 14 ({@damage 4d6}) slashing damage, and the implement vanishes. At the start of each of its turns, the target takes 10 ({@damage 3d6}) necrotic damage from the wound left by the shrapnel. The wound ends if the target regains any hit points or if a creature uses an action to stanch the wound, which requires a successful {@dc 15} Wisdom ({@skill Medicine}) check." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Implacable Advance", + "body": [ + "The juggernaut moves up to its speed, ignoring {@quickref difficult terrain||3}. Any object in its path takes 55 ({@damage 10d10}) bludgeoning damage if it isn't being worn or carried." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapid Shaping (Costs 3 Actions)", + "body": [ + "The juggernaut recharges Deadly Shaping and uses it." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Relentless Juggernaut-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Relentless Slasher", + "source": "VRGR", + "page": 242, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 12, + "dexterity": 18, + "constitution": 14, + "intelligence": 14, + "wisdom": 15, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "dex": "+7", + "con": "+5", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands all languages but can't speak" + ], + "traits": [ + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If the slasher fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shrouded Presence", + "body": [ + "The slasher is immune to any effect that would sense its emotions or read its thoughts, and it can't be detected by abilities that sense Fiends." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The slasher makes two Slasher's Knife attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slasher's Knife", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) slashing damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it suffers a lingering wound that causes it to take 7 ({@damage 2d6}) necrotic damage at the start of each of its turns. Each time the slasher hits the wounded target with this attack, the damage dealt by the wound increases by 3 ({@damage 1d6}). The wound ends if the target regains hit points or if a creature uses an action to stanch the wound, which requires a successful {@dc 15} Wisdom ({@skill Medicine}) check." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Slice", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vanishing Strike (Costs 3 Actions)", + "body": [ + "The slasher makes one Slasher's Knife attack. After the attack hits or misses, the slasher can teleport up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Relentless Slasher-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Strigoi", + "source": "VRGR", + "page": 246, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 14, + "constitution": 16, + "intelligence": 11, + "wisdom": 17, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+5", + "dex": "+4", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Stirge Telepathy", + "body": [ + "The strigoi can magically command any {@creature stirge} within 120 feet of it, using a limited form of telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The strigoi makes one Claw attack and makes one Proboscis attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 6 ({@damage 1d12}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Proboscis", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 10 ({@damage 3d6}) necrotic damage, and the strigoi regains hit points equal to the amount of necrotic damage dealt. A creature reduced to 0 hit points from this attack dies and leaves nothing behind except its skin and its equipment." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ravenous Children (1/Day)", + "body": [ + "The strigoi magically summons {@dice 1d4 + 2} {@creature stirge||stirges} (see their entry in the Monster Manual) in unoccupied spaces it can see within 30 feet of it. The stirges are under the strigoi's control and act immediately after the strigoi in the initiative order. The stirges disappear after 1 hour, when the strigoi dies, or when the strigoi dismisses them (no action required)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Strigoi-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Gremishkas", + "source": "VRGR", + "page": 235, + "size_str": "Medium", + "maintype": "swarm of Tiny monstrositys", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 24, + "formula": "7d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 14, + "constitution": 10, + "intelligence": 12, + "wisdom": 14, + "charisma": 4, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Limited Spell Immunity", + "body": [ + "The swarm automatically succeeds on saving throws against spells of 3rd level or lower, and the attack rolls of such spells always miss it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny gremishka. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}12 ({@damage 3d6 + 2}) piercing damage, or 5 ({@damage 1d6 + 2}) piercing damage if the swarm has half of its hit points or fewer, plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Redirection", + "body": [ + "In response to a spell attack roll missing the swarm, the swarm causes that spell to hit another creature of its choice within 30 feet of it that it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Gremishkas-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Maggots", + "source": "VRGR", + "page": 247, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 20, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 12, + "constitution": 10, + "intelligence": 1, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny maggot. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Infestation", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer. A creature damaged by the swarm must succeed on a {@dc 12} Constitution saving throw or contract a disease.", + "Each time the diseased creature finishes a long rest, roll a {@dice d6} to determine the disease's effect:", + { + "title": "1-2", + "body": [ + "The creature is {@condition blinded} until it finishes a long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "3-4", + "body": [ + "The creature's hit point maximum decreases by 5 ({@dice 2d4}), and the reduction can't be removed until the disease ends. The creature dies if its hit point maximum drops to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "5-6", + "body": [ + "The creature has disadvantage on ability checks and attack rolls until it finishes its next long rest.", + "The disease lasts until it's removed by magic or until the creature rolls the same random effect for the disease two long rests in a row." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Maggots-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Scarabs", + "source": "VRGR", + "page": 247, + "size_str": "Medium", + "maintype": "swarm of Tiny beasts", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 3, + "dexterity": 14, + "constitution": 13, + "intelligence": 1, + "wisdom": 12, + "charisma": 1, + "passive": 11, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny scarab. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Skeletonize", + "body": [ + "If the swarm starts its turn in the same space as a dead creature that is Large or smaller, the corpse is destroyed, leaving behind only equipment and bones (or exoskeleton)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ravenous Bites", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer. If the target is a creature, scarabs burrow into its body, and the creature takes 3 ({@damage 1d6}) piercing damage at the start of each of its turns. Any creature can use an action to kill or remove the scarabs with fire or a weapon that deals piercing damage, causing 1 damage of the appropriate type to the target. A creature reduced to 0 hit points by the swarm's piercing damage dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Scarabs-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Zombie Limbs", + "source": "VRGR", + "page": 254, + "size_str": "Medium", + "maintype": "swarm of Tiny undeads", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 10, + "constitution": 10, + "intelligence": 3, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny limb. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The swarm doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The swarm makes one Undead Mass attack and one Grasping Limbs attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Mass", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one target in the swarm's space. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 4 ({@damage 1d4 + 2}) bludgeoning damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Limbs", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one creature in the swarm's space. {@h}7 ({@damage 2d6}) necrotic damage, and the creature must succeed on a {@dc 12} Strength saving throw or be {@condition restrained}. The creature can repeat the saving throw at the end of each of its turns, taking 7 ({@damage 2d6}) necrotic damage on a failed save. The creature is freed if it succeeds on this saving throw, the swarm moves out of the creature's space, or the swarm dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Zombie Limbs-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Unspeakable Horror", + "source": "VRGR", + "page": 250, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 17, + "note": "Aberrant Armor Only", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 21, + "dexterity": 13, + "constitution": 19, + "intelligence": 3, + "wisdom": 14, + "charisma": 17, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Formed by the Mists", + "body": [ + "When created, the horror's body composition takes one of four forms: Aberrant Armor, Loathsome Limbs, Malleable Mass, or Oozing Organs. This form determines certain traits in this stat block." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amorphous (Malleable Mass Only)", + "body": [ + "The horror can move through any opening at least 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bile Body (Oozing Organs Only)", + "body": [ + "Any creature that touches the horror or hits it with a melee attack takes 5 ({@damage 1d10}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Relentless Stride (Loathsome Limbs Only)", + "body": [ + "The horror can move through the space of another creature. The first time on a turn that the horror enters a creature's space during this move, the creature must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The horror makes two Limbs attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limbs", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}21 ({@damage 3d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hex Blast {@recharge 5}", + "body": [ + "The horror expels necrotic energy in a 30-foot cone. Each creature in that area must make a {@dc 15} Constitution saving throw, taking 45 ({@damage 7d12}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Unspeakable Horror-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Vampiric Mind Flayer", + "source": "VRGR", + "page": 252, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d8 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 5, + "wisdom": 15, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+0", + "wis": "+5", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "telepathy 120 ft. but can only project emotions" + ], + "traits": [ + { + "title": "Spider Climb", + "body": [ + "The mind flayer can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the mind flayer has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The mind flayer doesn't require air, food, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mind flayer makes two Claw attacks or one Claw attack and one Tentacles attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage, and if the target is a creature, it is {@condition grappled} (escape {@dc 15})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drink Sapience", + "body": [ + "The mind flayer targets one creature it is grappling. The target must succeed on a {@dc 15} Wisdom saving throw or take 14 ({@damage 4d6}) psychic damage and gain 1 level of {@condition exhaustion}. The mind flayer regains a number of hit points equal to the psychic damage dealt. A creature reduced to 0 hit points by the psychic damage dies." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Disrupt Psyche {@recharge 5}", + "body": [ + "The mind flayer magically emits psionic energy in a 30-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 15} Intelligence saving throw or be {@condition incapacitated} for 1 minute. The {@condition incapacitated} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vampiric Mind Flayer-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Wereraven", + "source": "VRGR", + "page": 253, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(fly 50 ft. in raven and hybrid forms)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 15, + "constitution": 11, + "intelligence": 13, + "wisdom": 15, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common (can't speak in raven form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The wereraven can use its action to polymorph into a raven-humanoid hybrid or into a raven, or back into its human form. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its human form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mimicry", + "body": [ + "The wereraven can mimic simple sounds it has heard, such as a person whispering, a baby crying, or an animal chittering. A creature that hears the sounds can tell they are imitations with a successful {@dc 10} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The wereraven regains 10 hit points at the start of its turn. If the wereraven takes damage from a silvered weapon or a spell, this trait doesn't function at the start of the wereraven's next turn. The wereraven dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Human or Hybrid Form Only)", + "body": [ + "The wereraven makes two weapon attacks, one of which can be with its hand crossbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak (Raven or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage in raven form, or 4 ({@damage 1d4 + 2}) piercing damage in hybrid form. If the target is humanoid, it must succeed on a {@dc 10} Constitution saving throw or be cursed with wereraven lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword (Human or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow (Human or Hybrid Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CM" + }, + { + "source": "CoS", + "page": 242 + } + ], + "subtype": "human, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Wereraven-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Zombie Clot", + "source": "VRGR", + "page": 255, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "11d12 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 10, + "constitution": 16, + "intelligence": 3, + "wisdom": 8, + "charisma": 10, + "passive": 9, + "saves": { + "con": "+6" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Deathly Stench", + "body": [ + "Any creature that starts its turn within 10 feet of the zombie must succeed on a {@dc 14} Constitution saving throw or take 9 ({@damage 2d8}) poison damage and be {@condition poisoned} until the start of the creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The zombie doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zombie makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flesh Entomb {@recharge 5}", + "body": [ + "The zombie flings a detached clump of corpses at a creature it can see within 30 feet of it. The target must succeed on a {@dc 16} Strength saving throw or take 16 ({@damage 3d10}) bludgeoning damage, and if the target is a Large or smaller creature, it becomes entombed in dead flesh.", + "A creature entombed in the dead flesh is {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the dead flesh, and takes 10 ({@damage 3d6}) necrotic damage at the start of each of its turns. The creature can be freed if the dead flesh is destroyed. The dead flesh is a Large object with AC 10, 25 hit points, and immunity to poison and psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zombie Clot-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Zombie Plague Spreader", + "source": "VRGR", + "page": 255, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 10, + "constitution": 15, + "intelligence": 3, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The zombie doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Viral Aura", + "body": [ + "Any creature that starts its turn within 10 feet of the plague spreader must make a {@dc 12} Constitution saving throw. On a failed save, the creature is {@condition poisoned} and can't regain hit points until the end of its next turn. On a successful save, the creature is immune to this plague spreader's Viral Aura for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The plague spreader makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Virulent Miasma (1/Day)", + "body": [ + "The plague spreader releases toxic gas in a 30-foot-radius sphere centered on itself. Each creature in that area must make a {@dc 12} Constitution saving throw, taking 14 ({@damage 4d6}) poison damage on a failed save, or half as much damage on a successful one. A Humanoid reduced to 0 hit points by this damage dies and rises as a zombie (see its stat block in the Monster Manual) 1 minute later. The zombie acts immediately after the plague spreader in the initiative count." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zombie Plague Spreader-VRGR", + "__dataclass__": "Monster" + }, + { + "name": "Tiny Servant", + "source": "XGE", + "page": 169, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "4d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 16, + "constitution": 10, + "intelligence": 2, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tiny Servant-XGE", + "__dataclass__": "Monster" + }, + { + "name": "Agdon Longscarf", + "source": "WBtW", + "page": 73, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "{@item studded leather armor|PHB|studded leather}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 20, + "constitution": 11, + "intelligence": 11, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+4" + }, + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If Agdon is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw and only half damage if he fails, provided he isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "Agdon's long jump is up to 20 feet and his high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Agdon makes two Branding Iron or Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Branding Iron", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d6}) fire damage, and the target is magically branded. Agdon is {@condition invisible} to creatures branded in this way. The brand disappears after 24 hours, or it can be removed from a creature or object by any spell that ends a curse." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Quick Fingers", + "body": [ + "Agdon targets one creature within 5 feet of him that he can see and makes a Dexterity ({@skill Sleight of Hand}) check, with a DC equal to 1 + the target's passive Wisdom ({@skill Perception}) score. On a successful check, Agdon pilfers one object weighing 1 pound or less that the target has in its possession but not in its grasp, without the target noticing the theft." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "Agdon halves the damage that he takes from an attack that hits him. He must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "harengon", + "actions_note": "", + "mythic": null, + "key": "Agdon Longscarf-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Alagarthas", + "source": "WBtW", + "page": 144, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 11, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "saves": { + "con": "+4", + "wis": "+2" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "Alagarthas has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Alagarthas has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Alagarthas makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leadership (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, Alagarthas can utter a special command or warning whenever a nonhostile creature that it can see within 30 feet of it makes an attack roll or a saving throw. The creature can add a {@dice d4} to its roll provided it can hear and understand him. A creature can benefit from only one Leadership die at a time. This effect ends if Alagarthas is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Alagarthas-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Amidor the Dandelion", + "source": "WBtW", + "page": 135, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 28, + "formula": "8d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 6, + "dexterity": 15, + "constitution": 10, + "intelligence": 13, + "wisdom": 12, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+0", + "dex": "+4", + "con": "+2", + "wis": "+3" + }, + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Speak with Beasts and Plants", + "body": [ + "Amidor can communicate with Beasts and Plants as if it shared a language with them." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Seed Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Amidor adds 2 to its AC against one melee attack that would hit it. To do so, Amidor must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Amidor the Dandelion-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Bavlorna Blightstraw", + "source": "WBtW", + "page": 216, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 22, + "dexterity": 11, + "constitution": 18, + "intelligence": 16, + "wisdom": 12, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+6", + "wis": "+4", + "cha": "+5" + }, + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Bavlorna can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boon of Immortality", + "body": [ + "Bavlorna is immune to any effect that would age her, and she can't die from old age." + ], + "__dataclass__": "Entry" + }, + { + "title": "Widdershins Allergy", + "body": [ + "If a creature within 10 feet of Bavlorna uses at least 10 feet of movement to run in place counterclockwise, Bavlorna is overcome by a fit of sneezing and can't cast spells until the end of her next turn. In addition, any creature Bavlorna has swallowed is immediately expelled and falls {@condition prone} in an unoccupied space within 5 feet of her." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bavlorna makes one Bite attack and one Withering Ray attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage, and the target is {@condition grappled} (escape {@dc 16}) if it is a Medium or smaller creature. Until the grapple ends, the target is {@condition restrained}, and Bavlorna can't use her Bite attack on another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Ray", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one target. {@h}17 ({@damage 4d6 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Lornlings {@recharge 5}", + "body": [ + "Bavlorna creates one or two 1-foot-tall duplicates of herself, called lornlings (use the Quickling stat block in appendix C). Each lornling appears in an unoccupied space within 5 feet of Bavlorna, obeys her commands, and takes its turn immediately after hers. A lornling lasts for 1 hour, until it or Bavlorna dies, or until Bavlorna dismisses it as an action. Bavlorna can have no more than eight lornlings in existence at a time." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Swallow", + "body": [ + "Bavlorna swallows a Small or smaller creature she is grappling, ending the grapple on it. The swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside Bavlorna, and it takes 10 ({@damage 3d6}) acid damage at the start of each of its turns. If the swallowed creature is one of Bavlorna's lornlings, Bavlorna gains all the lornling's memories when the acid damage reduces it to 0 hit points.", + "Bavlorna can have only one creature swallowed at a time. If Bavlorna dies, a swallowed creature is no longer {@condition restrained} and can escape from the corpse using 5 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Bavlorna casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell create food and water}", + "{@spell polymorph}", + "{@spell remove curse}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "hag", + "actions_note": "", + "mythic": null, + "key": "Bavlorna Blightstraw-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Brigganock", + "source": "WBtW", + "page": 230, + "size_str": "Tiny", + "maintype": "fey", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 4, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 13, + "passive": 10, + "saves": { + "dex": "+4", + "con": "+4" + }, + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The brigganock has advantage on saving throws against being {@condition charmed}, and magic can't put it to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Light", + "body": [ + "The brigganock is accompanied by an insubstantial, invulnerable ball of light that contains its soul. The brigganock can't turn off the light or control its brightness. The soul light sheds bright light in a 10-foot radius and dim light for an additional 10 feet. If the brigganock dies, its soul light fades away." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "Using a pickaxe or similar tool, a brigganock can burrow through solid rock at a speed of 5 feet, leaving a 6-inch-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pickaxe", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Lapse (Recharges after a Short or Long Rest)", + "body": [ + "The brigganock accelerates the passage of time around itself, enabling it to accomplish up to 1 hour of work in a matter of seconds. This work can't affect any creature other than the brigganock, or any object being worn or carried by another creature, and the activity must take place within a 10-foot cube. For example, the brigganock could use this action to rapidly carve a pumpkin, cook and eat dinner, move a pile of stones, or tie a dozen knots in a length of rope." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Move Soul Light", + "body": [ + "The brigganock moves its soul light up to 30 feet in any direction to an unoccupied space it can see. At the end of the current turn, the light returns to the brigganock." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The brigganock casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell minor illusion}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell animal friendship}", + "{@spell faerie fire}", + "{@spell meld into stone}", + "{@spell silence}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Brigganock-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Bullywug Knight", + "source": "WBtW", + "page": 231, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 12, + "constitution": 13, + "intelligence": 9, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "saves": { + "con": "+3", + "wis": "+2" + }, + "languages": [ + "Bullywug", + "Common" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The knight can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Frogs and Toads", + "body": [ + "The knight can communicate simple concepts to frogs and toads when it speaks in Bullywug." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The knight's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The knight makes two Glaive attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Croak of Charming (Recharges after a Short or Long Rest)", + "body": [ + "The knight makes a loud croak while targeting one creature it can see within 30 feet of it. The target must succeed on a {@dc 12} Wisdom saving throw or be {@condition charmed} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bullywug Knight-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Campestri", + "source": "WBtW", + "page": 232, + "size_str": "Tiny", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 7, + "constitution": 10, + "intelligence": 4, + "wisdom": 10, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "tremorsense 30 ft." + ], + "languages": [ + "understands Common but speaks only through the use of its Mimicry trait" + ], + "traits": [ + { + "title": "Mimicry", + "body": [ + "The campestri can mimic any voice or song it has heard, albeit in a nasal falsetto." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Head Butt", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spores (1/Day)", + "body": [ + "A 5-foot radius of spores extends from the campestri. These spores can go around corners, and they have no effect on Constructs, Elementals, Plants, or Undead. Each other creature in the area must make a {@dc 10} Wisdom saving throw. On a failed save, the creature is {@condition incapacitated} and its speed is halved, both 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Campestri-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Clapperclaw the Scarecrow", + "source": "WBtW", + "page": 78, + "size_str": "Small", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 13, + "constitution": 11, + "intelligence": 7, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "Clapperclaw doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stuffing", + "body": [ + "Clapperclaw stuffs straw or other dead plant matter into itself and regains {@dice 2d4 + 2} hit points. Roll a {@dice d6}; on a 1 or 2, Clapperclaw runs out of stuffing and must spend 8 hours foraging for more before it can use this action again." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Unsettling Presence {@recharge}", + "body": [ + "Clapperclaw targets one creature it can see within 15 feet of it. The target must succeed on a {@dc 11} Wisdom saving throw or be magically {@condition frightened} until the end of Clapperclaw's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clapperclaw the Scarecrow-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Displacer Beast Kitten", + "source": "WBtW", + "page": 108, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d6 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 12, + "dexterity": 13, + "constitution": 12, + "intelligence": 4, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Displacement", + "body": [ + "The displacer beast projects a magical illusion that makes it appear to be standing near its actual location, causing attack rolls against it to have disadvantage. If it is hit by an attack, this trait is disrupted until the end of its next turn. This trait is also disrupted while the displacer beast is {@condition incapacitated} or has a speed of 0." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}2 bludgeoning damage plus 2 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "BMT" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Displacer Beast Kitten-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Elkhorn", + "source": "WBtW", + "page": 224, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 13, + "constitution": 16, + "intelligence": 9, + "wisdom": 10, + "charisma": 11, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+1", + "con": "+5" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Elkhorn wields a {@item +1 longsword}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Elkhorn makes two Dagger or +1 Longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage. If the target is a creature that is Large or bigger, it takes an extra 5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Longsword", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d8}) slashing damage, or 5 ({@damage 1d10}) slashing damage when used with two hands. If the target is a creature that is Large or bigger, it takes an extra 5 ({@damage 1d10}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Feint {@recharge 5}", + "body": [ + "Elkhorn targets one creature that he can see within 5 feet of him. Elkhorn has advantage on the next attack roll he makes against that target before the end of his turn. If that attack hits, the target takes an extra 7 ({@damage 2d6}) damage of the weapon's type." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "Elkhorn regains 12 hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Elkhorn-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Endelyn Moongrave", + "source": "WBtW", + "page": 217, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 13, + "constitution": 20, + "intelligence": 13, + "wisdom": 10, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+4", + "wis": "+3", + "cha": "+6" + }, + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Boon of Immortality", + "body": [ + "Endelyn is immune to any effect that would age her, and she can't die from old age." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eclipsed Doom", + "body": [ + "Endelyn can be killed only if she is reduced to 0 hit points during a solar eclipse or while she is within 60 feet of a symbolic representation of one. Otherwise, Endelyn disappears in a cloud of inky smoke when she drops to 0 hit points, along with anything she was wearing or carrying, and reappears 24 hours later in the same location or the nearest unoccupied space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Uncanny Awareness", + "body": [ + "Endelyn can't be {@status surprised}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Endelyn makes two Puppeteer's Lash attacks" + ], + "__dataclass__": "Entry" + }, + { + "title": "Puppeteer's Lash", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 60 ft., one creature. {@h}17 ({@damage 4d6 + 3}) psychic damage, and if the target is Large or smaller, Endelyn telekinetically moves it up to 10 feet in any direction horizontally." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Endelyn casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell augury}", + "{@spell polymorph}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "hag", + "actions_note": "", + "mythic": null, + "key": "Endelyn Moongrave-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Envy", + "source": "WBtW", + "page": 178, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 11, + "constitution": 18, + "intelligence": 2, + "wisdom": 12, + "charisma": 7, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Trampling Charge", + "body": [ + "If Envy moves at least 20 feet straight toward a creature and then hits it with a bite attack on the same turn, that target must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, Envy can make one attack with its claws against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}18 ({@damage 2d12 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Breath {@recharge 5}", + "body": [ + "Envy exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw. On a failed save, a target begins to turn to stone and is {@condition restrained}. The {@condition restrained} target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is {@condition petrified} until freed by the {@spell greater restoration} spell or other magic." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Envy-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Flying Rocking Horse", + "source": "WBtW", + "page": 121, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(only while mounted; hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 10, + "constitution": 13, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the rocking horse is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the rocking horse move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the rocking horse is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flying Mount", + "body": [ + "The rocking horse can serve as a mount for a Medium or smaller creature and can fly only while mounted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The rocking horse doesn't require air, food, drink, or sleep, and it regains no hit points or Hit Dice at the end of a long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Head Butt", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flying Rocking Horse-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Giant Dragonfly", + "source": "WBtW", + "page": 234, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 18, + "constitution": 11, + "intelligence": 3, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "traits": [ + { + "title": "Drone", + "body": [ + "When it beats its wings, the dragonfly emits a loud droning sound that can be heard out to a range of 120 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "The dragonfly halves the damage it takes from an attack made against it, provided it can see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Dragonfly-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Giant Snail", + "source": "WBtW", + "page": 234, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 15, + "dexterity": 3, + "constitution": 11, + "intelligence": 3, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Salt Osmosis", + "body": [ + "Whenever the snail starts its turn in contact with a pound or more of salt, it takes {@damage 1d4} necrotic damage. Using an action to sprinkle a pound of salt on the snail deals {@damage 1d4} necrotic damage to it immediately and another {@damage 1d4} necrotic damage to it at the start of its next turn (after which the salt rubs off), provided the snail has not withdrawn into its shell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense", + "body": [ + "The snail withdraws into its shell, gaining a +4 bonus to its AC until it emerges. It can emerge from its shell as a bonus action on its turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Snail-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Giant Swan", + "source": "WBtW", + "page": 38, + "size_str": "Large", + "maintype": "beast", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d10 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 17, + "constitution": 13, + "intelligence": 8, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Auran", + "Common" + ], + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The swan has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The swan makes two attacks with its beak." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Swan-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Glass Pegasus", + "source": "WBtW", + "page": 181, + "size_str": "Large", + "maintype": "construct", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 15, + "note": "while animated and 13 otherwise", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 59, + "formula": "7d10 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 15, + "constitution": 16, + "intelligence": 10, + "wisdom": 15, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+4", + "cha": "+3" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Celestial", + "Common", + "Elvish and Sylvan but can't speak" + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Glass Pegasus-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Glasswork Golem", + "source": "WBtW", + "page": 193, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 36, + "formula": "8d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 10, + "constitution": 10, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "saves": { + "dex": "+2", + "con": "+2", + "wis": "+2" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the golem is embedded in a window and motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the golem move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the golem is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The golem is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The golem regains 10 hit points at the start of its turn. If the golem takes bludgeoning or thunder damage, this trait doesn't function at the start of the golem's next turn. The golem is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The golem doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The golem makes two Glass Sword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glass Sword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Dazzling Light {@recharge 5}", + "body": [ + "Magical, colored light springs from the golem in a 15-foot cone. Each creature in the cone must succeed on a {@dc 10} Constitution saving throw or be {@condition 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Glasswork Golem-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Gloam", + "source": "WBtW", + "page": 93, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 3, + "dexterity": 15, + "constitution": 10, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The cat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cloud of Dust", + "body": [ + "On its first turn in combat or when it is reduced to 0 hit points, the cat expels a cloud of dust that acts as dust of sneezing and choking" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gloam-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Harengon Brigand", + "source": "WBtW", + "page": 235, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 14, + "dexterity": 17, + "constitution": 11, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The harengon has advantage on an attack roll against a creature if at least one of the harengon's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The harengon's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harengon Brigand-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Harengon Sniper", + "source": "WBtW", + "page": 235, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 17, + "constitution": 11, + "intelligence": 10, + "wisdom": 13, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5" + }, + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Standing Leap", + "body": [ + "The harengon's long jump is up to 20 feet and its high jump is up to 10 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 5} to hit (the target gains no benefit from less than {@quickref Cover||3||total cover}), range 320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage. {@hom}Immediately after making this attack, the harengon can use the Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harengon Sniper-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Iggwilv the Witch Queen", + "source": "WBtW", + "page": 205, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "{@item robe of the archmagi}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 255, + "formula": "30d8 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 10, + "dexterity": 18, + "constitution": 18, + "intelligence": 27, + "wisdom": 12, + "charisma": 23, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 20, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+14", + "wis": "+7", + "cha": "+12" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Abyssal", + "Celestial", + "Common", + "Draconic", + "Elvish", + "Infernal", + "Sylvan" + ], + "traits": [ + { + "title": "Boon of Immortality", + "body": [ + "Iggwilv is immune to any effect that would age her, and she can't die from old age." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Iggwilv fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Iggwilv has advantage on saving throws against spells and other magical effects. (This trait is bestowed by her robe of the archmagi.)" + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Iggwilv wears an {@item amulet of the planes} and a {@item robe of the archmagi}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Iggwilv makes two Bewitching Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bewitching Bolt", + "body": [ + "{@atk ms,rs} {@hit 16} to hit, reach 5 ft. or range 120 ft., one target. {@h}25 ({@damage 5d6 + 8}) lightning damage, and if the target is a creature, it must succeed on a {@dc 22} Wisdom saving throw or be {@condition charmed} by Iggwilv until the start of her next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Abyssal Rift {@recharge 5}", + "body": [ + "Iggwilv opens a momentary Abyssal rift within 120 feet of her. The rift is a 20-foot-radius sphere. Each creature in that area must make a {@dc 22} Constitution saving throw, taking 40 ({@damage 9d8}) necrotic damage on a failed save, or half as much damage on a successful one. In addition, there is a 50 percent chance that 3 {@creature hezrou||hezrous} then appear in unoccupied spaces in the sphere. They act as Iggwilv's allies, take their turns immediately after hers, and can't summon other demons. They remain until they die or until Iggwilv dismisses them as an action." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fey Step", + "body": [ + "Iggwilv teleports, along with any equipment she is wearing or carrying, to an unoccupied space she can see within 30 feet of her." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Negate Spell (2/Day)", + "body": [ + "When Iggwilv sees a creature within 60 feet of her casting a spell, she tries to interrupt it. If the creature is casting a spell using a spell slot of 8th level or lower, its spell fails and has no effect. If it is casting a 9th-level spell, it must succeed on a {@dc 22} Intelligence saving throw, or the spells fails and has no effect." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Witchcraft", + "body": [ + "Iggwilv uses Spellcasting or Fey Step." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dark Speech (Costs 2 Actions)", + "body": [ + "Iggwilv utters a phrase in a forbidden language and targets one or two creatures she can see within 60 feet of her. Each target must succeed on a {@dc 22} Wisdom saving throw or take 11 ({@damage 2d10}) psychic damage and be {@condition frightened} of Iggwilv for 1 minute. A target can repeat the save at the end of each of its turns, ending the effect on itself on a success and thereby becoming immune to Iggwilv's Dark Speech for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Beguilement (Costs 3 Actions)", + "body": [ + "Iggwilv targets one creature she can see within 60 feet of her. The target must succeed on a {@dc 22} Charisma saving throw or be possessed by a fey spirit. While possessed, the target must obey Iggwilv's commands. The target can repeat the saving throw at the end of each of its turns, banishing the fey spirit and ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Iggwilv casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 24}, {@hit 16} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell invisibility}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell polymorph}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell maze}", + "{@spell telekinesis}", + "{@spell teleport}", + "{@spell wish}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "VEoR" + } + ], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Iggwilv the Witch Queen-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Jabberwock", + "source": "WBtW", + "page": 236, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 115, + "formula": "10d12 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 4, + "wisdom": 7, + "charisma": 11, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "dex": "+6", + "con": "+10", + "int": "+2", + "wis": "+3", + "cha": "+5" + }, + "dmg_vulnerabilities": [ + { + "value": [ + "slashing" + ], + "note": "from a vorpal sword", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "traits": [ + { + "title": "Confusing Burble", + "body": [ + "The jabberwock burbles to itself unless it is {@condition incapacitated}. Any creature that starts its turn within 30 feet of the jabberwock and is able to hear its burbling must make a {@dc 18} Charisma saving throw. On a failed saving throw, the creature can't take reactions until the start of its next turn, and it rolls a {@dice d4} to determine what it does during its current turn:", + { + "title": "1-2", + "body": [ + "The creature does nothing." + ], + "__dataclass__": "Entry" + }, + { + "title": "3", + "body": [ + "The creature does nothing except use all its movement to move in a random direction." + ], + "__dataclass__": "Entry" + }, + { + "title": "4", + "body": [ + "The creature either makes one melee attack against a random creature it can see or does nothing if no visible creature is within its reach." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the jabberwock fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The jabberwock regains 10 hit points at the start of its turn. If the jabberwock takes slashing damage, this trait doesn't function at the start of its next turn. The jabberwock dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Uncanny Tracker", + "body": [ + "The jabberwock can unerringly track any creature it has wounded in the last 24 hours, and it knows the distance and direction to its quarry as long as the two of them are on the same plane of existence." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The jabberwock makes two Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Gaze {@recharge 5}", + "body": [ + "Unless it is {@condition blinded}, the jabberwock emits a 120-foot-long, 5-foot-wide line of fire from its eyes. Each creature in that line must make a {@dc 18} Dexterity saving throw, taking 31 ({@damage 7d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail Attack", + "body": [ + "The jabberwock makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend Attack (2 Actions)", + "body": [ + "The jabberwock makes one Rend attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Attack (3 Actions)", + "body": [ + "The jabberwock beats its wings. Each creature within 10 feet of the jabberwock must succeed on a {@dc 18} Dexterity saving throw or take 8 ({@damage 1d6 + 5}) bludgeoning damage and be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Jabberwock-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Jingle Jangle", + "source": "WBtW", + "page": 70, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 15, + "note": "{@item leather armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 8, + "charisma": 8, + "passive": 9, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Nimble Escape", + "body": [ + "Jingle Jangle can take the Disengage or Hide action as a bonus action on each of her turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Flail of Locks", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 3d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Jingle Jangle-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Kelek", + "source": "WBtW", + "page": 219, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "{@item bracers of defense}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 15, + "dexterity": 10, + "constitution": 14, + "intelligence": 15, + "wisdom": 13, + "charisma": 17, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "cha": "+6" + }, + "languages": [ + "Common", + "Draconic", + "Elvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Kelek wears {@item bracers of defense} and carries a {@item staff of striking} with 10 charges. The staff regains {@dice 1d6 + 4} expended charges daily at dawn. If its last charge is expended, roll a {@dice d20}; on a 1, the staff becomes a nonmagical quarterstaff." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Kelek makes three attacks using Sorcerer's Bolt, Staff of Striking, or a combination of them. He can replace one of the attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sorcerer's Bolt", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 2d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of Striking", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage, or 9 ({@damage 1d8 + 5}) bludgeoning damage when used with two hands, and Kelek can expend up to 3 of the staff's charges, dealing an extra 3 ({@damage 1d6}) force damage for each expended charge." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Explosion {@recharge 4}", + "body": [ + "Kelek creates a magical explosion of fire centered on a point he can see within 120 feet of him. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 14} Dexterity saving throw, taking 35 ({@damage 10d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Arcane Defense (3/Day)", + "body": [ + "When he is hit by an attack, Kelek protects himself with an {@condition invisible} barrier of magical force. Until the end of his next turn, he gains a +5 bonus to AC, including against the triggering attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Kelek casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate beast}", + "{@spell fly}", + "{@spell mirror image}", + "{@spell web}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, sorcerer", + "actions_note": "", + "mythic": null, + "key": "Kelek-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Kettlesteam the Kenku", + "source": "WBtW", + "page": 52, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 16, + "constitution": 10, + "intelligence": 11, + "wisdom": 10, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+2", + "cha": "+5" + }, + "languages": [ + "understands Auran and Common but speaks only through the use of her Mimicry trait" + ], + "traits": [ + { + "title": "Mimicry", + "body": [ + "Kettlesteam can mimic any sounds she has heard, including voices. A creature that hears the sounds can tell they are imitations only with a successful {@dc 13} Wisdom ({@skill Insight}) check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Kettlesteam makes two Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Twilight Sleep (2/Day)", + "body": [ + "Kettlesteam targets one creature she can see within 10 feet of her. The target is engulfed in a cloud of magical, sleep-inducing gas and must succeed on a {@dc 13} Constitution saving throw or fall {@condition unconscious} for 1 minute. A creature put to sleep by this gas awakens instantly if it takes damage, or if someone uses an action to shake or slap the sleeper awake." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Kettlesteam casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell disguise self}", + "{@spell friends}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bestow curse}", + "{@spell faerie fire}", + "{@spell speak with animals}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "kenku, warlock", + "actions_note": "", + "mythic": null, + "key": "Kettlesteam the Kenku-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Living Doll", + "source": "WBtW", + "page": 238, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 28, + "formula": "8d4 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 11, + "constitution": 13, + "intelligence": 10, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "saves": { + "int": "+2", + "wis": "+2", + "cha": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the doll is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the doll move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the doll is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The doll regains 5 hit points at the start of its turn. If the doll takes fire or psychic damage, this trait doesn't function at the start of the doll's next turn. The doll is destroyed only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The doll doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Grabby Hands", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one creature. {@h}The target is {@condition grappled} (escape {@dc 6}) and takes 11 ({@damage 2d10}) psychic damage at the start of each of its turns until this grapple ends. The doll can grapple only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Cackle {@recharge 4}", + "body": [ + "The doll cackles as it targets one or two creatures it can see within 30 feet of it. Each target that can hear the doll's cackling must make a {@dc 11} Wisdom saving throw, succeeding automatically if it has an Intelligence of 4 or lower. On a failed saving throw, the creature takes 5 ({@damage 2d4}) psychic damage and is {@condition incapacitated} for 1 minute as it is overcome by a fit of laughter. At the end of each of its turns, the creature can repeat the saving throw, ending the effect on itself on a success. A creature that succeeds on this saving throw is immune to this doll's Cackle for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Doll-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Mercion", + "source": "WBtW", + "page": 224, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "9d8 - 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 15, + "dexterity": 10, + "constitution": 9, + "intelligence": 12, + "wisdom": 17, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+5" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Mercion wields a {@item +1 quarterstaff}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Mercion makes one Divine Radiance attack and one +1 Quarterstaff attack. She can replace one of these attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Divine Radiance", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}13 ({@damage 3d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Quarterstaff", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage, or 7 ({@damage 1d8 + 3}) bludgeoning damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Fire {@recharge 5}", + "body": [ + "Mercion creates a magical explosion of fiery radiance centered on a point she can see within 120 feet of her. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 13} Dexterity saving throw, taking 28 ({@damage 8d6}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Mercion casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell death ward}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell command}", + "{@spell create food and water}", + "{@spell cure wounds}", + "{@spell faerie fire}", + "{@spell hold person}", + "{@spell revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "cleric, human", + "actions_note": "", + "mythic": null, + "key": "Mercion-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Mister Light", + "source": "WBtW", + "page": 26, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 77, + "formula": "14d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 16, + "constitution": 12, + "intelligence": 12, + "wisdom": 13, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+5" + }, + "dmg_vulnerabilities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Light has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Light carries and is attuned to the {@item Witchlight vane|WbtW}. In Light's hands, the vane is a finesse weapon." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Light makes two {@item Witchlight vane|WbtW} attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Witchlight Vane", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 4 ({@damage 1d8}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Blessing of the Raven Queen (1/Day)", + "body": [ + "Light magically teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see. Until the start of his next turn, he appears ghostly and gains resistance to all damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "While carrying the {@item Witchlight vane|WbtW}, Light casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell polymorph} (after casting, roll a {@dice d8}; on a roll of 3 or 8, Light can't cast the spell again until the next dawn)", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf, shadar-kai", + "actions_note": "", + "mythic": null, + "key": "Mister Light-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Mister Witch", + "source": "WBtW", + "page": 25, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 11, + "constitution": 16, + "intelligence": 16, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Witch has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Witch carries and is attuned to the {@item Witchlight watch|WbtW}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Witch makes two Cane attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cane", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage plus 6 ({@damage 1d12}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Blessing of the Raven Queen (1/Day)", + "body": [ + "Witch magically teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see. Until the start of his next turn, he appears ghostly and gains resistance to all damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "While carrying the {@item Witchlight watch|WbtW}, Witch casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}, {@hit 5} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell invisibility} (after casting, roll a {@dice d8}; on a roll of 3 or 8, Witch can't cast the spell again until the next dawn)", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf, shadar-kai", + "actions_note": "", + "mythic": null, + "key": "Mister Witch-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Molliver", + "source": "WBtW", + "page": 226, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 15, + "note": "{@item +1 leather armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 9, + "dexterity": 17, + "constitution": 16, + "intelligence": 10, + "wisdom": 9, + "charisma": 16, + "passive": 9, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+2" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "When subjected to an effect that allows a Dexterity saving throw to take only half damage, Molliver takes no damage on a successful save or half damage on a failed one, provided Molliver is not {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Molliver wears {@item +1 leather armor} and {@item boots of levitation}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Molliver makes two Dagger or Shortsword attacks, or one of each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage. The attack deals an extra 7 ({@damage 2d6}) piercing damage if Molliver has advantage on the attack roll or if the target is within 5 feet of one of Molliver's allies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage. The attack deals an extra 7 ({@damage 2d6}) piercing damage if Molliver has advantage on the attack roll or if the target is within 5 feet of one of Molliver's allies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Levitate", + "body": [ + "While wearing boots of levitation, Molliver casts {@spell levitate} (self only)." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "Molliver halves the damage they take from an attack made against them, provided they can see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Molliver-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Paper Bird", + "source": "WBtW", + "page": 166, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 5, + "dexterity": 16, + "constitution": 8, + "intelligence": 2, + "wisdom": 14, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Keen Sight", + "body": [ + "The paper bird has advantage on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Sharp Edges", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Paper Bird-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Pollenella the Honeybee", + "source": "WBtW", + "page": 135, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 16, + "constitution": 8, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "actions": [ + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}3 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pollenella the Honeybee-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Raezil", + "source": "WBtW", + "page": 193, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral or Any Neutral Alignment", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 15, + "constitution": 10, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of her turns, Raezil can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Raezil has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Raezil deals an extra 7 ({@damage 2d6}) damage when she hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of hers that isn't incapacitated and Raezil doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Raezil makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Raezil-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Ringlerun", + "source": "WBtW", + "page": 227, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 12, + "note": "{@item staff of power}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "12d8 - 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 10, + "constitution": 9, + "intelligence": 17, + "wisdom": 13, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+2", + "dex": "+3", + "con": "+2", + "int": "+6", + "wis": "+4", + "cha": "+3" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Ringlerun wields a {@item staff of power}. It has 20 charges when fully charged and regains {@dice 2d8 + 4} expended charges daily at dawn. If its last charge is expended, roll a {@dice d20}. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses its other properties; on a 20, it regains {@dice 1d8 + 2} charges." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ringlerun makes three {@item staff of power} or Freezing Ray attacks. He can replace one of those attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of Power", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage, or 5 ({@damage 1d8 + 1}) bludgeoning damage when used with two hands, and Ringlerun can expend 1 of the staff's charges to deal an extra 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Ray", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}27 ({@damage 6d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff Spell", + "body": [ + "While holding his {@item staff of power}, Ringlerun can expend 1 or more of its charges to cast one of the following spells from it (spell save {@dc 14}, {@hit 8} to hit with spell attacks): cone of cold ({@damage 8d8} cold damage; 5 charges), fireball ({@damage 10d6} fire damage; 5 charges), globe of invulnerability (6 charges), hold monster (5 charges), levitate (2 charges), lightning bolt ({@damage 10d6} lightning damage; 5 charges), magic missile (1 charge), ray of enfeeblement (1 charge), or wall of force (5 charges)." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Ringlerun casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell charm person}", + "{@spell detect magic}", + "{@spell sleep}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell dispel magic}", + "{@spell fly}", + "{@spell knock}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, wizard", + "actions_note": "", + "mythic": null, + "key": "Ringlerun-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Selenelion Twin", + "source": "WBtW", + "page": 241, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 7, + "dexterity": 18, + "constitution": 13, + "intelligence": 12, + "wisdom": 10, + "charisma": 17, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The Selenelion twins, Gleam and Glister, have advantage on saving throws against being {@condition charmed}, and magic can't put them to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "A Selenelion twin regains 5 hit points at the start of her turn as long as both twins are alive and within 60 feet of each other. A twin dies only if she starts her turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Twin Bond", + "body": [ + "While both Selenelion twins are alive and on the same plane of existence, each is aware of the other's emotions." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moon Ray (Gleam Only; 3/Day)", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}12 ({@damage 2d8 + 3}) radiant damage, and the target must succeed on a {@dc 13} Wisdom saving throw or be transformed into a bat for 1 minute, as though affected by a {@spell polymorph} spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sun Ray (Glister Only; 3/Day)", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}12 ({@damage 2d8 + 3}) radiant damage, and the target must succeed on a {@dc 13} Wisdom saving throw or be {@condition blinded} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Twin Sight (Recharges after a Short or Long Rest)", + "body": [ + "In her mind's eye, a Selenelion twin can see what the other twin sees for up to 1 minute, provided both twins are alive and on the same plane of existence. Maintaining this effect requires {@status concentration} (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Selenelion Twin-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Sir Talavar", + "source": "WBtW", + "page": 69, + "size_str": "Tiny", + "maintype": "dragon", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 14, + "formula": "4d4 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 3, + "dexterity": 20, + "constitution": 13, + "intelligence": 14, + "wisdom": 12, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Superior Invisibility", + "body": [ + "As a bonus action, Sir Talavar can magically turn {@condition invisible} until his {@status concentration} ends (as if {@status concentration||concentrating} on a spell). Any equipment Sir Talavar wears or carries is {@condition invisible} with him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Telepathy", + "body": [ + "Using telepathy, Sir Talavar can magically communicate with any other faerie dragon within 60 feet of him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Sir Talavar has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "+1 Tiny Sword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Euphoria Breath {@recharge 5}", + "body": [ + "Sir Talavar exhales a puff of euphoria gas at one creature within 5 feet of him. The target must succeed on a {@dc 11} Wisdom saving throw, or for 1 minute, the target can't take reactions and must roll a {@dice d6} at the start of each of its turns to determine its behavior during the turn:", + { + "title": "1-4", + "body": [ + "The target takes no action or bonus action and uses all of its movement to move in a random direction." + ], + "__dataclass__": "Entry" + }, + { + "title": "5-6", + "body": [ + "The target doesn't move, and the only thing it can do on its turn is make a {@dc 11} Wisdom saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Sir Talavar's innate spellcasting ability is Charisma (spell save {@dc 13}). It can innately cast a number of spells, requiring no material components. As the dragon ages and changes color, it gains additional spells as shown below." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell color spray} (Orange)", + "{@spell mirror image} (Yellow)", + "{@spell suggestion} (Green)", + "{@spell major image} (Blue)", + "{@spell hallucinatory terrain} (Indigo)", + "{@spell polymorph} (Violet)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell minor illusion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sir Talavar-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Skabatha Nightshade", + "source": "WBtW", + "page": 218, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 9, + "constitution": 16, + "intelligence": 12, + "wisdom": 16, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "int": "+4", + "wis": "+6", + "cha": "+5" + }, + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Elvish", + "Infernal", + "Sylvan" + ], + "traits": [ + { + "title": "Boon of Immortality", + "body": [ + "Skabatha is immune to any effect that would age her, and she can't die from old age." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forgetfulness", + "body": [ + "The first creature that Skabatha sees after she finishes a long rest is {@condition invisible} to her. She can't remember seeing the creature or perceive it using her truesight until the end of her next long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Skabatha makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}25 ({@damage 6d6 + 4}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Alter Size", + "body": [ + "Skabatha magically shrinks herself to Tiny size (between 4 and 8 inches tall) or returns to her normal size. If Skabatha lacks the room to return to her normal size, she attains the maximum size possible in the space available. Anything she is wearing or carrying changes size along with her.", + "As a Tiny creature, Skabatha deals 2 ({@damage 1d4}) poison damage when she hits with a Claw attack. She has advantage on Dexterity ({@skill Stealth}) checks, and disadvantage on Strength checks and Strength saving throws. Her statistics otherwise remain unchanged." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Skabatha casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell druidcraft}", + "{@spell speak with animals}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell awaken} (as an action)", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell polymorph}", + "{@spell remove curse}", + "{@spell speak with plants}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "hag", + "actions_note": "", + "mythic": null, + "key": "Skabatha Nightshade-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Skylla", + "source": "WBtW", + "page": 220, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 11, + "constitution": 14, + "intelligence": 12, + "wisdom": 15, + "charisma": 17, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+4", + "cha": "+5" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Skylla carries an {@item Eldritch Staff|WBtW} (see appendix A) with 10 charges. The staff regains {@dice 1d6 + 4} expended charges daily at dawn. If its last charge is expended, roll a {@dice d20}; on a 1, the staff is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Skylla makes two Eldritch Staff attacks. She can replace one of the attacks with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Staff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 4 ({@damage 1d8}) bludgeoning damage when used with two hands, and Skylla can expend up to 3 of the staff's charges, dealing an extra 4 ({@damage 1d8}) lightning damage for each expended charge." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Eldritch Escape", + "body": [ + "When Skylla takes damage, she can expend 3 charges of her eldritch staff to turn {@condition invisible} and teleport, along with any equipment she's wearing or carrying, up to 60 feet to an unoccupied space she can see. She remains {@condition invisible} until the start of her next turn or until she attacks or casts a spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Skylla casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell faerie fire}", + "{@spell fly}", + "{@spell hypnotic pattern}", + "{@spell invisibility}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, warlock", + "actions_note": "", + "mythic": null, + "key": "Skylla-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Squirt the Oilcan", + "source": "WBtW", + "page": 110, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "7d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 3, + "dexterity": 15, + "constitution": 10, + "intelligence": 11, + "wisdom": 8, + "charisma": 15, + "passive": 9, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Dwarvish", + "Sylvan" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If Squirt is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed Squirt move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that Squirt is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "Squirt doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boggle Oil (3 Applications)", + "body": [ + "Squirt expends 1 application of boggle oil to create a 10-foot-square puddle of slippery, non-flammable oil on the ground within 5 feet of it. The puddle is {@quickref difficult terrain||3} and lasts for 1 hour. Each creature that enters the puddle's area or starts its turn there must succeed on a {@dc 11} Dexterity saving throw or fall {@condition prone}. Boggles are unaffected by the oil. After it expends all 3 applications, Squirt can't use this action again until its supply of boggle oil is replenished." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Squirt the Oilcan-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Strongheart", + "source": "WBtW", + "page": 228, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 13, + "charisma": 17, + "passive": 11, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+5" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Strongheart wields {@item Steel|WBtW}, a sentient, lawful good longsword (see appendix A)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Strongheart makes three Steel attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steel", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage, or 9 ({@damage 1d10 + 4}) slashing damage when used with two hands. Once on each of his turns, Strongheart can also cause the blade to gleam with holy light. If he does so, the target is {@condition blinded} until the start of Strongheart's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Revivify (Recharges at the Next Dawn)", + "body": [ + "While holding Steel, Strongheart casts {@spell revivify}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protect Another", + "body": [ + "When a creature Strongheart can see attacks another creature that is within 5 feet of him, Strongheart can use his reaction to impose disadvantage on the attack roll, provided he is carrying a shield." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Strongheart casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell command}", + "{@spell detect evil and good}", + "{@spell protection from evil and good}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell lesser restoration}", + "{@spell remove curse}", + "{@spell zone of truth}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, paladin", + "actions_note": "", + "mythic": null, + "key": "Strongheart-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Campestris", + "source": "WBtW", + "page": 232, + "size_str": "Medium", + "maintype": "swarm of Tiny plants", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 3, + "dexterity": 7, + "constitution": 10, + "intelligence": 4, + "wisdom": 10, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "tremorsense 30 ft." + ], + "languages": [ + "understands Common but speaks only through the use of its Mimicry trait" + ], + "traits": [ + { + "title": "Mimicry", + "body": [ + "Each campestri in the swarm can mimic any voice or song it has heard, albeit in a nasal falsetto." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough to accommodate an individual campestri. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Head Butts", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}10 ({@damage 4d4}) bludgeoning damage, or 5 ({@damage 2d4}) bludgeoning damage if the swarm has half its hit points or fewer." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spores (1/Day)", + "body": [ + "A 20-foot radius of spores extends from the swarm. These spores can go around corners, and they have no effect on Constructs, Elementals, Plants, or Undead. Each other creature in the area must make a {@dc 10} Wisdom saving throw. On a failed save, the creature is {@condition incapacitated} and its speed is halved, both 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." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Campestris-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Tin Soldier", + "source": "WBtW", + "page": 115, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 11, + "constitution": 13, + "intelligence": 1, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The tin soldier is incapacitated while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the tin soldier must succeed on a Constitution saving throw against the caster's spell save DC or fall unconscious for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the tin soldier remains motionless, it is indistinguishable from a normal suit of armor." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tin soldier makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tin Soldier-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Treant Sapling", + "source": "WBtW", + "page": 36, + "size_str": "Large", + "maintype": "plant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 8, + "constitution": 15, + "intelligence": 12, + "wisdom": 12, + "charisma": 10, + "passive": 11, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the treant is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the treant move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the treant is animate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The treant makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d10 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}14 ({@damage 2d10 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Animate Trees (1/Day)", + "body": [ + "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as an awakened tree (see the Monster Manual), except they can't speak. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies, until the treant dies or is more than 120 feet from the tree, or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Treant Sapling-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Warduke", + "source": "WBtW", + "page": 221, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|PHB|half plate}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 11, + "constitution": 14, + "intelligence": 9, + "wisdom": 11, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "con": "+5" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Warduke wears a {@item dread helm|XGE} (see appendix A) and wields a {@item flame tongue longsword}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Warduke makes three Flame Tongue or Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Tongue", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands, plus 7 ({@damage 2d6}) fire damage if the weapon is aflame." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Flaming Blade", + "body": [ + "Warduke ignites or extinguishes his flame tongue longsword. While aflame, it sheds bright light in a 40-foot radius and dim light for an additional 40 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "Warduke regains 13 hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Warduke-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Witchlight Hand (Medium)", + "source": "WBtW", + "page": 27, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 14, + "constitution": 11, + "intelligence": 12, + "wisdom": 13, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "sleight of hand", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Secret Expertise", + "body": [ + "The hand has one of these additional skills: {@skill Acrobatics} {@skillCheck acrobatics 6}, {@skill Animal Handling} {@skillCheck animal_handling 5}, {@skill Arcana} {@skillCheck arcana 5}, {@skill Athletics} {@skillCheck athletics 4}, {@skill Medicine} {@skillCheck medicine 5}, or {@skill Performance} {@skillCheck performance 5}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pixie Dust (1/Day)", + "body": [ + "The hand sprinkles a pinch of pixie dust on itself or another creature it can see within 5 feet of it. The recipient gains a flying speed of 30 feet for 1 minute. If the creature is airborne when this effect ends, it falls safely to the ground, taking no damage and landing on its feet." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The hand casts one of the following spells, using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Witchlight Hand (Medium)-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Zarak", + "source": "WBtW", + "page": 222, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 13, + "dexterity": 16, + "constitution": 16, + "intelligence": 11, + "wisdom": 15, + "charisma": 6, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "int": "+2" + }, + "senses": [ + "darkvision 60" + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Zarak carries a {@item potion of invisibility}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zarak makes two Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage, plus an extra 5 ({@damage 2d4}) piercing damage if the target is a creature and Zarak has at least 18 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Garrote", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Humanoid. {@h}8 ({@damage 2d4 + 3}) slashing damage, and the target is {@condition grappled} (escape {@dc 11}). Until this grapple ends, the target takes 8 ({@damage 2d4 + 3}) slashing damage at the start of each of its turns, and Zarak can't grapple another creature or use Assassin's Whim." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Assassin's Whim", + "body": [ + "Zarak takes the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "Zarak halves the damage he takes from an attack made against him, provided he can see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "orc", + "actions_note": "", + "mythic": null, + "key": "Zarak-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Zargash", + "source": "WBtW", + "page": 223, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 10, + "constitution": 14, + "intelligence": 12, + "wisdom": 16, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+4" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Cling to Life (Recharges after a Long Rest)", + "body": [ + "The first time Zargash would drop to 0 hit points as a result of taking damage, he instead drops to 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Zargash wears a bat-shaped amulet that has the properties of a {@item ring of feather falling}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Warhammer", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage, or 7 ({@damage 1d10 + 2}) bludgeoning damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deathly Ray", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}25 ({@damage 4d10 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Animate Corpse (1/Day)", + "body": [ + "Zargash targets the lifeless corpse of one Humanoid he can see within 30 feet of him and commands it to rise, transforming it into a zombie under his control. The zombie takes its turn immediately after Zargash. Animating the zombie requires Zargash's {@status concentration} (as if {@status concentration||concentrating} on a spell). The zombie reverts to an inanimate corpse after 10 minutes, when it drops to 0 hit points, or when Zargash's {@status concentration} ends." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Zargash casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}", + "{@spell gaseous form}", + "{@spell hold person}", + "{@spell silence}", + "{@spell speak with dead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "cleric, human", + "actions_note": "", + "mythic": null, + "key": "Zargash-WBtW", + "__dataclass__": "Monster" + }, + { + "name": "Ahmaergo", + "source": "WDH", + "page": 193, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 15, + "constitution": 14, + "intelligence": 15, + "wisdom": 14, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+6" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Ahmaergo has advantage on saving throws against being {@condition poisoned}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indomitable (2/Day)", + "body": [ + "Ahmaergo can reroll a saving throw that he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, Ahmaergo can regain 20 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extra Damage", + "body": [ + "If Ahmaergo has more than half his hit points remaining he deals an extra 7 ({@damage 2d6}) slashing damage on every hit." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ahmaergo makes three attacks with his greataxe." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage" + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 100/400 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Ahmaergo-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Ammalia Cassalanter", + "source": "WDH", + "page": 193, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "10d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 15, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d6 - 1}) bludgeoning damage, or 3 ({@damage 1d8 - 1}) bludgeoning damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Ammalia is a 9th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell mage armor}", + "{@spell magic missile}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell invisibility}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fireball}", + "{@spell haste}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Ammalia Cassalanter-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Awakened Rat", + "source": "WDH", + "page": 102, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 11, + "constitution": 9, + "intelligence": 10, + "wisdom": 10, + "charisma": 4, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Keen Smell", + "body": [ + "The rat has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Awakened Rat-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Barnibus Blastwind", + "source": "WDH", + "page": 195, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 24, + "formula": "7d8 - 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 10, + "constitution": 9, + "intelligence": 17, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Halfling" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Barnibus carries a {@item wand of magic detection}. (spell included in spell list below but does not use a slot when cast from the wand)" + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 2} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Barnibus is a 7th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 13}, {@hit 5} to hit with spell attacks) He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell blade ward}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell comprehend languages}", + "{@spell identify}", + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell clairvoyance}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell locate creature}", + "{@spell Otiluke's resilient sphere}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Barnibus Blastwind-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Bepis Honeymaker", + "source": "WDH", + "page": 112, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "languages": [ + "Common", + "Halfling" + ], + "traits": [ + { + "title": "Halfling Nimbleness", + "body": [ + "Bepis can move through a space occupied by a creature of a size larger than him" + ], + "__dataclass__": "Entry" + }, + { + "title": "Brave", + "body": [ + "Bepis has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Strongheart halfling", + "actions_note": "", + "mythic": null, + "key": "Bepis Honeymaker-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Black Viper", + "source": "WDH", + "page": 196, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 11, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 11, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+3" + }, + "languages": [ + "Common", + "Thieves' cant" + ], + "traits": [ + { + "title": "Cunning Action", + "body": [ + "On each of her turns, the Black Viper can use a bonus action to take the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If the Black Viper is subjected to an effect that allows her to make a Dexterity saving throw to take only half damage, she instead takes no damage if she succeeds on the saving throw, and only half damage if she fails. She can't use this trait if she's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "The Black Viper deals an extra 14 ({@damage 4d6}) damage when she hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of the Black Viper that isn't {@condition incapacitated} and the Black Viper doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Black Viper makes three attacks with her rapier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "The Black Viper halves the damage that she takes from an attack that hits her. She must be able to see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Black Viper-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Davil Starsong", + "source": "WDH", + "page": 199, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 16, + "wisdom": 12, + "charisma": 17, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Davil has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Davil is a 12th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 14}, {@hit 6} to hit with spell attacks) He has the following bard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell mending}", + "{@spell minor illusion}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell disguise self}", + "{@spell sleep}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell crown of madness}", + "{@spell invisibility}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell nondetection}", + "{@spell sending}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell compulsion}", + "{@spell freedom of movement}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dominate person}", + "{@spell greater restoration}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell Otto's irresistible dance}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Davil Starsong-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Dining Table Mimic", + "source": "WDH", + "page": 122, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 5, + "wisdom": 13, + "charisma": 8, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The mimic can use its action to polymorph into an object or back into its true, amorphous form. Its statistics are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Adhesive (Object Form Only)", + "body": [ + "The mimic adheres to anything that touches it. A Huge or smaller creature adhered to the mimic is also {@condition grappled} by it (escape {@dc 13}). Ability checks made to escape this grapple have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance (Object Form Only)", + "body": [ + "While the mimic remains motionless, it is indistinguishable from an ordinary object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grappler", + "body": [ + "The mimic has advantage on attack rolls against any creature {@condition grappled} by it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mimic can make three attacks; two with its pseudopods and one with its bite" + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 4 ({@damage 1d8}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Dining Table Mimic-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Drow Gunslinger", + "source": "WDH", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 13, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+4", + "wis": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "The drow has advantage on saving throws against being {@condition charmed}, and magic can't put the drow to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gunslinger", + "body": [ + "Being within 5 feet of a hostile creature or attacking at long range doesn't impose disadvantage on the drow's ranged attack rolls with a pistol. In addition, the drow ignores {@quickref Cover||3||half cover} and {@quickref Cover||3||three-quarters cover} when making ranged attacks with a pistol." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The drow makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Pistol", + "body": [ + "{@atk rw} {@hit 6} to hit, range 30/90 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The drow's spellcasting ability is Charisma (spell save {@dc 12}) It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Drow Gunslinger-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Durnan", + "source": "WDH", + "page": 203, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "{@item elven chain}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 15, + "constitution": 18, + "intelligence": 13, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+8" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Durnan wields a {@item Greatsword of Sharpness||sword of sharpness (greatsword)} called Grimvault. He wears {@item boots of striding and springing}, {@item elven chain}, and a {@item ring of spell turning}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indomitable (Recharges after a Long Rest)", + "body": [ + "Durnan can reroll a saving throw that he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Turning", + "body": [ + "While wearing his ring of spell turning, Durnan has advantage on saving throws against any spell that targets only him (not in an area of effect). If Durnan rolls a 20 for the save and the spell is 7th level or lower, the spell has no effect on him and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Durnan makes four melee weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grimvault", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage. If the target is an object, the hit instead deals 16 slashing damage. If the target is a creature and Durnan rolls a 20 on the {@dice d20} for the attack roll, the target takes an extra 14 slashing damage, and Durnan rolls another {@dice d20}. On a roll of 20, he lops off one of the target's limbs, or some other part of its body if it is limbless." + ], + "__dataclass__": "Entry" + }, + { + "title": "Double Crossbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 60/240 ft., one target. {@h}13 ({@damage 2d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Durnan-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Engineer", + "source": "WDH", + "page": 141, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 14, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Gnomish" + ], + "traits": [ + { + "title": "Gnome Cunning", + "body": [ + "The gnome has advantage on all Intelligence, Wisdom and Charisma saving throws against magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Or Ranged Weapon Attack: {@hit 2} to hit, range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The gnome is a 1st-level spellcaster. Its spellcasting ability is Intelligence. It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Rock gnome", + "actions_note": "", + "mythic": null, + "key": "Engineer-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Fala Lefaliir", + "source": "WDH", + "page": 32, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Druidic", + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Fala has advantage on saving throws against being {@condition charmed}, and magic can't put them to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit or Melee Weapon Attack {@hit 4} to hit with shillelagh, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh or if wielded with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Fala is a 4th-level spellcaster. Their spellcasting ability is Wisdom. They have the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Wood elf", + "actions_note": "", + "mythic": null, + "key": "Fala Lefaliir-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Flying Staff", + "source": "WDH", + "page": 152, + "size_str": "Small", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 17, + "formula": "5d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 15, + "constitution": 11, + "intelligence": 1, + "wisdom": 5, + "charisma": 1, + "passive": 7, + "saves": { + "dex": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The staff is {@condition incapacitated} while in the area of an {@spell antimagic field}. If targeted by {@spell dispel magic}, the staff must succeed on a Constitution saving throw against the caster's spell save DC or fall {@condition unconscious} for 1 minute." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "While the staff remains motionless and isn't flying, it is indistinguishable from a normal staff." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Knife", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flying Staff-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Griffon Cavalry Rider", + "source": "WDH", + "page": 197, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "{@item half plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "any one language (usually Common)" + ], + "actions": [ + { + "title": "Lance", + "body": [ + "{@atk mw} {@hit 4} to hit (with disadvantage against a target within 5 ft.), reach 10 ft., one target. {@h}8 ({@damage 1d12 + 2}) piercing damage, or 11 ({@damage 1d12 + 5}) piercing damage while mounted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Feather Fall", + "body": [ + "The rider wears a magic ring with which it can cast the {@spell feather fall} spell on itself once as a reaction to falling. After the spell is cast, the ring becomes nonmagical." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Griffon Cavalry Rider-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Grum'shar", + "source": "WDH", + "page": 29, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 14, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Relentless Endurance", + "body": [ + "When reduced to 0 hit points, Grum'shar drops to 1 hit point instead. He can only do this once per long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Or Ranged Weapon Attack: {@hit 2} to hit, range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Grum'shar is a 1st-level spellcaster. His spellcasting ability is Intelligence. He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-orc", + "actions_note": "", + "mythic": null, + "key": "Grum'shar-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Hlam", + "source": "WDH", + "page": 204, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 22, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 137, + "formula": "25d8 + 25", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 11, + "dexterity": 24, + "constitution": 13, + "intelligence": 14, + "wisdom": 21, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+5", + "dex": "+12" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "disease", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "all spoken languages" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If Hlam is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Attacks", + "body": [ + "Hlam's unarmed strikes are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "While Hlam is wearing no armor and wielding no shield, his AC includes his Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hlam attacks three times using his unarmed strike, darts, or both." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}12 ({@damage 1d10 + 7}) bludgeoning, magic damage. If the target is a creature, Hlam can choose one of the following additional effects:", + "The target must succeed on a {@dc 18} Strength saving throw or drop one item it is holding (Hlam's choice).", + "The target must succeed on a {@dc 18} Dexterity saving throw or be knocked {@condition prone}.", + "The target must succeed on a {@dc 18} Constitution saving throw or be {@condition stunned} until the end of Hlam's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 12} to hit, range 20/60 ft., one target. {@h}9 ({@damage 1d4 + 7}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Quivering Palm {@recharge}", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one creature. {@h}The target must make a {@dc 18} Constitution saving throw. On a failed save, the target is reduced to 0 hit points. On a successful save, the target takes 55 ({@damage 10d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wholeness of Body (Recharges after a Long Rest)", + "body": [ + "Hlam regains 60 hit points." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, Hlam deflects the missile. The damage he takes from the attack is reduced by {@dice 1d10 + 27}. If the damage is reduced to 0, Hlam catches the missile if it's small enough to hold in one hand and he has a hand free." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slow Fall", + "body": [ + "Hlam reduces the bludgeoning damage he takes from a fall by 100." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Quick Step", + "body": [ + "Hlam moves up to his speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike (Costs 2 Actions)", + "body": [ + "Hlam makes one unarmed strike." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility (Costs 3 Actions)", + "body": [ + "Hlam becomes {@condition invisible} until the end of his next turn. The effect ends if Hlam attacks or casts a spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Hlam is a 5th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 18}, {@hit 10} to hit with spell attacks) He has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect evil and good}", + "{@spell healing word}", + "{@spell sanctuary}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell calm emotions}", + "{@spell prayer of healing}", + "{@spell silence}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell protection from energy}", + "{@spell remove curse}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Hlam-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Hrabbaz", + "source": "WDH", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 20, + "dexterity": 15, + "constitution": 17, + "intelligence": 10, + "wisdom": 14, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Indomitable (2/Day)", + "body": [ + "Hrabbaz can reroll a saving throw that he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Relentless Endurance (Recharges after a Long Rest)", + "body": [ + "When Hrabbaz is reduced to 0 hit points but not killed outright, he drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extra Damage", + "body": [ + "As long as Hrabbaz has more than half his hit points left he deals an extra 3 ({@damage 1d6}) damage on all hits." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hrabbaz makes three attacks with his morningstar." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "half-orc", + "actions_note": "", + "mythic": null, + "key": "Hrabbaz-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Istrid Horn", + "source": "WDH", + "page": 199, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 117, + "formula": "18d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 12, + "dexterity": 10, + "constitution": 14, + "intelligence": 11, + "wisdom": 17, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Istrid has advantage on saving throws against being {@condition poisoned}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Istrid makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Maul", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Treasure Sense (3/Day)", + "body": [ + "Istrid magically pinpoints precious metals and stones, such as coins and gems, within 60 feet of her." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Istrid is a 9th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 6} to hit with spell attacks) She has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mending}", + "{@spell sacred flame}", + "{@spell spare the dying}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell divine favor}", + "{@spell guiding bolt}", + "{@spell healing word}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell magic weapon}", + "{@spell hold person}", + "{@spell silence}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell beacon of hope}", + "{@spell crusader's mantle}", + "{@spell dispel magic}", + "{@spell revivify}", + "{@spell spirit guardians}", + "{@spell water walk}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell freedom of movement}", + "{@spell guardian of faith}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell flame strike}", + "{@spell mass cure wounds}", + "{@spell hold monster}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Istrid Horn-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Jalester Silvermane", + "source": "WDH", + "page": 205, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item chain mail|phb}, {@item Badge of the Watch|wdh}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 14, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 14, + "charisma": 13, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "con": "+3" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Jalester carries a {@item badge of the Watch|wdh}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, Jalester can regain 16 ({@dice 1d10 + 11}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jalester makes two weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) slashing damage, or 7 ({@damage 1d10 + 2}) slashing damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Riposte", + "body": [ + "When a creature that Jalester can see misses him with a melee attack, he can use his reaction to make a melee weapon attack against that creature. On a hit, the target takes an extra 4 damage from the weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Jalester Silvermane-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Jandar Chergoba", + "source": "WDH", + "page": 116, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "Jandar has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jandar makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Jandar's spellcasting ability is Charisma. He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Jandar is a 4th-level spellcaster. His spellcasting ability is Wisdom. Jandar has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "tiefling", + "actions_note": "", + "mythic": null, + "key": "Jandar Chergoba-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Jarlaxle Baenre", + "source": "WDH", + "page": 206, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 24, + "note": "{@item +3 leather armor}, Suave Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 12, + "dexterity": 22, + "constitution": 14, + "intelligence": 20, + "wisdom": 16, + "charisma": 19, + "passive": 18, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 16, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "wis": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Jarlaxle wears {@item +3 leather armor}, a {@item hat of disguise}, a {@item bracer of flying daggers|wdh}, a {@item cloak of invisibility}, a {@item knave's eye patch|wdh}, and a {@item ring of truth telling|wdh}. He wields a {@item +3 rapier} and carries a {@item portable hole} and a {@item wand of web}. His hat is adorned with a {@item feather of diatryma summoning|wdh}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If he is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Jarlaxle instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Jarlaxle has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (1/Day)", + "body": [ + "If Jarlaxle fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master Attuner", + "body": [ + "Jarlaxle can attune to up to five magic items, and he can attune to magic items that normally require attunement by a sorcerer, warlock, or wizard." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Jarlaxle deals an extra 24 ({@damage 7d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Jarlaxle's that isn't {@condition incapacitated} and Jarlaxle doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Suave Defense", + "body": [ + "While Jarlaxle is wearing light or no armor and wielding no shield, his AC includes his Charisma modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "When not wearing his knave's eye patch, Jarlaxle has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jarlaxle makes three attacks with his +3 rapier or two attacks with daggers created by his bracer of flying daggers." + ], + "__dataclass__": "Entry" + }, + { + "title": "+3 Rapier", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}13 ({@damage 1d8 + 9}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flying Dagger", + "body": [ + "{@atk rw} {@hit 11} to hit, range 20/60 ft., one target. {@h}8 ({@damage 1d4 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Quick Step", + "body": [ + "Jarlaxle moves up to his speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Attack (Costs 2 Actions)", + "body": [ + "Jarlaxle makes one attack with his +3 rapier or two attacks with daggers created by his bracer of flying daggers." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Jarlaxle's innate spellcasting ability is Charisma (spell save {@dc 17}, {@hit 9} to hit with spell attacks) He can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Jarlaxle Baenre-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Kaevja Cynavern", + "source": "WDH", + "page": 158, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Kaevja carries a yellow {@item elemental gem}. As an action she can break the gem releasing an earth elemental under her command." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Kaevja is a 9th-level spellcaster. Her spellcasting ability is Intelligence. Kaevja has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Mulan human", + "actions_note": "", + "mythic": null, + "key": "Kaevja Cynavern-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Kalain", + "source": "WDH", + "page": 89, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Kalain has advantage on saving throws against being {@condition charmed} and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Art Imitates Life (3/Day)", + "body": [ + "Kalain touches one of her paintings and causes its subject to spring forth, becoming a creature of that kind provided its CR is 3 or lower. The creature appears in an unoccupied space within 5 feet of the painting, which becomes blank. The creature is friendly toward Kalain and hostile toward all others. It rolls initiative to determine when it acts. It disappears after 1 minute, when it is reduced to 0 hit points, or when Kalain dies or falls {@condition unconscious}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Taunt (2/Day)", + "body": [ + "Kalain can use a bonus action on her turn to target one creature within 30 feet of it. If the target can hear Kalain, the target must succeed on a {@dc 12} Charisma saving throw or have disadvantage on ability checks, attack rolls, and saving throws until the start of Kalain's next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Kalain is a 4th-level spellcaster. Her spellcasting ability is Charisma. She has the following bard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell friends}", + "{@spell mage hand}", + "{@spell vicious mockery}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell healing word}", + "{@spell heroism}", + "{@spell sleep}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell shatter}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Kalain-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Lady Gondafrey", + "source": "WDH", + "page": 152, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Lawful Good", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 11, + "constitution": 16, + "intelligence": 10, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "While the gargoyle remains motionless, it is indistinguishable from an inanimate statue." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gargoyle makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lady Gondafrey-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Laeral Silverhand", + "source": "WDH", + "page": 207, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 18, + "note": "{@item robe of the archmagi}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 228, + "formula": "24d8 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 13, + "dexterity": 17, + "constitution": 20, + "intelligence": 20, + "wisdom": 20, + "charisma": 19, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+11", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Giant", + "Infernal" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Laeral wears a white {@item robe of the archmagi} (accounted for in her statistics). She wields a {@item flame tongue longsword}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "While wearing her robe of the archmagi, Laeral has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Laeral makes three attacks with her silver hair and flame tongue, in any combination. She can cast one of her cantrips or 1st-level spells before or after making these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Silver Hair", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) force damage, and the target must succeed on a {@dc 19} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flame Tongue", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage plus 7 ({@damage 2d6}) fire damage, or 6 ({@damage 1d10 + 1}) slashing damage plus 7 ({@damage 2d6}) fire damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spellfire (Recharges after a Long Rest)", + "body": [ + "Magical, heatless, silver fire harmlessly erupts from Laeral and surrounds her until she is {@condition incapacitated} or until she uses an action to quench it. She gains one of the following benefits of her choice, which lasts until the silver fire ends:", + "She can breathe underwater.", + "She can survive without food and water.", + "She is immune to magic that would ascertain her thoughts, truthfulness, alignment, or creature type.", + "She gains resistance to cold damage, and she is unharmed by temperatures as low as -50 degrees Fahrenheit.", + "While the silver fire is present, she has the following additional action options:", + "Cast the {@spell cure wounds} spell. The target regains {@dice 1d8 + 5} hit points. After Laeral takes this action, roll a {@dice d6}. On a roll of 1, the silver fire disappears.", + "Cast the {@spell revivify} spell without material components. After Laeral takes this action, roll a {@dice d6}. On a roll of 1-2, the silver fire disappears.", + "Release a 60-foot line of silver fire that is 5 feet wide or a 30-foot cone of silver fire. Objects in the area that aren't being worn or carried take 26 ({@damage 4d12}) fire damage. Each creature in the area must succeed on a {@dc 21} Dexterity saving throw, taking 26 ({@damage 4d12}) fire damage on a failed save, or half as much damage on a successful one. After Laeral takes this action, roll a {@dice d6}. On a roll of 1-3, the silver fire disappears." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Laeral is a 19th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 21}, {@hit 13} to hit with spell attacks). Laeral has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell prestidigitation}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell invisibility}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell sending}", + "{@spell tongues}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell greater invisibility}", + "{@spell Otiluke's resilient sphere}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell cone of cold}", + "{@spell geas}", + "{@spell Rary's telepathic bond}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell globe of invulnerability}", + "{@spell mass suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell prismatic spray}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell power word stun}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell time stop}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Laeral Silverhand-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Laiba \"Nana\" Rosse", + "source": "WDH", + "page": 116, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "Laiba has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Laiba makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Laiba's spellcasting ability is Charisma. She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Laiba is a 4th-level spellcaster. Her spellcasting ability is Wisdom. Laiba has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "tiefling", + "actions_note": "", + "mythic": null, + "key": "Laiba \"Nana\" Rosse-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Losser Mirklav", + "source": "WDH", + "page": 85, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "9d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "Common", + "Halfling" + ], + "traits": [ + { + "title": "Halfling Nimbleness", + "body": [ + "Losser can move through the space of a creature that is a size bigger than him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brave", + "body": [ + "Losser has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence. The mage has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blight}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Lightfoot halfling", + "actions_note": "", + "mythic": null, + "key": "Losser Mirklav-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Magister Umbero Zastro", + "source": "WDH", + "page": 82, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 11, + "dexterity": 12, + "constitution": 11, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Umbero has advantage on saving throws against being {@condition charmed} and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The noble adds 2 to its AC against one melee attack that would hit it. To do so, the noble must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Magister Umbero Zastro-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Manafret Cherryport", + "source": "WDH", + "page": 149, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "9d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "languages": [ + "Common", + "Halfling" + ], + "traits": [ + { + "title": "Halfling Nimbleness", + "body": [ + "Manafret can move through a space of a Medium or larger creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brave", + "body": [ + "Manafret has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence. The mage has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "Lightfoot halfling", + "actions_note": "", + "mythic": null, + "key": "Manafret Cherryport-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Manshoon", + "source": "WDH", + "page": 209, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 19, + "note": "{@item robe of the archmagi}, {@item staff of power}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "23d8 + 23", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 23, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+2", + "dex": "+4", + "con": "+3", + "int": "+13", + "wis": "+9", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Goblin", + "Infernal", + "Orc", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Manshoon wears a black {@item robe of the archmagi} and wields a {@item staff of power} (both accounted for in his statistics). Roll {@dice 2d10} to determine how many charges the staff has remaining." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "While wearing his robe of the archmagi, Manshoon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Metal Fist", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of Power", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage when used with two hands. Manshoon can expend 1 of the staff's charges to deal an extra 3 ({@damage 1d6}) force damage on a hit." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Manshoon is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 21}, {@hit 15} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell lightning bolt}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fire shield}", + "{@spell greater invisibility}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell scrying}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell flesh to stone}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}", + "{@spell simulacrum}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell mind blank}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell imprisonment}", + "{@spell power word kill}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Manshoon-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Manshoon Simulacrum", + "source": "WDH", + "page": 208, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "23d8 + 23", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 23, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+11", + "wis": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Goblin", + "Infernal", + "Orc", + "Undercommon" + ], + "actions": [ + { + "title": "Metal Fist", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Manshoon is an 18th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 19}, {@hit 11} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell detect thoughts}", + "{@spell mirror image}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell lightning bolt}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell fire shield}", + "{@spell greater invisibility}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell scrying}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Manshoon Simulacrum-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Maxeene", + "source": "WDH", + "page": 37, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 18, + "dexterity": 10, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 7, + "passive": 10, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Hooves", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Maxeene-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Mechanical Bird", + "source": "WDH", + "page": 46, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "1", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "Unknown", + "xp": 0, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 0} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d3}) piercing damage, and the bird is destroyed by the impact." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mechanical Bird-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Melannor Fellbranch", + "source": "WDH", + "page": 36, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Melannor has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit or Melee Weapon Attack {@hit 4} to hit with shillelagh, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh or if wielded with two hands." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Melannor is a 4th-level spellcaster. His spellcasting ability is Wisdom. He has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Melannor Fellbranch-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Meloon Wardragon", + "source": "WDH", + "page": 210, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "22d8 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 20, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Meloon wields {@item Azuredge|wdh} but can't attune to it, and thus gains none of its benefits." + ], + "__dataclass__": "Entry" + }, + { + "title": "Indomitable (2/Day)", + "body": [ + "Meloon can reroll a saving throw that he fails. He must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, Meloon can regain 20 hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Meloon makes four attacks with Azuredge." + ], + "__dataclass__": "Entry" + }, + { + "title": "Azuredge", + "body": [ + "{@atk m} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Meloon Wardragon-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Mirt", + "source": "WDH", + "page": 211, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 16, + "note": "{@item bracers of defense}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 15, + "wisdom": 12, + "charisma": 15, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "wis": "+5" + }, + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Mirt wears {@item bracers of defense} and a {@item ring of regeneration}. He wields a {@item +1 longsword} and a {@item +1 dagger}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brute", + "body": [ + "A melee weapon deals one extra die of its damage when Mirt hits with it (included in the attacks below)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If he is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Mirt instead takes no damage if he succeeds on the saving throw, and only half damage if he fails. He can't use this trait if he's {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Mirt deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Mirt's that isn't {@condition incapacitated} and Mirt doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Mirt makes three attacks: two with his +1 longsword and one with his +1 dagger." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Longsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) slashing damage, or 16 ({@damage 2d10 + 5}) slashing damage when used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "+1 Dagger", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) piercing damage. Or Ranged Weapon Attack: {@hit 9} to hit, range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Mirt adds 2 to his AC against one melee attack that would hit him. To do so, Mirt must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Mirt-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Nimblewright", + "source": "WDH", + "page": 212, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 18, + "constitution": 17, + "intelligence": 8, + "wisdom": 10, + "charisma": 6, + "passive": 12, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands one language known to its creator but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The nimblewright has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Weapons", + "body": [ + "The nimblewright's weapon attacks are magical." + ], + "__dataclass__": "Entry" + }, + { + "title": "Repairable", + "body": [ + "As long as it has at least 1 hit point remaining, the nimblewright regains 1 hit point when a {@spell mending} spell is cast on it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sure-Footed", + "body": [ + "The nimblewright has advantage on Strength and Dexterity saving throws made against effects that would knock it {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nimblewright makes three attacks: two with its rapier and one with its dagger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage. Or Ranged Weapon Attack: {@hit 6} to hit, range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The nimblewright adds 2 to its AC against one melee attack that would hit it. To do so, the nimblewright must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nimblewright-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Noska Ur'gray", + "source": "WDH", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 11, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "Noska has advantage on an attack roll against a creature if at least one of Noska's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dwarven Resilience", + "body": [ + "Noska has advantage on saving throws against poison and resistance to poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Difficult Climber", + "body": [ + "Noska has disadvantage on Strength checks made to climb, due to his disability." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Noska makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Noska Ur'gray-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Obliteros", + "source": "WDH", + "page": 66, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "11d12 + 55", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 23, + "dexterity": 11, + "constitution": 21, + "intelligence": 10, + "wisdom": 10, + "charisma": 5, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Aquan" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "Obliteros has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Breathing", + "body": [ + "Obliteros can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 3d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Obliteros-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Orond Gralhund", + "source": "WDH", + "page": 213, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 11, + "intelligence": 9, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Orond adds 2 to its AC against one melee attack that would hit it. To do so, Orond must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Tethyrian human", + "actions_note": "", + "mythic": null, + "key": "Orond Gralhund-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Ott Steeltoes", + "source": "WDH", + "page": 214, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 10, + "intelligence": 6, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 0, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Ott has advantage on saving throws against poison and resistance to poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dark Devotion", + "body": [ + "The cultist has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d6 + 1}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Ott Steeltoes-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Panopticus Wizard", + "source": "WDH", + "page": 106, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 14, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "The dwarf has advantage on saving throws against poison and resistance to poison damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Or Ranged Weapon Attack: {@hit 2} to hit, range 20/60 ft., one target. {@h}2 ({@damage 1d4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The Dwarf is a 1st-level spellcaster. Its spellcasting ability is Intelligence. It has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell mending}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell burning hands}", + "{@spell disguise self}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Panopticus Wizard-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Remallia Haventree", + "source": "WDH", + "page": 214, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 10, + "dexterity": 14, + "constitution": 13, + "intelligence": 18, + "wisdom": 15, + "charisma": 17, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Halfling" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Remallia has a {@item Figurine of Wondrous Power, Silver Raven||figurine of wondrous power (silver raven)}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Remallia has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Ward", + "body": [ + "Remallia has a magical ward that has 30 hit points. Whenever she takes damage, the ward takes the damage instead. If the ward is reduced to 0 hit points, Remallia takes any remaining damage. When Remallia casts an abjuration spell of 1st level or higher, the ward regains a number of hit points equal to twice the level of the spell. This applies to any of the following spells she casts: {@spell alarm}, {@spell mage armor}, {@spell shield}, {@spell arcane lock}, {@spell counterspell}, {@spell dispel magic}, {@spell banishment}, {@spell stoneskin}, {@spell globe of invulnerability} and {@spell symbol}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Remallia is a 13th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 16}, {@hit 8} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell mending}", + "{@spell message}", + "{@spell ray of frost}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell alarm}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell cone of cold}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell flesh to stone}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell symbol}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Remallia Haventree-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Renaer Neverember", + "source": "WDH", + "page": 215, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 17, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 18, + "constitution": 12, + "intelligence": 14, + "wisdom": 11, + "charisma": 15, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Lightfooted", + "body": [ + "The swashbuckler can take the Dash or Disengage action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Suave Defense", + "body": [ + "While the swashbuckler is wearing light or no armor and wielding no shield, its AC includes its Charisma modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The swashbuckler makes three attacks: one with a dagger and two with its rapier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage. Or Ranged Weapon Attack: {@hit 6} to hit, range 20/60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Renaer Neverember-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Rishaal the Page-Turner", + "source": "WDH", + "page": 33, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "actions": [ + { + "title": "Breath Weapon", + "body": [ + "Rishaal can use his action to exhale a 15-foot cone of fire (but can't do this again until he finishes a short or long rest); each creature in the cone must make a {@dc 10} Dexterity saving throw, taking {@damage 2d6} fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Rishaal is a 9th-level spellcaster. His spellcasting ability is Intelligence. Rishaal has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dragonborn", + "actions_note": "", + "mythic": null, + "key": "Rishaal the Page-Turner-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Saeth Cromley", + "source": "WDH", + "page": 216, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 17, + "note": "{@item splint armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "9d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 13, + "constitution": 14, + "intelligence": 10, + "wisdom": 11, + "charisma": 14, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Saeth makes two longsword attacks. If he has a shortsword drawn, he can also make a shortsword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 3} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Saeth Cromley-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Shard Shunner", + "source": "WDH", + "page": 42, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 15, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 8, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft. (rat form only)" + ], + "languages": [ + "Common", + "Halfling", + "Thieves' cant" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The Shard Shunner can use their action to polymorph into a rat-humanoid hybrid or into a giant rat, or back into their true form, which is humanoid. Their statistics, other than their size, are the same in each form. Any equipment they are wearing or carrying isn't transformed. They revert to their true form if they die." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Smell", + "body": [ + "The Shard Shunner has advantage on Wisdom ({@skill Perception}) checks that rely on smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Halfling Nimbleness", + "body": [ + "The Shard Shunner can move through the space of creatures that is of a size larger than them." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brave", + "body": [ + "The Shard Shunner has advantage on saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Humanoid or Hybrid Form Only)", + "body": [ + "The Shard Shunner makes two attacks, only one of which can be a bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Rat or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 11} Constitution saving throw or be cursed with wererat lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "halfling, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Shard Shunner-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Skeemo Weirdbottle", + "source": "WDH", + "page": 200, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 72, + "formula": "16d6 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 12, + "charisma": 15, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Gnomish", + "Undercommon" + ], + "traits": [ + { + "title": "Gnome Cunning", + "body": [ + "Skeemo has advantage on Intelligence, Wisdom, and Charisma saving throws against magic." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Skeemo is a 9th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 14}, {@hit 6} to hit with spell attacks) He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell misty step}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fireball}", + "{@spell fly}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell ice storm}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell cone of cold}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gnome", + "actions_note": "", + "mythic": null, + "key": "Skeemo Weirdbottle-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Soluun Xibrindas", + "source": "WDH", + "page": 202, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item studded leather armor|phb|studded leather}, {@item shield|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 13, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 13, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "con": "+4", + "wis": "+3" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Soluun has advantage on saving throws against being {@condition charmed}, and magic can't put Soluun to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gunslinger", + "body": [ + "Being within 5 feet of a hostile creature or attacking at long range doesn't impose disadvantage on Soluun's ranged attack rolls with a pistol. In addition, Soluun ignores {@quickref Cover||3||half cover} and {@quickref Cover||3||three-quarters cover} when making ranged attacks with a pistol." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, Soluun has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Equipment", + "body": [ + "Four packets of smokepowder and a pouch containing 20 pistol bullets" + ], + "__dataclass__": "Entry" + }, + { + "title": "Boots of Elvenkind", + "body": [ + "Whilst wearing these boots Soluun's steps make no sound and he has advantage on any Dexterity ({@skill Stealth}) checks that rely on moving silently." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Soluun makes two scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Pistol", + "body": [ + "{@atk rw} {@hit 6} to hit, range 30/90 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Soluun's spellcasting ability is Charisma. It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell levitate} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Soluun Xibrindas-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Books", + "source": "WDH", + "page": 156, + "size_str": "Medium", + "maintype": "swarm of Tiny constructs", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 5, + "dexterity": 15, + "constitution": 10, + "intelligence": 2, + "wisdom": 12, + "charisma": 4, + "passive": 11, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny book. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 0 ft., one creature in the swarm's space. {@h}5 ({@damage 2d4}) bludgeoning damage, or 2 ({@damage 1d4}) bludgeoning damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Books-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Mechanical Spiders", + "source": "WDH", + "page": 143, + "size_str": "Medium", + "maintype": "swarm of Tiny constructs", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 3, + "dexterity": 13, + "constitution": 10, + "intelligence": 1, + "wisdom": 7, + "charisma": 1, + "passive": 8, + "dmg_vulnerabilities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "traits": [ + { + "title": "Constructed Nature", + "body": [ + "The swarm doesn't require air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny insect. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The swarm can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the swarm knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The swarm ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 0 ft., one target in the swarm's space. {@h}10 ({@damage 4d4}) piercing damage, or 5 ({@damage 2d4}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Mechanical Spiders-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Sylgar", + "source": "WDH", + "page": 220, + "size_str": "Tiny", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 1, + "formula": "1d4 - 1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 16, + "constitution": 9, + "intelligence": 1, + "wisdom": 7, + "charisma": 2, + "passive": 8, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Water Breathing", + "body": [ + "Sylgar can breathe only underwater." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sylgar-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Talisolvanar \"Tally\" Fellbranch", + "source": "WDH", + "page": 32, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Tally has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Talisolvanar \"Tally\" Fellbranch-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Tashlyn Yafeera", + "source": "WDH", + "page": 200, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 15, + "constitution": 14, + "intelligence": 10, + "wisdom": 14, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+6" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Indomitable (2/Day)", + "body": [ + "Tashlyn can reroll a saving throw that she fails. She must use the new roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Second Wind (Recharges after a Short or Long Rest)", + "body": [ + "As a bonus action, Tashlyn can regain 20 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extra Damage", + "body": [ + "Tashlyn deals an extra 7 ({@damage 2d6}) damage to every hit if she has more than half her hit points remaining." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tashlyn makes three attacks with her greatsword or her shortbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Tashlyn Yafeera-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Thorvin Twinbeard", + "source": "WDH", + "page": 216, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 16, + "charisma": 10, + "passive": 13, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Thorvin has advantage on saving throws against poison and resistance to poison damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf", + "actions_note": "", + "mythic": null, + "key": "Thorvin Twinbeard-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Thrakkus", + "source": "WDH", + "page": 89, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 12, + "constitution": 17, + "intelligence": 9, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Reckless", + "body": [ + "At the start of his turn, Thrakkus can gain advantage on all melee weapon attack rolls during that turn, but attack rolls against him have advantage until the start of his next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d12 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon (1/Day)", + "body": [ + "Thrakkus can use his action to exhale a 15-foot cone of fire. Each creature in the cone must make a {@dc 13} Dexterity saving throw, taking 6 ({@damage 2d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dragonborn", + "actions_note": "", + "mythic": null, + "key": "Thrakkus-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Tissina Khyret", + "source": "WDH", + "page": 116, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Dark Devotion", + "body": [ + "Tissina has advantage on saving throws against being {@condition charmed} or {@condition frightened}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tissina makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage. Or Ranged Weapon Attack: {@hit 4} to hit, range 20/60 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Tissina's spellcasting ability is Charisma. She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + }, + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Tissina is a 4th-level spellcaster. Her spellcasting ability is Wisdom. Tissina has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell inflict wounds}", + "{@spell shield of faith}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "tiefling", + "actions_note": "", + "mythic": null, + "key": "Tissina Khyret-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Urstul Floxin", + "source": "WDH", + "page": 216, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|phb|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 11, + "dexterity": 16, + "constitution": 14, + "intelligence": 13, + "wisdom": 11, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+4" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Orc", + "Thieves' cant" + ], + "traits": [ + { + "title": "Assassinate", + "body": [ + "During its first turn, Urstul has advantage on attack rolls against any creature that hasn't taken a turn. Any hit Urstul scores against a {@status surprised} creature is a critical hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Evasion", + "body": [ + "If Urstul is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, Urstul instead takes no damage if he succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sneak Attack (1/Turn)", + "body": [ + "Urstul deals an extra 14 ({@damage 4d6}) damage when he hits a target with a weapon attack and has advantage on the attack roll, or when the target is within 5 feet of an ally of Urstul that isn't {@condition incapacitated} and Urstul doesn't have disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Urstul makes two shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Crossbow", + "body": [ + "{@atk rw} {@hit 6} to hit, range 80/320 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, and the target must make a {@dc 15} Constitution saving throw, taking 24 ({@damage 7d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Illuskan human", + "actions_note": "", + "mythic": null, + "key": "Urstul Floxin-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Vajra Safahr", + "source": "WDH", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 17, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 126, + "formula": "23d8 + 23", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 20, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+2", + "dex": "+4", + "con": "+3", + "int": "+12", + "wis": "+7", + "cha": "+5" + }, + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Giant", + "Halfling", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Vajra wields the {@item Blackstaff|wdh}, accounted for in her statistics. Roll {@dice 2d10} to determine how many charges the staff has remaining." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Vajra has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff Spells", + "body": [ + "While holding the blackstaff, Vajra can use an action to expend 1 or more of its charges to cast one of the following spells from it, using her spell save DC and spell attack bonus: {@spell cone of cold} (5 charges), {@spell fireball} (5th-level version, 5 charges), {@spell globe of invulnerability} (6 charges), {@spell hold monster} (5 charges), {@spell levitate} (2 charges), {@spell lightning bolt} (5th-level version, 5 charges), {@spell magic missile} (1 charge), {@spell ray of enfeeblement} (1 charge), or {@spell wall of force} (5 charges)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Blackstaff", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning, magic damage, or 6 ({@damage 1d8 + 2}) bludgeoning, magic damage when used with two hands. Vajra can expend 1 of the staff's charges to deal an extra 3 ({@damage 1d6}) force damage on a hit." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Vajra is an 18th-level spellcaster. Her spellcasting ability is Intelligence (spell save {@dc 18}, {@hit 12} to hit with spell attacks). She has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell message}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell detect magic}", + "{@spell identify}", + "{@spell mage armor}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell invisibility}", + "{@spell misty step}", + "{@spell web}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell fly}", + "{@spell sending}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell fire shield}", + "{@spell stoneskin}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell geas}", + "{@spell telekinesis}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell chain lightning}", + "{@spell globe of invulnerability}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell forcecage}", + "{@spell prismatic spray}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell antimagic field}", + "{@spell power word stun}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell imprisonment}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Vajra Safahr-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Valetta", + "source": "WDH", + "page": 47, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 10, + "constitution": 12, + "intelligence": 13, + "wisdom": 16, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Divine Eminence", + "body": [ + "As a bonus action, Valetta can expend a spell slot to cause her melee weapon attacks to magically deal an extra 10 ({@damage 3d6}) radiant damage to a target on a hit. This benefit lasts until the end of the turn. If Valetta expends a spell slot of 2nd level or higher, the extra damage increases by {@damage 1d6} for each level above 1st." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Breathe Weapon", + "body": [ + "Valetta can use her action to exhale a 5-foot-wide, 30-foot line of lightning (but can't do this again until she finishes a short or long rest); each creature in the line must make a {@dc 11} Dexterity saving throw, taking {@damage 2d6} lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Valetta is a 5th-level spellcaster. Her spellcasting ability is Wisdom. Valetta has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell sacred flame}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell guiding bolt}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell lesser restoration}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dispel magic}", + "{@spell spirit guardians}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "dragonborn", + "actions_note": "", + "mythic": null, + "key": "Valetta-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Victoro Cassalanter", + "source": "WDH", + "page": 218, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item glamoured studded leather}, {@item ring of protection}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 13, + "dexterity": 13, + "constitution": 14, + "intelligence": 16, + "wisdom": 17, + "charisma": 18, + "passive": 13, + "skills": { + "skills": [ + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+7" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Victoro wears a {@item ring of protection} and {@item glamoured studded leather} disguised to look like fine clothing. He carries a {@item rod of rulership} shaped like a ruby-tipped cane." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Victoro has advantage on saving throws against being {@condition charmed}, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rod of Rulership", + "body": [ + "Victoro can use an action to present the rod and command obedience from each creature of his choice that he can see within 120 feet of him. Each target must succeed on a {@dc 15} Wisdom saving throw or be {@condition charmed} for 8 hours by Victoro. While {@condition charmed} in this way, the creature regards Victoro as its trusted leader. If harmed by Victoro or his companions, or commanded to do something contrary to its nature, a target ceases to be {@condition charmed} in this way. The rod can't be used again until the next dawn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Victoro makes two attacks with his rapier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cloak of Shadows (2/Day)", + "body": [ + "Victoro becomes {@condition invisible} until the end of his next turn. He becomes visible early immediately after he attacks or casts a spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Devil (Recharges after 9 Days)", + "body": [ + "Victoro summons a {@creature barbed devil}. The devil appears in an unoccupied space within 30 feet of Victoro, acts as Victoro's ally, and can't summon other devils. It remains for 1 minute, until it or Victoro dies, or until Victoro dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Victoro is a 15th-level spellcaster. His spellcasting ability is Wisdom (spell save {@dc 15}, {@hit 7} to hit with spell attacks). Victoro has the following cleric spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}", + "{@spell mending}", + "{@spell spare the dying}", + "{@spell thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell charm person}", + "{@spell command}", + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell protection from evil and good}", + "{@spell sanctuary}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell augury}", + "{@spell lesser restoration}", + "{@spell mirror image}", + "{@spell pass without trace}", + "{@spell spiritual weapon}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell blink}", + "{@spell clairvoyance}", + "{@spell dispel magic}", + "{@spell magic circle}", + "{@spell protection from energy}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell banishment}", + "{@spell dimension door}", + "{@spell divination}", + "{@spell freedom of movement}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell dominate person}", + "{@spell flame strike}", + "{@spell modify memory}", + "{@spell insect plague}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell heal}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell divine word}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell earthquake}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-elf", + "actions_note": "", + "mythic": null, + "key": "Victoro Cassalanter-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Walking Statue of Waterdeep", + "source": "WDH", + "page": 219, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 314, + "formula": "17d20 + 136", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 30, + "dexterity": 8, + "constitution": 27, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "saves": { + "con": "+14" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks not made with adamantine weapons", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "traits": [ + { + "title": "Crumbling Colossus", + "body": [ + "When the statue drops to 0 hit points, it crumbles and is destroyed. Any creature on the ground within 30 feet of the crumbling statue must make a {@dc 22} Dexterity saving throw, taking 22 ({@damage 4d10}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The statue is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The statue has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The statue deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The statue makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 5 ft., one target. {@h}29 ({@damage 3d12 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurled Stone", + "body": [ + "{@atk rw} {@hit 16} to hit, range 200/800 ft., one target. {@h}43 ({@damage 6d10 + 10}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Walking Statue of Waterdeep-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Yagra Stonefist", + "source": "WDH", + "page": 20, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": 11, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Relentless Endurance", + "body": [ + "When reduced to 0 hit points, Yagra drops to 1 hit point instead (but can't do this again until she finishes a long rest)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "Yagra has advantage on an attack roll against a creature if at least one of her allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Savage Attacks", + "body": [ + "When she scores a critical hit Yagra can roll one of the weapon's damage dice and add it to the extra damage of the critical hit." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Yagra makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "half-orc", + "actions_note": "", + "mythic": null, + "key": "Yagra Stonefist-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Yalah Gralhund", + "source": "WDH", + "page": 220, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 11, + "dexterity": 12, + "constitution": 11, + "intelligence": 12, + "wisdom": 16, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Infernal" + ], + "actions": [ + { + "title": "Rapier", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "Yalah adds 2 to its AC against one melee attack that would hit it. To do so, Yalah must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Tethyrian human", + "actions_note": "", + "mythic": null, + "key": "Yalah Gralhund-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Yorn", + "source": "WDH", + "page": 150, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 11, + "note": "{@item leather armor|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 32, + "formula": "5d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 15, + "dexterity": 11, + "constitution": 14, + "intelligence": 10, + "wisdom": 10, + "charisma": 11, + "passive": 10, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The thug has advantage on an attack roll against a creature if at least one of the thug's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Relentless Endurance (1/Day)", + "body": [ + "When reduced to 0 hit points Yorn drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The thug makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "half-orc", + "actions_note": "", + "mythic": null, + "key": "Yorn-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Zhent Martial Arts Adept", + "source": "WDH", + "page": 160, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 16 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "11d6 + 11", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 17, + "constitution": 13, + "intelligence": 11, + "wisdom": 16, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Halfling" + ], + "traits": [ + { + "title": "Halfling Nimbleness", + "body": [ + "The adept can move through the space of a medium of larger creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brave", + "body": [ + "The adept has advantage on any saving throws against being {@condition frightened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "While the adept is wearing no armor and wielding no shield, their AC includes their Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The adept makes three unarmed strikes or three dart attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage. If the target is a creature, the adept can choose one of the following additional effects:", + "The target must succeed on a {@dc 13} Strength saving throw or drop one item it is holding (adept's choice).", + "The target must succeed on a {@dc 13} Dexterity saving throw or be knocked {@condition prone}.", + "The target must succeed on a {@dc 13} Constitution saving throw or be {@condition stunned} until the end of the adept's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, the adept deflects the missile. The damage it takes from the attack is reduced by {@dice 1d10 + 3}. If the damage is reduced to 0, the adept catches the missile if it's small enough to hold in one hand and the adept has a hand free." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "Lightfoot halfling", + "actions_note": "", + "mythic": null, + "key": "Zhent Martial Arts Adept-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Ziraj the Hunter", + "source": "WDH", + "page": 201, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "{@item +2 leather armor}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 11, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Orc" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ziraj makes three attacks with his glaive or with his oversized longbow." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Oversized Longbow", + "body": [ + "{@atk rw} {@hit 7} to hit, range 150/600 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Aspect (Recharges after a Short or Long Rest)", + "body": [ + "Ziraj exudes magical menace. Each enemy within 30 feet of him must succeed on a {@dc 13} Wisdom saving throw or be {@condition frightened} for 1 minute of Ziraj. If a {@condition frightened} enemy ends its turn more than 30 feet away from Ziraj, the enemy can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Ziraj is a 10th-level spellcaster. His spellcasting ability is Charisma. He has the following paladin spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + null, + { + "slots": 4, + "spells": [ + "{@spell command}", + "{@spell protection from evil and good}", + "{@spell thunderous smite}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell branding smite}", + "{@spell find steed}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell blinding smite}", + "{@spell dispel magic}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "half-orc", + "actions_note": "", + "mythic": null, + "key": "Ziraj the Hunter-WDH", + "__dataclass__": "Monster" + }, + { + "name": "Animated Ballista", + "source": "WDMM", + "page": 39, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 50, + "formula": "50d1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 14, + "dexterity": 10, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Magic Bolt", + "body": [ + "{@atk rw} {@hit 6} to hit, range 120 ft., one target. {@h}16 ({@damage 3d10}) fire damage" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Ballista-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Animated Staff", + "source": "WDMM", + "page": 262, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "40", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 12, + "dexterity": 12, + "constitution": 10, + "intelligence": 18, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Wielder Domination", + "body": [ + "A creature can grab the staff out of the air with a successful grapple check against the staff, and grappling the staff does not reduce the creature's speed. Any creature that successfully grapples the staff must succeed on a {@dc 12} Charisma saving throw or be {@condition charmed} by the staff until the staff is no longer in its grasp. While the creature is {@condition charmed}, the staff can issue commands to it, which the creature does its best to obey. The creature can repeat the saving throw each time it takes damage, ending the effect on itself on a success. A creature that successfully resists the staff's control can't be {@condition charmed} by it for 24 hours.", + "A creature holding the staff that isn't {@condition charmed} by it can use an action to attempt to break the staff over a knee or against a solid surface, doing so with a successful {@dc 17} Strength ({@skill Athletics}) check. Breaking the staff in this manner destroys it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Staff of Frost", + "body": [ + "The staff has 10 charges. It can expend 1 or more of its charges to cast one of the following spells (save {@dc 12}): {@spell cone of cold} (5 charges), {@spell fog cloud} (1 charge), {@spell ice storm} (4 charges), or {@spell wall of ice} (4 charges). It regains {@dice 1d6 + 4} expended charges daily at dawn. If the staff expends its last charge, roll a {@dice d20}. On a 1, the staff turns to water and is destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage plus 1 cold damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Staff-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Animated Stove", + "source": "WDMM", + "page": 186, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 17 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 50, + "formula": "50d1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 10, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "senses": [ + "blindsight 30 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Belch Fire {@recharge 4}", + "body": [ + "The stove belches fire in a 15-foot cone. Each creature in the area must make a {@dc 10} Dexterity saving throw, taking 22 ({@damage 4d10}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Animated Stove-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Bore Worm", + "source": "WDMM", + "page": 171, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 247, + "formula": "15d20 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 28, + "dexterity": 7, + "constitution": 22, + "intelligence": 1, + "wisdom": 8, + "charisma": 4, + "passive": 9, + "saves": { + "con": "+11", + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Tunneler", + "body": [ + "The worm can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The worm regains 10 hit points at the start of each of its turns if it has at least 1 hit point." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The worm makes two attacks: one with its grinding jaws and one with its stinger." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grinding Jaws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail Stinger", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}19 ({@damage 3d6 + 9}) piercing damage, and the target must make a {@dc 19} Constitution saving throw, taking 42 ({@damage 12d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bore Worm-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Halaster Blackcloak", + "source": "WDMM", + "page": 310, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 17, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 246, + "formula": "29d8 + 116", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 10, + "dexterity": 18, + "constitution": 18, + "intelligence": 24, + "wisdom": 18, + "charisma": 18, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 21, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 21, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+14", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "lightning" + ], + "note": "(granted by the blast scepter, see \"Special Equipment\" below)", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Celestial", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Infernal", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Halaster wears a {@item robe of eyes} that lets him see in all directions, gives him darkvision out to a range of 120 feet, grants advantage on Wisdom ({@skill Perception}) checks that rely on sight, and allows him to see {@condition invisible} creatures and objects, as well as into the Ethereal Plane, out to a range of 120 feet.", + "Halaster wields a {@item blast scepter|WDMM} (a very rare magic item that requires attunement). It can be used as an arcane focus. Whoever is attuned to the blast scepter gains resistance to fire and lightning damage and can, as an action, use it to cast {@spell thunderwave} as a 4th-level spell (save {@dc 16}) without expending a spell slot.", + "Halaster also wears a horned ring (a very rare magic item that requires attunement), which allows an attuned wearer to ignore Undermountain's magical restrictions (see \"Alterations to Magic\")." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Recovery (1/Day)", + "body": [ + "When he finishes a short rest, Halaster recovers all his spell slots of 5th level and lower." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Halaster fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "If Halaster dies in Undermountain, he revives after {@dice 1d10} days, with all his hit points and any missing body parts restored. His new body appears in a random safe location in Undermountain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Blast Scepter", + "body": [ + "Halaster uses his blast scepter to cast {@spell thunderwave} as a 4th-level spell. Each creature in a 15-foot cube originating from him must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes {@damage 5d8} thunder damage and is pushed 10 feet away. On a successful save, the creature takes half as much damage and isn't pushed" + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cast Spell", + "body": [ + "Halaster casts a spell of 3rd level or lower." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Ward (Costs 2 Actions)", + "body": [ + "Halaster expends a spell slot of 4th level or lower and gains 5 temporary hit points per level of the slot." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Halaster is a 20th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 22}, {@hit 14} to hit with spell attacks). He can cast {@spell disguise self} and {@spell invisibility} at will. He can cast {@spell fly} and {@spell lightning bolt} once each without expending a spell slot, but can't do so again until he finishes a short or long rest. Halaster has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell fire bolt}", + "{@spell light}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell shield}", + "{@spell silent image}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell arcane lock}", + "{@spell cloud of daggers}", + "{@spell darkvision}", + "{@spell knock}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell counterspell}", + "{@spell dispel magic}", + "{@spell fireball}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell confusion}", + "{@spell hallucinatory terrain}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell Bigby's hand}", + "{@spell geas}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell chain lightning}", + "{@spell globe of invulnerability}", + "{@spell programmed illusion}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell finger of death}", + "{@spell symbol}", + "{@spell teleport}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell maze}", + "{@spell mind blank}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell meteor swarm}", + "{@spell wish}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": { + "slots": 0, + "spells": [ + "{@spell disguise self}", + "{@spell invisibility}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fly}", + "{@spell lightning bolt}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Halaster Blackcloak-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Halaster Puppet", + "source": "WDMM", + "page": 31, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "8", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "The puppet is destroyed if a successful {@spell dispel magic} spell ({@dc 15}) is cast on it" + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Halaster Puppet-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Haungharassk", + "source": "WDMM", + "page": 258, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 6 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d12 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 20, + "dexterity": 3, + "constitution": 13, + "intelligence": 3, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "traits": [ + { + "title": "Salt Sensitivity", + "body": [ + "A pound of salt thrown onto the snail's skin deals {@damage 1d6} acid damage to the creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magical Properties", + "body": [ + "A creature that uses an action to touch the living snail gains 6 temporary hit points that last for 24 hours. Any creature or object that touches the living snail also gains the benefit of a {@spell remove curse} spell. The snail loses these magical properties if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The snail can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Haungharassk-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Iron Spider", + "source": "WDMM", + "page": 165, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 19 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "80", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 18, + "dexterity": 10, + "constitution": 10, + "intelligence": 3, + "wisdom": 3, + "charisma": 1, + "passive": 6, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "actions": [ + { + "title": "Web Cable", + "body": [ + "The iron spider shoots out a 6-inch-thick web cable up to 50 feet long, attaching the far end of the cable to a solid surface up to 50 feet away from it. As a bonus action, it can detach the other end of the cable from itself and attach it to a solid surface within 10 feet of it. Once it creates 200 feet of web cable, the spider can't produce any more cable until the next dawn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Iron Spider-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Lava Child", + "source": "WDMM", + "page": 313, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 11, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from metal weapons", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Ignan" + ], + "traits": [ + { + "title": "Metal Immunity", + "body": [ + "The lava child can move through metal without hindrance, and it has advantage on attack rolls against any creature wearing metal armor or using a metal shield." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lava child makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "lava child", + "actions_note": "", + "mythic": null, + "key": "Lava Child-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Living Unseen Servant", + "source": "WDMM", + "page": 313, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 10, + "constitution": 11, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands one language (usually Common) but can't speak" + ], + "traits": [ + { + "title": "Invisibility", + "body": [ + "The unseen servant is {@condition invisible}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}1 bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Unseen Servant-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Muiral", + "source": "WDMM", + "page": 314, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "23d10 + 69", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 19, + "dexterity": 11, + "constitution": 16, + "intelligence": 18, + "wisdom": 13, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "int": "+9" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Goblin", + "Undercommon" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Muiral fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Muiral makes three attacks: two with his longsword and one with his sting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one creature. {@h}9 ({@damage 1d10 + 4}) piercing damage. The target must make a {@dc 16} Constitution saving throw, taking 27 ({@damage 6d8}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cast Cantrip", + "body": [ + "Muiral casts a cantrip." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lunging Attack (Costs 2 Actions)", + "body": [ + "Muiral makes one longsword attack that has a reach of 10 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Retreating Strike (Costs 3 Actions)", + "body": [ + "Muiral moves up to his speed without provoking opportunity attacks. Before the move, he can make one longsword attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Muiral is a 13th-level spellcaster. His spellcasting ability is Intelligence (spell save {@dc 17}, {@hit 9} to hit with spell attacks). He has the following wizard spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell prestidigitation}", + "{@spell ray of frost}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell expeditious retreat}", + "{@spell fog cloud}", + "{@spell magic missile}", + "{@spell shield}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell darkness}", + "{@spell knock}", + "{@spell see invisibility}", + "{@spell spider climb}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animate dead}", + "{@spell counterspell}", + "{@spell lightning bolt}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell greater invisibility}", + "{@spell polymorph}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 2, + "spells": [ + "{@spell animate objects}", + "{@spell wall of force}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell create undead}", + "{@spell flesh to stone}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 1, + "spells": [ + "{@spell finger of death}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Muiral-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Scaladar", + "source": "WDMM", + "page": 315, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "7d12 + 49", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 19, + "dexterity": 10, + "constitution": 25, + "intelligence": 1, + "wisdom": 12, + "charisma": 1, + "passive": 11, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Lightning Absorption", + "body": [ + "Whenever the scaladar is subjected to lightning damage, it takes no damage, and its sting deals an extra 11 ({@damage 2d10}) lightning damage until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scaladar Link", + "body": [ + "The scaladar knows the location of other scaladar within 100 feet of it, and it can sense when any of them take damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scaladar makes three attacks: two with its claws and one with its sting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage, and the target is {@condition grappled} (escape {@dc 15}). The scaladar has two claws, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 11 ({@damage 2d10}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Scaladar-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Shadow Assassin", + "source": "WDMM", + "page": 316, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 6, + "dexterity": 19, + "constitution": 14, + "intelligence": 13, + "wisdom": 12, + "charisma": 14, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "int": "+5" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The assassin can move through a space as narrow as 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the assassin can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Weakness", + "body": [ + "While in sunlight, the assassin has disadvantage on attack rolls, ability checks, and saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The assassin makes two Shadow Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Blade", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. Unless the target is immune to necrotic damage, the target's Strength score is reduced by {@dice 1d4} each time it is hit by this attack. The target dies if its Strength is reduced to 0. The reduction lasts until the target finishes a short or long rest. If a non-evil humanoid dies from this attack, a shadow (see the Monster Manual) rises from the corpse {@dice 1d4} hours later." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shadow Assassin-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Shockerstomper", + "source": "WDMM", + "page": 174, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 18 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 300, + "formula": "300d1", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 23, + "dexterity": 10, + "constitution": 20, + "intelligence": 1, + "wisdom": 1, + "charisma": 1, + "passive": 5, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Disable", + "body": [ + "When a leg drops to 0 hit points, it is disabled, and Shockerstomper can use a reaction to detach it from its main body. Whenever one of its legs is disabled, Shockerstomper's walking speed is reduced by 10 feet. The whole contraption topples over and shuts down if four of its seven legs are disabled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Electrified Surface", + "body": [ + "A creature that ends its turn in contact with Shockerstomper's body (saucer or turrets) must make a {@dc 15} Constitution saving throw, taking 22 ({@damage 4d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "Shockerstomper is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Control Module", + "body": [ + "A creature atop or above Shockerstomper's platform can locate its control module with a successful {@dc 15} Intelligence ({@skill Investigation}) check or Wisdom ({@skill Perception}) check. As an action, a character can try to open the control module's access panel, either by tearing it off with a successful {@dc 25} Strength ({@skill Athletics}) check or by dislodging it with thieves' tools and a successful {@dc 25} Dexterity check. Behind the panel, embedded in the floor of the control module, is a 5-foot-diameter pulsating crystal hemisphere with AC 10, 25 hit points, and immunity to poison and psychic damage. Destroying the crystal hemisphere shuts down Shockerstomper." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Turret", + "body": [ + "A character can try to plug the nozzle of a lightning turret with a 10-pound rock or similar object, doing so with a successful {@dc 15} Strength ({@skill Athletics}) check. A plugged turret can't shoot lightning until a creature uses an action to try to clear the obstruction, which requires another successful {@dc 15} Strength ({@skill Athletics}) check. Shockerstomper has no ability to clear an obstruction itself." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Shockerstomper makes three Lightning Turret attacks and two Stomp attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Turret", + "body": [ + "The turret shoots a magical lightning bolt at one creature within 60 feet of Shockerstomper. The target must make a {@dc 15} Dexterity saving throw, taking 44 ({@damage 8d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shockerstomper-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Werebat", + "source": "WDMM", + "page": 317, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 24, + "formula": "7d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(climb 30 ft. fly 60 ft. in bat or hybrid form)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 8, + "dexterity": 17, + "constitution": 10, + "intelligence": 10, + "wisdom": 12, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Goblin (can't speak in bat form)" + ], + "traits": [ + { + "title": "Shapechanger", + "body": [ + "The werebat can use its action to polymorph into a Medium bat-humanoid hybrid, or into a Large giant bat, or back into its true form, which is humanoid. Its statistics, other than its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Echolocation (Bat or Hybrid Form Only)", + "body": [ + "The werebat has blindsight out to a range of 60 feet as long as it's not {@condition deafened}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing", + "body": [ + "The werebat has advantage on Wisdom ({@skill Perception}) checks that rely on hearing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimble Escape (Humanoid Form Only)", + "body": [ + "The werebat can take the Disengage or Hide action as a bonus action on each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the werebat has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack (Humanoid or Hybrid Form Only)", + "body": [ + "In humanoid form, the werebat makes two scimitar attacks or two shortbow attacks. In hybrid form, it can make one bite attack and one scimitar attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Bat or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}6 ({@damage 1d6 + 3}) piercing damage, and the werebat gains temporary hit points equal to the damage dealt. If the target is a humanoid, it must succeed on a {@dc 10} Constitution saving throw or be cursed with werebat lycanthropy." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk rw} {@hit 5} to hit, range 80/320 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid, shapechanger", + "actions_note": "", + "mythic": null, + "key": "Werebat-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Zorak Lightdrinker", + "source": "WDMM", + "page": 204, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "plate armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d8 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 17, + "wisdom": 15, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Dwarvish" + ], + "traits": [ + { + "title": "Dwarven Resilience", + "body": [ + "Augrek has advantage on saving throws against poison." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shapechanger", + "body": [ + "If Zorak isn't in sunlight or running water, he can use his action to polymorph into a Tiny bat or a Medium cloud of mist, or back into his true form.", + "While in bat form, Zorak can't speak, his walking speed is 5 feet, and he has a flying speed of 30 feet. His statistics, other than his size and speed, are unchanged. Anything he is wearing transforms with it, but nothing he is carrying does. He reverts to his true form if he dies.", + "While in mist form, Zorak can't take any actions, speak, or manipulate objects. He is weightless, has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. In addition, if air can pass through a space, the mist can do so without squeezing, and he can't pass through water. He has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage, except the damage he takes from sunlight." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Zorak fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misty Escape", + "body": [ + "When he drops to 0 hit points outside his resting place, Zorak transforms into a cloud of mist (as in the Shapechanger trait) instead of falling {@condition unconscious}, provided that he isn't in sunlight or running water. If he can't transform, he is destroyed.", + "While he has 0 hit points in mist form, he can't revert to his vampire form, and he must reach his resting place within 2 hours or be destroyed. Once in his resting place, he reverts to his vampire form. He is then {@condition paralyzed} until he regains at least 1 hit point. After spending 1 hour in his resting place with 0 hit points, he regains 1 hit point." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Zorak regains 20 hit points at the start of his turn if he has at least 1 hit point and isn't in sunlight or running water. If Zorak takes radiant damage or damage from holy water, this trait doesn't function at the start of Zorak's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Zorak can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "Zorak has the following flaws:", + "{@i Forbiddance.} Zorak can't enter a residence without an invitation from one of the occupants.", + "{@i Harmed by Running Water.} Zorak takes 20 acid damage if he ends his turn in running water.", + "{@i Stake to the Heart.} If a piercing weapon made of wood is driven into Zorak's heart while Zorak is {@condition incapacitated} in his resting place, Zorak is {@condition paralyzed} until the stake is removed.", + "{@i Sunlight Hypersensitivity.} Zorak takes 20 radiant damage when he starts his turn in sunlight. While in sunlight, he has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zorak makes two attacks with his {@item dwarven thrower}, only one of which can be a ranged attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dwarven Thrower", + "body": [ + "{@atk mw,rw} {@hit 12} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage, or 12 ({@damage 1d10 + 7}) bludgeoning damage when used with two hands to make a melee attack. On a ranged attack that hits, the hammer deals an extra {@damage 1d8} bludgeoning damage ({@damage 2d8} if the target is a giant). {@hom}If thrown, the weapon flies back to Zorak's hand after the attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Multiattack (Vampire Form Only)", + "body": [ + "Zorak makes two attacks, only one of which can be a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike (Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. Instead of dealing damage, Zorak can grapple the target (escape {@dc 18})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Bat or Vampire Form Only)", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one willing creature, or a creature that is {@condition grappled} by Zorak, {@condition incapacitated}, or {@condition restrained}. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Zorak regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces his hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a {@creature vampire spawn} under Zorak's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "Zorak targets one humanoid he can see within 30 feet of it. If the target can see Zorak, the target must succeed on a {@dc 17} Wisdom saving throw against this magic or be {@condition charmed} by Zorak. The {@condition charmed} target regards Zorak as a trusted friend to be heeded and protected. Although the target isn't under Zorak's control, it takes Zorak's requests or actions in the most favorable way it can, and it is a willing target for Zorak's bite attack.", + "Each time Zorak or Zorak's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Zorak is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Children of the Night (1/Day)", + "body": [ + "Zorak magically calls {@dice 2d4} swarms of {@creature swarm of bats||bats} or {@creature swarm of rats||rats}, provided that the sun isn't up. While outdoors, Zorak can call {@dice 3d6} {@creature wolf||wolves} instead. The called creatures arrive in {@dice 1d4} rounds, acting as allies of Zorak and obeying his spoken commands. The beasts remain for 1 hour, until Zorak dies, or until Zorak dismisses them as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "Zorak moves up to his speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "Zorak makes one unarmed strike." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "Zorak makes one bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "shapechanger", + "actions_note": "", + "mythic": null, + "key": "Zorak Lightdrinker-WDMM", + "__dataclass__": "Monster" + }, + { + "name": "Charmayne Daymore", + "source": "KftGV", + "page": 159, + "size_str": "Medium", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 8, + "dexterity": 14, + "constitution": 15, + "intelligence": 20, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+6", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Ignan" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Charmayne fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Charmayne makes three Ashen Burst attacks. She can replace one of these attacks with one use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ashen Burst", + "body": [ + "{@atk ms,rs} {@hit 9} to hit, reach 5 ft. or range 60 ft., one target. {@h}17 ({@damage 5d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cinder Spite {@recharge 5}", + "body": [ + "Charmayne creates a magical explosion of fire centered on a point she can see within 120 feet of herself. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 17} Dexterity saving throw, taking 35 ({@damage 10d6}) fire damage on a failed save, or half as much damage on a successful one. A Humanoid reduced to 0 hit points by this damage dies and is transformed into a Tiny charcoal figurine." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Charmayne can take up to three reactions per round but only one per turn.", + "body": [], + "__dataclass__": "Entry" + }, + { + "title": "Elemental Rebuke", + "body": [ + "In response to being hit by an attack, Charmayne utters a word in Ignan, dealing 10 ({@damage 3d6}) fire damage to the attacker. Charmayne then teleports, along with any equipment she is wearing or carrying, up to 30 feet to an unoccupied space she can see, leaving a harmless cloud of ash and embers in the space she just left." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Counterspell", + "body": [ + "Charmayne interrupts a creature she can see within 60 feet of herself that is casting a spell. If the spell is 4th level or lower, it fails and has no effect. If the spell is 5th level or higher, Charmayne makes an Intelligence check ({@dc 10} + the spell's level). On a success, the spell fails and has no effect. Whatever the spell's level, the caster takes 10 ({@damage 3d6}) fire damage if the spell fails." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Charmayne casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell invisibility}", + "{@spell polymorph}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Charmayne Daymore-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Clockwork Defender", + "source": "KftGV", + "page": 85, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 15, + "constitution": 18, + "intelligence": 3, + "wisdom": 14, + "charisma": 1, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Unusual Nature", + "body": [ + "The defender doesn't need air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Electrified Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage plus 7 ({@damage 2d6}) lightning damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be {@condition grappled} (escape {@dc 13}). A creature {@condition grappled} by the defender takes the damage again at the start of each of the defender's turns. The defender can have only one creature {@condition grappled} in this way at a time, and the defender can't make Electrified Bite attacks while grappling." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Light Beam", + "body": [ + "The defender emits bright light from its eyes in a 60-foot cone, or it shuts off this light." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clockwork Defender-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Clockwork Observer", + "source": "KftGV", + "page": 85, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d4 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 1, + "dexterity": 16, + "constitution": 13, + "intelligence": 3, + "wisdom": 15, + "charisma": 1, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The observer doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Bond", + "body": [ + "While the observer is within 1 mile of its creator, it can magically convey what it sees to its creator, and the two can communicate telepathically." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unusual Nature", + "body": [ + "The observer doesn't need air, food, drink, or sleep." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shriek", + "body": [ + "The observer emits a mechanical shriek until the start of its next turn or until it drops to 0 hit points. This shriek can be heard within a range of 300 feet." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Clockwork Observer-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Fragment of Krokulmar", + "source": "KftGV", + "page": 53, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 10, + "formula": "3d4 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 16, + "constitution": 12, + "intelligence": 16, + "wisdom": 16, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 60 ft." + ], + "actions": [ + { + "title": "Psionic Revitalization", + "body": [ + "The fragment touches one creature that has 0 hit points in the fragment's space. The target regains 10 hit points, and each creature within 10 feet of the healed creature takes 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Squirming Dodge", + "body": [ + "Until the start of the fragment's next turn, any attack roll made against the fragment has disadvantage, and the fragment makes saving throws with advantage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fragment of Krokulmar-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Markos Delphi", + "source": "KftGV", + "page": 53, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 15, + "constitution": 12, + "intelligence": 17, + "wisdom": 13, + "charisma": 16, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+5" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common", + "Deep Speech" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Markos makes two Ceremonial Blade attacks, two Psychic Orb attacks, or one of each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ceremonial Blade", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 3 ({@damage 1d6}) poison damage. If the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or become {@condition poisoned} for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Orb", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one creature. {@h}10 ({@damage 2d6 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Swap Space", + "body": [ + "Markos targets one Medium or Small creature he can see within 30 feet of himself. The target must succeed on a {@dc 13} Constitution saving throw or it teleports, along with any equipment it is wearing or carrying, exchanging positions with Markos." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Markos casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell arms of Hadar}", + "{@spell charm person}", + "{@spell mage armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, warlock", + "actions_note": "", + "mythic": null, + "key": "Markos Delphi-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Prisoner 13", + "source": "KftGV", + "page": 68, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "mountain tattoo", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 15, + "dexterity": 17, + "constitution": 18, + "intelligence": 16, + "wisdom": 14, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Dwarvish", + "Elvish", + "Thieves' cant", + "Undercommon" + ], + "traits": [ + { + "title": "Antimagic Susceptibility", + "body": [ + "In an area of antimagic, Prisoner 13's tattoos and reactions don't function, and she suffers the following modifications to her statistics: her AC becomes 13, she loses her immunity to psychic damage and the charmed condition, and her Tattooed Strike becomes a melee attack that deals 7 ({@damage 1d8 + 3}) bludgeoning damage on a hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mindlink Tattoos", + "body": [ + "Prisoner 13 has telepathic links with dozens of agents operating throughout the land. The links allow Prisoner 13 to communicate telepathically with each of these agents while they are both on the same plane of existence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mountain Tattoo", + "body": [ + "Prisoner 13's AC includes her Constitution modifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shroud Tattoo", + "body": [ + "Prisoner 13 can't be targeted by divination spells or any feature that would read her thoughts, and she can't be perceived through magical scrying sensors. She can't be contacted telepathically unless she allows such contact." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Prisoner 13 makes two Tattooed Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tattooed Strike", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 60 ft., one target. {@h}12 ({@damage 2d8 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Firestorm Tattoo {@recharge 5}", + "body": [ + "Prisoner 13 magically unleashes flame from the tattoo across her back, filling a 20-foot-radius sphere centered on her. Each other creature in that area must make a {@dc 15} Dexterity saving throw. On a failed save, the creature takes 13 ({@damage 3d8}) fire damage and is knocked {@condition prone}. On a successful save, it takes half as much damage and isn't knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "River Tattoo", + "body": [ + "Prisoner 13 magically ends any effects causing the {@condition grappled} or {@condition restrained} conditions on herself. If she is bound with nonmagical restraints, she slips out of them." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Readiness", + "body": [ + "When a creature Prisoner 13 can see within 60 feet of herself ends its turn, Prisoner 13 makes one Tattooed Strike attack or uses River Tattoo. She can then move up to her speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dwarf, monk", + "actions_note": "", + "mythic": null, + "key": "Prisoner 13-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Sythian Skalderang", + "source": "KftGV", + "page": 117, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "Graz'zt's gift", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 99, + "formula": "18d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 10, + "dexterity": 15, + "constitution": 13, + "intelligence": 14, + "wisdom": 11, + "charisma": 16, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Fear of Frogs and Toads", + "body": [ + "Sythian is {@condition frightened} while he is within 20 feet of a frog or a toad (of any size) that he can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Graz'zt's Gift", + "body": [ + "Sythian's AC includes his Charisma modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Sythian makes two Poisoned Shortsword or Poisoned Dart attacks and uses Whispers of Azzagrat." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisoned Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisoned Dart", + "body": [ + "{@atk rw} {@hit 5} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whispers of Azzagrat", + "body": [ + "Each creature in a 15-foot cube originating from Sythian must make a {@dc 14} Wisdom saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) psychic damage and is {@condition incapacitated} until the end of its next turn. On a successful save, the creature takes half as much damage and isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Fiendish Rebuke (3/Day)", + "body": [ + "Immediately after a creature within 5 feet of Sythian hits him with an attack roll, Sythian forces that creature to make a {@dc 14} Constitution saving throw. The creature takes 14 ({@damage 4d6}) fire damage on a failed saving throw, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Sythian casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell faerie fire}", + "{@spell unseen servant}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard, tiefling", + "actions_note": "", + "mythic": null, + "key": "Sythian Skalderang-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Tixie Tockworth", + "source": "KftGV", + "page": 85, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d6 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 16, + "dexterity": 13, + "constitution": 18, + "intelligence": 17, + "wisdom": 9, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+2" + }, + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Common", + "Gnomish", + "Terran", + "Undercommon" + ], + "traits": [ + { + "title": "Force Field", + "body": [ + "Tockworth generates a magical force field around herself. This force field has 15 hit points and regains all its hit points at the start of each of Tockworth's turns, but it ceases to function if Tockworth drops to 0 hit points. Any damage Tockworth takes is subtracted from the force field's hit points first. Each time the force field regains hit points, the following conditions end on Tockworth: {@condition grappled}, {@condition restrained}, and {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tockworth makes three Shortsword or Lightning Discharge attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 10 ({@damage 3d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Discharge", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}16 ({@damage 3d10}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Scalding Steam {@recharge 5}", + "body": [ + "Tockworth emits a jet of piping-hot steam in a 15-foot cone. Each creature in that cone must make a {@dc 15} Dexterity saving throw, taking 10 ({@damage 3d6}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Tockworth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell nondetection} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell dimension door}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell blindness/deafness}", + "{@spell blur}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "gnome", + "actions_note": "", + "mythic": null, + "key": "Tixie Tockworth-KftGV", + "__dataclass__": "Monster" + }, + { + "name": "Aerosaur", + "source": "BGG", + "page": 128, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 155, + "formula": "10d20 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 120, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 26, + "dexterity": 10, + "constitution": 21, + "intelligence": 3, + "wisdom": 10, + "charisma": 5, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The aerosaur has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aerosaur makes one Bite attack and one Talons attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}27 ({@damage 3d12 + 8}) piercing damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 18}). Until this grapple ends, the target has the {@condition restrained} condition, and the aerosaur can't Bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}24 ({@damage 3d10 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing Gusts {@recharge 5}", + "body": [ + "The aerosaur beats its wings, creating bursts of thunderous force. Each creature within 10 feet of the aerosaur must make a {@dc 20} Strength saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) thunder damage, is pushed up to 30 feet horizontally from the aerosaur, and has the {@condition prone} condition. On a successful save, a creature takes half as much damage and is pushed up to 15 feet horizontally from the aerosaur." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Aerosaur-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Altisaur", + "source": "BGG", + "page": 129, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 198, + "formula": "12d20 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 28, + "dexterity": 6, + "constitution": 23, + "intelligence": 3, + "wisdom": 12, + "charisma": 7, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The altisaur has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The altisaur makes one Stomp attack and one Tail attack. The altisaur can't make both attacks against the same target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}33 ({@damage 7d6 + 9}) bludgeoning damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 22} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}45 ({@damage 8d8 + 9}) bludgeoning damage, and the target is pushed up to 20 feet horizontally from the altisaur." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Altisaur-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Bag Jelly", + "source": "BGG", + "page": 120, + "size_str": "Medium", + "maintype": "ooze", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 8 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 6, + "constitution": 19, + "intelligence": 2, + "wisdom": 7, + "charisma": 2, + "passive": 8, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The bag jelly can move through a space as narrow as 1 inch without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bag jelly makes two Pseudopod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pseudopod", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d6 + 1}) acid damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 11}). Ability checks made to escape this grapple have disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bag Jelly-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Barrowghast", + "source": "BGG", + "page": 121, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 21, + "dexterity": 8, + "constitution": 20, + "intelligence": 5, + "wisdom": 9, + "charisma": 6, + "passive": 9, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Stench", + "body": [ + "Any creature that starts its turn within 10 feet of the barrowghast must make a {@dc 16} Constitution saving throw. On a failed save, the creature has the {@condition poisoned} condition for 1 minute. While {@condition poisoned} this way, the creature can't regain hit points. On a successful save, the creature is immune to the Stench of all barrowghasts for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The barrowghast makes two Slam attacks. It can replace one Slam attack with a Life Drain attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d12 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life Drain", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}9 ({@damage 1d8 + 5}) necrotic damage, and the target must succeed on a {@dc 16} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.", + "A Humanoid slain by this attack immediately rises as a zombie (see the Monster Manual). The zombie acts as an ally of the barrowghast but isn't under its control." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Noxious Wound", + "body": [ + "Immediately after the barrowghast takes piercing or slashing damage, poisonous ichor sprays from the wound. Each creature within 5 feet of the barrowghast must make a {@dc 16} Dexterity saving throw, taking 10 ({@damage 3d6}) poison damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Barrowghast-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cairnwight", + "source": "BGG", + "page": 122, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 10, + "wisdom": 12, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cairnwight makes two Slam attacks or two Rock attacks, and it uses its Petrifying Touch if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target must succeed on a {@dc 17} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Touch {@recharge 5}", + "body": [ + "The cairnwight touches one creature it can see within 10 feet of itself. The target must succeed on a {@dc 17} Constitution saving throw or take 26 ({@damage 4d12}) force damage and have the {@condition restrained} condition as it begins to turn to stone. The affected target must repeat the saving throw at the end of its next turn. On a successful save, the effect ends on the target. On a failed save, the target has the {@condition petrified} condition instead of the {@condition restrained} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cairnwight-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Ceratops", + "source": "BGG", + "page": 129, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 139, + "formula": "9d20 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 24, + "dexterity": 8, + "constitution": 21, + "intelligence": 4, + "wisdom": 10, + "charisma": 7, + "passive": 10, + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The ceratops has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ceratops makes one Gore attack and one Stomp attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}29 ({@damage 4d10 + 7}) piercing damage. If the ceratops moved at least 20 feet in a straight line toward the target immediately before the hit, the target takes an extra 11 ({@damage 2d10}) piercing damage; if the target is a creature, it also must succeed on a {@dc 19} Strength saving throw or be pushed up to 20 feet from the ceratops and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Ceratops-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cinder Hulk", + "source": "BGG", + "page": 123, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "8d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 9, + "wisdom": 14, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+4", + "con": "+8", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant", + "Ignan" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the cinder hulk dies, it leaves behind a cloud of cinders and smoke that fills a 10-foot-radius sphere centered on its space. The sphere is heavily obscured. Any creature that moves into the area for the first time on a turn or starts its turn there must succeed on a {@dc 16} Constitution saving throw or take 10 ({@damage 3d6}) fire damage. The cloud lasts for 1 minute or until it is dispersed by strong wind." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cinder hulk makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wave of Cinders {@recharge 5}", + "body": [ + "The cinder hulk emits a wave of smoldering ash from its face, hands, or chest in a 30-foot cone. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 31 ({@damage 7d8}) fire damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GotSF" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cinder Hulk-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cloud Giant Destiny Gambler", + "source": "BGG", + "page": 124, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 337, + "formula": "27d12 + 162", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 27, + "dexterity": 12, + "constitution": 22, + "intelligence": 19, + "wisdom": 16, + "charisma": 22, + "passive": 19, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "int": "+10", + "wis": "+9", + "cha": "+12" + }, + "dmg_immunities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 30 ft. (requires cloud rune)" + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Cloud Rune", + "body": [ + "The giant has a cloud rune inscribed on a mask in its possession. While holding or wearing the mask bearing the rune, the giant has truesight within a range of 30 feet and can use its Thunderous Clap action and Negate Spell reaction.", + "The mask bearing the cloud rune has AC 15; 45 hit points; and immunity to necrotic, poison, and psychic damage. The mask regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a cloud rune on a mask in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes three Flying Staff attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flying Staff", + "body": [ + "{@atk mw,rw} {@hit 14} to hit, reach 10 ft. or range 30/90 ft., one target. {@h}18 ({@damage 3d6 + 8}) bludgeoning damage plus 16 ({@damage 3d10}) thunder damage. {@hom}The staff magically returns to the giant's hand immediately after a ranged attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Clap (Requires Cloud Rune)", + "body": [ + "The giant magically summons a thundercloud that fills a 30-foot-radius sphere centered on a point the giant can see within 60 feet of itself. The cloud spreads around corners. Each creature in that area must make a {@dc 20} Constitution saving throw as the cloud emits a thunderous boom. On a failed save, a creature takes 52 ({@damage 8d12}) thunder damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only. The thunderclap is audible within 300 feet of the cloud's center point.", + "The cloud's area is heavily obscured. The cloud lingers until the start of the giant's next turn or until a strong wind disperses it." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Negate Spell (Requires Cloud Rune)", + "body": [ + "When the giant sees a creature within 60 feet of itself casting a spell, the giant tries to interrupt it. If the creature is casting a spell using a spell slot of 3rd level or lower, the spell fails and has no effect. If the creature is casting a spell of 4th level or higher, it must succeed on a {@dc 18} Intelligence saving throw, or the spell fails and has no effect." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dream} (as an action)", + "{@spell gaseous form}", + "{@spell major image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard", + "actions_note": "", + "mythic": null, + "key": "Cloud Giant Destiny Gambler-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cloud Giant of Evil Air", + "source": "BGG", + "page": 125, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 27, + "dexterity": 10, + "constitution": 22, + "intelligence": 12, + "wisdom": 16, + "charisma": 19, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+7", + "cha": "+8" + }, + "languages": [ + "Auran", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The giant doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Scimitar attacks and one Storm Boomerang attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scimitar", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Storm Boomerang", + "body": [ + "{@atk rw} {@hit 12} to hit, range 60/240 ft., one target. {@h}15 ({@damage 3d4 + 8}) bludgeoning damage plus 7 ({@damage 2d6}) thunder damage, and the target must succeed on a {@dc 16} Constitution saving throw or have the {@condition stunned} condition until the end of its next turn. {@hom}The boomerang magically returns to the giant's hand immediately after the attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell fog cloud}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell gaseous form}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cloud Giant of Evil Air-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cradle of the Cloud Scion", + "source": "BGG", + "page": 166, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 624, + "formula": "32d20 + 288", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 29, + "dexterity": 21, + "constitution": 28, + "intelligence": 14, + "wisdom": 22, + "charisma": 19, + "passive": 16, + "saves": { + "int": "+10", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Awakening of the Scion", + "body": [ + "The cradle is a container for the {@creature scion of Memnor|BGG}. When the cradle drops to 0 hit points, its body dissipates into cloud wisps. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The cradle doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The cradle deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cradle makes three Slam or Wind Javelin attacks in any combination." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}31 ({@damage 4d10 + 9}) bludgeoning damage plus 19 ({@damage 3d12}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wind Javelin", + "body": [ + "{@atk rw} {@hit 17} to hit, range 120 ft., one target. {@h}27 ({@damage 4d8 + 9}) bludgeoning damage plus 10 ({@damage 3d6}) thunder damage, and the target must succeed on a {@dc 25} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vortex {@recharge 5}", + "body": [ + "The cradle conjures a vortex of wind at a point it can see within 90 feet of itself. The wind vortex is a 30-foot-radius, 100-foot-high cylinder centered on that point. Each creature other than the cradle in that area must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 71 ({@damage 11d12}) bludgeoning damage and has the {@condition restrained} condition within the vortex. On a successful save, a creature takes half as much damage and is pushed to the nearest unoccupied space outside the cylinder. The vortex lasts until the start of the cradle's next turn. A creature with the {@condition restrained} condition falls {@condition prone} when the vortex ends.", + "A creature with the {@condition restrained} condition can use its action to try to escape the vortex. The creature makes a {@dc 19} Strength ({@skill Athletics}) or Dexterity ({@skill Acrobatics}) check. On a successful check, the creature escapes and moves {@dice 3d6 \u00d7 10} feet away from the vortex in a random direction." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Thunderclap", + "body": [ + "Immediately after taking damage, the cradle unleashes a thunderclap in a 30-foot-radius sphere centered on itself. All other creatures in that area must succeed on a {@dc 25} Constitution saving throw or take 18 ({@damage 4d8}) thunder damage and have the {@condition deafened} condition for 1 minute." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cradle of the Cloud Scion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cradle of the Fire Scion", + "source": "BGG", + "page": 172, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 555, + "formula": "30d20 + 240", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 28, + "dexterity": 12, + "constitution": 27, + "intelligence": 12, + "wisdom": 20, + "charisma": 17, + "passive": 15, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Awakening of the Scion", + "body": [ + "The cradle is a container for the {@creature scion of Surtur|BGG}. When the cradle drops to 0 hit points, its body hardens and crumbles to ash. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The cradle deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cradle makes three Slam or Hurl Lava attacks in any combination." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}31 ({@damage 4d10 + 9}) bludgeoning damage plus 14 ({@damage 4d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Lava", + "body": [ + "{@atk rw} {@hit 17} to hit, range 120 ft., one target. {@h}27 ({@damage 4d8 + 9}) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature within 5 feet of the fire takes an action to douse the fire, the target takes 10 ({@damage 3d6}) fire damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Erupting Breath {@recharge 5}", + "body": [ + "The cradle exhales flames and volcanic gases in a 90-foot cone. Each creature in that area must make a {@dc 24} Dexterity saving throw. On a failed save, a creature takes 55 ({@damage 10d10}) fire damage and has the {@condition poisoned} condition for 1 minute. On a successful save, a creature takes half as much damage only.", + "A creature {@condition poisoned} in this way can make a {@dc 24} Constitution saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Lava Geyser", + "body": [ + "The cradle causes lava to erupt from a point on the ground it can see within 120 feet of itself. Each creature in a 20-foot-radius, 50-foot-high cylinder centered on that point must succeed on a {@dc 21} Dexterity saving throw or take 14 ({@damage 4d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cradle of the Fire Scion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cradle of the Frost Scion", + "source": "BGG", + "page": 174, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 499, + "formula": "27d20 + 216", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 27, + "dexterity": 14, + "constitution": 26, + "intelligence": 11, + "wisdom": 19, + "charisma": 16, + "passive": 14, + "saves": { + "wis": "+11", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Awakening of the Scion", + "body": [ + "The cradle is a container for the {@creature scion of Thrym|BGG}. When the cradle drops to 0 hit points, its body shatters into shards of ice. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The cradle deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cradle makes two Slam or Hurl Icicle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage plus 11 ({@damage 2d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Icicle", + "body": [ + "{@atk rw} {@hit 15} to hit, range 120 ft., one target. {@h}26 ({@damage 4d8 + 8}) piercing damage plus 9 ({@damage 2d8}) cold damage, and the target must succeed on a {@dc 23} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Breath {@recharge 5}", + "body": [ + "The cradle exhales a blast of frost in a 90-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 52 ({@damage 8d12}) cold damage, and its speed is reduced to 0 until the end of its next turn. On a successful save, a creature takes half as much damage only. If this damage would reduce the target to 0 hit points, the target drops to 1 hit point instead and has the {@condition petrified} condition, turning into a frozen statue.", + "If the statue takes bludgeoning damage, it shatters, killing the frozen creature. If the statue would take fire damage, it instead takes no damage and thaws, ending the petrification." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Chilling Mist", + "body": [ + "The cradle magically conjures a cloud of chilling mist that fills a 30-foot-radius sphere centered on a point it can see within 90 feet of itself. The mist spreads around corners. Each creature in that area must succeed on a {@dc 19} Constitution saving throw or take 28 ({@damage 8d6}) cold damage and be unable to use reactions until the start of its next turn. The mist vanishes at the end of the cradle's turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cradle of the Frost Scion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cradle of the Hill Scion", + "source": "BGG", + "page": 164, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 402, + "formula": "23d20 + 161", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 25, + "dexterity": 10, + "constitution": 24, + "intelligence": 9, + "wisdom": 16, + "charisma": 10, + "passive": 13, + "saves": { + "wis": "+10", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Awakening of the Scion", + "body": [ + "The cradle is a container for the {@creature scion of Grolantor|BGG}. When the cradle drops to 0 hit points, its body crumbles to dirt and moss. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The cradle deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cradle makes three Slam or Spit Rock attacks in any combination and one Grasping Root attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}33 ({@damage 4d12 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Rock", + "body": [ + "{@atk rw} {@hit 14} to hit, range 120 ft., one target. {@h}25 ({@damage 4d8 + 7}) bludgeoning damage, and the target must succeed on a {@dc 22} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Root", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 30 ft., one creature not {@condition grappled} by the cradle. {@h}the target has the {@condition grappled} condition (escape {@dc 17}). Until the grapple ends, the target takes 29 ({@damage 4d10 + 7}) bludgeoning damage at the start of each of its turns. The root has AC 19 and can be severed by dealing 15 or more slashing damage to it on one attack. Cutting the root doesn't hurt the cradle but ends the grapple." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rolling Hills {@recharge}", + "body": [ + "The cradle magically creates a wave of dirt that extends from a point on the ground within 120 feet of itself. The wave is up to 30 feet long, up to 30 feet tall, and up to 30 feet wide. Each creature in the wave must make a {@dc 22} Strength saving throw. On a failed save, a creature takes 58 ({@damage 9d12}) bludgeoning damage, has the {@condition prone} condition, and is buried under dirt. On a successful save, a creature takes half as much damage only.", + "A buried creature has the {@condition restrained} condition, has {@quickref Cover||3||total cover}, and can't breathe. As an action, a creature buried in this way, or another creature within 5 feet of it that isn't buried, can make a {@dc 17} Strength ({@skill Athletics}) check. On a successful check, the buried creature no longer has the {@condition prone} or {@condition restrained} conditions." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cradle of the Hill Scion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cradle of the Stone Scion", + "source": "BGG", + "page": 168, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 455, + "formula": "26d20 + 182", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 26, + "dexterity": 15, + "constitution": 24, + "intelligence": 11, + "wisdom": 18, + "charisma": 10, + "passive": 14, + "saves": { + "wis": "+11", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "tremorsense 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Awakening of the Scion", + "body": [ + "The cradle is a container for the {@creature scion of Skoraeus|BGG}. When the cradle drops to 0 hit points, its body crumbles to dust. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The cradle deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cradle makes two Slam or Spit Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Rock", + "body": [ + "{@atk rw} {@hit 15} to hit, range 120 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage, and the target must succeed on a {@dc 23} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shattering Roar {@recharge 5}", + "body": [ + "The cradle lets out a painfully load roar. Each creature within 60 feet of the cradle must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) thunder damage and has the {@condition incapacitated} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Crystal Flare", + "body": [ + "The cradle causes the crystals on its body to flare with light. Each creature within 30 feet of the cradle must succeed on a {@dc 22} Constitution saving throw or take 21 ({@damage 6d6}) radiant damage and have the {@condition blinded} condition until the end of the cradle's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Spikes", + "body": [ + "The cradle causes the ground in a 20-foot square within 90 feet of itself to sprout crystal spikes until the start of its next turn. The area becomes difficult terrain for the duration. A creature takes 10 ({@damage 3d6}) piercing damage for each 5 feet it moves on this terrain." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cradle of the Stone Scion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Cradle of the Storm Scion", + "source": "BGG", + "page": 170, + "size_str": "Gargantuan", + "maintype": "elemental", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 682, + "formula": "35d20 + 315", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "27", + "xp": 105000, + "strength": 30, + "dexterity": 14, + "constitution": 29, + "intelligence": 16, + "wisdom": 23, + "charisma": 18, + "passive": 16, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Awakening of the Scion", + "body": [ + "The cradle is a container for the {@creature scion of Stronmaus|BGG}. When the cradle drops to 0 hit points, its body bursts into light. The scion instantly appears in the space the cradle occupied and uses the cradle's initiative count." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the cradle fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The cradle has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The cradle deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cradle makes three Slam or Spit Hailstone attacks in any combination." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}36 ({@damage 4d12 + 10}) bludgeoning damage plus 19 ({@damage 3d12}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Hailstone", + "body": [ + "{@atk rw} {@hit 18} to hit, range 120 ft., one target. {@h}32 ({@damage 4d10 + 10}) bludgeoning damage plus 14 ({@damage 4d6}) cold damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Barrage {@recharge 5}", + "body": [ + "The cradle hurls multiple magical lightning bolts at up to two creatures it can see within 500 feet of itself. Each target must make a {@dc 22} Dexterity saving throw. On a failed save, the target takes 71 ({@damage 11d12}) lightning damage and has the {@condition stunned} condition until the end of its next turn. On a successful save, the target takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Booming Step", + "body": [ + "Immediately after taking damage, the cradle cracks with thunder and then magically teleports up to 60 feet to an unoccupied space it can see. Each creature within 10 feet of the space the cradle left must make a {@dc 22} Constitution saving throw, taking 14 ({@damage 4d6}) thunder damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cradle of the Storm Scion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Death Giant Reaper", + "source": "BGG", + "page": 126, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 27, + "dexterity": 14, + "constitution": 20, + "intelligence": 18, + "wisdom": 16, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Scythe or Soul Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scythe", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 15 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage plus 11 ({@damage 2d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}26 ({@damage 4d10 + 4}) necrotic damage. If the target has the {@condition frightened} condition, the giant gains temporary hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Frightening Teleport {@recharge 4}", + "body": [ + "The giant magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. Each creature within 10 feet of the location the giant left must succeed on a {@dc 16} Wisdom saving throw or have the {@condition frightened} condition until the end of that creature's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Death Giant Reaper-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Death Giant Shrouded One", + "source": "BGG", + "page": 127, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 27, + "dexterity": 14, + "constitution": 20, + "intelligence": 23, + "wisdom": 16, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+11", + "wis": "+8", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Death Rune", + "body": [ + "The giant has a death rune inscribed on a giant's skull in its possession. While holding or wearing the skull bearing the rune, the giant can use its Reaping Scythe action and Shroud of Souls bonus action.", + "The skull bearing the death rune has AC 18; 35 hit points; and immunity to necrotic, poison, and psychic damage. The skull regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a death rune on another skull in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes three Soul Burst attacks. Alternatively, if the giant has its death rune, it can make three Reaping Scythe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Burst", + "body": [ + "{@atk ms,rs} {@hit 11} to hit, reach 10 ft. or range 120 ft., one target. {@h}28 ({@damage 4d10 + 6}) necrotic damage. If the target has the {@condition frightened} condition, the giant gains temporary hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reaping Scythe (Requires Death Rune)", + "body": [ + "{@atk ms} {@hit 11} to hit, reach 15 ft., one creature. {@h}38 ({@damage 7d10}) necrotic damage, and the target can't regain hit points until the end of its next turn. The target dies if it is reduced to 0 hit points by this attack." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Frightening Teleport {@recharge 4}", + "body": [ + "The giant magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. Each creature within 10 feet of the location the giant left must succeed on a {@dc 19} Wisdom saving throw or have the {@condition frightened} condition until the end of that creature's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shroud of Souls (Requires Death Rune)", + "body": [ + "The giant shrouds itself in a torrent of souls. While the giant is shrouded, each creature that starts its turn within 5 feet of the giant must succeed on a {@dc 19} Wisdom saving throw or have disadvantage on saving throws until the end of that creature's next turn. The shroud disappears after 1 minute, when the giant dies, when the giant uses this bonus action again, or when the giant's death rune is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The giant casts one of the following spells, using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell mage armor}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell speak with dead}", + "{@spell Tenser's floating disk}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Death Giant Shrouded One-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Dust Hulk", + "source": "BGG", + "page": 131, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 15, + "dexterity": 19, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 8, + "passive": 11, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Giant", + "Terran" + ], + "traits": [ + { + "title": "Air Form", + "body": [ + "The dust hulk can enter a hostile creature's space and stop there. It can move through a space as narrow as 1 inch without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Burst", + "body": [ + "When the dust hulk dies, it explodes in a burst of dust that fills a 10-foot-radius sphere centered on itself. Each creature in that area must succeed on a {@dc 14} Constitution saving throw or have the {@condition blinded} condition for 1 minute. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dust hulk makes three Slam attacks. It can replace one of these attacks with Stinging Dust." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stinging Dust", + "body": [ + "One creature of the dust hulk's choice inside its space must make a {@dc 14} Constitution saving throw. On a failed save, the creature takes 10 ({@damage 3d6}) bludgeoning damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dust Hulk-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Echo of Demogorgon", + "source": "BGG", + "page": 132, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d10 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 22, + "dexterity": 10, + "constitution": 17, + "intelligence": 10, + "wisdom": 12, + "charisma": 14, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Giant", + "Orc" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The echo has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wakeful", + "body": [ + "When one of the echo's heads is asleep, its other head is awake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The echo makes two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage plus 9 ({@damage 2d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Discordant Screams", + "body": [ + "The echo directs its frenzied howls at one creature it can see within 60 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or suffer one of the following effects of the echo's choice:", + { + "title": "Confused Reaction", + "body": [ + "The target must use its reaction to make a melee attack against another creature of the echo's choice that the echo can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Torment", + "body": [ + "The target takes 13 ({@damage 2d12}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Echo of Demogorgon-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Ettin Ceremorph", + "source": "BGG", + "page": 133, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "11d10 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 14, + "constitution": 18, + "intelligence": 18, + "wisdom": 15, + "charisma": 14, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "Giant", + "telepathy 60 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The ceremorph has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ceremorph makes one Slam attack and one Tentacles attack. The ceremorph can replace one of the attacks with a Mind Bolt attack, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}22 ({@damage 4d8 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Large or smaller, it has the {@condition grappled} condition (escape {@dc 14}) and must succeed on a {@dc 15} Intelligence saving throw or have the {@condition stunned} condition until this grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one {@condition incapacitated} Humanoid {@condition grappled} by the ceremorph. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the ceremorph kills the target by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Bolt (3/Day)", + "body": [ + "{@atk rs} {@hit 7} to hit, range 120 ft., one creature. {@h}17 ({@damage 2d12 + 4}) psychic damage, and the target must succeed on a {@dc 15} Intelligence saving throw or have the {@condition stunned} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ettin Ceremorph-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fensir Devourer", + "source": "BGG", + "page": 135, + "size_str": "Huge", + "maintype": "celestial", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 10, + "constitution": 21, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Death Curse", + "body": [ + "When the fensir starts its turn with 0 hit points and doesn't regenerate, it releases a curse on those around it. Each creature within 30 feet of the fensir when it dies must succeed on a {@dc 13} Charisma saving throw or be cursed for the next 24 hours.", + "While cursed in this way, an affected creature gains no benefit from finishing a short or long rest. At the end of every hour, the creature must succeed on a {@dc 13} Charisma saving throw or take 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The fensir regains 10 hit points at the start of its turn if it isn't in sunlight. If the fensir takes acid or fire damage, this trait doesn't function at the start of the fensir's next turn. The fensir dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "When the fensir starts its turn in sunlight, it must succeed on a {@dc 15} Constitution saving throw or have the {@condition petrified} condition until the fensir is no longer in sunlight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fensir makes two attacks, using Rend, Boulder, or a combination of them." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d10 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boulder", + "body": [ + "{@atk rw} {@hit 8} to hit, range 60/240 ft., one target. {@h}18 ({@damage 2d12 + 5}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition. After the fensir throws the boulder, roll a {@dice d6}; on a roll of 4 or lower, the fensir has no more boulders to throw." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fensir Devourer-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fensir Skirmisher", + "source": "BGG", + "page": 135, + "size_str": "Large", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 15, + "constitution": 20, + "intelligence": 14, + "wisdom": 11, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The fensir regains 10 hit points at the start of its turn if it isn't in sunlight. If the fensir takes acid or fire damage, this trait doesn't function at the start of the fensir's next turn. The fensir dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "When the fensir starts its turn in sunlight, it must succeed on a {@dc 15} Constitution saving throw or have the {@condition petrified} condition until the fensir is no longer in sunlight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fensir makes three Battleaxe attacks or two Magic Stone attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage, or 15 ({@damage 2d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Stone", + "body": [ + "{@atk rs} {@hit 5} to hit, range 60 ft., one target. {@h}15 ({@damage 2d12 + 2}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 13} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mud to Stone {@recharge}", + "body": [ + "The fensir lobs a magical mass of mud that splashes all creatures in a 30-foot-radius sphere centered on a point the fensir can see within 60 feet of itself. Each non-fensir creature in that area must succeed on a {@dc 13} Dexterity saving throw or take 13 ({@damage 3d8}) bludgeoning damage and have the {@condition restrained} condition as the mud begins to turn to stone. An affected creature must repeat the saving throw at the end of its next turn. On a successful save, the effect ends on the creature. On a failed save, the creature has the {@condition petrified} condition for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The fensir casts one of the following spells, using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell create or destroy water}", + "{@spell detect magic}", + "{@spell pass without trace}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fensir Skirmisher-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Firbolg Primeval Warden", + "source": "BGG", + "page": 136, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item hide armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 12, + "wisdom": 16, + "charisma": 11, + "passive": 17, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+3", + "wis": "+5" + }, + "languages": [ + "Common", + "Druidic", + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The firbolg makes two Spear or Fire Lance attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 9 ({@damage 2d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Lance", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Hidden Step (2/Day)", + "body": [ + "The firbolg magically turns {@condition invisible} until the start of its next turn, until it makes an attack roll, or until it forces someone to make a saving throw." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The firbolg casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell entangle}", + "{@spell speak with animals}", + "{@spell speak with plants}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell commune with nature} (as an action)", + "{@spell detect magic}", + "{@spell disguise self}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Firbolg Primeval Warden-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Firbolg Wanderer", + "source": "BGG", + "page": 137, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 14, + "constitution": 16, + "intelligence": 14, + "wisdom": 17, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+6" + }, + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The firbolg makes two attacks using Longsword, Bewitching Bolt, or a combination of them." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands, plus 9 ({@damage 2d8}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bewitching Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}10 ({@damage 2d6 + 3}) psychic damage, and the target must succeed on a {@dc 14} Charisma saving throw or have the {@condition charmed} condition until the start of the target's next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Duplicitous Movement (1/Day)", + "body": [ + "The firbolg projects an illusory duplicate of itself in an unoccupied space it can see within 30 feet of itself. The firbolg can then swap places with the illusion. The illusion vanishes after 1 minute, if the firbolg is {@condition incapacitated}, or if the illusion is more than 120 feet from the firbolg.", + "As a bonus action on later turns, the firbolg can move the illusion up to 30 feet and can then swap places with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The firbolg casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand}", + "{@spell minor illusion}", + "{@spell Tasha's hideous laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}", + "{@spell dispel magic}", + "{@spell polymorph}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "GotSF" + } + ], + "subtype": "cleric", + "actions_note": "", + "mythic": null, + "key": "Firbolg Wanderer-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fire Giant Forgecaller", + "source": "BGG", + "page": 138, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 312, + "formula": "25d12 + 150", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 25, + "dexterity": 11, + "constitution": 23, + "intelligence": 16, + "wisdom": 21, + "charisma": 18, + "passive": 21, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+9", + "wis": "+11" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fire Rune", + "body": [ + "The giant has a fire rune inscribed on a medallion or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Magma Wave action and Furnace Armor bonus action.", + "The object bearing the rune has AC 15; 40 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a fire rune on an object in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes three Forge Hammer attacks or two Heated Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forge Hammer", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}24 ({@damage 5d6 + 7}) bludgeoning damage. {@hom}The giant can cause the hammer to emit a burst of heat in a 30-foot-radius sphere centered on the target. Metal objects in that area glow red-hot until the start of the giant's next turn. Any creature in physical contact with a heated object at the start of its turn must make a {@dc 19} Constitution saving throw. On a failed save, the creature takes 10 ({@damage 3d6}) fire damage and has disadvantage on attack rolls until the start of its next turn unless it has immunity to fire damage. The hammer can emit heat in this way only once per turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heated Rock", + "body": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage plus 19 ({@damage 3d12}) fire damage. If the target is a Large or smaller creature, it must succeed on a {@dc 21} Strength saving throw or have the {@condition prone} condition. After the giant throws the rock, roll a {@dice d6}; on a roll of 3 or lower, the giant has no more rocks to throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magma Wave (Requires Fire Rune)", + "body": [ + "The giant emits a wave of magma from its fire rune in a 30-foot cone. Each creature in that area must make a {@dc 19} Dexterity saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) fire damage and has the {@condition restrained} condition. As an action, a creature can make a {@dc 19} Strength ({@skill Athletics}) check, freeing itself or a creature within its reach from the rock on a success. The rock restraining each creature has AC 17; 20 hit points; and immunity to fire, poison, and psychic damage. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Furnace Armor (Requires Fire Rune)", + "body": [ + "The giant causes smoke and cinders to billow from its armor, filling a 30-foot-radius sphere centered on the giant. While the armor is billowing smoke, the giant has {@quickref Cover||3||half cover}. The armor stops billowing smoke after 1 minute, when the giant dies, when the giant uses a bonus action to end the effect, or when the giant's fire rune is destroyed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GotSF" + } + ], + "subtype": "cleric", + "actions_note": "", + "mythic": null, + "key": "Fire Giant Forgecaller-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fire Giant of Evil Fire", + "source": "BGG", + "page": 139, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "12d12 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 25, + "dexterity": 9, + "constitution": 23, + "intelligence": 10, + "wisdom": 19, + "charisma": 14, + "passive": 18, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+8", + "cha": "+6" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant", + "Ignan" + ], + "traits": [ + { + "title": "Shrapnel Explosion", + "body": [ + "When the giant drops to 0 hit points, its armor explodes, destroying the giant's body and scattering the armor as shrapnel. Creatures within 10 feet of the giant when its armor explodes must make a {@dc 18} Dexterity saving throw, taking 21 ({@damage 6d6}) piercing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Searing Scepter attacks or two Bolt of Imix attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Searing Scepter", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage plus 9 ({@damage 2d8}) fire damage, and the target is magically branded. While branded in this way, the target becomes visible if it's {@condition invisible}, can't become {@condition invisible}, and sheds dim light in a 5-foot radius. The brand disappears after 24 hours, or it can be removed from a creature or an object by any spell that ends a curse." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt of Imix", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) fire damage, and the target must succeed on a {@dc 16} Wisdom saving throw or have the {@condition frightened} condition until the end of the target's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "GotSF" + }, + { + "source": "HFStCM" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fire Giant of Evil Fire-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fire Hellion", + "source": "BGG", + "page": 140, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 175, + "formula": "14d12 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 25, + "dexterity": 10, + "constitution": 23, + "intelligence": 16, + "wisdom": 14, + "charisma": 21, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Giant", + "Infernal" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The hellion has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Soul Taker", + "body": [ + "A Giant or a Humanoid that is reduced to 0 hit points by the hellion dies, and its soul rises as a lemure (see the Monster Manual) on Avernus, one of the Nine Hells, in {@dice 1d4} hours. If the creature isn't revived before then, it can be restored to life only by a {@spell wish} spell or by killing the lemure and casting true resurrection on the creature's original body." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hellion makes two Morningstar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Morningstar", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) piercing damage plus 11 ({@damage 2d10}) fire damage. If the target is a creature, it can't regain hit points until the start of the hellion's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Infernal Orb", + "body": [ + "The hellion hurls a magical ball of fire that explodes in a 20-foot-radius sphere centered on a point the hellion can see within 120 feet of itself. The sphere spreads around corners. Each creature in that area must make a {@dc 17} Dexterity saving throw. A creature takes 18 ({@damage 4d8}) fire damage and 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Fire Hellion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Firegaunt", + "source": "BGG", + "page": 137, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "damaged plate", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 175, + "formula": "14d12 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 25, + "dexterity": 7, + "constitution": 23, + "intelligence": 10, + "wisdom": 14, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+2", + "con": "+10", + "cha": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Fire Blood", + "body": [ + "Whenever a creature within 5 feet of the firegaunt hits the firegaunt with a melee attack that deals piercing or slashing damage, that creature takes 5 ({@damage 1d10}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The firegaunt makes two Heated Maul attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heated Maul", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage. The firegaunt can cause the maul to erupt with crimson flames, and the target must succeed on a {@dc 18} Dexterity saving throw or take 10 ({@damage 3d6}) fire damage and 10 ({@damage 3d6}) necrotic damage. The maul can erupt with flames in this way only once per turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crimson Rays {@recharge 5}", + "body": [ + "The firegaunt emits beams of fire from its eyes, mouth, and wounds in a 30-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 31 ({@damage 7d8}) fire damage on a failed save, or half as much damage on a successful one. On a success or failure, that creature catches fire. Until the burning creature or another creature that can reach it takes an action to extinguish the fire, the burning creature can't regain hit points and takes 5 ({@damage 1d10}) fire damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Firegaunt-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Flesh Colossus", + "source": "BGG", + "page": 141, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 280, + "formula": "16d20 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 24, + "dexterity": 9, + "constitution": 24, + "intelligence": 6, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Giant but can't speak" + ], + "traits": [ + { + "title": "Berserk", + "body": [ + "If the core inside the colossus is destroyed, the colossus goes berserk. On each of its turns while berserk, the colossus attacks the nearest creature it can see. If no creature is near enough to move to and attack, the colossus attacks an object. Once the colossus goes berserk, it remains berserk until it is destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Immutable Form", + "body": [ + "The colossus is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The colossus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The colossus deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The colossus makes two Fist attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 13} to hit (with advantage if the colossus is berserk), reach 20 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage. If the target is a Large or smaller creature, it is pulled up to 15 feet toward the colossus, it has the {@condition grappled} condition (escape {@dc 17}), and it has the {@condition restrained} condition until this grapple ends. The colossus can have up to two creatures {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Elemental Breath {@recharge 5}", + "body": [ + "The colossus exhales a cloud swirling with elemental energy in a 90-foot cone. Each creature in that area must make a {@dc 21} Dexterity saving throw. On a failed save, a creature takes 40 ({@damage 9d8}) damage of a type of the colossus's choosing: acid, cold, fire, or lightning. On a successful save, a creature takes half as much damage.", + "At the same time as the colossus releases this exhalation, creatures inside the colossus's chest cavity take 40 ({@damage 9d8}) force damage from churning elemental energy." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one Large or smaller creature {@condition grappled} by the colossus. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage, and the creature is swallowed. A swallowed creature has the {@condition restrained} condition, has {@quickref Cover||3||total cover} against attacks and other effects outside the colossus, and takes 10 ({@damage 3d6}) force damage at the start of each of the colossus's turns.", + "The colossus's chest cavity can hold up to two creatures at a time. Inside its chest cavity is its core, which is a Large object with AC 16 that is immune to lightning, poison, and psychic damage. It has 140 hit points and sheds dim light in a 10-foot radius. If the core is destroyed, the colossus regurgitates all swallowed creatures, each of which falls in a space within 10 feet of the colossus and has the {@condition prone} condition, and the colossus can no longer swallow a creature. If the colossus dies, any swallowed creature no longer has the {@condition restrained} condition and can escape from the corpse using 10 feet of movement, exiting with the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flesh Colossus-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fomorian Deep Crawler", + "source": "BGG", + "page": 142, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 184, + "formula": "16d12 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 15, + "constitution": 20, + "intelligence": 9, + "wisdom": 17, + "charisma": 6, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant", + "Undercommon" + ], + "traits": [ + { + "title": "Contortionist", + "body": [ + "The fomorian can enter a space large enough for a Large creature without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crawling Stance", + "body": [ + "While the fomorian has the {@condition prone} condition, crawling does not cost it extra movement. In addition, the {@condition prone} condition does not grant advantage on attack rolls against the fomorian." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The fomorian can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fomorian makes two Slam attacks and uses Crawling Hex if it is available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crawling Hex {@recharge 4}", + "body": [ + "The fomorian targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 15} Wisdom saving throw or take 31 ({@damage 7d8}) psychic damage, have the {@condition prone} condition, and become cursed for 1 hour. While cursed this way, the target can't stand up and end the {@condition prone} condition on itself." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fomorian Deep Crawler-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fomorian Noble", + "source": "BGG", + "page": 143, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 17, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 253, + "formula": "22d12 + 110", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 23, + "dexterity": 18, + "constitution": 20, + "intelligence": 19, + "wisdom": 14, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+7", + "cha": "+8" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant plus any three languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fomorian makes three Rod attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rod", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 11 ({@damage 2d10}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Beguiling Presence", + "body": [ + "The fomorian targets a creature it can see within 60 feet of itself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition for 1 minute. An affected target can repeat the saving throw at the end of each of its turns and whenever it takes damage, ending the effect on itself on a success. If a target's saving throw is successful or the effect ends for it, the target becomes immune to all fomorians' Beguiling Presence for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The fomorian casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage armor} (self only)", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell chain lightning}", + "{@spell cone of cold} (6th-level version)", + "{@spell fireball} (6th-level version)", + "{@spell fly}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Fomorian Noble-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fomorian Warlock of the Dark", + "source": "BGG", + "page": 144, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 23, + "dexterity": 13, + "constitution": 20, + "intelligence": 9, + "wisdom": 14, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant", + "Undercommon" + ], + "traits": [ + { + "title": "Blood Rune", + "body": [ + "The fomorian has a blood rune inscribed on an effigy or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Corrupting Hex action and Poisoning Rebuke reaction.", + "The object bearing the blood rune has AC 15; 30 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the fomorian dies. If the rune is destroyed, the fomorian can inscribe a blood rune on an object in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "Devil's Sight", + "body": [ + "Magical darkness doesn't impede the fomorian's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the fomorian fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fomorian makes three Greatclub attacks. If the fomorian has its blood rune, it can replace one of these attacks with a use of Corrupting Hex." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corrupting Hex (Requires Blood Rune)", + "body": [ + "The fomorian targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 16} Charisma saving throw or take 27 ({@damage 6d8}) necrotic damage and become cursed for 24 hours. While cursed this way, the target's speed is reduced by half, and if it tries to cast a spell, it must first succeed on a {@dc 16} Intelligence check or the spell fails and is wasted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Burst", + "body": [ + "Magical energy explodes in a 20-foot-radius sphere centered on a point the fomorian can see within 120 feet of itself. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 32 ({@damage 5d12}) force damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Creeping Gloom {@recharge}", + "body": [ + "The fomorian momentarily conjures grasping darkness in a 30-foot-radius sphere centered on a point it can see within 120 feet of itself. Each creature in that area must succeed on a {@dc 16} Constitution saving throw or take 11 ({@damage 2d10}) necrotic damage and have the {@condition blinded} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Poisoning Rebuke (Requires Blood Rune)", + "body": [ + "In response to being damaged by a creature the fomorian can see within 60 feet of itself, the fomorian forces that creature to make a {@dc 16} Constitution saving throw; on a failed save, the creature has the {@condition poisoned} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The fomorian casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell levitate}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell detect thoughts}", + "{@spell suggestion}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fomorian Warlock of the Dark-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Frost Giant Ice Shaper", + "source": "BGG", + "page": 145, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 310, + "formula": "27d12 + 135", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 11, + "wisdom": 19, + "charisma": 16, + "passive": 20, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "con": "+11", + "wis": "+10", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Frost Rune", + "body": [ + "The giant has a frost rune inscribed on a chunk of ice or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Ice Wolves action and Ice Armor reaction.", + "The object bearing the rune has AC 16; 40 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a frost rune on an object in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes three attacks using Greataxe, Freezing Ray, or a combination of them." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d10 + 6}) slashing damage plus 9 ({@damage 2d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Ray", + "body": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}17 ({@damage 3d8 + 4}) cold damage, and the target must make a {@dc 18} Constitution saving throw. On a failed save, the target has the {@condition restrained} condition until the end of its next turn. On a successful save, the target's speed is reduced by 10 feet until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Wolves (Requires Frost Rune)", + "body": [ + "The giant magically summons {@dice 1d4} wolves made of ice (use the {@creature winter wolf} stat block in the Monster Manual to represent them, but they are Elementals instead of Monstrosities). The wolves appear in unoccupied spaces the giant can see within 30 feet of itself. The wolves take their turn immediately after the giant on the same initiative count, and they obey the giant's commands. The wolves gain a +6 bonus to their attack and damage rolls while they are within 30 feet of the giant. The wolves disappear after 1 minute, when the giant dies, or when the giant uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Ice Armor (Requires Frost Rune)", + "body": [ + "When a creature the giant can see makes an attack roll against it, the giant can form a coat of ice around itself, granting it a +6 bonus to its AC against that attack. After the attack hits or misses, the ice shatters, and each creature within 5 feet of the giant must succeed on a {@dc 18} Dexterity saving throw or take 13 ({@damage 3d8}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "cleric", + "actions_note": "", + "mythic": null, + "key": "Frost Giant Ice Shaper-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Frost Giant of Evil Water", + "source": "BGG", + "page": 146, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item scale mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "15d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 23, + "dexterity": 16, + "constitution": 21, + "intelligence": 9, + "wisdom": 14, + "charisma": 12, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+9", + "wis": "+6" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Aquan", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The giant can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Battleaxe attacks and one Harpoon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) slashing damage, or 22 ({@damage 3d10 + 6}) slashing damage if used with two hands, plus 7 ({@damage 2d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harpoon", + "body": [ + "{@atk rw} {@hit 7} to hit, range 50/200 ft., one creature. {@h}14 ({@damage 2d10 + 3}) piercing damage, and the target has the {@condition grappled} condition (escape {@dc 16}). While the target is {@condition grappled} this way, its speed isn't reduced, but it can't move farther from the giant. The target takes 5 ({@damage 1d10}) slashing damage if it escapes from the grapple or if it tries and fails. The giant can grapple only one target at a time with its harpoon." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Reel In", + "body": [ + "The giant pulls the target {@condition grappled} by its Harpoon up to 20 feet toward itself." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Giant of Evil Water-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Frostmourn", + "source": "BGG", + "page": 147, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 9, + "constitution": 21, + "intelligence": 9, + "wisdom": 11, + "charisma": 18, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "wis": "+4" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The frostmourn makes one Freezing Touch attack and one Icy Axe attack. It can replace one of these attacks with a Polar Ray attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Touch", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}18 ({@damage 4d8}) cold damage plus 18 ({@damage 4d8}) necrotic damage. If this damage would reduce the target to 0 hit points, the target drops to 1 hit point instead and has the {@condition petrified} condition, turning into a frozen statue.", + "If the statue takes bludgeoning damage, it shatters, killing the frozen creature. If the statue would take fire damage, it instead takes no damage and thaws, ending the petrification." + ], + "__dataclass__": "Entry" + }, + { + "title": "Icy Axe", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}19 ({@damage 3d8 + 6}) slashing damage plus 7 ({@damage 2d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Polar Ray", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}31 ({@damage 5d10 + 4}) cold damage, and the target's speed is reduced by 10 feet until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Blizzard Escape", + "body": [ + "Immediately after a creature the frostmourn can see hits it with an attack roll, the frostmourn momentarily dissolves into a blizzard, reducing the damage to itself by half. The frostmourn can then magically teleport to an unoccupied space it can see within 30 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frostmourn-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Fury of Kostchtchie", + "source": "BGG", + "page": 148, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 216, + "formula": "16d12 + 112", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 26, + "dexterity": 10, + "constitution": 25, + "intelligence": 10, + "wisdom": 12, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Giant" + ], + "traits": [ + { + "title": "Chilling Aura", + "body": [ + "A creature that starts its turn within 10 feet of the fury must succeed on a {@dc 20} Constitution saving throw or take 11 ({@damage 2d10}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The fury has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fury makes two Fist or Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage, or 17 ({@damage 5d6}) cold damage if the target took damage from the fury's Chilling Aura since the end of the fury's last turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Charge", + "body": [ + "The fury can move up to its speed toward an enemy it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Fury of Kostchtchie-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Gargantua", + "source": "BGG", + "page": 149, + "size_str": "Gargantuan", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 388, + "formula": "21d20 + 168", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 27, + "dexterity": 10, + "constitution": 26, + "intelligence": 9, + "wisdom": 16, + "charisma": 18, + "passive": 13, + "saves": { + "dex": "+7", + "int": "+6", + "wis": "+10" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant" + ], + "traits": [ + { + "title": "Weird Aura", + "body": [ + "At the start of each of the gargantua's turns, each creature of the gargantua's choice within 30 feet of it must make a {@dc 19} Wisdom saving throw. On a failed save, a target sees the gargantua as a manifestation of the target's worst fears; it takes 17 ({@damage 5d6}) psychic damage and has the {@condition frightened} condition until the start of the target's next turn. On a successful save, a target is immune to this gargantua's Weird Aura for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gargantua makes two Slam or Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}27 ({@damage 3d12 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 15} to hit, range 120/480 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Baleful Hex", + "body": [ + "The gargantua curses one creature it can see within 120 feet of itself. The target must succeed on a {@dc 19} Wisdom saving throw or have the {@condition incapacitated} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The gargantua teleports, along with any equipment it is wearing or carrying, to an unoccupied space that it can see within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Flick", + "body": [ + "Immediately after the gargantua takes damage from a Large or smaller creature it can see within 20 feet of itself, it attempts to flick the creature away. The target must succeed on a {@dc 23} Strength saving throw, or the target takes 18 ({@damage 3d6 + 8}) bludgeoning damage, is pushed horizontally up to 100 feet away from the gargantua, and has the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Mimicry (1/Day)", + "body": [ + "Immediately after a creature the gargantua can see casts a spell of 5th level or lower, the gargantua tries to copy the spell. That creature must succeed on a {@dc 19} Charisma saving throw, or the gargantua immediately casts the same spell at the same level ({@hit 11} to hit with spell attacks, spell save {@dc 19}), requiring no material components and choosing the spell's targets." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gargantua-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Child", + "source": "BGG", + "page": 34, + "size_str": "Medium", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 4, + "formula": "1d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "languages": [ + "Giant" + ], + "actions": [ + { + "title": "Club", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Child-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Goose", + "source": "BGG", + "page": 150, + "size_str": "Large", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 60, + "formula": "8d10 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 16, + "constitution": 15, + "intelligence": 6, + "wisdom": 14, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Giant and Sylvan but can't speak" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The goose makes one Beak attack and two Wing attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 10 ft., one target. {@h}9 ({@damage 2d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wing", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) bludgeoning damage, and the target must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Honk {@recharge 5}", + "body": [ + "The goose honks with ear-splitting volume. Each other creature within 30 feet of the goose must make a {@dc 12} Constitution saving throw. On a failed save, a creature takes 16 ({@damage 3d10}) thunder damage and has the {@condition deafened} condition until the start of the goose's next turn. On a successful save, a creature takes half as much damage only. The honk can be heard within 300 feet." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Goose-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Lynx", + "source": "BGG", + "page": 151, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 18, + "constitution": 13, + "intelligence": 12, + "wisdom": 14, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Giant", + "Sylvan" + ], + "traits": [ + { + "title": "Lynx's Sight (1/Day)", + "body": [ + "The lynx can cast {@spell clairvoyance}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Woodland Camouflage", + "body": [ + "The lynx has advantage on Dexterity ({@skill Stealth}) checks made to hide in undergrowth or snowy terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage. If the lynx moved at least 20 feet straight toward the target immediately before the hit, the target must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition. If the target has the {@condition prone} condition, the lynx can make another Claws attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Lynx-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Ox", + "source": "BGG", + "page": 152, + "size_str": "Huge", + "maintype": "fey", + "alignment": "Unaligned", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "10d12 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 22, + "dexterity": 10, + "constitution": 19, + "intelligence": 4, + "wisdom": 11, + "charisma": 9, + "passive": 10, + "languages": [ + "understands Giant and Sylvan but can't speak" + ], + "traits": [ + { + "title": "Beast of Burden", + "body": [ + "The ox is considered to be one size larger for the purpose of determining its carrying capacity." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage. If the ox moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 7 ({@damage 2d6}) piercing damage, and it must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Ox-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Ram", + "source": "BGG", + "page": 153, + "size_str": "Large", + "maintype": "fey", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 28, + "formula": "3d10 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 19, + "dexterity": 12, + "constitution": 18, + "intelligence": 3, + "wisdom": 14, + "charisma": 10, + "passive": 12, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The ram has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage plus 3 ({@damage 1d6}) force damage. If the ram moved at least 20 feet straight toward the target immediately before the hit, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Bolt", + "body": [ + "{@atk rs} {@hit 4} to hit, range 30 ft., one target. {@h}7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Absorbent Fleece {@recharge}", + "body": [ + "Immediately after the ram succeeds on a saving throw against a spell or a spell's attack misses it, the ram can make one Force Bolt attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Ram-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Tick", + "source": "BGG", + "page": 153, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d8 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 10, + "constitution": 16, + "intelligence": 2, + "wisdom": 10, + "charisma": 2, + "passive": 10, + "actions": [ + { + "title": "Proboscis", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}10 ({@damage 2d6 + 3}) piercing damage, and the tick attaches to the target. While attached, the tick can't make Proboscis attacks. The tick can detach itself by spending 5 feet of its movement. As an action, a creature within reach of the tick can try to detach the tick, doing so with a successful {@dc 13} Strength check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Drain", + "body": [ + "The tick deals 10 ({@damage 2d6 + 3}) necrotic damage to one creature it is physically attached to, provided that creature isn't a Construct or an Undead, or 17 ({@damage 4d6 + 3}) necrotic damage if the creature is a Giant. The tick regains hit points equal to the damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Tick-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Gigant", + "source": "BGG", + "page": 154, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 325, + "formula": "21d20 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 50, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 24, + "dexterity": 14, + "constitution": 21, + "intelligence": 3, + "wisdom": 14, + "charisma": 11, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "wis": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Spell-Resistant Carapace", + "body": [ + "The gigant has advantage on saving throws against spells, and any creature that makes a spell attack against the gigant has disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gigant makes one Mandibles attack and two Talons attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mandibles", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one creature. {@h}21 ({@damage 4d6 + 7}) slashing damage, and the target has the {@condition grappled} condition (escape {@dc 17}). Until the grapple ends, the target takes 21 ({@damage 4d6 + 7}) slashing damage at the start of each of the gigant's turns. While the gigant is grappling a target, it can't use Mandibles against other targets." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}17 ({@damage 3d6 + 7}) slashing damage, and the target is pulled 10 feet straight toward the gigant." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scale Dust {@recharge 5}", + "body": [ + "The gigant releases magical dust from its wings in a 30-foot cube. Each creature in that area must make a {@dc 19} Constitution saving throw, taking 45 ({@damage 10d8}) poison damage on a failed save, or half as much damage on a successful one. On a success or failure, the creature has the {@condition poisoned} condition for 1 hour. While {@condition poisoned} this way, the creature can't regain hit points." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Drone", + "body": [ + "The gigant produces a horrid droning sound by rapidly beating its wings. Each creature within 10 feet of the gigant must succeed on a {@dc 19} Constitution saving throw or take 10 ({@damage 3d6}) thunder damage and have the {@condition incapacitated} condition until the end of its next turn. The gigant can then fly up to half its flying speed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gigant-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Goliath Giant-Kin", + "source": "BGG", + "page": 155, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item half plate armor|PHB|half plate}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 67, + "formula": "9d8 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 12, + "passive": 13, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The goliath makes two Spear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage, or 8 ({@damage 1d8 + 4}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Giant's Strikes {@recharge 5}", + "body": [ + "Until the end of its turn, the goliath's melee attacks each deal an extra 7 ({@damage 2d6}) damage of a type determined by the goliath's giant community: cold (frost giant), fire (fire giant), force (stone giant), lightning (storm giant), piercing (hill giant), or thunder (cloud giant)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Goliath Giant-Kin-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Grinning Cat", + "source": "BGG", + "page": 156, + "size_str": "Large", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d10 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 14, + "dexterity": 15, + "constitution": 13, + "intelligence": 15, + "wisdom": 14, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The grinning cat has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d6 + 2}) slashing damage. If the grinning cat was {@condition invisible} before it attacked, the target must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition. If the target has the {@condition prone} condition, the cat can make a Bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fade Away", + "body": [ + "The grinning cat magically becomes {@condition invisible} for 1 hour or until it attacks, gradually fading away over the course of its turn. It can choose to leave part of its body visible, such as its tail, its head, or its grinning mouth. Any equipment the cat wears or carries is {@condition invisible} with it." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fade Back", + "body": [ + "The grinning cat becomes visible or makes part of its body visible. Any equipment the cat wears or carries on a visible part of its body also becomes visible." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grinning Step", + "body": [ + "The grinning cat teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grinning Cat-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Hill Giant Avalancher", + "source": "BGG", + "page": 157, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 220, + "formula": "21d12 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 21, + "dexterity": 8, + "constitution": 19, + "intelligence": 9, + "wisdom": 18, + "charisma": 10, + "passive": 18, + "skills": { + "skills": [ + { + "target": "nature", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+8", + "wis": "+8" + }, + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Hill Rune", + "body": [ + "The giant has a hill rune inscribed on a rock or some other object in its possession. While holding or wearing the object bearing the rune, the giant can use its Stone Avalanche action and Hill Rebuff reaction.", + "The object bearing the rune has AC 15; 20 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a hill rune on an object in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes one Greatclub attack and uses Stone Bolas." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatclub", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d8 + 5}) bludgeoning damage plus 9 ({@damage 2d8}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Bolas", + "body": [ + "The giant conjures three stone balls connected by lines of magical force and throws them at one creature it can see within 60 feet of itself. The target must make a {@dc 16} Dexterity saving throw. On a failed save, the target has the {@condition restrained} condition until the start of the giant's next turn, and the stones erupt in a burst of thunderous energy that deals 14 ({@damage 4d6}) thunder damage to the target and each creature within 10 feet of the target. On a successful save, the stones vanish without erupting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Avalanche (Requires Hill Rune)", + "body": [ + "The giant conjures a hail of rocks in a 20-foot-radius, 40-foot-high cylinder centered on a point on the ground it can see within 120 feet of itself. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 28 ({@damage 8d6}) bludgeoning damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only.", + "The rocks turn the ground in that area into difficult terrain until the start of the giant's next turn, when the rocks vanish." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Hill Rebuff (Requires Hill Rune)", + "body": [ + "Immediately after the giant takes damage from a creature it can see within 10 feet of itself, that creature must succeed on a {@dc 16} Constitution saving throw or take 10 ({@damage 3d6}) force damage and be pushed horizontally 10 feet away from the giant." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The giant casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell guidance}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell stone shape}", + "{@spell wall of stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid", + "actions_note": "", + "mythic": null, + "key": "Hill Giant Avalancher-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Lightning Hulk", + "source": "BGG", + "page": 158, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 21, + "constitution": 16, + "intelligence": 14, + "wisdom": 14, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+7", + "wis": "+6", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Auran", + "Giant" + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "The lightning hulk sheds bright light in a 20-foot radius and dim light for an additional 20 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Form", + "body": [ + "The lightning hulk can enter a hostile creature's space and stop there. The first time the lightning hulk enters a creature's space on a turn, or if it begins its turn in a creature's space, that creature takes 7 ({@damage 2d6}) lightning damage. The hulk can also move through a space as narrow as 1 inch without squeezing. A creature that touches the lightning hulk or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Arc Lightning", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 10 ft. or range 60 ft., one target. {@h}18 ({@damage 4d8}) lightning damage. If the target is a creature, it can't take reactions until the start of its next turn, and lightning jumps from the target to another creature of the lightning hulk's choice that it can see within 30 feet of the target. The second creature must succeed on a {@dc 18} Dexterity saving throw or take 18 ({@damage 4d8}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lightning Hulk-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Maw of Yeenoghu", + "source": "BGG", + "page": 159, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "14d12 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 8, + "wisdom": 14, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "cha": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Giant" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The maw has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The maw makes two Bite or Fang Fling attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}19 ({@damage 2d12 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fang Fling", + "body": [ + "{@atk rw} {@hit 10} to hit, range 30/90 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gorging Charge {@recharge 5}", + "body": [ + "The maw moves up to its speed without provoking opportunity attacks and can move through the spaces of Large or smaller creatures. Each time the maw enters a creature's space for the first time during this move, that creature must succeed on a {@dc 18} Strength saving throw or take 25 ({@damage 3d12 + 6}) piercing damage and have the {@condition grappled} condition (escape {@dc 16}); if a creature is already {@condition grappled} this way, it has the {@condition prone} condition. Until this grapple ends, the target has the {@condition restrained} condition. The maw can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Fanged Rebuke", + "body": [ + "In response to taking damage, the maw makes one Bite attack against a random creature within 10 feet of itself. If no creature is within reach, the maw can make two Fang Fling attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Maw of Yeenoghu-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Mist Hulk", + "source": "BGG", + "page": 160, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 21, + "constitution": 20, + "intelligence": 11, + "wisdom": 13, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+4", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Auran", + "Giant" + ], + "traits": [ + { + "title": "Air Form", + "body": [ + "The mist hulk can enter another creature's space and stop there. It can move through a space as narrow as 1 inch without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Burst", + "body": [ + "When the mist hulk dies, it bursts in a wave of water. Each creature within 10 feet of it must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 11 ({@damage 2d10}) bludgeoning damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mist hulk makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hideous Wailing {@recharge 5}", + "body": [ + "The mist hulk releases a wail infused with magical anguish. Each creature within 30 feet of it must make a {@dc 14} Wisdom saving throw. A creature in the mist hulk's space has disadvantage on the saving throw. On a failed save, a creature takes 14 ({@damage 4d6}) psychic damage and has the {@condition incapacitated} condition for 1 minute. The affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mist Hulk-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Mud Hulk", + "source": "BGG", + "page": 161, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 68, + "formula": "8d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 8, + "constitution": 16, + "intelligence": 5, + "wisdom": 9, + "charisma": 6, + "passive": 9, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant", + "Terran" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The mud hulk can move through a space as narrow as 1 inch without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sticky Mud", + "body": [ + "The ground within 15 feet of the mud hulk is difficult terrain for other creatures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Enveloping Slam", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d12 + 3}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 13} Strength saving throw or be pulled into the mud hulk's space and be engulfed by the mud hulk. While engulfed, the target can't breathe, has the {@condition restrained} condition, and takes 6 ({@damage 1d12}) acid damage at the start of each of its turns. When the mud hulk moves, the engulfed target moves with it. The mud hulk can have only one target engulfed at a time. While a creature is engulfed, the mud hulk can't use its Amorphous trait.", + "An engulfed target can repeat the saving throw at the end of each of its turns. On a successful save, the target escapes and enters the nearest unoccupied space." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mud Splash", + "body": [ + "The mud hulk lobs a mass of mud that splashes in a 10-foot-radius sphere centered on a point within 30 feet of the mud hulk. Each creature in that area must make a {@dc 13} Dexterity saving throw, taking 10 ({@damage 2d6 + 3}) bludgeoning damage on a failed save, or half as much damage on a successful one. The affected area is difficult terrain until the start of the mud hulk's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mud Hulk-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Regisaur", + "source": "BGG", + "page": 130, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 181, + "formula": "11d20 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 27, + "dexterity": 8, + "constitution": 23, + "intelligence": 4, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The regisaur has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The regisaur makes one Bite attack and one Tail attack. The regisaur can't target the same creature with both attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}47 ({@damage 6d12 + 8}) piercing damage, and the target has the {@condition grappled} condition (escape {@dc 18}). Until this grapple ends, the target has the {@condition restrained} condition, and the regisaur can't Bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}26 ({@damage 4d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Swallow", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one Huge or smaller creature {@condition grappled} by the regisaur. {@h}The regisaur swallows the target, and the grapple ends. A swallowed creature has the {@condition blinded} and {@condition restrained} conditions, it has {@quickref Cover||3||total cover} against attacks and other effects outside the regisaur, and it takes 7 ({@damage 2d6}) acid damage at the start of each of its turns. The regisaur can have up to two creatures swallowed at a time.", + "If the regisaur takes 25 damage or more on a single turn from a swallowed creature, the regisaur must succeed on a {@dc 16} Constitution saving throw at the end of that turn or regurgitate the creature, which falls in a space within 5 feet of the regisaur and has the {@condition prone} condition; the creature no longer has the {@condition blinded} and {@condition restrained} conditions." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "dinosaur", + "actions_note": "", + "mythic": null, + "key": "Regisaur-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Rime Hulk", + "source": "BGG", + "page": 162, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "9d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 10, + "constitution": 18, + "intelligence": 8, + "wisdom": 9, + "charisma": 6, + "passive": 9, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Aquan", + "Giant" + ], + "traits": [ + { + "title": "Death Burst", + "body": [ + "When the rime hulk dies, it explodes in a 10-foot-radius sphere of frigid air and frost centered on itself. Each creature in that area must succeed on a {@dc 15} Constitution saving throw or take 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The rime hulk makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) bludgeoning damage plus 9 ({@damage 2d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trail of Frost {@recharge 5}", + "body": [ + "The rime hulk moves up to its speed without provoking opportunity attacks and can move through the space of any Medium or smaller creature. Each time the rime hulk enters another creature's space for the first time during this move, that creature must make a {@dc 15} Constitution saving throw. On a failed save, the creature takes 22 ({@damage 4d10}) cold damage, and its speed is reduced by 10 feet until the start of the rime hulk's next turn. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Rime Hulk-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Runic Colossus", + "source": "BGG", + "page": 163, + "size_str": "Gargantuan", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 315, + "formula": "18d20 + 126", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 25, + "dexterity": 9, + "constitution": 24, + "intelligence": 3, + "wisdom": 11, + "charisma": 1, + "passive": 10, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Giant but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The colossus is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The colossus has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The colossus deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The colossus makes two Slam attacks and then uses Stomp." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}26 ({@damage 3d12 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}29 ({@damage 4d10 + 7}) bludgeoning damage. If the target is a Huge or smaller creature, it must succeed on a {@dc 22} Dexterity saving throw or have the {@condition prone} condition. Until the colossus uses its Stomp again or moves, the creature has the {@condition restrained} condition. The {@condition restrained} creature or another creature within 5 feet of it can use its action to make a {@dc 22} Strength check. On a successful check, the affected creature relocates to an unoccupied space of its choice within 5 feet of the colossus and is no longer {@condition restrained}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Beam {@recharge 5}", + "body": [ + "The colossus fires a beam of magical force from its chest, hands, or head in a 150-foot line that is 10 feet wide. Each creature in that area must make a {@dc 22} Dexterity saving throw, taking 58 ({@damage 9d12}) force damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Spell Reflection (2/Day)", + "body": [ + "{@atk rs} {@hit 14} to hit, range 120 ft., one creature casting a spell of 5th level or lower. {@h}26 ({@damage 4d12}) force damage, and the target must succeed on a {@dc 15} Intelligence saving throw or the spell fails and has no effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Runic Colossus-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Scion of Grolantor", + "source": "BGG", + "page": 165, + "size_str": "Gargantuan", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 402, + "formula": "23d20 + 161", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 27, + "dexterity": 14, + "constitution": 25, + "intelligence": 15, + "wisdom": 21, + "charisma": 18, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+12", + "cha": "+11" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Legendary Resistance (6/Day)", + "body": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The scion has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The scion deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scion makes one Great Tree Club attack and two Slam attacks, or it makes three Boulder attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Great Tree Club", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}30 ({@damage 4d10 + 8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 23} Strength saving throw or be pushed horizontally up to 100 feet straight away from the scion and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 20 ft., one target. {@h}26 ({@damage 4d8 + 8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boulder", + "body": [ + "{@atk rw} {@hit 15} to hit, range 120/480 ft., one target. {@h}27 ({@damage 3d12 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inhale {@recharge 5}", + "body": [ + "The scion inhales a vortex of air in a 120-foot line that is 15 feet wide. Each creature in that area that is Huge or smaller must succeed on a {@dc 23} Strength saving throw or be pulled up to 120 feet straight toward the scion and be swallowed. A swallowed creature has the {@condition restrained} condition, has {@quickref Cover||3||total cover} against attacks and other effects outside the scion, and takes 24 ({@damage 7d6}) force damage at the start of each of the scion's turns.", + "The scion's stomach can hold up to two creatures at a time. If the scion takes 60 damage or more on a single turn from a creature inside it, the scion must succeed on a {@dc 17} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which falls in a space within 10 feet of the scion and has the {@condition prone} condition. If the scion dies, any swallowed creature no longer has the {@condition restrained} condition and can escape from the corpse using 15 feet of movement, exiting with the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Earth-Shaking Movement", + "body": [ + "The scion moves up to its speed and then sends a shock wave through the ground in a 60-foot-radius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 23} Constitution saving throw or lose {@status concentration}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Feed", + "body": [ + "Immediately after taking damage, if it has at least one creature swallowed, the scion deals 10 ({@damage 3d6}) force damage to each swallowed creature and regains 10 hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "HFStCM" + } + ], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Scion of Grolantor-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Scion of Memnor", + "source": "BGG", + "page": 167, + "size_str": "Gargantuan", + "maintype": "giant", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 656, + "formula": "32d20 + 320", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 30, + "dexterity": 18, + "constitution": 30, + "intelligence": 24, + "wisdom": 22, + "charisma": 26, + "passive": 24, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+12", + "cha": "+16" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The scion doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (6/Day)", + "body": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The scion has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The scion deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scion makes one attack using Cloud Morningstar or Wind Javelin, as well as two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cloud Morningstar", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 30 ft., one target. {@h}32 ({@damage 4d10 + 10}) force damage plus 22 ({@damage 4d10}) thunder damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wind Javelin", + "body": [ + "{@atk rw} {@hit 18} to hit, range 120/480 ft., one target. {@h}42 ({@damage 5d12 + 10}) thunder damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thunderous Vortex {@recharge 5}", + "body": [ + "The scion magically creates a vortex of wind in a 60-foot-radius sphere centered on a point it can see within 120 feet of itself. Each creature in the sphere must succeed on a {@dc 24} Strength saving throw or be pulled straight toward the sphere's center, ending in an unoccupied space as close as possible to the center. Then a burst of thunder erupts in a 30-foot-radius sphere centered on the same point. Each creature in that area takes 52 ({@damage 8d12}) thunder damage and must succeed on a {@dc 24} Constitution saving throw or have the {@condition stunned} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fog of Deception", + "body": [ + "The scion conjures a magical cloud that fills a 30-foot-radius sphere centered on a point it can see within 90 feet of itself. Each creature in that area must make a {@dc 24} Wisdom saving throw. On a failed save, a creature has the {@condition charmed} condition until the end of its next turn. While it has the {@condition charmed} condition, the creature must use its action to make a melee attack against a creature other than itself of the scion's choice. If no creature is within its reach, the affected creature makes a ranged attack against a creature of the scion's choice, throwing its weapon if necessary. On a successful save, a creature is immune to the scion's Fog of {@skill Deception} for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Scion of Memnor-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Scion of Skoraeus", + "source": "BGG", + "page": 169, + "size_str": "Gargantuan", + "maintype": "giant", + "alignment": "Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 444, + "formula": "24d20 + 192", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 29, + "dexterity": 20, + "constitution": 26, + "intelligence": 19, + "wisdom": 24, + "charisma": 14, + "passive": 24, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+12", + "wis": "+14" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Legendary Resistance (6/Day)", + "body": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The scion has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The scion deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scion makes one Crystal Club attack and two Slam attacks, then uses Entombing Grasp if available. Alternatively, the scion makes two Runic Boulder attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crystal Club", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 30 ft., one target. {@h}35 ({@damage 4d12 + 9}) bludgeoning damage. {@hom}The scion can cause the club to flare with bright light, and the target must succeed on a {@dc 22} Constitution saving throw or take 18 ({@damage 4d8}) radiant damage and have the {@condition blinded} condition until the start of the scion's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 16} to hit, reach 20 ft., one target. {@h}31 ({@damage 4d10 + 9}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Runic Boulder", + "body": [ + "{@atk rw} {@hit 16} to hit, range 120/480 ft., one target. {@h}27 ({@damage 4d8 + 9}) bludgeoning damage. {@hom}The boulder explodes. The target and each creature within 30 feet of it must make a {@dc 22} Dexterity saving throw. On a failed save, a creature takes 19 ({@damage 3d12}) force damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entombing Grasp {@recharge}", + "body": [ + "The scion wreathes its hand in petrifying magic and touches one Huge or smaller creature it can see within 20 feet of itself. The target must succeed on a {@dc 24} Dexterity saving throw or take 28 ({@damage 8d6}) force damage and have the {@condition grappled} condition (escape {@dc 19}). At the start of the scion's next turn, if the target is still {@condition grappled}, the target has the {@condition petrified} condition." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Earth-Shaking Movement", + "body": [ + "The scion moves up to its speed and then sends a shock wave through the ground in a 60-footradius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 24} Constitution saving throw or lose {@status concentration}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Scion of Skoraeus-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Scion of Stronmaus", + "source": "BGG", + "page": 171, + "size_str": "Gargantuan", + "maintype": "giant", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 656, + "formula": "32d20 + 320", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 80, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "27", + "xp": 105000, + "strength": 30, + "dexterity": 20, + "constitution": 30, + "intelligence": 26, + "wisdom": 28, + "charisma": 24, + "passive": 27, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 17, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+13", + "int": "+16" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Flyby", + "body": [ + "The scion doesn't provoke opportunity attacks when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (6/Day)", + "body": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The scion has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The scion deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scion makes one attack using Lightning Sword or Hailstone, as well as two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Sword", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 30 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage plus 22 ({@damage 4d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hailstone", + "body": [ + "{@atk rw} {@hit 18} to hit, range 120/480 ft., one target. {@h}32 ({@damage 4d10 + 10}) bludgeoning damage plus 18 ({@damage 4d8}) cold damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Vengeful Storm {@recharge}", + "body": [ + "The scion conjures a churning storm cloud in a 30-foot-radius, 10-foot-tall cylinder centered on a point within 120 feet of itself. The cloud's area is heavily obscured. The cloud lasts for 1 minute, until the scion dies, or when the scion uses this bonus action again.", + "When the cloud appears, and as a bonus action on later turns, the scion can move the cloud up to 30 feet and cause one of the following effects in a 30-foot-radius, 120-foot-high cylinder directly below it; the scion can't choose the same effect two rounds in a row:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Acid Rain", + "body": [ + "The cloud rains acid. Each creature in the cylinder must succeed on a {@dc 25} Constitution saving throw or be covered in acid for 1 minute or until a creature uses its action to remove the acid from itself or another creature. A creature covered in the acid takes 26 ({@damage 4d12}) acid damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Storm", + "body": [ + "Shards of ice pelt down, and freezing wind fills the area. Each creature in the cylinder must succeed on a {@dc 25} Dexterity saving throw or take 28 ({@damage 8d6}) cold damage and be hindered by ice formations for 1 minute or until it or another creature within reach of it uses an action to break away the ice. A creature hindered by ice has its speed reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Bolts", + "body": [ + "Bolts of lightning strike down. Each creature in the cylinder must succeed on {@dc 25} Dexterity saving throw or take 18 ({@damage 4d8}) lightning damage and have the {@condition stunned} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Scion of Stronmaus-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Scion of Surtur", + "source": "BGG", + "page": 173, + "size_str": "Gargantuan", + "maintype": "giant", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 546, + "formula": "28d20 + 252", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 30, + "dexterity": 17, + "constitution": 28, + "intelligence": 21, + "wisdom": 24, + "charisma": 20, + "passive": 25, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Legendary Resistance (6/Day)", + "body": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The scion has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The scion deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scion makes one attack using Lava Blade or Lava Ball, as well as two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lava Blade", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 30 ft., one target. {@h}32 ({@damage 4d10 + 10}) slashing damage plus 18 ({@damage 4d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lava Ball", + "body": [ + "{@atk rw} {@hit 18} to hit, range 120/480 ft., one target. {@h}29 ({@damage 3d12 + 10}) bludgeoning damage plus 10 ({@damage 3d6}) fire damage, and the target must succeed on a {@dc 26} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 18} to hit, reach 20 ft., one target. {@h}28 ({@damage 4d8 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lava Wave {@recharge 5}", + "body": [ + "The scion emits a wave of lava from its blade, hands, or mouth in a 90-foot cone. Each creature in that area must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 60 ({@damage 11d10}) fire damage and has the {@condition restrained} condition from being embedded in hardening rock. A creature can make a {@dc 25} Strength ({@skill Athletics}) check as an action, freeing itself or a creature within reach from the rock on a success. The rock has AC 17 and 40 hit points, and it is immune to fire, poison, and psychic damage. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Earth-Shaking Movement", + "body": [ + "The scion moves up to its speed and then sends a shock wave through the ground in a 60-foot-radius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 26} Constitution saving throw or lose {@status concentration}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incendiary Smoke", + "body": [ + "The scion causes smoke and white-hot embers to billow from its skin, filling a 30-foot-radius sphere centered on itself that moves with it. While the scion's skin billows smoke, ranged attacks against the scion are made with disadvantage. A creature that moves into the smoke for the first time on a turn or starts its turn there must succeed on a {@dc 25} Constitution saving throw or take 14 ({@damage 4d6}) fire damage. The scion's skin stops billowing smoke after 1 minute, when the scion dies, or when the scion uses this bonus action to stop the smoke." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Scion of Surtur-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Scion of Thrym", + "source": "BGG", + "page": 175, + "size_str": "Gargantuan", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 499, + "formula": "27d20 + 216", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 30, + "dexterity": 16, + "constitution": 27, + "intelligence": 17, + "wisdom": 20, + "charisma": 21, + "passive": 22, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+12", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Legendary Resistance (6/Day)", + "body": [ + "If the scion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The scion has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The scion deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scion makes one Ice Axe and two Slam attacks, or it makes two Glacier Throw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ice Axe", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 30 ft., one target. {@h}36 ({@damage 4d12 + 10}) force damage plus 18 ({@damage 4d8}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 20 ft., one target. {@h}32 ({@damage 4d10 + 10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glacier Throw", + "body": [ + "{@atk rw} {@hit 17} to hit, range 120/480 ft., one target. {@h}36 ({@damage 4d12 + 10}) bludgeoning damage plus 14 ({@damage 4d6}) cold damage, and the target must succeed on a {@dc 25} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glacial Upheaval {@recharge 5}", + "body": [ + "The scion digs its hands into the ground at a point it can see within 30 feet of itself and launches a magically conjured mass of ice into the air. Each creature other than the scion in a 30-foot-radius, 100-foot-high cylinder centered on that point must make a {@dc 25} Dexterity saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) bludgeoning damage plus 19 ({@damage 3d12}) cold damage and is pushed vertically to the top of the cylinder, at which point the creature falls. On a successful save, a creature takes half as much damage and is pushed to the nearest unoccupied space outside the cylinder with no additional effects.", + "At the start of the scion's next turn, a mass of ice plummets to the ground on a point the scion can see within 60 feet of the point the scion dug its hands into. Each creature in a 30-foot-radius, 100-foot-high cylinder centered on that point must succeed on a {@dc 25} Dexterity saving throw or take 18 ({@damage 4d8}) bludgeoning damage plus 18 ({@damage 4d8}) cold damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Earth-Shaking Movement", + "body": [ + "The scion moves up to its speed and sends a shock wave through the ground in a 60-foot-radius circle centered on itself. Each creature on the ground in that area that is {@status concentration||concentrating} must succeed on a {@dc 25} Constitution saving throw or lose {@status concentration}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "titan", + "actions_note": "", + "mythic": null, + "key": "Scion of Thrym-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Spectral Cloud", + "source": "BGG", + "page": 176, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d12 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 24, + "dexterity": 12, + "constitution": 18, + "intelligence": 12, + "wisdom": 17, + "charisma": 16, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Blurred Form", + "body": [ + "Attack rolls against the spectral cloud are made with disadvantage unless the attacker is within 15 feet of the spectral cloud or the spectral cloud is {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The spectral cloud can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spectral cloud makes two Spectral Touch attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Touch", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) force damage plus 10 ({@damage 3d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 20} Constitution saving throw, or its hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0.", + "A Humanoid slain by this attack immediately rises as a miniature spectral cloud (use the {@creature specter} stat block in the Monster Manual). The miniature spectral cloud acts as an ally of its creator but isn't under its control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chilling Winds {@recharge 5}", + "body": [ + "The spectral cloud emits intensely cold wind in a 60-foot line that is 10 feet wide. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, a creature takes 38 ({@damage 7d10}) cold damage and has the {@condition incapacitated} condition for 1 minute. The affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, a creature takes half as much damage only.", + "If a creature's saving throw is successful or the effect ends for it, that creature is immune to this spectral cloud's Chilling Winds for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spectral Cloud-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Spotted Lion", + "source": "BGG", + "page": 177, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 23, + "dexterity": 14, + "constitution": 17, + "intelligence": 5, + "wisdom": 13, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The lion has advantage on an attack roll against a creature if at least one of the lion's allies is within 5 feet of the target and the ally doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage. If the lion moved at least 20 feet straight toward the target immediately before the hit, the target must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition. If the target has the {@condition prone} condition, the lion can make another Rend attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spotted Lion-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Stalker of Baphomet", + "source": "BGG", + "page": 178, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 25, + "dexterity": 17, + "constitution": 22, + "intelligence": 13, + "wisdom": 16, + "charisma": 12, + "passive": 17, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+7" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Giant" + ], + "traits": [ + { + "title": "Labyrinthine Recall", + "body": [ + "The stalker can perfectly recall any path it has traveled." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The stalker has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The stalker makes two Glaive attacks or two Rock attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one target. {@h}18 ({@damage 2d10 + 7}) slashing damage plus 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 11} to hit, range 60/240 ft., one target. {@h}23 ({@damage 3d10 + 7}) bludgeoning damage. If the target is a Large or smaller creature, it must succeed on a {@dc 19} Strength saving throw or have the {@condition prone} condition. After the stalker throws the rock, roll a {@dice d6}; on a roll of 3 or lower, the stalker has no more rocks to throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Erupting Horns {@recharge 5}", + "body": [ + "The stalker causes the earth to churn at a point on the ground it can see within 60 feet of itself. Six horn-shaped stones erupt in a 30-foot-radius, 30-foot-high cylinder centered on that point and then crumble to dust.", + "Each creature in that area must make a {@dc 15} Dexterity saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) piercing damage and is pushed up to 30 feet upward and then falls. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The stalker casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell meld into stone}", + "{@spell stone shape}", + "{@spell wall of stone}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Stalker of Baphomet-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Stone Giant of Evil Earth", + "source": "BGG", + "page": 179, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 137, + "formula": "11d12 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 23, + "dexterity": 13, + "constitution": 22, + "intelligence": 10, + "wisdom": 12, + "charisma": 9, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "con": "+10" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Giant", + "Terran" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes two Thundering Stone Club or Boulder attacks in any combination." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thundering Stone Club", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage. The giant can cause the club to emit a burst of thunderous energy that deals 10 ({@damage 3d6}) thunder damage to each creature, other than the giant, within 30 feet of the target. The club can emit a burst this way only once per turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boulder", + "body": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage, and the target must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition. After the giant throws the boulder, roll a {@dice d6}; on a roll of 3 or lower, the giant has no more boulders to throw." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Unyielding", + "body": [ + "In response to failing a saving throw to avoid being moved, having the {@condition prone} condition, or both, the giant succeeds instead." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Stone Giant of Evil Earth-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Stone Giant Rockspeaker", + "source": "BGG", + "page": 180, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 276, + "formula": "24d12 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 23, + "dexterity": 15, + "constitution": 20, + "intelligence": 19, + "wisdom": 14, + "charisma": 10, + "passive": 17, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+10", + "int": "+9", + "wis": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Giant", + "Terran" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Rune", + "body": [ + "The giant has a stone rune inscribed on a mineral object in its possession. While holding or wearing the object bearing the rune, the giant can use its Prismatic Rays action.", + "The object bearing the rune has AC 18; 30 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a stone rune on an object in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes three Prism Staff attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Prism Staff", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage plus 13 ({@damage 3d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Exploding Geode", + "body": [ + "The giant throws a geode at a point within 60 feet of itself, and the geode explodes in a dazzling flash. Each creature in a 20-foot-radius sphere centered on that point must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 13 ({@damage 3d8}) piercing damage plus 13 ({@damage 3d8}) radiant damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, a creature takes half as much damage only. After the giant throws the geode, roll a {@dice d6}; on a roll of 4 or lower, the giant has no more geodes to throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Prismatic Rays (Requires Stone Rune)", + "body": [ + "The giant's stone rune emits beams of light that form a 60-foot cone. Each creature in that area must make a {@dc 17} Dexterity saving throw. For each creature in that area, roll a {@dice d6} to determine what ray affects it:" + ], + "__dataclass__": "Entry" + }, + { + "title": "1-2: Blazing Red", + "body": [ + "On a failed save, the creature takes 35 ({@damage 10d6}) radiant damage and has the {@condition blinded} condition until the end of the giant's next turn. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + }, + { + "title": "3-4: Dreadful Blue", + "body": [ + "On a failed save, the creature takes 35 ({@damage 10d6}) necrotic damage and has the {@condition frightened} condition until the end of the giant's next turn. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + }, + { + "title": "5-6: Sapping Green", + "body": [ + "On a failed save, the creature takes 35 ({@damage 10d6}) force damage and has the {@condition incapacitated} condition until the end of the giant's next turn. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Stone Giant Rockspeaker-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Storm Crab", + "source": "BGG", + "page": 181, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 155, + "formula": "10d20 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 60, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 23, + "dexterity": 10, + "constitution": 21, + "intelligence": 5, + "wisdom": 14, + "charisma": 9, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "con": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "understands Giant but can't speak" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The crab can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The crab makes two Claw attacks and one Stinger attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}19 ({@damage 3d8 + 6}) bludgeoning damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 16}). The crab has four claws, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stinger", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one creature. {@h}22 ({@damage 3d10 + 6}) piercing damage, and the target must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} and {@condition paralyzed} conditions for 1 minute. The affected creature can repeat the saving throw at the end of each of its turns, ending both the {@condition poisoned} and {@condition paralyzed} conditions on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Water Jet {@recharge 5}", + "body": [ + "The crab exhales water in a 150-foot line that is 10 feet wide. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 27 ({@damage 6d8}) bludgeoning damage, is pushed up to 30 feet from the crab, and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Storm Crab-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Storm Giant Tempest Caller", + "source": "BGG", + "page": 182, + "size_str": "Huge", + "maintype": "giant", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 310, + "formula": "27d12 + 135", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 29, + "dexterity": 14, + "constitution": 20, + "intelligence": 21, + "wisdom": 18, + "charisma": 25, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+15", + "con": "+11", + "wis": "+10", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Giant", + "Primordial" + ], + "traits": [ + { + "title": "Alert", + "body": [ + "The giant can't be surprised, and it has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amphibious", + "body": [ + "The giant can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the giant fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scrying (Requires Storm Rune)", + "body": [ + "The giant can use its crystal ball to cast the {@spell scrying} spell (save {@dc 17})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Storm Rune", + "body": [ + "The giant has a storm rune inscribed on a crystal ball. While the object bearing the rune is embedded in its body, the giant can use its Tempest Call action and its Scrying trait.", + "The object bearing the storm rune has AC 17; 50 hit points; and immunity to necrotic, poison, and psychic damage. The object regains all its hit points at the end of every turn, but it turns to dust if reduced to 0 hit points or when the giant dies. If the rune is destroyed, the giant can inscribe a storm rune on another crystal ball in its possession when it finishes a short or long rest." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The giant makes three Lightning Blade or Lightning Lance attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Blade", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) slashing damage plus 16 ({@damage 3d10}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Lance", + "body": [ + "{@atk rs} {@hit 13} to hit, range 500 ft., one target. {@h}39 ({@damage 5d12 + 7}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tempest Call (Requires Storm Rune)", + "body": [ + "The giant creates an elemental vortex that fills a 60-foot-radius sphere centered on itself. Each creature in that area other than the giant must make a {@dc 21} Dexterity saving throw. On a failed save, a creature takes 43 ({@damage 8d8 + 7}) damage of a type of the giant's choosing: cold, lightning, or thunder. On a successful save, a creature takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The giant casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}, {@hit 13} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell control water}", + "{@spell control weather} (as an action)", + "{@spell dispel magic}", + "{@spell plane shift}", + "{@spell sending}", + "{@spell time stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sorcerer", + "actions_note": "", + "mythic": null, + "key": "Storm Giant Tempest Caller-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Storm Herald", + "source": "BGG", + "page": 183, + "size_str": "Huge", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 287, + "formula": "23d12 + 138", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 100, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 27, + "dexterity": 14, + "constitution": 22, + "intelligence": 24, + "wisdom": 18, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+10", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Giant", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The herald can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The herald has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The herald makes one Claw attack, one Tentacles attack, and one Trident attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 8}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 18}). It also has the {@condition restrained} condition and takes 16 ({@damage 3d10}) psychic damage at the start of each of its turns until this grapple ends. The herald can have only one creature {@condition grappled} this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 10 ft., one target. {@h}18 ({@damage 3d6 + 8}) piercing damage or 21 ({@damage 3d8 + 8}) piercing damage if used with two hands, plus 13 ({@damage 3d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Wave {@recharge}", + "body": [ + "The herald unleashes a blast of psionic energy into the minds of up to three creatures it can see within 90 feet of itself. Each target must make a {@dc 21} Intelligence saving throw. On a failed save, a target takes 23 ({@damage 3d10 + 7}) psychic damage and has the {@condition stunned} condition for 1 minute. On a successful save, a target takes half as much damage only. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "If a creature is reduced to 0 hit points by this psychic damage, it dies and its head explodes if it has one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The herald casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell control water}", + "{@spell control weather} (as an action)", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Storm Herald-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Tempest Spirit", + "source": "BGG", + "page": 184, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "17d12 + 85", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 24, + "dexterity": 14, + "constitution": 20, + "intelligence": 16, + "wisdom": 18, + "charisma": 19, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "int": "+8", + "wis": "+9", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Giant" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The spirit can move through other creatures and objects as if they were difficult terrain. The spirit takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the spirit fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spirit makes two Lightning Fist or Hailstone attacks in any combination." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Fist", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}25 ({@damage 4d8 + 7}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hailstone", + "body": [ + "{@atk rw} {@hit 12} to hit, range 90/180 ft., one target. {@h}17 ({@damage 3d6 + 7}) bludgeoning damage plus 7 ({@damage 2d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Bolt {@recharge 5}", + "body": [ + "The spirit hurls a magical lightning bolt in a 120-foot line that is 10 feet wide. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 27 ({@damage 6d8}) lightning damage plus 16 ({@damage 3d10}) necrotic damage on a failed save, or half as much damage on a successful one. On a success or failure, an affected creature's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the creature finishes a long rest. The creature dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Hailstorm {@recharge 4}", + "body": [ + "The spirit conjures a hailstorm in a 20-foot-radius, 40-foot-high cylinder centered on a point it can see within 120 feet of itself. Each creature in that area must make a {@dc 17} Dexterity saving throw. On a failed save, a creature takes 10 ({@damage 3d6}) bludgeoning damage plus 10 ({@damage 3d6}) cold damage and has the {@condition prone} condition. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tempest Spirit-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Titanothere", + "source": "BGG", + "page": 185, + "size_str": "Huge", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "13d12 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 25, + "dexterity": 10, + "constitution": 19, + "intelligence": 2, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "traits": [ + { + "title": "Beast of Burden", + "body": [ + "The titanothere is considered to be one size larger for the purpose of determining its carrying capacity." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage. If the titanothere moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 13 ({@damage 3d8}) bludgeoning damage, and the target must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition if it is a creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Titanothere-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Troll Amalgam", + "source": "BGG", + "page": 186, + "size_str": "Gargantuan", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 217, + "formula": "14d20 + 70", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 60, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 25, + "dexterity": 14, + "constitution": 21, + "intelligence": 9, + "wisdom": 16, + "charisma": 5, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+11", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Giant", + "Undercommon" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the amalgam fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The amalgam has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The amalgam regains 15 hit points at the start of its turn. If the amalgam takes acid or fire damage, it regains only 5 hit points at the start of its next turn. The amalgam dies only if it takes 20 or more acid or fire damage while it has 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The amalgam makes three Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}25 ({@damage 4d8 + 7}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Fling Limb (3/Day)", + "body": [ + "{@atk rw} {@hit 13} to hit, range 60/240 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage. If the limb hits a Medium or smaller creature, that creature has the {@condition grappled} condition (escape {@dc 17}). The limb has the statistics of a troll amalgam, except for the following: it is Medium, it has 45 hit points, its speed is 30 ft., it doesn't have a challenge rating or Legendary Resistance, and the only action it can take is the Attack action, which it can use only to grapple.", + "Until this grapple ends, the target has the {@condition restrained} condition and takes 25 ({@damage 4d8 + 7}) slashing damage at the start of each of its turns. If the limb is not destroyed within 24 hours of being flung, roll a {@dice d12}; on a roll of 12, the limb regenerates into a troll (see the Monster Manual). Otherwise, the limb withers away." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Troll Amalgam-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Troll Mutate", + "source": "BGG", + "page": 187, + "size_str": "Large", + "maintype": "giant", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d10 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(winged form only)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 13, + "constitution": 18, + "intelligence": 17, + "wisdom": 9, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+6" + }, + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Giant", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Mutation", + "body": [ + "When the troll mutate is created, it gains one of four possible body mutations at random: 1, Elastic Body; 2, Psionic Mirror; 3, Spell Scarred; or 4, Winged Form. This mutation determines certain traits in this stat block." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amorphous (Elastic Body Only)", + "body": [ + "The mutate can move through a space as narrow as 1 inch without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance (Spell Scarred Only)", + "body": [ + "The mutate has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Rebuke (Psionic Mirror Only)", + "body": [ + "If the mutate takes psychic damage, each creature within 20 feet of it takes that damage as well." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The mutate regains 10 hit points at the start of its turn. If the mutate takes acid or fire damage, this trait doesn't function at the start of the mutate's next turn. The mutate dies only if it starts its turn with 0 hit points and doesn't regenerate. If the mutate starts its turn with 0 hit points and regenerates, it randomly gains a mutation it doesn't already have (up to a maximum of four mutations)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mutate makes two Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft. (or 15 ft. if the mutate has the Elastic Body mutation), one target. {@h}15 ({@damage 2d10 + 4}) slashing damage plus 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Burst {@recharge 5}", + "body": [ + "The mutate unleashes a wave of psychic energy. Each creature within 30 feet of the mutate must make a {@dc 14} Intelligence saving throw, taking 28 ({@damage 8d6}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Troll Mutate-BGG", + "__dataclass__": "Monster" + }, + { + "name": "Aberrant Zealot", + "source": "PaBTSO", + "page": 203, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "17d8 + 17", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 15, + "dexterity": 18, + "constitution": 12, + "intelligence": 13, + "wisdom": 8, + "charisma": 19, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft.", + "truesight 10 ft." + ], + "languages": [ + "Common", + "Deep Speech" + ], + "traits": [ + { + "title": "Aberrant Form", + "body": [ + "The zealot exudes the chaos of the Far Realm. Any non-Aberration creature that starts its turn within 5 feet of the zealot must succeed on a {@dc 15} Wisdom saving throw or take 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Weirdly Pliable", + "body": [ + "The zealot, along with any equipment it is wearing or carrying, is unnaturally flexible. The zealot can move through any space as narrow as 1 inch without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zealot makes one Psychic Rend attack and two Shortsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Rend", + "body": [ + "{@atk ms,rs} {@hit 7} to hit, reach 15 ft. or range 120 ft., one target. {@h}14 ({@damage 3d6 + 4}) psychic damage, and the target must succeed on a {@dc 15} Wisdom saving throw or have the {@condition stunned} condition until the start of the zealot's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Void Warp {@recharge 5}", + "body": [ + "The zealot teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself, leaving a churning void in the space it left. Immediately after it teleports, each creature within 30 feet of the void other than the zealot must make a {@dc 15} Strength saving throw. On a failed save, a creature takes 18 ({@damage 4d8}) force damage and is pulled to the unoccupied space closest to the void. On a successful save, the creature takes half as much damage only. The void then disappears." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The zealot casts one of the following spells, requiring no components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell arcane gate}", + "{@spell hunger of Hadar}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aberrant Zealot-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Cloaker Mutate", + "source": "PaBTSO", + "page": 212, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 143, + "formula": "22d10 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 15, + "constitution": 12, + "intelligence": 18, + "wisdom": 13, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 60 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Avoidance", + "body": [ + "If the mutate is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw, and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Light Sensitivity", + "body": [ + "While in bright light, the mutate has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mutate makes one Corpse Swipe attack and two Tail attacks, or it makes four Tail attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Corpse Swipe", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}20 ({@damage 3d10 + 4}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature can't regain hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Phantasmal Duplicates", + "body": [ + "The mutate magically projects up to four illusory copies of itself. These duplicates make it difficult to ascertain the mutate's true location and last until the end of the mutate's next turn. While the copies exist, attack rolls against the mutate are made with disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Moan {@recharge}", + "body": [ + "The mutate lets out a moan charged with psychic energy. Each creature within 60 feet of the mutate that isn't an Aberration must succeed on a {@dc 16} Wisdom saving throw or take 17 ({@damage 5d6}) psychic damage and have the {@condition frightened} condition until the end of the mutate's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cloaker Mutate-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Dwarf Skeleton", + "source": "PaBTSO", + "page": 123, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 26, + "formula": "4d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 16, + "dexterity": 10, + "constitution": 15, + "intelligence": 6, + "wisdom": 8, + "charisma": 5, + "passive": 9, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Dwarvish but can't speak" + ], + "traits": [ + { + "title": "Sure-Footed", + "body": [ + "The skeleton has advantage on Strength and Dexterity saving throws made against effects that make it have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Battleaxe", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dwarf Skeleton-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Encephalon Cluster", + "source": "PaBTSO", + "page": 205, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "17d10 + 17", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 23, + "dexterity": 10, + "constitution": 13, + "intelligence": 5, + "wisdom": 17, + "charisma": 7, + "passive": 13, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the cluster fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The cluster has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cluster makes two Slam attacks. It can replace one of these attacks with Spawn Progeny if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) bludgeoning damage plus 10 ({@damage 3d6}) psychic damage, and if the target is a creature, the target must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition. If this attack reduces the target to 0 hit points, the target immediately dies and is consumed by the cluster." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spawn Progeny (Recharges after a Short or Long Rest)", + "body": [ + "The cluster bulges and spews {@dice 1d4} mature eggs. Each egg lands in an unoccupied space of the cluster's choice within 30 feet of itself and immediately transforms into an {@creature encephalon gemmule|PaBTSO}. The gemmules obey the cluster's commands and take their turns immediately after it." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Aggressive Hunger", + "body": [ + "Immediately after being hit by an attack, the cluster moves up to its speed toward the attacker. This movement doesn't provoke opportunity attacks. If the cluster ends this movement within 5 feet of the attacker, it then makes one Slam attack against that attacker." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Encephalon Cluster-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Encephalon Gemmule", + "source": "PaBTSO", + "page": 206, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 54, + "formula": "12d4 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 1, + "dexterity": 18, + "constitution": 14, + "intelligence": 5, + "wisdom": 12, + "charisma": 7, + "passive": 11, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "Encephalon Progeny", + "body": [ + "The gemmule matures into an encephalon cluster if not killed within 30 ({@dice 4d12 + 4}) days of its creation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The gemmule has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Psychic Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}16 ({@damage 3d10}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Leech", + "body": [ + "The gemmule targets one creature within 5 feet of itself and forces the target to make a {@dc 14} Dexterity saving throw. On a failed save, the gemmule enters the target's space and attaches to the target. While the gemmule is attached, the target takes 7 ({@damage 3d4}) piercing damage at the start of each of its turns, and the gemmule can't use Leech again until it detaches. It can detach itself by spending 5 feet of its movement. As an action, the target or a creature within 5 feet of the target can detach the gemmule by succeeding on a {@dc 15} Strength check." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Encephalon Gemmule-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Feral Ashenwight", + "source": "PaBTSO", + "page": 204, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 13, + "constitution": 15, + "intelligence": 4, + "wisdom": 14, + "charisma": 6, + "passive": 12, + "saves": { + "str": "+7", + "con": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ashenwight makes two Necrotic Shard attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Shard", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d6 + 4}) necrotic damage. If the target is a creature, it has disadvantage on the next attack roll it makes before the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Feral Ashenwight-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Fiendish Auger", + "source": "PaBTSO", + "page": 206, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "9d12 + 27", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 23, + "dexterity": 10, + "constitution": 17, + "intelligence": 6, + "wisdom": 12, + "charisma": 5, + "passive": 11, + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "Siege Monster", + "body": [ + "The auger deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The auger can burrow through solid rock at half its burrow speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Flaming Drill", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 7 ({@damage 2d6}) fire damage. If the auger moves at least 20 feet in a straight line toward the target immediately before the hit, the target takes an additional 11 ({@damage 2d10}) piercing damage, and if the target is a creature, it must succeed on a {@dc 17} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Burst of Heat {@recharge 5}", + "body": [ + "The auger releases an intense burst of heat in a 30-foot-radius sphere centered on itself. This heat spreads around corners. Each creature in this area must make a {@dc 17} Constitution saving throw, taking 13 ({@damage 3d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fiendish Auger-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Flesh Meld", + "source": "PaBTSO", + "page": 207, + "size_str": "Huge", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 95, + "formula": "10d12 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 21, + "dexterity": 14, + "constitution": 17, + "intelligence": 7, + "wisdom": 13, + "charisma": 5, + "passive": 11, + "saves": { + "str": "+8", + "dex": "+5" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "languages": [ + "understands all but can't speak" + ], + "traits": [ + { + "title": "Amorphous", + "body": [ + "The flesh meld can move through a space as narrow as 1 inch without squeezing." + ], + "__dataclass__": "Entry" + }, + { + "title": "Aura of Death", + "body": [ + "At the start of each of the flesh meld's turns, each creature within 5 feet of it must succeed on a {@dc 15} Constitution saving throw or take 3 ({@damage 1d6}) necrotic damage and have the {@condition poisoned} condition until the start of the flesh meld's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The flesh meld has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The flesh meld can climb difficult surfaces, including ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The flesh meld makes two Bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 30 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage, and if the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}) and is pulled up to 15 feet toward the flesh meld." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Consume Creature", + "body": [ + "The flesh meld targets one Large or smaller creature within 5 feet of itself that it's grappling. The target must succeed on a {@dc 15} Dexterity saving throw or be swallowed by the flesh meld. The flesh meld can have one creature swallowed at a time.", + "A swallowed creature no longer has the {@condition grappled} condition. While swallowed, it has the {@condition blinded} and {@condition restrained} conditions, has {@quickref Cover||3||total cover} against attacks and other effects outside the flesh meld, and takes 10 ({@damage 3d6}) necrotic damage at the start of each of the flesh meld's turns. If this damage reduces a swallowed creature to 0 hit points, the creature dies, and the flesh meld consumes its body.", + "If the flesh meld takes 30 damage or more on a single turn from the swallowed creature, the flesh meld must succeed on a {@dc 15} Constitution saving throw at the end of that turn or regurgitate the creature, which falls with the {@condition prone} condition in a space within 5 feet of the flesh meld. If the flesh meld dies, the swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 10 feet of movement, exiting with the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Flesh Meld-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Goblin Psi Brawler", + "source": "PaBTSO", + "page": 215, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 31, + "formula": "7d6 + 7", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 17, + "constitution": 12, + "intelligence": 16, + "wisdom": 15, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin", + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Mental Burst", + "body": [ + "When the goblin dies, its pent-up mental energy explodes in a psychic blast. Each creature within 5 feet of it must succeed on a {@dc 13} Intelligence saving throw or take 5 ({@damage 2d4}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mental Fortitude", + "body": [ + "The goblin has advantage on saving throws against effects that would make it have the {@condition charmed} or {@condition frightened} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The goblin makes two Unarmed Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "The goblin takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telekinetic Shove", + "body": [ + "The goblin targets one creature it can see within 30 feet of itself with a thrust of telekinetic force. The target must succeed on a {@dc 13} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Goblin Psi Brawler-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Goblin Psi Commander", + "source": "PaBTSO", + "page": 216, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 58, + "formula": "13d6 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 19, + "constitution": 13, + "intelligence": 17, + "wisdom": 15, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Mental Burst", + "body": [ + "When the goblin dies, its pent-up mental energy explodes in a psychic blast. Each creature within 5 feet of it must succeed on a {@dc 13} Intelligence saving throw or take 10 ({@damage 4d4}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mental Fortitude", + "body": [ + "The goblin has advantage on saving throws against effects that would make it have the {@condition charmed} or {@condition frightened} conditions." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The goblin makes three Psychic Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Blade", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 60 ft., one creature. {@h}11 ({@damage 2d6 + 4}) psychic damage, and the target must subtract {@dice 1d4} from the next attack roll or saving throw it makes before the end of the goblin's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Synaptic Rend {@recharge 5}", + "body": [ + "The goblin unleashes a 30-foot-radius sphere of psychic energy, centered on a point the goblin can see within 60 feet of itself. Each creature in that area must make a {@dc 13} Intelligence saving throw. On a failed save, a creature takes 14 ({@damage 4d6}) psychic damage and has the {@condition incapacitated} condition until the end of the goblin's next turn. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "The goblin takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Psionic Shield", + "body": [ + "When the goblin or one of its allies within 15 feet of it is hit by an attack roll, the goblin conjures a shield of force. The target of the attack gains a +3 bonus to its AC against the triggering attack roll, potentially causing it to miss." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The goblin casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell dissonant whispers}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Goblin Psi Commander-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Grell Psychic", + "source": "PaBTSO", + "page": 145, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "12d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 17, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 11, + "charisma": 14, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "Deep Speech", + "Grell" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The grell psychic makes one Tentacle attack and one Beak attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 3d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage, and the target must succeed on a {@dc 11} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While the target is {@condition poisoned}, it also has the {@condition paralyzed} condition. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The target also has the {@condition grappled} condition (escape {@dc 16}). While grappling the target, the grell can't make Tentacle attacks against other targets. When the grell moves, any Medium or smaller target it is grappling moves with it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The grell psychic casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell mage armor}", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion}", + "{@spell fear}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grell Psychic-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Humanoid Mutate", + "source": "PaBTSO", + "page": 212, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Any", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 18, + "constitution": 14, + "intelligence": 11, + "wisdom": 13, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the mutate has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mutate makes two Unarmed Strike or Nightmare Blast attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nightmare Blast", + "body": [ + "{@atk rw} {@hit 6} to hit, range 60 ft., one creature. {@h}7 ({@damage 2d6}) psychic damage, and the target must succeed on a {@dc 12} Wisdom saving throw or have the {@condition frightened} condition until the start of the mutate's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Defensive Flight", + "body": [ + "Immediately after taking damage, the mutate flies up to its speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Humanoid Mutate-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Iarno \"Glasstaff\" Albrek", + "source": "PaBTSO", + "page": 43, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 16, + "condition": "with {@spell mage armor} and {@item staff of defense|PaBTSO}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor} and {@item staff of defense|PaBTSO})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 9, + "dexterity": 14, + "constitution": 11, + "intelligence": 17, + "wisdom": 12, + "charisma": 11, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+3" + }, + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Elvish" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Glasstaff wields a {@item staff of defense|PaBTSO} (see appendix B). With the staff in hand, he can use an action to cast the {@spell mage armor} spell and use his reaction to cast the {@spell shield} spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Glasstaff makes two Shocking Burst attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shocking Burst", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}6 ({@damage 1d6 + 3}) lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Teleport (2/Day)", + "body": [ + "Glasstaff magically teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Glasstaff casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell light}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell hold person}", + "{@spell magic missile}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, wizard", + "actions_note": "", + "mythic": null, + "key": "Iarno \"Glasstaff\" Albrek-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Infected Elder Brain", + "source": "PaBTSO", + "page": 159, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 10, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 15, + "dexterity": 10, + "constitution": 20, + "intelligence": 21, + "wisdom": 19, + "charisma": 20, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+8", + "cha": "+9" + }, + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "telepathy 1 mile; understands Common", + "Deep Speech", + "and Undercommon but can't speak" + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The elder brain is aware of creatures within 1 mile of itself that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The elder brain has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Hub", + "body": [ + "The elder brain can use its telepathy to initiate and maintain telepathic conversations with up to ten creatures at a time. The elder brain can let those creatures telepathically hear each other while connected in this way." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The elder brain makes two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 30 ft., one target. {@h}15 ({@damage 3d8 + 2}) bludgeoning damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}) and takes 9 ({@damage 1d8 + 5}) psychic damage at the start of each of its turns until the grapple ends. The elder brain can have up to four targets {@condition grappled} at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "Creatures of the elder brain's choice within 60 feet of itself must succeed on a {@dc 17} Intelligence saving throw or take 32 ({@damage 5d10 + 5}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Psychic Link", + "body": [ + "The elder brain targets one creature with the {@condition incapacitated} condition that the elder brain senses with its Creature Sense trait and establishes a psychic link with the target. Until the link ends, the elder brain can perceive everything the target senses. The target becomes aware that something is linked to its mind once it no longer has the {@condition incapacitated} condition, and the elder brain can terminate the link at any time (no action required). The target can use an action on its turn to attempt to break the link, doing so with a successful {@dc 17} Charisma check. If the target breaks the link this way, the target takes 10 ({@damage 3d6}) psychic damage. The link also ends if the target and the elder brain are more than 1 mile apart. The elder brain can form psychic links with up to ten creatures at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The elder brain casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "mind flayer", + "actions_note": "", + "mythic": null, + "key": "Infected Elder Brain-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Intellect Snare", + "source": "PaBTSO", + "page": 208, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 99, + "formula": "18d6 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 45, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 13, + "dexterity": 18, + "constitution": 15, + "intelligence": 23, + "wisdom": 17, + "charisma": 11, + "passive": 13, + "saves": { + "int": "+9", + "wis": "+6", + "cha": "+3" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft. (can't see beyond this radius)" + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Cacophony of Minds", + "body": [ + "Any creature that starts its turn within 30 feet of the intellect snare must succeed on a {@dc 17} Wisdom saving throw or have the {@condition incapacitated} condition for 1 minute. An {@condition incapacitated} creature can repeat the saving throw at the start of each of its turns, ending the effect on itself on a success. A creature that succeeds on the saving throw is immune to this intellect snare's Cacophony of Minds for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The intellect snare has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The intellect snare makes two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 15 ft., one target. {@h}10 ({@damage 1d8 + 6}) force damage, and if the target is a Medium or smaller creature, the target has the {@condition grappled} condition (escape {@dc 17})." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Siphon Thoughts", + "body": [ + "The intellect snare targets one creature it is grappling. The target must make a {@dc 17} Intelligence saving throw, taking 21 ({@damage 6d6}) psychic damage on a failed save, or half as much damage on a successful one. The intellect snare then regains a number of hit points equal to the amount of damage taken." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Intellect Snare-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Lowarnizel", + "source": "PaBTSO", + "page": 181, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 168, + "formula": "16d10 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 21, + "dexterity": 12, + "constitution": 21, + "intelligence": 18, + "wisdom": 15, + "charisma": 19, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "force", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "Lowarnizel can breathe both air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Lowarnizel makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 4 ({@damage 1d8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Singularity Breath {@recharge 5}", + "body": [ + "Lowarnizel creates a shining bead of gravitational force, then releases the energy in a 30-foot cone. Each creature in that area must make a {@dc 17} Strength saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage, and its speed becomes 0 until the start of the dragon's next turn. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "Lowarnizel magically transforms into any creature that is Medium or Small, while retaining his game statistics (other than his size). This transformation ends if the dragon is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "Lowarnizel casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell haste}", + "{@spell protection from evil and good}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "young gem", + "actions_note": "", + "mythic": null, + "key": "Lowarnizel-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Mind Flayer Clairvoyant", + "source": "PaBTSO", + "page": 209, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 156, + "formula": "24d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 11, + "dexterity": 12, + "constitution": 15, + "intelligence": 21, + "wisdom": 17, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+7", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 15 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the mind flayer fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mind flayer makes two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}21 ({@damage 3d10 + 5}) psychic damage. If the target is Medium or smaller, it has the {@condition grappled} condition (escape {@dc 17}) and must succeed on a {@dc 17} Intelligence saving throw or have the {@condition incapacitated} condition until the grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition incapacitated} Humanoid {@condition grappled} by the mind flayer. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills it by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unleash Void {@recharge 5}", + "body": [ + "The mind flayer opens a rift into the Far Realm, centered on a point the mind flayer can see within 60 feet of itself, and a tentacle lashes across creatures near the rift. Each creature other than mind flayers within 30 feet of the rift must make a {@dc 17} Intelligence saving throw, after which the tentacle disappears and the rift closes. On a failed save, a creature takes 18 ({@damage 4d8}) cold damage from the rift plus 18 ({@damage 4d8}) psychic damage from the tentacle and has the {@condition stunned} condition for 1 minute. On a successful save, a creature takes half as much damage only. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Warp Reality", + "body": [ + "When hit by an attack roll, the mind flayer gains a +4 bonus to its AC against that attack roll, potentially causing it to miss. Then the mind flayer, along with any equipment it is wearing or carrying, magically teleports up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The mind flayer casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell clairvoyance} (as an action)", + "{@spell dispel magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mind Flayer Clairvoyant-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Mind Flayer Prophet", + "source": "PaBTSO", + "page": 210, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 15, + "dexterity": 14, + "constitution": 14, + "intelligence": 20, + "wisdom": 17, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+6", + "cha": "+6" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Awareness", + "body": [ + "The mind flayer has advantage on initiative rolls and can't be surprised as long as it doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The mind flayer has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Tentacles", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}16 ({@damage 2d10 + 5}) psychic damage. If the target is Medium or smaller, it has the {@condition grappled} condition (escape {@dc 16}) and must succeed on a {@dc 16} Intelligence saving throw or have the {@condition stunned} condition until the grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one Humanoid {@condition grappled} by the mind flayer. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, the mind flayer kills it by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Whip {@recharge 5}", + "body": [ + "The mind flayer lashes out with psychic energy, targeting up to two creatures it can see within 60 feet of itself. Each target must succeed on a {@dc 16} Intelligence saving throw or take 23 ({@damage 4d8 + 5}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The mind flayer casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell levitate}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)", + "{@spell true seeing}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mind Flayer Prophet-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Nezznar the Spider", + "source": "PaBTSO", + "page": 74, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 11, + { + "ac": 14, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 14, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "6d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 9, + "dexterity": 13, + "constitution": 10, + "intelligence": 16, + "wisdom": 14, + "charisma": 13, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Elvish", + "Undercommon" + ], + "traits": [ + { + "title": "Special Equipment", + "body": [ + "Nezznar has a fully charged {@item spider staff|lmop} (see appendix B)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fey Ancestry", + "body": [ + "Nezznar has advantage on saving throws to avoid or end the {@condition charmed} condition on himself, and magic can't put him to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "Nezznar has disadvantage on attack rolls while he or his target is in sunlight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Nezznar makes two Poison Blast attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Blast", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one creature. {@h}9 ({@damage 2d8}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Nezznar casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13} unless otherwise noted):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell mage hand}", + "{@spell spider climb} (from spider staff)", + "{@spell web} (from spider staff; save {@dc 15})" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell darkness}", + "{@spell faerie fire}", + "{@spell invisibility}", + "{@spell mage armor}", + "{@spell magic missile}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf, wizard", + "actions_note": "", + "mythic": null, + "key": "Nezznar the Spider-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Oculorb", + "source": "PaBTSO", + "page": 214, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 127, + "formula": "15d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 13, + "dexterity": 10, + "constitution": 17, + "intelligence": 14, + "wisdom": 15, + "charisma": 19, + "passive": 20, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "wis": "+6", + "cha": "+8" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The oculorb has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Watchful Eyes", + "body": [ + "The oculorb has advantage on initiative rolls and can't be surprised." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The oculorb makes two Dreadful Contact attacks or four Eye Beam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Contact", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}14 ({@damage 3d6 + 4}) psychic damage, or 25 ({@damage 6d6 + 4}) psychic damage if the target has the {@condition frightened} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eye Beam", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}14 ({@damage 3d6 + 4}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Antipathic Flood {@recharge 5}", + "body": [ + "The oculorb releases a wave of negative emotions, choosing one of the following options:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Weeping Eyes", + "body": [ + "The oculorb weeps, releasing a wave of crushing despair. Each creature within 30 feet of the oculorb must make a {@dc 16} Constitution saving throw. On a failed save, a creature's speed is reduced to 0 feet until the end of the oculorb's next turn, and if the creature was {@status concentration||concentrating}, its {@status concentration} is broken." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Glare", + "body": [ + "The oculorb's eyes unleash furious scarlet energy in a 60-foot cone. Each creature in that area must make a {@dc 16} Wisdom saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) necrotic damage and has the {@condition frightened} condition for 1 minute. On a successful save, a creature takes half as much damage and isn't {@condition frightened}. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Obsessive Rebuke", + "body": [ + "When the oculorb is damaged by a creature it can see within 60 feet of itself, it forces the creature to make a {@dc 16} Wisdom saving throw. The creature takes 10 ({@damage 3d6}) psychic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Oculorb-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Oshundo the Alhoon", + "source": "PaBTSO", + "page": 153, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 15, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 11, + "dexterity": 12, + "constitution": 16, + "intelligence": 19, + "wisdom": 17, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+7", + "int": "+8", + "wis": "+7", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "Oshundo has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Oshundo makes two Chilling Grasp or Arcane Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chilling Grasp", + "body": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d6}) cold damage, and Oshundo regains 14 hit points if the target is a creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thundering Blast {@recharge 5}", + "body": [ + "Oshundo emits a wave of domineering energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 22 ({@damage 4d8 + 4}) thunder damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Negate Spell (3/Day)", + "body": [ + "Oshundo targets one creature it can perceive within 60 feet of itself that is casting a spell. If the spell is 3rd level or lower, the spell fails, but any spell slots or charges aren't wasted." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Oshundo casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell disguise self}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell globe of invulnerability}", + "{@spell invisibility}", + "{@spell modify memory}", + "{@spell plane shift} (self only)", + "{@spell wall of force}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "mind flayer, wizard", + "actions_note": "", + "mythic": null, + "key": "Oshundo the Alhoon-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Otyugh Mutate", + "source": "PaBTSO", + "page": 213, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "8d10 + 32", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 11, + "constitution": 18, + "intelligence": 10, + "wisdom": 15, + "charisma": 6, + "passive": 12, + "saves": { + "str": "+7", + "con": "+7" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Otyugh", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Virulent Breath", + "body": [ + "Noxious gas from the mutate's digestion of previous meals spews from its mouth. At the start of the mutate's turn, each creature within 5 feet of it must succeed on a {@dc 15} Constitution saving throw or take 3 ({@damage 1d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mutate makes two Bite or Tentacle attacks. It can replace one of these attacks with Chitin Slam." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw or have the {@condition poisoned} condition. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 ({@dice 1d10}) on a failure. On a successful save, the target is no longer {@condition poisoned}. The target dies if its hit point maximum is reduced to 0. This reduction to the target's hit point maximum lasts until it no longer has the {@condition poisoned} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}) and the {@condition restrained} condition until this grapple ends. The mutate has two tentacles that can grapple one target each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chitin Slam", + "body": [ + "The mutate targets one creature it is grappling, slamming the creature against its chitinous plating. The creature must succeed on a {@dc 15} Constitution saving throw or take 16 ({@damage 3d10}) bludgeoning damage and have the {@condition stunned} condition until the end of the mutate's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Otyugh Mutate-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Psionic Ashenwight", + "source": "PaBTSO", + "page": 204, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 25, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 19, + "dexterity": 13, + "constitution": 15, + "intelligence": 17, + "wisdom": 14, + "charisma": 6, + "passive": 12, + "saves": { + "str": "+7", + "con": "+5", + "int": "+6", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "telepathy 120 ft.", + "understands the languages it knew in life but can't speak" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ashenwight makes two Necrotic Shard attacks. It also uses Psionic Crown if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Shard", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. If the target is a creature, it has disadvantage on the next attack roll it makes before the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psionic Crown {@recharge 5}", + "body": [ + "The ashenwight wreathes the head of a creature it can see within 60 feet of itself with a crown of jagged, spectral crystals. The target must succeed on a {@dc 14} Wisdom saving throw or have the {@condition charmed} condition for 1 minute. While {@condition charmed} in this way, the target's thoughts are sluggish; it can't take reactions, its speed is halved, and it takes 9 ({@damage 2d8}) psychic damage at the start of each of its turns. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The ashenwight casts one of the following spells, requiring no spellcasting components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Psionic Ashenwight-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Qunbraxel", + "source": "PaBTSO", + "page": 135, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 11, + "dexterity": 14, + "constitution": 17, + "intelligence": 19, + "wisdom": 15, + "charisma": 19, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+6", + "cha": "+8" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 60 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "Qunbraxel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Qunbraxel makes two Eldritch Bolt attacks, or one Eldritch Bolt attack and one Tentacle attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d10 + 4}) psychic damage. If the target is Medium or smaller, it has the {@condition grappled} condition (escape {@dc 16}) and must succeed on a {@dc 16} Intelligence saving throw or have the {@condition stunned} condition until the grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one target. {@h}20 ({@damage 3d10 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one Humanoid with the {@condition stunned} condition who is {@condition grappled} by Qunbraxel. {@h}55 ({@damage 10d10}) piercing damage. If this damage reduces the target to 0 hit points, Qunbraxel kills it by extracting and devouring its brain." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "Qunbraxel magically emits psychic energy in a 60-foot cone. Each creature in that area must succeed on a {@dc 16} Intelligence saving throw or take 26 ({@damage 5d8 + 4}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "Qunbraxel casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}", + "{@spell levitate}", + "{@spell mage armor} (self only)", + "{@spell mage hand} (the hand is invisible)", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell confusion}", + "{@spell sending}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell dominate monster}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "mind flayer, warlock", + "actions_note": "", + "mythic": null, + "key": "Qunbraxel-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Redbrand Ruffian", + "source": "PaBTSO", + "page": 216, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 14, + "dexterity": 10, + "constitution": 12, + "intelligence": 9, + "wisdom": 9, + "charisma": 11, + "passive": 9, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Redbrand Ruffian-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Refraction of Ilvaash", + "source": "PaBTSO", + "page": 197, + "size_str": "Huge", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 199, + "formula": "21d12 + 63", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 10, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 17, + "dexterity": 10, + "constitution": 17, + "intelligence": 23, + "wisdom": 20, + "charisma": 22, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+11", + "wis": "+10" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 100 miles", + "Undercommon" + ], + "traits": [ + { + "title": "Creature Sense", + "body": [ + "The refraction is aware of creatures within 100 miles of it that have an Intelligence score of 4 or higher. It knows the distance and direction to each creature, as well as each one's Intelligence score, but can't sense anything else about it. A creature protected by a {@spell mind blank} spell, a {@spell nondetection} spell, or similar magic can't be perceived in this manner." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The refraction can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the refraction fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The refraction has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The refraction makes two Dissonant Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dissonant Claw", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft. or range 120 ft., one creature. {@h}25 ({@damage 3d12 + 6}) psychic damage. If the target is a creature {@status concentration||concentrating} on a spell, its {@status concentration} is broken." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Blast {@recharge 5}", + "body": [ + "Creatures of the refraction's choice within 60 feet of it must succeed on a {@dc 19} Intelligence saving throw or take 33 ({@damage 5d10 + 6}) psychic damage and have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The refraction teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied place that it can see." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Mindbreaker", + "body": [ + "The refraction targets a creature within 120 feet of itself and disrupts its mental processes, causing the target to have disadvantage on all ability checks, attack rolls, and saving throws until the end of the target's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Projected Claw (Costs 2 Actions)", + "body": [ + "The refraction makes one Dissonant Claw attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The refraction casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell modify memory}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell feeblemind}", + "{@spell plane shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "mind flayer", + "actions_note": "", + "mythic": null, + "key": "Refraction of Ilvaash-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Ruxithid the Chosen", + "source": "PaBTSO", + "page": 99, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "{@item chain shirt|phb}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 88, + "formula": "16d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 19, + "constitution": 12, + "intelligence": 18, + "wisdom": 15, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "When Ruxithid fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mental Fortitude", + "body": [ + "Ruxithid has advantage on saving throws against the {@condition charmed} and {@condition frightened} conditions." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Ruxithid makes two Psi-Charged Scimitar attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psi-Charged Scimitar", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Brain Tendrils {@recharge 5}", + "body": [ + "Ruxithid unleashes a flurry of crystalline psychic tendrils from his brain, targeting one creature that he can see within 30 feet of himself. The target must succeed on a {@dc 15} Dexterity saving throw or take 9 ({@damage 2d8}) psychic damage and have the {@condition stunned} condition until the start of Ruxithid's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Combat Command", + "body": [ + "Ruxithid commands one allied creature he can see within 60 feet of himself to strike. The creature can immediately use its reaction to make one melee weapon attack against a target within its reach." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Ruxithid the Chosen-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Sildar Hallwinter", + "source": "PaBTSO", + "page": 22, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 13, + "dexterity": 10, + "constitution": 12, + "intelligence": 10, + "wisdom": 11, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+3", + "con": "+3" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Sildar makes two Longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d8 + 1}) slashing damage, or 6 ({@damage 1d10 + 1}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 2} to hit, range 100/400 ft., one target. {@h}5 ({@damage 1d10}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "When an attacker Sildar can see would hit him with a melee attack, he can roll a {@dice d6} and add the number rolled to his AC against the triggering attack, provided he's wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "human", + "actions_note": "", + "mythic": null, + "key": "Sildar Hallwinter-PaBTSO", + "__dataclass__": "Monster" + }, + { + "name": "Adult Time Dragon", + "source": "MPP", + "page": 50, + "size_str": "Huge", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 250, + "formula": "20d12 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 25, + "dexterity": 14, + "constitution": 23, + "intelligence": 23, + "wisdom": 16, + "charisma": 20, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "con": "+12", + "wis": "+9", + "cha": "+11" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}14 ({@damage 2d6 + 7}) slashing damage plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of shimmering light in a 60-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 20} Constitution saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage, and it has the {@condition poisoned} condition. On a successful save, a creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on three of these saves." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Reactive Rend", + "body": [ + "After using Legendary Resistance or in response to being hit by an attack roll, the dragon makes one Rend attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slow Time", + "body": [ + "Immediately after a creature the dragon can see ends its turn, the dragon targets a creature it can see within 60 feet of itself that is weakened by its Time Breath. Until the weakened effect ends on the target, its speed becomes 0, and its speed can't increase." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Slip", + "body": [ + "The dragon halves the damage it takes from an attack made against it, provided it can see the attacker. The dragon can then immediately teleport, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Adult Time Dragon-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Ancient Time Dragon", + "source": "MPP", + "page": 48, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 22, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 536, + "formula": "29d20 + 232", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 28, + "dexterity": 14, + "constitution": 26, + "intelligence": 27, + "wisdom": 18, + "charisma": 23, + "passive": 30, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 16, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 24, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 20, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+10", + "con": "+16", + "wis": "+12", + "cha": "+14" + }, + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Cycle of Rebirth", + "body": [ + "If the dragon dies, its soul coalesces into a steely egg and teleports to a random plane of existence. The egg is immune to all damage and hatches into a time dragon wyrmling after {@dice 1d100} years. The dragon retains all memories and knowledge it gained in its previous life." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If the dragon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 17} to hit, reach 15 ft., one target. {@h}22 ({@damage 3d8 + 9}) slashing damage plus 10 ({@damage 3d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of shimmering light in a 90-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 24} Constitution saving throw. On a failed save, a creature takes 52 ({@damage 8d12}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage, it has the {@condition poisoned} condition, and other creatures have resistance to all damage it deals. On a successful save, the creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on three of these saves." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Gate (1/Day)", + "body": [ + "The dragon conjures a 20-foot-diameter, circular portal in the space between its horns or in an unoccupied space it can see within 30 feet of itself. The portal links to a precise location on any plane of existence at a point in time up to 8,000 years from the present, whether past or future. The portal lasts for 24 hours or until the dragon's {@status concentration} ends (as if {@status concentration||concentrating} on a spell). The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is transported to the destination, appearing in the unoccupied space nearest to the portal. Deities and other planar rulers can prevent portals created by the dragon from opening in the rulers' presence or anywhere within their domains." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Reactive Rend", + "body": [ + "After using Legendary Resistance or in response to being hit by an attack roll, the dragon makes one Rend attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slow Time", + "body": [ + "Immediately after a creature the dragon can see ends its turn, the dragon targets a creature it can see within 90 feet of itself that is weakened by its Time Breath. Until the weakened effect ends on the target, its speed becomes 0, and its speed can't increase." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Slip", + "body": [ + "The dragon halves the damage it takes from an attack made against it, provided it can see the attacker. The dragon can then immediately teleport, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ancient Time Dragon-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Athar Null", + "source": "MPP", + "page": 53, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 84, + "formula": "13d8 + 26", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 12, + "dexterity": 16, + "constitution": 14, + "intelligence": 15, + "wisdom": 14, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+5" + }, + "languages": [ + "Common plus two more languages" + ], + "traits": [ + { + "title": "Avoidance", + "body": [ + "If the null is subjected to an effect that allows it to make a saving throw to take half as much damage, it instead takes no damage if it succeeds on the saving throw, and half as much damage if it fails." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The null makes two Force Dagger attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Dagger", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 13 ({@damage 3d8}) force damage. {@hom}The dagger magically returns to the null's hand immediately after a ranged attack." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Defier's Whim", + "body": [ + "The null takes the Dash, Disengage, or Use an Object action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Nullify Spell (3/Day)", + "body": [ + "The null utters a magical word of cancelation to interrupt a creature it can see that is casting a spell. If the spell is 3rd level or lower, it fails and has no effect. If the spell is 4th level or higher, the null makes an Intelligence check ({@dc 10} + the spell's level). On a successful check, the spell fails and has no effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Athar Null-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Aurumach Rilmani", + "source": "MPP", + "page": 43, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 285, + "formula": "30d10 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 20, + "dexterity": 21, + "constitution": 18, + "intelligence": 21, + "wisdom": 18, + "charisma": 16, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "int": "+11" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The aurumach makes three Manifested Blade or Gleaming Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Manifested Blade", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}23 ({@damage 4d8 + 5}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gleaming Ray", + "body": [ + "{@atk rs} {@hit 11} to hit, range 120 ft., one target. {@h}24 ({@damage 3d12 + 5}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aura of Blades", + "body": [ + "The aurumach manifests a spectral, golden aura of blades around itself. While this aura is manifested, each creature that starts its turn within 10 feet of the aurumach must make a {@dc 19} Dexterity saving throw, taking 16 ({@damage 3d10}) force damage on a failed save, or half as much damage on a successful one. The aura disappears after 1 minute, when the aurumach has the {@condition incapacitated} condition or dies, or when the aurumach uses a bonus action to end it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invoke Weakness {@recharge 5}", + "body": [ + "The aurumach attempts to use its magic to weaken the defenses of a creature it can see within 120 feet of itself. The target must succeed on a {@dc 19} Wisdom saving throw or become cursed until the end of the aurumach's next turn. The next time the aurumach hits the cursed target with a Manifested Blade or Gleaming Ray attack, the target takes an extra 27 ({@damage 6d8}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The aurumach casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell detect thoughts}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell fly}", + "{@spell geas} (as an action)", + "{@spell slow}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aurumach Rilmani-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Avoral Guardinal", + "source": "MPP", + "page": 32, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Neutral Good", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 172, + "formula": "23d8 + 69", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 50, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 16, + "dexterity": 19, + "constitution": 17, + "intelligence": 16, + "wisdom": 16, + "charisma": 18, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Celestial", + "Common" + ], + "traits": [ + { + "title": "Dive Attack", + "body": [ + "If the avoral is flying, dives at least 30 feet in a straight line toward a Medium or smaller creature, and ends within 5 feet of it, that creature must succeed on a {@dc 15} Strength saving throw or take 14 ({@damage 4d6}) piercing damage and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flyby", + "body": [ + "The avoral doesn't provoke an opportunity attack when it flies out of an enemy's reach." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The avoral makes two Talon attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 13 ({@damage 2d12}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The avoral casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell command}", + "{@spell hold person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Avoral Guardinal-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Baernaloth", + "source": "MPP", + "page": 20, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 256, + "formula": "27d10 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 19, + "dexterity": 14, + "constitution": 18, + "intelligence": 22, + "wisdom": 16, + "charisma": 21, + "passive": 19, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the baernaloth fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The baernaloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The baernaloth makes one Anguishing Bite attack and one Claw attack. It can also use Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Anguishing Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 10 ({@damage 3d6}) psychic damage. If the target is a creature, it can't regain hit points until the start of the baernaloth's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 17 ({@damage 5d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Miasma of Discord {@recharge 5}", + "body": [ + "The baernaloth exhales gray vapors that coalesce at a point it can see within 120 feet of itself. The vapors fill a 20-foot-radius sphere centered on that point, then vanish. Each non-yugoloth creature in that area must make a {@dc 19} Wisdom saving throw. On a failed save, the creature takes 35 ({@damage 10d6}) psychic damage and has the {@condition charmed} condition until the end of its next turn. A creature {@condition charmed} in this way treats its allies as foes, and the colors of its body and equipment become shades of gray. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Yugoloth (1/Day)", + "body": [ + "The baernaloth has a 50 percent chance of summoning its choice of {@dice 1d4} mezzoloths, 1 arcanaloth, or 1 baernaloth (the mezzoloth and arcanaloth appear in the Monster Manual). A summoned yugoloth appears in an unoccupied space within 60 feet of the baernaloth, acts as an ally of the baernaloth, and can't summon other yugoloths. It remains for 1 minute, until it or the baernaloth dies, or until the baernaloth dismisses it as an action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The baernaloth teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Afflict Despair", + "body": [ + "When a creature that the baernaloth can see within 60 feet of itself hits with an attack roll or succeeds on a saving throw, the baernaloth forces the creature to reroll the {@dice d20} and use the new result." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inescapable Pain", + "body": [ + "When the baernaloth is damaged by another creature, that creature must make a {@dc 19} Constitution saving throw, taking 14 ({@damage 4d6}) necrotic damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The baernaloth casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect thoughts}", + "{@spell phantasmal force}", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell cloudkill}", + "{@spell plane shift} (self only)", + "{@spell scrying} (as an action)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Baernaloth-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Bariaur Wanderer", + "source": "MPP", + "page": 21, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 14, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "11d8 + 22", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 11, + "wisdom": 15, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "dex": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Celestial", + "Common" + ], + "traits": [ + { + "title": "Portal Sense", + "body": [ + "The bariaur can sense the presence of portals within 30 feet of itself, including inactive portals, and instinctively knows the destination of each one. The bariaur knows the distance and direction to the last portal it used as long as they're on the same plane." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bariaur makes two Barbed Javelin or Shortbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Barbed Javelin", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage. If the target is a creature, its speed is reduced by 10 feet until the start of the bariaur's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ram", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage. If the bariaur moved at least 20 feet straight toward the target immediately before the hit, the target takes an extra 10 ({@damage 3d6}) bludgeoning damage, and the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 80/320 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, plus 4 ({@damage 1d8}) piercing damage if the target doesn't have all its hit points." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Mighty Leap", + "body": [ + "The bariaur jumps a distance up to its walking speed." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The bariaur casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}", + "{@spell druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell goodberry}", + "{@spell pass without trace}", + "{@spell tongues}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bariaur Wanderer-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Bleak Cabal Void Soother", + "source": "MPP", + "page": 54, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 55, + "formula": "10d8 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 14, + "constitution": 12, + "intelligence": 12, + "wisdom": 15, + "charisma": 10, + "passive": 12, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "wis": "+4" + }, + "languages": [ + "Common plus one more language" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The void soother makes two Mace or Void Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mace", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Void Bolt", + "body": [ + "{@atk rs} {@hit 4} to hit, range 90 ft., one target. {@h}9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Soothing Word (3/Day)", + "body": [ + "The void soother speaks a magical word of mercy, healing one creature it can see within 60 feet of itself. The target regains 4 ({@dice 1d4 + 2}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The void soother casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell guidance}", + "{@spell light}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell calm emotions}", + "{@spell lesser restoration}", + "{@spell remove curse}", + "{@spell protection from energy}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bleak Cabal Void Soother-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Cranium Rat Squeaker", + "source": "MPP", + "page": 22, + "size_str": "Tiny", + "maintype": "aberration", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 2, + "dexterity": 14, + "constitution": 10, + "intelligence": 4, + "wisdom": 11, + "charisma": 8, + "passive": 10, + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "telepathy 30 ft. (emotions only)" + ], + "traits": [ + { + "title": "Shared Telepathy", + "body": [ + "Any creature touching the cranium rat can use the rat's telepathy if the rat allows it. If the creature knows any language, the creature can use the telepathy to communicate words and emotions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Shroud", + "body": [ + "The cranium rat is immune to any effect that would sense its emotions or read its thoughts, as well as to divination spells." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}1 piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Illumination", + "body": [ + "The cranium rat sheds dim light from its exposed brain in a 5-foot radius or extinguishes the light." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cranium Rat Squeaker-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Cranium Rat Squeaker Swarm", + "source": "MPP", + "page": 22, + "size_str": "Medium", + "maintype": "swarm of Tiny aberrations", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "17d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 9, + "dexterity": 14, + "constitution": 10, + "intelligence": 15, + "wisdom": 11, + "charisma": 14, + "passive": 10, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 30 ft." + ], + "languages": [ + "telepathy 30 ft." + ], + "traits": [ + { + "title": "Psychic Messenger", + "body": [ + "The swarm can use its {@spell sending} spell to target someone familiar to a creature in telepathic contact with the swarm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny rat. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Telepathic Shroud", + "body": [ + "The swarm is immune to any effect that would sense its emotions or read its thoughts, as well as to divination spells." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d6}) piercing damage, or 7 ({@damage 2d6}) piercing damage if the swarm has half of its hit points or fewer, plus 22 ({@damage 5d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Illumination", + "body": [ + "The swarm sheds dim light from its brains in a 5-foot radius, increases the illumination to bright light in a 5- to 20-foot radius and dim light for an additional number of feet equal to the chosen radius, or extinguishes the light." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The swarm casts one of the following spells, requiring no spell components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell command} *", + "{@spell detect thoughts} *", + "{@spell sending} *" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell confusion} *", + "{@spell dominate monster} *" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cranium Rat Squeaker Swarm-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Cuprilach Rilmani", + "source": "MPP", + "page": 44, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 12, + "dexterity": 20, + "constitution": 16, + "intelligence": 16, + "wisdom": 15, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "telepathy 120 ft.", + "any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The cuprilach makes three Burnished Blade or Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Burnished Blade", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 13 ({@damage 2d12}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt", + "body": [ + "{@atk rw} {@hit 9} to hit, range 20/60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 13 ({@damage 2d12}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Assassin's Agility", + "body": [ + "The cuprilach takes the Dash or Disengage action, or it makes one Burnished Blade attack." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "The cuprilach halves the damage it takes from an attack that hits it, provided it can see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The cuprilach casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell disguise self}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell alter self}", + "{@spell fog cloud}", + "{@spell silence}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Cuprilach Rilmani-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Dabus", + "source": "MPP", + "page": 23, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 8, + "dexterity": 14, + "constitution": 12, + "intelligence": 16, + "wisdom": 15, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+4" + }, + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands all languages but can't speak; communicates via Symbol Speech" + ], + "traits": [ + { + "title": "Physical Restraint", + "body": [ + "The dabus doesn't make melee attacks or opportunity attacks, even in self-defense." + ], + "__dataclass__": "Entry" + }, + { + "title": "Symbol Speech", + "body": [ + "A dabus communicates by creating illusory symbols and pictures that float in the air in front of itself and disappear a few seconds later. A creature that can see such a message can decipher it with a successful {@dc 10} Intelligence ({@skill Investigation}) check (no action required)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dabus makes two Flying Brick attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flying Brick", + "body": [ + "{@atk rs} {@hit 5} to hit, range 90 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grasping Ground {@recharge}", + "body": [ + "The dabus causes a 20-foot-square area of ground it can see within 60 feet of itself to sprout clutching appendages made of stone. Each creature of the dabus's choice in that area must succeed on a {@dc 13} Dexterity saving throw or take 9 ({@damage 2d8}) bludgeoning damage and have the {@condition grappled} condition (escape {@dc 13}). While {@condition grappled} in this way, the creature has the {@condition restrained} condition. The appendages vanish after 1 minute or if the dabus's {@status concentration} ends (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Dabus-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Darkweaver", + "source": "MPP", + "page": 25, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 50, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 10, + "dexterity": 17, + "constitution": 14, + "intelligence": 17, + "wisdom": 14, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+6" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Shadowy Form", + "body": [ + "While the darkweaver is in dim light or darkness, attack rolls against it are made with disadvantage unless the darkweaver has the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The darkweaver can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "The darkweaver takes 10 radiant damage when it starts its turn in sunlight. While in sunlight, it has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The darkweaver makes two Shadow Web attacks and one Bite attack. It can use Reel after any of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage plus 17 ({@damage 5d6}) necrotic damage, and if the target is a creature, the target's hit point maximum is reduced by an amount equal to the necrotic damage taken. This reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Web", + "body": [ + "{@atk rw} {@hit 7} to hit, reach 120 ft., one creature. {@h}16 ({@damage 3d10}) necrotic damage, and the target has the {@condition grappled} condition (escape {@dc 15}). The shadow web can be attacked and destroyed (AC 16; 20 hit points; vulnerability to radiant damage; immunity to bludgeoning, necrotic, poison, and psychic damage). The darkweaver can grapple up to six creatures at a time using its shadow web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reel", + "body": [ + "The darkweaver pulls each creature it has {@condition grappled} up to 60 feet toward itself." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Darkweaver-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Decaton Modron", + "source": "MPP", + "page": 36, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 144, + "formula": "17d10 + 51", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 12, + "constitution": 16, + "intelligence": 15, + "wisdom": 15, + "charisma": 11, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+5" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The decaton can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Combat Ready", + "body": [ + "The decaton has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the decaton dies, its body disintegrates into dust, leaving behind anything it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The decaton makes three Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the decaton can't use this tentacle against other targets. The decaton has ten tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Rays {@recharge}", + "body": [ + "The decaton unleashes a barrage of lightning bolts from its eyes. Each creature within 30 feet of the decaton must make a {@dc 13} Dexterity saving throw, taking 38 ({@damage 7d10}) lightning damage on a failed save, or half as much damage on a successful save." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The decaton casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Decaton Modron-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Doomguard Doom Lord", + "source": "MPP", + "page": 54, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 202, + "formula": "27d8 + 81", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 20, + "dexterity": 12, + "constitution": 16, + "intelligence": 15, + "wisdom": 14, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+7" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus three more languages" + ], + "traits": [ + { + "title": "Aura of Doom", + "body": [ + "Any creature that starts its turn within 10 feet of the doom lord must make a {@dc 16} Constitution saving throw, taking 18 ({@damage 4d8}) necrotic damage on a failed save, or half as much damage on a successful one. If the doom lord doesn't have the {@condition incapacitated} condition, it can suppress or resume this aura at the start of its turn (no action required)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The doom lord deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The doom lord makes two Entropic Greatsword or Entropic Javelin attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entropic Greatsword", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 10 ({@damage 3d6}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entropic Javelin", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}8 ({@damage 1d6 + 5}) piercing damage plus 14 ({@damage 4d6}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Doomguard Doom Lord-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Doomguard Rot Blade", + "source": "MPP", + "page": 56, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "13d8 + 39", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 12, + "constitution": 16, + "intelligence": 12, + "wisdom": 10, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus two more languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The rot blade makes two Entropic Blade or Entropic Javelin attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entropic Blade", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage plus 7 ({@damage 2d6}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash. {@hom}The rot blade can cause the blade to emit a burst of entropic magic in a 10-foot-radius sphere centered on the weapon. Each creature in that area other than the rot blade must succeed on a {@dc 13} Constitution saving throw or take 6 ({@damage 1d12}) necrotic damage. The blade can emit entropic magic in this way only once per turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Entropic Javelin", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 13 ({@damage 2d12}) necrotic damage. A creature killed by this attack has its body and everything it is wearing or carrying, except for magic items, reduced to ash." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Doomguard Rot Blade-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Eater of Knowledge", + "source": "MPP", + "page": 29, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d10 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 18, + "wisdom": 16, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "int": "+7" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Brains Devoured", + "body": [ + "When the eater of knowledge is first encountered, roll {@dice 1d10} to determine the number of brains it has already consumed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The eater of knowledge has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The eater of knowledge makes two Slam attacks. If both attacks hit the same creature and the target is Large or smaller, it has the {@condition grappled} condition (escape {@dc 14}) and must succeed on a {@dc 15} Intelligence saving throw or have the {@condition stunned} condition until the grapple ends." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Extract Brain", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one Humanoid with the {@condition incapacitated} condition. {@h}45 ({@damage 10d8}) piercing damage. If this damage reduces the target to 0 hit points, the eater of knowledge kills the target by extracting and consuming its brain." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The eater of knowledge casts one of the following spells, requiring no spell components and using Intelligence as its spellcasting ability (spell save {@dc 15}). It must have consumed the requisite number of brains to cast the spell, as indicated:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only, 0 brains)", + "{@spell detect magic} (1 brain)", + "{@spell silent image} (2 brains)", + "{@spell invisibility} (3 brains)", + "{@spell hypnotic pattern} (4 brains)", + "{@spell major image} (5 brains)", + "{@spell telekinesis} (6 brains)", + "{@spell arcane eye} (7 brains)", + "{@spell mislead} (8 brains)", + "{@spell greater invisibility} (9 brains)", + "{@spell mass suggestion} (10 or more brains)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Eater of Knowledge-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Equinal Guardinal", + "source": "MPP", + "page": 33, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Neutral Good", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 93, + "formula": "11d10 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 23, + "dexterity": 16, + "constitution": 17, + "intelligence": 15, + "wisdom": 14, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+6" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Celestial", + "Common" + ], + "traits": [ + { + "title": "Headfirst Charge", + "body": [ + "If the equinal moves at least 30 feet in a straight line toward a creature and ends within 5 feet of it, that creature must succeed on a {@dc 17} Strength saving throw or take 14 ({@damage 4d6}) bludgeoning damage and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The equinal makes two Fist attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fist", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) bludgeoning damage plus 3 ({@damage 1d6}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rock", + "body": [ + "{@atk rw} {@hit 9} to hit, range 60/180 ft., one target. {@h}22 ({@damage 3d10 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 17} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shout {@recharge}", + "body": [ + "The equinal lets out a booming shout. Each creature within 30 feet of the equinal must succeed on a {@dc 14} Constitution saving throw or have the {@condition stunned} condition until the end of the equinal's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Equinal Guardinal-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Farastu Demodand", + "source": "MPP", + "page": 26, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 20, + "dexterity": 13, + "constitution": 16, + "intelligence": 8, + "wisdom": 12, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Demodand", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Boundless Movement", + "body": [ + "The farastu ignores difficult terrain, and magical effects can't reduce its speed. It can spend 5 feet of movement to automatically remove the {@condition grappled} condition from itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The farastu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The farastu can climb difficult surfaces, including upside down on ceilings, without an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The farastu makes two Claw attacks and one Bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}, with disadvantage). The farastu has two claws, each of which can grapple one creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit (with advantage against a creature the farastu is grappling), reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage plus 24 ({@damage 7d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Demodand (1/Day)", + "body": [ + "The farastu has a 40 percent chance of summoning 1 farastu demodand. A summoned demodand appears in an unoccupied space within 60 feet of the farastu, acts as an ally of the farastu, and can't summon other demodands. It remains for 1 minute, until it or the farastu dies, or until the farastu dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The farastu casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell fog cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Farastu Demodand-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Fated Shaker", + "source": "MPP", + "page": 56, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 13, + { + "ac": 16, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 76, + "formula": "17d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 16, + "constitution": 10, + "intelligence": 15, + "wisdom": 16, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+6" + }, + "languages": [ + "Common plus two more languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shaker makes two Golden Rod or Radiant Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Golden Rod", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Commanding Words", + "body": [ + "The shaker speaks magical words to order a creature it can see within 30 feet of itself. The target must succeed on a {@dc 14} Wisdom saving throw or be affected by one of the following effects (choose one or roll a {@dice d4}):", + { + "title": "1-2: Grovel", + "body": [ + "The target takes 14 ({@damage 4d6}) psychic damage, drops whatever it is holding, and has the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "3-4: Cower", + "body": [ + "The target takes 10 ({@damage 3d6}) psychic damage and has the {@condition frightened} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The shaker casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage armor}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell enlarge/reduce}", + "{@spell fly}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fated Shaker-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Ferrumach Rilmani", + "source": "MPP", + "page": 44, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 19, + "dexterity": 14, + "constitution": 18, + "intelligence": 15, + "wisdom": 14, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+8" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "telepathy 120 ft.", + "any two languages" + ], + "traits": [ + { + "title": "Bladed Edges", + "body": [ + "A creature takes 10 ({@damage 3d6}) slashing damage if it starts its turn grappling or being {@condition grappled} by the ferrumach." + ], + "__dataclass__": "Entry" + }, + { + "title": "Skewering Charge", + "body": [ + "If the ferrumach moves at least 20 feet in a straight line toward a Large or smaller creature and ends within 5 feet of it, that creature must succeed on a {@dc 16} Strength saving throw or have the {@condition grappled} condition (escape {@dc 18}) and take 10 ({@damage 3d6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The ferrumach makes three Sharpened Limb or Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sharpened Limb", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d10 + 4}) slashing damage plus 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt", + "body": [ + "{@atk rw} {@hit 8} to hit, range 20/60 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The ferrumach casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell ice storm}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ferrumach Rilmani-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Fraternity of Order Law Bender", + "source": "MPP", + "page": 57, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 137, + "formula": "25d8 + 25", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 8, + "dexterity": 15, + "constitution": 12, + "intelligence": 19, + "wisdom": 16, + "charisma": 14, + "passive": 17, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+7" + }, + "languages": [ + "Common plus three more languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The law bender makes three Arcane Burst attacks and uses Power of Authority or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 8} to hit, reach 5 ft. or range 90 ft., one target. {@h}17 ({@damage 2d12 + 4}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Power of Authority", + "body": [ + "The law bender targets a creature it can see within 60 feet of itself. The target must succeed on a {@dc 16} Intelligence saving throw or take 10 ({@damage 3d6}) psychic damage and have the {@condition incapacitated} condition for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the {@condition incapacitated} condition on itself on a success. A target that succeeds on the saving throw becomes immune to this law bender's Power of Authority for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Spatial Loophole", + "body": [ + "The law bender teleports, along with any equipment it is wearing or carrying, up to 30 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Probability Loophole (3/Day)", + "body": [ + "When the law bender or a creature it can see makes an attack roll, a saving throw, or an ability check, the law bender can cause the roll to be made with advantage or disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The law bender casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dispel magic}", + "{@spell fly}", + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fraternity of Order Law Bender-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Futurist", + "source": "MPP", + "page": 30, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "psychic defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 149, + "formula": "23d8 + 46", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 14, + "dexterity": 17, + "constitution": 15, + "intelligence": 17, + "wisdom": 17, + "charisma": 13, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+6", + "dex": "+7", + "int": "+7", + "wis": "+7" + }, + "senses": [ + "truesight 30 ft." + ], + "languages": [ + "Common", + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes three Unarmed Strike or Psychic Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage plus 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Bolt", + "body": [ + "{@atk rs} {@hit 7} to hit, range 60 ft., one creature. {@h}21 ({@damage 4d8 + 3}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Future Insight (3/Day)", + "body": [ + "When the githzerai or a creature it can see makes an attack roll, a saving throw, or an ability check, the githzerai can cause the roll to be made with advantage or disadvantage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dispel magic}", + "{@spell levitate} (self only)", + "{@spell mage hand} (the hand is invisible)", + "{@spell see invisibility}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell scrying} (as an action)", + "{@spell slow}", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Futurist-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Traveler", + "source": "MPP", + "page": 31, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Any", + "ac": [ + { + "value": 15, + "note": "psychic defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 12, + "dexterity": 15, + "constitution": 12, + "intelligence": 14, + "wisdom": 16, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+3", + "dex": "+4", + "int": "+4", + "wis": "+5" + }, + "languages": [ + "Common", + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes three Unarmed Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d8 + 2}) bludgeoning damage plus 4 ({@damage 1d8}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Matter Manipulation {@recharge 4}", + "body": [ + "The githzerai manipulates the energy of the plane of existence it's on to produce one of the following effects (choose one or roll a {@dice d6}):", + { + "title": "1-2: Astral Step", + "body": [ + "The githzerai can teleport, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see. In addition, its walking speed increases to 40 feet until the start of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "3-4: Growth", + "body": [ + "Flowers and vines grow around the githzerai until the start of its next turn, then vanish; the ground within 15 feet of the githzerai is difficult terrain for other creatures while the flowers and vines are present." + ], + "__dataclass__": "Entry" + }, + { + "title": "5-6: Retaliating Light", + "body": [ + "Multicolored lights surround the githzerai until the start of its next turn. For the effect's duration, whenever a creature within 5 feet of the githzerai hits it with a melee attack roll, that creature takes 3 ({@damage 1d6}) force damage, as magic lashes out in retribution." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell jump}", + "{@spell plane shift} (self only)", + "{@spell see invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Traveler-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Githzerai Uniter", + "source": "MPP", + "page": 31, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "psychic defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 123, + "formula": "19d8 + 38", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 13, + "dexterity": 17, + "constitution": 15, + "intelligence": 15, + "wisdom": 17, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+4", + "dex": "+6", + "int": "+5", + "wis": "+6" + }, + "languages": [ + "Common", + "Gith" + ], + "traits": [ + { + "title": "Psychic Defense", + "body": [ + "While the githzerai is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The githzerai makes three Unarmed Strike or Psychic Bolt attacks. It can replace any of these attacks with one use of its Pacifying Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Bolt", + "body": [ + "{@atk rs} {@hit 6} to hit, range 60 ft., one creature. {@h}17 ({@damage 5d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pacifying Touch", + "body": [ + "The githzerai touches one creature it can see within 5 feet of itself. The target must succeed on a {@dc 14} Intelligence saving throw, or the githzerai chooses an action for that target: Attack, Cast a Spell, or Dash. The affected target can't take that action for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a successful save. A target that succeeds on the saving throw becomes immune to this githzerai's Pacifying Touch for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Psionics)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Psionics)", + "body": [ + "The githzerai casts one of the following spells, requiring no spell components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage hand} (the hand is invisible)", + "{@spell see invisibility}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": "gith", + "actions_note": "", + "mythic": null, + "key": "Githzerai Uniter-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Hands of Havoc Fire Starter", + "source": "MPP", + "page": 58, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 16, + "charisma": 11, + "passive": 13, + "saves": { + "str": "+5", + "con": "+4" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus one more language" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The fire starter makes two Havoc Hammer or Havoc Flask attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Havoc Hammer", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage plus 9 ({@damage 2d8}) fire damage. If the target is a creature, magical flames cling to it, causing it to take 3 ({@damage 1d6}) fire damage at the start of each of its turns. Immediately after taking this damage on its turn, the target can make a {@dc 13} Dexterity saving throw, ending the effect on itself on a successful save." + ], + "__dataclass__": "Entry" + }, + { + "title": "Havoc Flask", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/90 ft., one target. {@h}13 ({@damage 2d12}) fire damage. If the target is a creature, magical flames cling to it, causing it to take 3 ({@damage 1d6}) fire damage at the start of each of its turns. Immediately after taking this damage on its turn, the target can make a {@dc 13} Dexterity saving throw, ending the effect on itself on a successful save.", + "After the fire starter throws the flask, roll a {@dice d6}; on a 3 or lower, the fire starter has no more flasks to throw." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hands of Havoc Fire Starter-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Harmonium Captain", + "source": "MPP", + "page": 58, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "17d8 + 34", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 19, + "dexterity": 10, + "constitution": 14, + "intelligence": 12, + "wisdom": 16, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "wis": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus one more language" + ], + "traits": [ + { + "title": "Aura of Command", + "body": [ + "Allies within 30 feet of the captain are immune to the {@condition charmed} and {@condition frightened} conditions. This aura is suppressed while the captain has the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The captain makes three Harmonium Blade attacks. The captain can also use Dictate if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Harmonium Blade", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d10 + 4}) piercing damage plus 10 ({@damage 3d6}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dictate {@recharge 5}", + "body": [ + "The captain verbally commands up to three creatures it can see within 60 feet of itself. This magical command must be to undertake an action or to refrain from taking actions (for example, \"Throw down your weapons\").", + "A target must succeed on a {@dc 14} Wisdom saving throw or have the {@condition charmed} condition for 1 minute, during which time it follows the captain's command. The effect ends early if the target takes damage or if it successfully completes the command. A target automatically succeeds on its saving throw if the command is directly harmful to itself, such as commanding it to walk into fire.", + "A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harmonium Captain-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Harmonium Peacekeeper", + "source": "MPP", + "page": 59, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 10, + "constitution": 14, + "intelligence": 12, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus one more language" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The peacekeeper has advantage on an attack roll against a creature if at least one of the peacekeeper's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Electrified Mancatcher", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 10 ft., one target. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 4 ({@damage 1d8}) lightning damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 13}). Until the {@condition grappled} condition ends, the target has the {@condition restrained} condition and can't teleport, the peacekeeper can't make Electrified Mancatcher attacks, and the target takes 8 ({@damage 1d10 + 3}) lightning damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harmonium Peacekeeper-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Heralds of Dust Remnant", + "source": "MPP", + "page": 59, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 8, + "dexterity": 14, + "constitution": 15, + "intelligence": 17, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus three more languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The remnant makes two Necrotic Surge attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Necrotic Surge", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Phase (2/Day)", + "body": [ + "The remnant becomes partially incorporeal for as long as it maintains {@status concentration} on the effect (as if {@status concentration||concentrating} on a spell). While partially incorporeal, the remnant has resistance to bludgeoning, piercing, and slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The remnant casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bane}", + "{@spell dimension door}", + "{@spell web}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "AATM" + }, + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Heralds of Dust Remnant-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Hexton Modron", + "source": "MPP", + "page": 37, + "size_str": "Huge", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 209, + "formula": "22d12 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 19, + "dexterity": 16, + "constitution": 17, + "intelligence": 19, + "wisdom": 17, + "charisma": 15, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+9", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The hexton can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Combat Ready", + "body": [ + "The hexton has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the hexton dies, its body disintegrates into dust, leaving behind anything it was carrying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the hexton fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hexton makes one Pincer attack and two Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pincer", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage plus 10 ({@damage 3d6}) force damage. If the target is a creature, it must succeed on a {@dc 17} Constitution saving throw or have the {@condition incapacitated} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the hexton can't use this tentacle against other targets. The hexton has six tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Counter Magic", + "body": [ + "The hexton attempts to interrupt a creature it can see that is casting a spell. If the spell is 3rd level or lower, it fails and has no effect. If the spell is 4th level or higher, the hexton makes an Intelligence check ({@dc 10} + the spell's level). On a success, the spell fails and has no effect." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Rebuke", + "body": [ + "When a creature within 120 feet of the hexton damages it, the hexton magically retaliates with an arc of lightning. The creature must make a {@dc 17} Dexterity saving throw, taking 11 ({@damage 2d10}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The hexton casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hexton Modron-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Hound Archon", + "source": "MPP", + "page": 16, + "size_str": "Medium", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 12, + "constitution": 15, + "intelligence": 11, + "wisdom": 14, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+2", + "wis": "+4" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Aura of Menace", + "body": [ + "As long as the archon doesn't have the {@condition incapacitated} condition, each creature of the archon's choice that starts its turn within 20 feet of the archon must make a {@dc 12} Wisdom saving throw. On a failed save, the creature has the {@condition frightened} condition until the start of its next turn. On a successful save, the creature is immune to all archons' Aura of Menace for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archon makes two Bite attacks. It can replace one of the attacks with a Shining Blade attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d6 + 4}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shining Blade (True Form Only)", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The archon teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The archon magically transforms into any Medium or Large dog or wolf while retaining its game statistics (other than its size and losing its Shining Blade attack). The archon reverts to its true form if reduced to 0 hit points or if it uses a bonus action to do so." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The archon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell aid}", + "{@spell continual flame}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hound Archon-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Kelubar Demodand", + "source": "MPP", + "page": 27, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 22, + "dexterity": 13, + "constitution": 18, + "intelligence": 14, + "wisdom": 15, + "charisma": 18, + "passive": 12, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Demodand", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Acidic Secretions", + "body": [ + "A creature that touches the kelubar or hits it with a melee attack while within 5 feet of it takes 5 ({@damage 2d4}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Boundless Movement", + "body": [ + "The kelubar ignores difficult terrain, and magical effects can't reduce its speed. It can spend 5 feet of movement to automatically remove the {@condition grappled} condition from itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The kelubar has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kelubar makes two Bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage plus 18 ({@damage 4d8}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spit Acid", + "body": [ + "The kelubar spits acid in a line 60 feet long and 5 feet wide. Each creature in that area must make a {@dc 17} Dexterity saving throw, taking 27 ({@damage 6d8}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Demodand (1/Day)", + "body": [ + "The kelubar has a 40 percent chance of summoning its choice of {@dice 1d2} farastu demodands or 1 kelubar demodand. A summoned demodand appears in an unoccupied space within 60 feet of the kelubar, acts as an ally of the kelubar, and can't summon other demodands. It remains for 1 minute, until it or the kelubar dies, or until the kelubar dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nauseating Fog {@recharge}", + "body": [ + "The kelubar magically creates a cloud of greenish fog that fills a 20-foot-radius sphere centered on a point within 120 feet of itself. The cloud remains for 1 minute or until the kelubar uses this bonus action again. The cloud is heavily obscured and difficult terrain. Any creature that starts its turn in the cloud or enters the cloud for the first time on a turn must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The kelubar casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell invisibility} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell scrying} (as an action)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Kelubar Demodand-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Kolyarut", + "source": "MPP", + "page": 34, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "35d8 + 140", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 35, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 25, + "dexterity": 12, + "constitution": 19, + "intelligence": 25, + "wisdom": 22, + "charisma": 18, + "passive": 22, + "skills": { + "skills": [ + { + "target": "history", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+13", + "wis": "+12", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The kolyarut is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the kolyarut fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The kolyarut has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kolyarut makes four Unerring Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unerring Blade", + "body": [ + "{@atk mw} automatic hit, reach 5 ft., one target. {@h}24 force damage plus one of the following effects (choose one or roll a {@dice d6}):", + { + "title": "1-2: Disarm", + "body": [ + "The target drops one item it is holding of the kolyarut's choice." + ], + "__dataclass__": "Entry" + }, + { + "title": "3-4: Imbalance", + "body": [ + "The target can't take reactions until the start of the kolyarut's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "5-6: Push", + "body": [ + "If the target is Large or smaller, the target is pushed up to 15 feet away from the kolyarut." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Edict of Blades {@recharge 5}", + "body": [ + "The kolyarut moves up to its speed without provoking opportunity attacks and can make one Unerring Blade attack against each creature it moves past. Whenever it hits a creature with an Unerring Blade attack during this movement, each spell of 5th level or lower on the creature ends, and the creature has the {@condition incapacitated} condition until the end of the kolyarut's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plane Shift (3/Day)", + "body": [ + "The kolyarut casts {@spell plane shift}, requiring no material components and using Intelligence as the spellcasting ability. The kolyarut can cast the spell normally, or it can cast the spell on an unwilling creature it can see within 60 feet of itself. If it uses the latter option, the targeted creature must succeed on a {@dc 18} Charisma saving throw or be sent to a teleportation circle in the Hall of Concordance in Sigil." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The kolyarut adds 6 to its AC against one attack roll that would hit it. To do so, the kolyarut must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": "inevitable", + "actions_note": "", + "mythic": null, + "key": "Kolyarut-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Lantern Archon", + "source": "MPP", + "page": 17, + "size_str": "Small", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 1, + "dexterity": 16, + "constitution": 12, + "intelligence": 6, + "wisdom": 12, + "charisma": 13, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Aura of Menace", + "body": [ + "As long as the archon doesn't have the {@condition incapacitated} condition, each creature of the archon's choice that starts its turn within 20 feet of the archon must make a {@dc 11} Wisdom saving throw. On a failed save, the creature has the {@condition frightened} condition until the start of its next turn. On a successful save, the creature is immune to all archons' Aura of Menace for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The archon sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "The archon can move through creatures and objects as if they were difficult terrain. If it ends its turn inside an object, it takes 5 ({@damage 1d10}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archon makes two Radiant Strike attacks. It can replace one attack with a use of Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Strike", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 60 ft., one target. {@h}6 ({@damage 1d6 + 3}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The archon teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shift Radiance", + "body": [ + "The archon reduces its Illumination to shed only dim light in a 5-foot radius, or it returns the light to full intensity." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The archon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell aid}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Lantern Archon-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Maelephant", + "source": "MPP", + "page": 35, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 15, + "note": "{@item half plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "17d10 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 19, + "dexterity": 10, + "constitution": 18, + "intelligence": 10, + "wisdom": 16, + "charisma": 12, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "con": "+8" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Infernal" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The maelephant has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The maelephant makes one Barbed Trunk attack and two Glaive attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Barbed Trunk", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage plus 13 ({@damage 2d12}) poison damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the target has the {@condition restrained} condition. While it is grappling a creature, the maelephant can't use its barbed trunk to attack other creatures." + ], + "__dataclass__": "Entry" + }, + { + "title": "Glaive", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Poison {@recharge 5}", + "body": [ + "The maelephant expels poisonous gas from its trunk in a 60-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw. On a failed save, a creature takes 39 ({@damage 6d12}) poison damage and has the {@condition poisoned} condition. While {@condition poisoned} in this way, the creature loses all weapon and skill proficiencies, it can't cast spells, it can't understand language, and it has disadvantage on Intelligence saving throws. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, the target takes half as much damage only and is immune to this maelephant's Mind Poison for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Maelephant-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Mercykiller Bloodhound", + "source": "MPP", + "page": 60, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 104, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 17, + "dexterity": 12, + "constitution": 16, + "intelligence": 12, + "wisdom": 15, + "charisma": 8, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus one more language" + ], + "traits": [ + { + "title": "Portal Sense", + "body": [ + "The bloodhound can sense the presence of portals within 30 feet of itself, including inactive portals, and instinctively knows the destination of each portal." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bloodhound makes three Clawed Gauntlet attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Clawed Gauntlet", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Marked for Pursuit (3/Day)", + "body": [ + "The bloodhound attempts to place a magical mark on a creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Charisma saving throw or become cursed for 24 hours. A creature missing any of its hit points has disadvantage on this saving throw. While cursed in this way, the bloodhound can sense the direction and distance to the target as long as the two are on the same plane of existence. If the target isn't on the same plane, the bloodhound knows what plane the target is on." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mercykiller Bloodhound-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Mind's Eye Matter Smith", + "source": "MPP", + "page": 60, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 78, + "formula": "12d8 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 10, + "dexterity": 14, + "constitution": 14, + "intelligence": 14, + "wisdom": 14, + "charisma": 16, + "passive": 16, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+4", + "cha": "+5" + }, + "languages": [ + "Common plus two more languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The matter smith makes two Manifested Force attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Manifested Force", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}10 ({@damage 2d6 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Planar Smithing", + "body": [ + "The matter smith magically manipulates the energy of the plane of existence it's on to produce one of the following effects (choose one or roll a {@dice d4}):", + { + "title": "1-2: Chains", + "body": [ + "The matter smith creates spectral bindings around a creature it can see within 30 feet of itself. The target must succeed on a {@dc 13} Dexterity saving throw or have the {@condition restrained} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "3-4: Magic Shield", + "body": [ + "The matter smith conjures a floating, spectral shield that grants the matter smith a +5 bonus to its AC until the shield disappears at the start of the matter smith's next turn. The first time a creature misses a melee attack roll against the matter smith while the shield is conjured, that creature takes 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The matter smith casts one of the following spells, using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell mage armor}", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell create food and water}", + "{@spell fabricate} (as an action)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mind's Eye Matter Smith-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Musteval Guardinal", + "source": "MPP", + "page": 33, + "size_str": "Small", + "maintype": "celestial", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "11d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 12, + "dexterity": 16, + "constitution": 11, + "intelligence": 14, + "wisdom": 15, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+4" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Celestial", + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The musteval makes two Bone Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bone Blade", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage plus 3 ({@damage 1d6}) radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Skirmish Movement", + "body": [ + "When a creature ends its turn within 5 feet of the musteval, the musteval can move up to half its speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The musteval casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell disguise self}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Musteval Guardinal-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Nonaton Modron", + "source": "MPP", + "page": 38, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "19d10 + 57", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 18, + "dexterity": 13, + "constitution": 16, + "intelligence": 16, + "wisdom": 16, + "charisma": 13, + "passive": 21, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+7" + }, + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The nonaton can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Combat Ready", + "body": [ + "The nonaton has advantage on initiative rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the nonaton dies, its body disintegrates into dust, leaving behind anything it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nonaton makes three Arm attacks and uses Pillar of Truth or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arm", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d8 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the nonaton can't use this arm against other targets. The nonaton has nine arms, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pillar of Truth", + "body": [ + "The nonaton chooses a point on the ground that it can see within 60 feet of itself. A 60-foot-tall, 20-foot-radius cylinder of magical force rises from that point. Each creature in that area must make a {@dc 15} Dexterity saving throw. On a failed save, a creature takes 21 ({@damage 6d6}) force damage, and the creature reverts to its original form (if it's in a different form) and can't assume a different form until the end of its next turn. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The nonaton casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nonaton Modron-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Octon Modron", + "source": "MPP", + "page": 40, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "22d10 + 66", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 18, + "dexterity": 14, + "constitution": 17, + "intelligence": 17, + "wisdom": 16, + "charisma": 14, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+7", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Modron", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The octon can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Combat Ready", + "body": [ + "The octon has advantage on initiative checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the octon dies, its body disintegrates into dust, leaving behind anything it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The octon makes three Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}14 ({@damage 3d6 + 4}) bludgeoning damage plus 9 ({@damage 2d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirlwind of Tentacles {@recharge 5}", + "body": [ + "The octon rapidly extends and spins its ring of tentacles. Each creature within 20 feet of the octon must succeed on a {@dc 16} Strength saving throw or be pulled up to 10 feet in a straight line toward the octon. Then, the octon makes two Tentacle attacks against each creature within 10 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The octon casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Octon Modron-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Planar Incarnate", + "source": "MPP", + "page": 41, + "size_str": "Gargantuan", + "maintype": { + "choose": [ + "celestial", + "fiend" + ] + }, + "alignment": "Any", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 333, + "formula": "18d20 + 144", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 27, + "dexterity": 10, + "constitution": 26, + "intelligence": 15, + "wisdom": 20, + "charisma": 20, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the incarnate fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The incarnate has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Planar Form", + "body": [ + "An incarnate on the Upper Planes is a Celestial. An incarnate on the Lower Planes is a Fiend." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The incarnate deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The incarnate makes two Slam or Energy Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 15 ft., one target. {@h}27 ({@damage 3d12 + 8}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Energy Bolt", + "body": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one target. {@h}32 ({@damage 5d12}) necrotic damage if the incarnate is a Fiend or radiant damage if the incarnate is a Celestial." + ], + "__dataclass__": "Entry" + }, + { + "title": "Planar Exhalation {@recharge 5}", + "body": [ + "The incarnate exhales concentrated energy native to its plane in a 60-foot cone. Each creature in that area must make a {@dc 23} Constitution saving throw. On a failed save, a creature takes 52 ({@damage 8d12}) necrotic damage if the incarnate is a Fiend or radiant damage if the incarnate is a Celestial, and the creature has the {@condition blinded} condition until the end of the incarnate's next turn. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Searing Gaze", + "body": [ + "In response to being hit by an attack roll, the incarnate turns its magical gaze toward one creature it can see within 120 feet of itself and commands it to combust. The target must succeed on a {@dc 20} Wisdom saving throw or take 16 ({@damage 3d10}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Immediately after a creature the incarnate sees ends its turn, the incarnate teleports up to 60 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Planar Incarnate-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Razorvine Blight", + "source": "MPP", + "page": 42, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 15, + "constitution": 13, + "intelligence": 5, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the blight is motionless at the start of combat, it has advantage on its initiative roll. If a creature hasn't observed the blight move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the blight is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The blight can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blight makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit (with advantage if the target is missing any of its hit points), reach 10 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Life-Draining Vines {@recharge}", + "body": [ + "Snaking vines erupt from the blight. Each creature within 10 feet of it must make a {@dc 12} Dexterity saving throw, taking 9 ({@damage 2d8}) slashing damage on failed save, or half as much damage on a successful one. If at least one of the creatures that failed this save isn't a Construct or an Undead, the blight regains 9 hit points." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Razorvine Blight-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Septon Modron", + "source": "MPP", + "page": 40, + "size_str": "Large", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 204, + "formula": "24d10 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 18, + "dexterity": 15, + "constitution": 17, + "intelligence": 18, + "wisdom": 16, + "charisma": 14, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Axiomatic Mind", + "body": [ + "The septon can't be compelled to act in a manner contrary to its nature or its instructions." + ], + "__dataclass__": "Entry" + }, + { + "title": "Combat Ready", + "body": [ + "The septon has advantage on initiative checks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Disintegration", + "body": [ + "If the septon dies, its body disintegrates into dust, leaving behind anything it was carrying." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The septon makes four Tentacle attacks and uses Lightning Network or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}). Until this grapple ends, the septon can't use this tentacle against other targets. The septon has seven tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Network", + "body": [ + "The septon conjures a field of electricity that fills a 30-foot cube originating from itself before dissipating. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 33 ({@damage 6d10}) lightning damage and has the {@condition stunned} condition for 1 minute. On a successful save, a creature takes half as much damage only. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The septon casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell mending} (as an action)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell plane shift} (self only)", + "{@spell protection from evil and good}", + "{@spell sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Septon Modron-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Shator Demodand", + "source": "MPP", + "page": 28, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "23d10 + 69", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 24, + "dexterity": 15, + "constitution": 17, + "intelligence": 21, + "wisdom": 16, + "charisma": 20, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Demodand", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Boundless Movement", + "body": [ + "The shator ignores difficult terrain, and magical effects can't reduce its speed. It can spend 5 feet of movement to automatically remove the {@condition grappled} condition from itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Jailer (1/Day)", + "body": [ + "The shator can cast the {@spell imprisonment} spell, requiring no material components and using Intelligence as the spellcasting ability (chaining effect only; spell save {@dc 18})." + ], + "__dataclass__": "Entry" + }, + { + "title": "Liquefaction Ritual", + "body": [ + "The shator can perform a 1-minute ritual that turns all willing farastus and kelubars of its choice within 60 feet of itself into a living liquid form. Each liquefied demodand becomes enough liquid to fill a flask. A demodand's liquefaction lasts until a shator uses an action to end it or a creature opens a container holding the liquid. While liquefied in this way, a demodand has the {@condition paralyzed} condition despite any immunity to that condition, it has immunity to all damage, and any curse affecting it is suspended." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The shator has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Numbing Secretions", + "body": [ + "A creature that touches the shator or hits it with a melee attack while within 5 feet of it must succeed on a {@dc 17} Dexterity saving throw or have disadvantage on attack rolls and its speed halved until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shator makes one Bite attack and two Enervating Trident attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d6 + 7}) piercing damage plus 26 ({@damage 4d12}) acid damage. If the target is a creature, it must succeed on a {@dc 16} Constitution saving throw or have the {@condition paralyzed} condition until the start of the shator's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enervating Trident", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Inhibitory Spray {@recharge 5}", + "body": [ + "The shator exhales a spray of slime in a line 100 feet long and 5 feet wide. Each creature in that area must make a {@dc 16} Dexterity saving throw. On a failed save, a creature takes 40 ({@damage 9d8}) acid damage and has the {@condition paralyzed} condition for 1 minute. The creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + }, + { + "title": "Summon Demodand (1/Day)", + "body": [ + "The shator has a 50 percent chance of summoning its choice of {@dice 1d4} farastu demodands, {@dice 1d2} kelubar demodands, or 1 shator demodand. A summoned demodand appears in an unoccupied space within 60 feet of the shator, acts as an ally of the shator, and can't summon other demodands. It remains for 1 minute, until it or the shator dies, or until the shator dismisses it as an action." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The shator casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}, {@hit 10} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell invisibility} (self only)", + "{@spell suggestion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell dispel magic}", + "{@spell plane shift} (to Carceri only)", + "{@spell scrying} (as an action)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shator Demodand-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Shemeshka", + "source": "MPP", + "page": 46, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 162, + "formula": "25d8 + 50", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 20, + "dexterity": 14, + "constitution": 14, + "intelligence": 21, + "wisdom": 16, + "charisma": 18, + "passive": 18, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+10", + "wis": "+8", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If Shemeshka fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Shemeshka has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Shemeshka carries a magic crown called the Razorvine Tiara. In the hands of anyone other than Shemeshka, the Razorvine Tiara functions as a {@item tentacle rod} that deals slashing damage instead of bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Shemeshka uses Arcane Flux or Spellcasting. She then makes one Claw attack or one attack with her Razorvine Tiara." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Flux", + "body": [ + "Shemeshka causes a surge of arcane energy to burst around one creature she can see within 120 feet of herself. The target must make a {@dc 18} Dexterity saving throw. On a failed save, the target takes 45 ({@damage 7d12}) force damage and has the {@condition incapacitated} condition until the end of its next turn. On a successful save, the target takes half as much damage only." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d4 + 5}) slashing damage plus 14 ({@damage 4d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Razorvine Tiara", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}10 ({@damage 3d6}) slashing damage plus 9 ({@damage 2d8}) necrotic damage. If the target is a creature, it must succeed on a {@dc 15} Constitution saving throw, or its speed is halved and it has disadvantage on attack rolls and saving throws until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Teleport", + "body": [ + "Shemeshka teleports, along with any equipment she is wearing or carrying, up to 60 feet to an unoccupied space she can see." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Fell Counterspell (3/Day)", + "body": [ + "Shemeshka utters a magical word to interrupt a creature she can see that is casting a spell. If the spell is 5th level or lower, it fails and has no effect. If the spell is 6th level or higher, Shemeshka makes an Intelligence check ({@dc 10} + the spell's level). On a success, the spell fails and has no effect. Whatever the spell's level, the caster gains the {@condition poisoned} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Shemeshka casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell alter self}", + "{@spell darkness}", + "{@spell invisibility} (self only)", + "{@spell mage hand}", + "{@spell prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell detect thoughts}", + "{@spell dimension door}", + "{@spell suggestion}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell banishment}", + "{@spell contact other plane} (as an action)", + "{@spell mind blank}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Shemeshka-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Society of Sensation Muse", + "source": "MPP", + "page": 61, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d8 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 8, + "dexterity": 16, + "constitution": 12, + "intelligence": 15, + "wisdom": 14, + "charisma": 17, + "passive": 14, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "cha": "+5" + }, + "languages": [ + "Common plus two more languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The muse makes two Beguiling Resonance attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beguiling Resonance", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 90 ft., one target. {@h}9 ({@damage 2d8}) psychic damage. If the target is a creature, it must succeed on a {@dc 13} Charisma saving throw or have disadvantage on the next attack roll it makes until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Enchanting Presence", + "body": [ + "Each creature within 30 feet of the muse must make a {@dc 13} Wisdom saving throw. On a failed save, the creature has the {@condition charmed} condition for 1 minute. On a successful save, the creature becomes immune to any muse's Enchanting Presence for 24 hours.", + "Whenever the muse deals damage to the {@condition charmed} creature, the {@condition charmed} creature can repeat the saving throw, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The muse casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell dancing lights}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell comprehend languages}", + "{@spell hypnotic pattern}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Society of Sensation Muse-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Sunfly", + "source": "MPP", + "page": 47, + "size_str": "Tiny", + "maintype": "celestial", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 2, + "formula": "1d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 4, + "dexterity": 17, + "constitution": 10, + "intelligence": 4, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "languages": [ + "understands Celestial but can't speak" + ], + "actions": [ + { + "title": "Sting", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage. Additionally, if the sunfly is on an Outer Plane, it injects the target with a toxin, the effect of which is determined by the sunfly's location:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Upper Plane", + "body": [ + "The target sheds bright light in a 5-foot radius until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Neutral Plane", + "body": [ + "If the target is {@status concentration||concentrating} on a spell or similar effect, it makes the Constitution saving throw with disadvantage to maintain its {@status concentration}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lower Plane", + "body": [ + "The target's speed is reduced by 5 feet until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Illumination", + "body": [ + "The sunfly sheds bright light in a 5-foot radius and dim light for an additional 5 feet, or it uses a bonus action to extinguish the light." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sunfly-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Sunflies", + "source": "MPP", + "page": 47, + "size_str": "Medium", + "maintype": "swarm of Tiny celestials", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 6, + "dexterity": 17, + "constitution": 10, + "intelligence": 4, + "wisdom": 10, + "charisma": 6, + "passive": 10, + "languages": [ + "understands Celestial but can't speak" + ], + "traits": [ + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough for a Tiny dragonfly. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Stings", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 0 ft., one creature in the swarm's space. {@h}10 ({@damage 3d4 + 3}) piercing damage, or 5 ({@damage 1d4 + 3}) piercing damage if the swarm has half of its hit points or fewer. Additionally, if the swarm is on an Outer Plane, it injects the target with a toxin, the effect of which is determined by the swarm's location:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Upper Plane", + "body": [ + "The target sheds bright light in a 5-foot radius until the end of its next turn. During that time, the {@condition invisible} condition has no effect on it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Neutral Plane", + "body": [ + "If the target is {@status concentration||concentrating} on a spell or similar effect, it loses its {@status concentration}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lower Plane", + "body": [ + "The target's speed is reduced by 10 feet until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dazzling Lights {@recharge}", + "body": [ + "The swarm shines its lights in a dazzling display. Each creature within 15 feet of the swarm must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition 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." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Illumination", + "body": [ + "The swarm sheds bright light in a 15-foot radius and dim light for an additional 15 feet, or it uses a bonus action to extinguish the light." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Sunflies-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Time Dragon Wyrmling", + "source": "MPP", + "page": 51, + "size_str": "Medium", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 19, + "dexterity": 10, + "constitution": 17, + "intelligence": 17, + "wisdom": 13, + "charisma": 17, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+3", + "con": "+6", + "wis": "+4", + "cha": "+6" + }, + "senses": [ + "blindsight 10 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Draconic plus any two languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}7 ({@damage 1d6 + 4}) slashing damage plus 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of shimmering light in a 15-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 14} Constitution saving throw. On a failed save, a creature takes 27 ({@damage 6d8}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage. On a successful save, a creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Time Dragon Wyrmling-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Transcendent Order Conduit", + "source": "MPP", + "page": 62, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 18, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 97, + "formula": "15d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 10, + "dexterity": 19, + "constitution": 14, + "intelligence": 10, + "wisdom": 18, + "charisma": 12, + "passive": 17, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7", + "cha": "+4" + }, + "languages": [ + "Common plus one more language" + ], + "traits": [ + { + "title": "Instinctive Reflexes", + "body": [ + "The conduit has advantage on initiative rolls, and it can't have disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmored Defense", + "body": [ + "While the conduit is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The conduit makes three Unarmed Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage. If the target is a creature, the conduit can choose one of the following additional effects (up to once per turn each):", + { + "title": "Incapacitate", + "body": [ + "The target must succeed on a {@dc 15} Constitution saving throw or have the {@condition incapacitated} condition until the end of the conduit's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Push", + "body": [ + "The target is pushed up to 10 feet horizontally away from the conduit." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Attack", + "body": [ + "In response to being hit by an attack roll, the conduit partially deflects the blow. The damage the conduit takes from the attack is reduced by {@dice 1d10}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Don't Be There", + "body": [ + "When the conduit must make a saving throw, it can move up to half its speed without provoking opportunity attacks. If its new position moves it out of range or otherwise makes it impossible to be targeted by the effect, the conduit avoids the effect entirely." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Transcendent Order Conduit-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Transcendent Order Instinct", + "source": "MPP", + "page": 62, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 16, + "constitution": 12, + "intelligence": 10, + "wisdom": 16, + "charisma": 12, + "passive": 15, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+3" + }, + "languages": [ + "Common plus one more language" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the instinct is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The instinct makes three Unarmed Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Blow", + "body": [ + "In response to being hit by a melee attack roll, the instinct partially deflects the blow. The damage the instinct takes from the attack is reduced by {@dice 1d6}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Transcendent Order Instinct-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Vargouille Reflection", + "source": "MPP", + "page": 52, + "size_str": "Tiny", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d4 + 10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 6, + "dexterity": 15, + "constitution": 14, + "intelligence": 6, + "wisdom": 10, + "charisma": 2, + "passive": 10, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal", + "Infernal", + "and any languages it knew before becoming a vargouille", + "but it can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The vargouille has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 10 ({@damage 3d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Abyssal Curse", + "body": [ + "The vargouille targets one Humanoid within 5 feet of itself that has the {@condition incapacitated} condition. The target must succeed on a {@dc 12} Charisma saving throw or become cursed. The cursed target's Charisma decreases by 1 after each hour, as its head takes on fiendish aspects, and its Charisma can't increase. The curse doesn't advance while the target is in sunlight or the area of a {@spell daylight} spell. When the cursed target's Charisma becomes 2, the target dies, and its head tears from its body and becomes a new vargouille reflection. Casting remove curse, greater restoration, or a similar spell on the target before the transformation is complete ends the curse and restores the target's Charisma." + ], + "__dataclass__": "Entry" + }, + { + "title": "Horrific Reflection {@recharge 5}", + "body": [ + "The vargouille's head mimics that of a Humanoid the vargouille can see within 120 feet of itself. The target must succeed on a {@dc 12} Wisdom saving throw or take 10 ({@damage 3d6}) psychic damage and have the {@condition frightened} condition for 1 hour or until the vargouille loses {@status concentration} (as if {@status concentration||concentrating} on a spell). If the target's saving throw is successful or if the effect ends on it, the target is immune to the Horrific Reflection of all vargouille reflections for 1 hour." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vargouille Reflection-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Warden Archon", + "source": "MPP", + "page": 18, + "size_str": "Large", + "maintype": "celestial", + "alignment": "Lawful Good", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 20, + "dexterity": 10, + "constitution": 17, + "intelligence": 15, + "wisdom": 18, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+7" + }, + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "truesight 30 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Aura of Menace", + "body": [ + "As long as the archon doesn't have the {@condition incapacitated} condition, each creature of the archon's choice that starts its turn within 20 feet of the archon must make a {@dc 15} Wisdom saving throw. On a failed save, the creature has the {@condition frightened} condition until the start of its next turn. On a successful save, the creature is immune to all archons' Aura of Menace for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eternal Vigil", + "body": [ + "The archon can't be surprised. Moreover, it knows when any creature uses a portal it is assigned to guard." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The archon makes two Claw attacks and one Tracker's Bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a Medium or smaller creature, the target has the {@condition grappled} condition (escape {@dc 18}). The archon can have only one creature {@condition grappled} in this way at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tracker's Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 3d6 + 5}) piercing damage. If the target is a creature, for the next 24 hours, the archon knows the distance and direction to the target while they are both on the same plane of existence." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "The archon teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The archon casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell detect evil and good}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell aid}", + "{@spell continual flame}", + "{@spell protection from evil and good}", + "{@spell scrying} (as an action)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [ + { + "source": "SatO" + }, + { + "source": "ToFW" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warden Archon-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Young Time Dragon", + "source": "MPP", + "page": 51, + "size_str": "Large", + "maintype": "dragon", + "alignment": "Neutral", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "20d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 20, + "dexterity": 12, + "constitution": 20, + "intelligence": 20, + "wisdom": 15, + "charisma": 17, + "passive": 20, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+9", + "wis": "+6", + "cha": "+7" + }, + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Draconic plus any four languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dragon makes three Rend attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rend", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Time Breath {@recharge 5}", + "body": [ + "The dragon exhales a wave of shimmering light in a 30-foot cone. Nonmagical objects and vegetation in that area that aren't being worn or carried crumble to dust. Each creature in that area must make a {@dc 17} Constitution saving throw. On a failed save, a creature takes 31 ({@damage 7d8}) force damage and is magically weakened as it is desynchronized from the time stream. While the creature is in this state, attack rolls against it have advantage. On a successful save, a creature takes half as much damage only. A weakened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself after it succeeds on two of these saves." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Young Time Dragon-MPP", + "__dataclass__": "Monster" + }, + { + "name": "Morte", + "source": "ToFW", + "page": 10, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d4 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 10, + "dexterity": 16, + "constitution": 16, + "intelligence": 13, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d4 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "MPP" + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Morte-ToFW", + "__dataclass__": "Monster" + }, + { + "name": "Ambitious Assassin", + "source": "BMT", + "page": 45, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 10, + "dexterity": 18, + "constitution": 15, + "intelligence": 18, + "wisdom": 14, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "int": "+7" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 10 ft." + ], + "languages": [ + "Common", + "thieves' cant", + "plus any one language" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the assassin fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The assassin makes two Poison Blade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Blade", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 60 ft., one target. {@h}6 ({@damage 1d4 + 4}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "When an attacker the assassin can see hits the assassin with an attack, the assassin halves the attack's damage against it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cunning", + "body": [ + "The assassin escapes nonmagical restraints and ends the {@condition grappled} condition on itself, then moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab (Costs 2 Actions)", + "body": [ + "The assassin makes one Poison Blade attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vanishing Escape (Costs 3 Actions)", + "body": [ + "The assassin creates a sudden distraction, such as a cloud of disorienting smoke or flash of dazzling light, filling a 10-foot cube within 5 feet of the assassin. Each creature of the assassin's choice in that area takes 9 ({@damage 2d8}) psychic damage, and the assassin has the {@condition invisible} condition. This invisibility lasts until the end of the assassin's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ambitious Assassin-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Aspirant of the Comet", + "source": "BMT", + "page": 91, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 13, + "dexterity": 12, + "constitution": 12, + "intelligence": 11, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Hunger of the Void", + "body": [ + "When the aspirant is reduced to 0 hit points, its body and everything it is wearing or carrying, except for magic items, are sucked into a void and destroyed. Creatures in a 15-foot-radius sphere centered on the aspirant must make a {@dc 11} Strength saving throw. On a failed save, a creature takes 10 ({@damage 3d6}) necrotic damage and is pulled 10 feet straight toward the aspirant's space. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sinister Devotion", + "body": [ + "The aspirant has advantage on saving throws against the {@condition charmed} and {@condition frightened} conditions." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 3} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage, or 5 ({@damage 1d8 + 1}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aspirant of the Comet-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Asteria", + "source": "BMT", + "page": 188, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 18, + "note": "{@item breastplate|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 195, + "formula": "26d8 + 78", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(winged boots)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 12, + "dexterity": 21, + "constitution": 17, + "intelligence": 15, + "wisdom": 11, + "charisma": 20, + "passive": 22, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "arcana", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "investigation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+9", + "wis": "+6", + "cha": "+11" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Druidic" + ], + "traits": [ + { + "title": "Guardian Aura", + "body": [ + "Whenever a creature of Asteria's choice within 30 feet of her makes a saving throw, Asteria can give the creature advantage on the saving throw (no action required). This trait doesn't function if Asteria has the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Asteria fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Asteria wears {@item Winged Boots}, which grant her a flying speed (included in her statistics). She also carries one half of a pair of {@item Sending Stones}; the other half of the pair is held by Euryale." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Asteria makes two Radiant Blade attacks and uses Bursting Benediction." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Blade", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) slashing damage plus 13 ({@damage 3d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bursting Benediction", + "body": [ + "Asteria causes a burst of magical energy to envelop one creature she can see within 60 feet of herself. The target must make a {@dc 19} Dexterity saving throw, taking 40 ({@damage 9d8}) force damage on a failed save, or half as much damage on a successful one. Asteria or another creature that she can see within 60 feet of herself then regains 10 hit points." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Empowering Aegis {@recharge 4}", + "body": [ + "Asteria summons a spectral version of her shield, which orbits and bolsters one creature of Asteria's choice that she can see within 60 feet of herself. The spectral shield lasts until the start of Asteria's next turn. While the shield is orbiting the creature, the creature has {@quickref Cover||3||half cover}, is immune to the {@condition frightened} condition, and makes weapon attack rolls with advantage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Brazen Strike", + "body": [ + "Asteria makes one Radiant Blade attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimble Sprint", + "body": [ + "Asteria moves up to her speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Asteria uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Asteria casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Guidance}", + "{@spell Light}", + "{@spell Thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Bless}", + "{@spell Freedom of Movement}", + "{@spell Greater Restoration}", + "{@spell Plane Shift} (self only)", + "{@spell Protection from Evil and Good}", + "{@spell Revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, paladin", + "actions_note": "", + "mythic": null, + "key": "Asteria-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Aurnozci", + "source": "BMT", + "page": 167, + "size_str": "Gargantuan", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 370, + "formula": "20d20 + 160", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "22", + "xp": 41000, + "strength": 27, + "dexterity": 20, + "constitution": 26, + "intelligence": 6, + "wisdom": 21, + "charisma": 19, + "passive": 15, + "saves": { + "str": "+15", + "con": "+15" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Heat Regeneration", + "body": [ + "If the temperature around it is 100 degrees Fahrenheit or higher, Aurnozci regains 15 hit points at the start of its turn. If it takes cold or radiant damage, this trait doesn't function at the start of its next turn. Aurnozci dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Aurnozci fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Aurnozci has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Aurnozci makes one Bite attack and two Tail attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}21 ({@damage 2d12 + 8}) slashing damage plus 9 ({@damage 2d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mucus Spray {@recharge 5}", + "body": [ + "Aurnozci sprays mucus in a 60-foot cone. Each creature in that cone must make a {@dc 20} Dexterity saving throw, taking 42 ({@damage 12d6}) acid damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "Aurnozci moves up to its speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "Aurnozci makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Aurnozci uses Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Conflagration (Costs 2 Actions)", + "body": [ + "Flames momentarily surround Aurnozci. Each creature within 15 feet of Aurnozci must make a {@dc 20} Dexterity saving throw, taking 18 ({@damage 4d8}) fire damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Aurnozci casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Magic}", + "{@spell Heat Metal} (7th-level version)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Darkness}", + "{@spell Dispel Magic}", + "{@spell Hold Person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Aurnozci-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Boss Augustus", + "source": "BMT", + "page": 82, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "note": "in wolf or hybrid form", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 16, + "constitution": 17, + "intelligence": 14, + "wisdom": 15, + "charisma": 12, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+8", + "dex": "+7" + }, + "languages": [ + "Common", + "Thieves' cant (can't speak in wolf form)" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "Augustus regains 10 hit points at the start of his turn. If he takes damage from a silver weapon, this trait doesn't function at the start of his next turn. Augustus dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Augustus wields a {@item +2 Longsword}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Augustus makes any combination of two Bite, Claw, or Magic Longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Wolf or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}26 ({@damage 5d8 + 4}) piercing damage. If the target is a Humanoid, it must succeed on a {@dc 15} Constitution saving throw or be cursed with lycanthropy. While cursed in this way, the target retains its alignment, languages, and equipment but otherwise uses the werewolf stat block, excluding actions that require equipment the target doesn't have. During any night when there's a full moon in the sky, the target becomes an NPC under the DM's control and remains so until the night ends. A {@spell Remove Curse} spell or similar magic ends this curse." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw (Wolf or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}21 ({@damage 5d6 + 4}) piercing damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Longsword (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}28 ({@damage 4d10 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "Augustus polymorphs into a wolf-humanoid hybrid, a wolf, or his humanoid form. His statistics, other than his speed, are the same in each form. Any equipment he is wearing or carrying isn't transformed. He reverts to his humanoid form if he dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cunning Action", + "body": [ + "Augustus takes the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boss Augustus-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Boss Delour", + "source": "BMT", + "page": 83, + "size_str": "Small", + "maintype": "monstrosity", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "20d6 + 40", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "in rat or hybrid form", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 12, + "dexterity": 18, + "constitution": 15, + "intelligence": 17, + "wisdom": 14, + "charisma": 16, + "passive": 20, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "int": "+7" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Thieves' cant (can't speak in rat form)" + ], + "traits": [ + { + "title": "Evasion", + "body": [ + "If Delour is subjected to an effect that allows him to make a Dexterity saving throw to take only half damage, he instead takes no damage if he succeeds on the saving throw and only half damage if he fails, provided he doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimbleness", + "body": [ + "Delour can move through the space of a Medium or larger creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Delour regains 10 hit points at the start of his turn. If he takes damage from a silver weapon, this trait doesn't function at the start of his next turn. Delour dies only if he starts his turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Delour makes any combination of three Bite, Shortsword, or Hand Crossbow attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Rat or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}26 ({@damage 5d8 + 4}) piercing damage. If the target is a Humanoid, it must succeed on a {@dc 14} Constitution saving throw or be cursed with lycanthropy. While cursed in this way, the target retains its alignment, languages, and equipment but otherwise uses the wererat stat block, excluding actions that require equipment the target doesn't have. During any night when there's a full moon in the sky, the target becomes an NPC under the DM's control and remains so until the night ends. A {@spell Remove Curse} spell or similar magic ends this curse." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shortsword (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "Delour polymorphs into a rat-humanoid hybrid, a Medium giant rat, or his humanoid form. His statistics, other than his size and speed, are the same in each form. Any equipment he is wearing or carrying isn't transformed. He reverts to his humanoid form if he dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cunning Action", + "body": [ + "Delour takes the Dash, Disengage, or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Boss Delour-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Breath Drinker", + "source": "BMT", + "page": 154, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "21d8 + 63", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 5, + "dexterity": 18, + "constitution": 16, + "intelligence": 11, + "wisdom": 15, + "charisma": 20, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "wis": "+7" + }, + "dmg_vulnerabilities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft." + ], + "languages": [ + "Deep Speech", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The breath drinker can move through other creatures and objects as if they were difficult terrain. It takes 5 ({@damage 1d10}) force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Absorption", + "body": [ + "When the breath drinker is subjected to radiant damage, it takes no damage and instead regains a number of hit points equal to the radiant damage dealt." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The breath drinker makes two Enervating Claw attacks. It can also use Drink Breath." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enervating Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one creature. {@h}12 ({@damage 2d6 + 5}) necrotic damage, and if the target is Large or smaller, it has the {@condition grappled} condition (escape {@dc 18}). The target must succeed on a {@dc 18} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Drink Breath", + "body": [ + "The breath drinker targets a creature that has the {@condition incapacitated} condition or that the breath drinker is grappling and that isn't a Construct or an Undead. The target must make a {@dc 18} Charisma saving throw. On a failed save, the target takes 36 ({@damage 8d8}) necrotic damage, and its Charisma score is reduced by {@dice 1d6}. This reduction lasts until the target finishes a short or long rest. If this reduces the target's Charisma to 0, the target dies. Until the breath drinker dies, the dead target can't be returned to life by any means short of divine intervention. On a successful save, the target takes half as much necrotic damage only. On a successful or failed save, the breath drinker regains a number of hit points equal to the necrotic damage dealt." + ], + "__dataclass__": "Entry" + }, + { + "title": "Invisibility", + "body": [ + "The breath drinker has the {@condition invisible} condition. This invisibility ends immediately after the breath drinker hits or misses with an attack roll or uses Drink Breath." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Breath Drinker-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Brusipha", + "source": "BMT", + "page": 127, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 11, + "constitution": 16, + "intelligence": 12, + "wisdom": 16, + "charisma": 16, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+5" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Demonic Ritual", + "body": [ + "Brusipha can spend 3 hours performing a ritual that summons {@dice 1d3 + 1} barlguras or 1 hezrou. She must sacrifice a Medium or larger living creature to Baphomet during this ritual, and the ritual can be performed only at night. The demons vanish at dawn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Labyrinthine Recall", + "body": [ + "Brusipha can perfectly recall any path she has traveled." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Brusipha makes two Eldritch Blast attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Blast", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage plus 4 ({@damage 1d8}) necrotic damage. If Brusipha moved at least 10 feet straight toward the target immediately before she hit, the target takes an extra 4 ({@damage 1d8}) piercing damage, and if the target is a creature, it must succeed on a {@dc 15} Strength saving throw or be pushed up to 10 feet from Brusipha and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incite the Hunters (Recharges after a Short or Long Rest)", + "body": [ + "Brusipha allows each ally within 30 feet of herself that has the Unerring Tracker trait to make one weapon attack as a reaction against the target of that ally's Unerring Tracker." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Unerring Tracker", + "body": [ + "Brusipha magically creates a psychic link with one creature she can see. For the next hour, Brusipha knows the current distance and direction to the target if it is on the same plane of existence. The link ends if Brusipha has the {@condition incapacitated} condition or uses this ability on a different target." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Baphomet's Blessing", + "body": [ + "When Brusipha reduces a hostile creature to 0 hit points, she gains 8 temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Brusipha casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Prestidigitation}", + "{@spell Speak with Animals}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Bestow Curse}", + "{@spell Command}", + "{@spell Crown of Madness}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "minotaur, warlock", + "actions_note": "", + "mythic": null, + "key": "Brusipha-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Deck Defender", + "source": "BMT", + "page": 72, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "5 + five times your level (the deck defender has a number of Hit Dice [d8s] equal to your level)", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 16, + "dexterity": 16, + "constitution": 14, + "intelligence": 3, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "languages": [ + "understands one of your languages but can't speak" + ], + "traits": [ + { + "title": "Allied Knight", + "body": [ + "Some of the deck defender's statistics are based on the character who drew the Knight card. Where the deck defender stat block refers to \"you,\" it refers to that character." + ], + "__dataclass__": "Entry" + }, + { + "title": "Folded Versatility", + "body": [ + "After finishing a long rest, you can refold the deck defender's shape, changing it to acrobat form, berserker form, or guardian form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fragile", + "body": [ + "If the deck defender is reduced to 0 hit points, it collapses into a haphazard pile of nonmagical playing cards and can't be resurrected or reconstructed." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deck defender makes a number of attacks equal to half its proficiency bonus (rounded down)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Paper Cut", + "body": [ + "{@atk mw} PB + {@hit 3} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reckless Strike (Berserker Form Only)", + "body": [ + "{@atk mw} PB + {@hit 3} to hit (with advantage), reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) slashing damage, and attacks made against the deck defender until the start of its next turn have advantage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Swift Step (Acrobat Form Only)", + "body": [ + "The deck defender takes the Dash or Disengage action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection (Guardian Form Only)", + "body": [ + "When a creature the deck defender can see attacks a target other than the deck defender and is within 5 feet of the deck defender, the deck defender imposes disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deck Defender-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Enchanting Infiltrator", + "source": "BMT", + "page": 46, + "size_str": "Small", + "maintype": "fey", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "veiled presence", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 156, + "formula": "24d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 10, + "dexterity": 20, + "constitution": 15, + "intelligence": 20, + "wisdom": 16, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "int": "+9" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "languages": [ + "Common", + "thieves' cant", + "plus any one language" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the infiltrator fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Veiled Presence", + "body": [ + "The infiltrator's AC includes its Wisdom modifier, and the infiltrator can't be targeted by divination magic or features that would read its mind or determine its creature type." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The infiltrator makes two Poison Blade attacks and can use Beguiling Whisper." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Blade", + "body": [ + "{@atk mw,rw} {@hit 9} to hit, reach 5 ft. or range 60 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 11 ({@damage 2d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beguiling Whisper", + "body": [ + "The infiltrator magically whispers to a creature it can see within 30 feet of itself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition stunned} condition due to fear or delight (the infiltrator's choice) until the end of the target's next turn, after which the target is immune to this Beguiling Whisper for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "When an attacker the infiltrator can see hits the infiltrator with an attack, the infiltrator halves the attack's damage against it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cunning", + "body": [ + "The infiltrator escapes nonmagical restraints and ends the {@condition grappled} condition on itself, then moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab (Costs 2 Actions)", + "body": [ + "The infiltrator makes one Poison Blade attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Misdirecting Escape (Costs 3 Actions)", + "body": [ + "The infiltrator magically has the {@condition invisible} condition and creates an illusory duplicate of itself in its space, then teleports, along with any equipment it is wearing or carrying, to an unoccupied space within 15 feet of itself. The image flings illusory blades at two creatures of the infiltrator's choice within 20 feet of the image. Each target must make a {@dc 17} Wisdom saving throw, taking 13 ({@damage 3d8}) psychic damage on a failed save, or half as much damage on a successful one. The invisibility lasts until the end of the infiltrator's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Enchanting Infiltrator-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Euryale", + "source": "BMT", + "page": 189, + "size_str": "Medium", + "maintype": "monstrosity", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 297, + "formula": "35d8 + 140", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 21, + "dexterity": 16, + "constitution": 18, + "intelligence": 12, + "wisdom": 20, + "charisma": 15, + "passive": 21, + "skills": { + "skills": [ + { + "target": "animal handling", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 17, + "__dataclass__": "SkillMod" + }, + { + "target": "medicine", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+10", + "int": "+7", + "wis": "+11" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Druidic" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Euryale fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Euryale carries one half of a pair of {@item Sending Stones}; the other half of the pair is held by Asteria." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Euryale makes three attacks. If she is in serpent form, only one of these attacks can be Constrict." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict (Serpent Form Only)", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 15 ft., one Large or smaller creature. {@h}16 ({@damage 2d10 + 5}) bludgeoning damage, and the target has the {@condition grappled} condition (escape {@dc 19}). Until this grapple ends, the target takes 11 ({@damage 2d10}) bludgeoning damage at the start of each of its turns, and Euryale can't constrict another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snake Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and the target must succeed on a {@dc 18} Constitution saving throw or have the {@condition poisoned} condition until the start of Euryale's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Verdant Bolt (Medusa Form Only)", + "body": [ + "{@atk rs} {@hit 11} to hit, range 120 ft., one target. {@h}18 ({@damage 4d8}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "Euryale changes shape into her Huge serpent form or back into her Medium medusa form. Euryale's game statistics are the same in each form except where noted in this stat block. Any equipment she is wearing or carrying isn't transformed. Euryale reverts to her medusa form if she dies." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Gaze {@recharge 4}", + "body": [ + "Euryale unleashes petrifying magic from her eyes in a 30-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw if it doesn't have the {@condition blinded} condition. If the saving throw fails by 5 or more, the creature has the {@condition petrified} condition. Otherwise, on a failed save, the creature takes 14 ({@damage 4d6}) force damage, begins to turn to stone, and has the {@condition restrained} condition. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a failed save, it has the {@condition petrified} condition, and on a successful save, the effect ends on it, The petrification lasts until the creature is freed by the {@spell Greater Restoration} spell or other magic A creature can use its reaction, if available, to shut its eyes to avoid the saving throw. If the creature does so, it has the {@condition blinded} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "Euryale moves up to her speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Venomous Strike (Costs 2 Actions)", + "body": [ + "Euryale makes one Snake Bite attack. If the target has the {@condition poisoned} condition, the attack deals an extra 16 ({@damage 3d10}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Medusa Form Only)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting (Medusa Form Only)", + "body": [ + "Euryale casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 19}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Druidcraft}", + "{@spell Pass without Trace}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Goodberry}", + "{@spell Lesser Restoration}", + "{@spell Locate Creature}", + "{@spell Move Earth}", + "{@spell Transport via Plants}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "druid, medusa", + "actions_note": "", + "mythic": null, + "key": "Euryale-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Fate Hag", + "source": "BMT", + "page": 176, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 71, + "formula": "13d8 + 13", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 18, + "charisma": 15, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "wis": "+6" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the hag fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trace the Threads (1/Day)", + "body": [ + "The hag can cast the {@spell Legend Lore} spell, requiring no material components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hag makes two Shears attacks. It can replace one attack with a use of Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shears", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) force damage. If the target is a creature, it has disadvantage on attack rolls until the end of the hag's next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Destined Jaunt", + "body": [ + "The hag magically teleports, along with any equipment it is wearing or carrying, to an unoccupied space it can see within 30 feet of itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tangle Threads", + "body": [ + "The hag magically tangles a creature it can see within 60 feet of itself in spectral silver threads. The creature must succeed on a {@dc 14} Strength saving throw, or its speed is reduced to 0 until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Destiny Curse (Costs 2 Actions)", + "body": [ + "The hag magically curses a creature it can see within 60 feet of itself. The creature must make a {@dc 14} Wisdom saving throw, and the creature has disadvantage on this save if it has damaged the hag within the last minute. On a failed save, the creature has disadvantage on ability checks, attack rolls, and saving throws until the curse ends. Once per turn, when the cursed creature fails one of those {@dice d20} rolls, it takes 7 ({@damage 2d6}) force damage. The curse ends after 1 minute; when the creature succeeds on a total of three ability checks, attack rolls, or saving throws in any combination; or when the hag uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "While holding its shears, the hag casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Bless}", + "{@spell Guidance}", + "{@spell Silent Image}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Bane}", + "{@spell Bestow Curse}", + "{@spell Divination}", + "{@spell Scrying} (as an action)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Fate Hag-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Gremorly's Ghost", + "source": "BMT", + "page": 122, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "15d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 7, + "dexterity": 14, + "constitution": 12, + "intelligence": 18, + "wisdom": 12, + "charisma": 17, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+8", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Dwarvish", + "Giant" + ], + "traits": [ + { + "title": "Ethereal Sight", + "body": [ + "Gremorly can see 60 feet into the Ethereal Plane when he is on the Material Plane, and vice versa." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incorporeal Movement", + "body": [ + "Gremorly can move through other creatures and objects as if they were difficult terrain. He takes 5 ({@damage 1d10}) force damage if he ends his turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Gremorly fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Gremorly makes three Withering Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Withering Strike", + "body": [ + "{@atk ms} {@hit 8} to hit, reach 5 ft., one target. {@h}19 ({@damage 3d12}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fell Necromancy", + "body": [ + "Gremorly targets one creature he can see within 60 feet of himself. The target must make a {@dc 16} Constitution saving throw, taking 61 ({@damage 7d8 + 30}) necrotic damage on a failed save, or half as much damage on a successful one. In addition, Gremorly regains 9 ({@dice 2d8}) hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Possession {@recharge}", + "body": [ + "One Humanoid Gremorly can see within 5 feet of himself must succeed on a {@dc 15} Charisma saving throw or be possessed by him; Gremorly disappears, and the target has the {@condition incapacitated} condition and loses control of its body. Gremorly can't be targeted by any attack, spell, or other effect, except ones that turn Undead, and he retains his alignment, Intelligence, Wisdom, Charisma, and immunity to the {@condition charmed} and {@condition frightened} conditions. He otherwise uses the target's game statistics, but Gremorly doesn't gain access to the target's knowledge, class features, or proficiencies.", + "The possession lasts until the target drops to 0 hit points, Gremorly ends it as a bonus action, or Gremorly is turned or forced out by an effect like the {@spell Dispel Evil and Good} spell. When the possession ends, Gremorly reappears in an unoccupied space within 5 feet of the target. The target is immune to this Possession for 24 hours after succeeding on the saving throw or after the possession ends." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Ethereal Step {@recharge 4}", + "body": [ + "Gremorly teleports up to 30 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Gremorly casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 16}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Dancing Lights}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Slow}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell Bestow Curse}", + "{@spell Dispel Magic}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gremorly's Ghost-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Grim Champion of Bloodshed", + "source": "BMT", + "page": 161, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 280, + "formula": "33d8 + 132", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "20", + "xp": 25000, + "strength": 23, + "dexterity": 12, + "constitution": 18, + "intelligence": 10, + "wisdom": 17, + "charisma": 21, + "passive": 19, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "dex": "+7", + "con": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the champion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes four Blazing Morningstar attacks. It can replace one of these attacks with Blade Storm, if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blazing Morningstar", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 14 ({@damage 4d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blade Storm {@recharge 5}", + "body": [ + "The champion conjures a churning storm of spectral blades that fills a 20-foot cube centered on a point it can see within 120 feet of itself. The storm lasts until the start of the champion's next turn. While the storm is active, the area of the storm is difficult terrain. Whenever a creature enters the storm for the first time on a turn or starts its turn there, it must make a {@dc 19} Dexterity saving throw, taking 27 ({@damage 6d8}) slashing damage on a failed saving throw, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Furious Pursuit", + "body": [ + "The champion moves up to its speed or commands its mount to move up to its speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Induce Violence", + "body": [ + "The champion targets one creature it can see within 60 feet of itself. The target must succeed on a {@dc 19} Wisdom saving throw or immediately make one melee weapon attack against another creature of the champion's choice that is within the target's reach. If no creature is within the target's reach or if the target has the {@condition incapacitated} condition, the target instead takes 11 ({@damage 2d10}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Menace (Costs 2 Actions)", + "body": [ + "The champion chooses any number of creatures it can see within 30 feet of itself. Each target must succeed on a {@dc 19} Wisdom saving throw or have the {@condition frightened} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grim Champion of Bloodshed-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Grim Champion of Desolation", + "source": "BMT", + "page": 162, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item studded leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 416, + "formula": "49d8 + 196", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "25", + "xp": 75000, + "strength": 22, + "dexterity": 23, + "constitution": 18, + "intelligence": 12, + "wisdom": 20, + "charisma": 19, + "passive": 23, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+14", + "con": "+12", + "wis": "+13" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the champion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes two Leeching Blade attacks and uses Hollow Void." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leeching Blade", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 33 ({@damage 6d10}) cold damage, and the champion regains 10 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hollow Void", + "body": [ + "The champion summons a hungering rift around a creature it can see within 120 feet of itself. The creature must make a {@dc 22} Constitution saving throw. On a failed save, the creature takes 49 ({@damage 11d8}) force damage and has the {@condition stunned} condition until the start of the champion's next turn. On a successful save, the creature takes half as much damage only. If a creature is reduced to 0 hit points by this effect, the creature dies, and its body crumbles to dust." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Step into Nothing {@recharge 4}", + "body": [ + "The champion, along with any equipment it is wearing or carrying, has the {@condition invisible} condition and teleports to an unoccupied space it can see within 30 feet of itself. The champion remains {@condition invisible} until the start of its next turn or immediately after it deals damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Crush", + "body": [ + "The champion unleashes a burst of crushing force on a creature it can see within 30 feet of itself. The creature must succeed on a {@dc 22} Strength saving throw or take 14 ({@damage 4d6}) force damage and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fearsome Pursuit", + "body": [ + "The champion moves up to its speed or commands its mount to move up to its speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nullify (Costs 2 Actions)", + "body": [ + "The champion emits a magic wave in a 60-foot cone. Every spell of 5th level or lower ends on creatures and objects of the champion's choice in that area." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grim Champion of Desolation-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Grim Champion of Pestilence", + "source": "BMT", + "page": 163, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14, + { + "ac": 17, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 17, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 120, + "formula": "16d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 10, + "dexterity": 18, + "constitution": 16, + "intelligence": 17, + "wisdom": 15, + "charisma": 21, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Halo of Pestilence", + "body": [ + "The champion is surrounded by an aura of deadly magic that takes the form of a host of glowing white insects. Each creature that starts its turn within 10 feet of the champion must succeed on a {@dc 18} Constitution saving throw or have the {@condition incapacitated} condition until the start of its next turn, as the insects ravage its body." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the champion fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes two Blight Staff attacks, two Plague Bolt attacks, or one of each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blight Staff", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plague Bolt", + "body": [ + "{@atk rs} {@hit 10} to hit, range 120 ft., one target. {@h}23 ({@damage 4d8 + 5}) poison damage, and the target has the {@condition poisoned} condition until the start of the champion's next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "The champion makes one Blight Staff or Plague Bolt attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Furious Pursuit", + "body": [ + "The champion moves up to its speed or commands its mount to move up to its speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The champion uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The champion casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Magic}", + "{@spell Mage Armor} (self only)" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Blight}", + "{@spell Blindness/Deafness}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Cloudkill}", + "{@spell Contagion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Grim Champion of Pestilence-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Harrow Hawk", + "source": "BMT", + "page": 177, + "size_str": "Tiny", + "maintype": "undead", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 25, + "formula": "10d4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 5, + "dexterity": 16, + "constitution": 10, + "intelligence": 2, + "wisdom": 14, + "charisma": 7, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "actions": [ + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}8 ({@damage 2d4 + 3}) slashing damage plus 3 ({@damage 1d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plane Shift (2/Day)", + "body": [ + "The hawk casts {@spell Plane Shift} on itself, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Dash", + "body": [ + "When the hawk is in dim light or darkness, it teleports up to 30 feet to an unoccupied space it can see that is also in dim light or darkness. The hawk then has advantage on the first melee attack it makes before the end of the turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harrow Hawk-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Harrow Hound", + "source": "BMT", + "page": 164, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "6d8 + 18", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 19, + "constitution": 16, + "intelligence": 8, + "wisdom": 15, + "charisma": 13, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Blink Dog", + "understands Sylvan but can't speak it" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The hound has advantage on attack rolls against a creature if at least one of the hound's allies is within 5 feet of the target and the ally doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Supernatural Tracker", + "body": [ + "The hound knows the distance to and direction of any creature that has come within 30 feet of it, even if that creature is on a different plane of existence. If the creature being tracked by the hound dies, the hound knows." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage plus 3 ({@damage 1d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Step {@recharge 4}", + "body": [ + "The hound magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Harrow Hound-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Hierophant Medusa", + "source": "BMT", + "page": 179, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Any", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 237, + "formula": "25d10 + 100", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 22, + "dexterity": 20, + "constitution": 18, + "intelligence": 15, + "wisdom": 23, + "charisma": 22, + "passive": 22, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+12" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any three languages (Abyssal, Celestial, Druidic, or Infernal recommended)" + ], + "traits": [ + { + "title": "Devotion's Call (1/Day)", + "body": [ + "The medusa can cast the {@spell Resurrection} spell, requiring no material components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If the medusa fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The medusa makes one Constrict attack, one Final Blade attack, and one Snake Hair attack. Alternatively, it makes two Wrathful Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Constrict", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}16 ({@damage 3d6 + 6}) bludgeoning damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 20}). Until this grapple ends, the target has the {@condition restrained} condition, and the medusa can't constrict another creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Final Blade", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 21 ({@damage 6d6}) force damage. If the target has at least one head and the medusa rolled a 20 on the attack roll, the target is decapitated and dies if it fails a {@dc 20} Constitution saving throw and can't survive without that head. A target is immune to this effect if it takes none of the damage, has legendary actions, or is Huge or larger. Such a creature takes an extra 28 ({@damage 8d6}) force damage from the hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snake Hair", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage plus 5 ({@damage 1d10}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wrathful Strike", + "body": [ + "{@atk rs} {@hit 12} to hit, range 120 ft., one creature. {@h}22 ({@damage 3d10 + 6}) radiant damage, and the target has the {@condition blinded} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Petrifying Gaze {@recharge 4}", + "body": [ + "The medusa unleashes petrifying magic from its eyes in a 30-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw if it doesn't have the {@condition blinded} condition. If the saving throw fails by 5 or more, the creature has the {@condition petrified} condition. Otherwise, on a failed save, the creature takes 10 ({@damage 3d6}) force damage, begins to turn to stone, and has the {@condition restrained} condition. The {@condition restrained} creature must repeat the saving throw at the end of its next turn. On a failed save, it has the {@condition petrified} condition, and on a successful save, the effect ends on it. The petrification lasts until the creature is freed by the {@spell Greater Restoration} spell or other magic.", + "A creature can use its reaction, if available, to shut its eyes to avoid the saving throw. If the creature does so, it has the {@condition blinded} condition until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The medusa moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wrathful Blast (Costs 2 Actions)", + "body": [ + "The medusa makes one Wrathful Strike attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Final Slash (Costs 3 Actions)", + "body": [ + "The medusa makes one Final Blade attack with advantage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The medusa casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 20}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Light}", + "{@spell Spare the Dying}", + "{@spell Thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Mass Cure Wounds} (cast at 8th level)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Blade Barrier}", + "{@spell Divination}", + "{@spell Greater Restoration}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hierophant Medusa-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Hierophant of the Comet", + "source": "BMT", + "page": 92, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "{@item breastplate|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 12, + "dexterity": 13, + "constitution": 18, + "intelligence": 15, + "wisdom": 17, + "charisma": 20, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 30 ft." + ], + "languages": [ + "Common plus any two languages", + "telepathy 60 ft." + ], + "traits": [ + { + "title": "Comet's Voice (1/Day)", + "body": [ + "The hierophant can cast {@spell Contact Other Plane}, using Charisma as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The hierophant has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thought Shield", + "body": [ + "The hierophant's thoughts can't be read by any means unless the hierophant allows it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hierophant makes two Herald's Axe attacks or three Comet Blast attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Herald's Axe", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d12 + 5}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Comet Blast", + "body": [ + "{@atk rs} {@hit 9} to hit, range 120 ft., one target. {@h}16 ({@damage 2d10 + 5}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "All-Consuming Star {@recharge}", + "body": [ + "The hierophant conjures a manifestation of the All-Consuming Star: brilliant light and haunting screams that fill a 20-foot-radius sphere centered on a point the hierophant can see within 60 feet of itself. Each creature within the sphere has the {@condition blinded} and {@condition deafened} conditions. Each creature that enters the sphere for the first time on a turn or starts its turn there must make a {@dc 17} Wisdom saving throw. On a failed save, a creature takes 27 ({@damage 6d8}) psychic damage and has the {@condition incapacitated} condition until the start of its next turn. On a successful save, a creature takes half as much damage only. The manifestation persists until the hierophant dies, has the {@condition incapacitated} condition, uses a bonus action to end the effect, or uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Star's Hunger", + "body": [ + "The hierophant targets one creature within 30 feet of the center of its All-Consuming Star. The target must succeed on a {@dc 17} Strength saving throw or be pulled up to 30 feet toward the center of the All-Consuming Star." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The hierophant casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Thoughts}", + "{@spell Mage Hand}", + "{@spell Thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Dimension Door}", + "{@spell Mass Suggestion}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Hierophant of the Comet-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Hulgaz", + "source": "BMT", + "page": 169, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 190, + "formula": "20d10 + 80", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 17, + "dexterity": 10, + "constitution": 18, + "intelligence": 14, + "wisdom": 15, + "charisma": 20, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Hulgaz fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Hulgaz has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Hulgaz makes two Claw attacks and one Intoxicating Sting attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Intoxicating Sting", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one creature. {@h}8 ({@damage 1d10 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage, and the target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition until the start of Hulgaz's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Brimstone Vapor {@recharge 5}", + "body": [ + "Hulgaz exhales a 30-foot cone of noxious, scorching-hot vapor. Each creature in that area must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature takes 31 ({@damage 7d8}) fire damage at the start of each of its turns and has disadvantage on Wisdom saving throws. A target can repeat the Constitution saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Attack", + "body": [ + "Hulgaz makes one Claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "Hulgaz uses Spellcasting to cast {@spell Charm Person}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Curdle Heart (Costs 2 Actions)", + "body": [ + "Hulgaz sours the good feelings of her {@condition charmed} victims. She chooses any number of creatures she can see who are {@condition charmed} by her. Each target takes 17 ({@damage 5d6}) psychic damage as the {@condition charmed} condition applied by Hulgaz ends on it." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Hulgaz casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Charm Person}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Teleport}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell Dispel Magic}", + "{@spell Fog Cloud}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Hulgaz-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Initiate of the Comet", + "source": "BMT", + "page": 93, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 12, + "dexterity": 14, + "constitution": 16, + "intelligence": 11, + "wisdom": 13, + "charisma": 17, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+3", + "cha": "+5" + }, + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The initiate has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The initiate makes two Comet Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Comet Strike", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 2d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Moment of Foresight (1/Day)", + "body": [ + "When hit by an attack roll, the initiate can force the attacker to reroll it and use the new roll, possibly causing the attack to miss." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The initiate casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Mage Hand}", + "{@spell Thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Dimension Door}", + "{@spell Divination}", + "{@spell Enthrall}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "warlock", + "actions_note": "", + "mythic": null, + "key": "Initiate of the Comet-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Living Portent", + "source": "BMT", + "page": 180, + "size_str": "Small", + "maintype": "celestial", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 16, + "constitution": 14, + "intelligence": 14, + "wisdom": 16, + "charisma": 15, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+5" + }, + "dmg_immunities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Brilliance (True Form Only)", + "body": [ + "The living portent sheds bright light for 30 feet and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The living portent makes two Radiant Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Strike", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}9 ({@damage 1d12 + 3}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Prophetic Blessing", + "body": [ + "The living portent magically infuses the power of its prophecy into another willing creature the living portent can see within 30 feet of itself. The target's hit point maximum and current hit points increase by 7 ({@dice 1d8 + 3}), and it gains a prophecy die, a {@dice d8}. Once during each of the creature's turns, when it fails an ability check or saving throw or misses an attack roll, it can roll the prophecy die and add the number rolled to the total, potentially changing the outcome. The blessing ends after 1 hour or when the living portent ends the blessing (no action required) or uses this action again." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The living portent magically transforms into a Humanoid while retaining its game statistics (other than its size and Brilliance trait). The transformation ends if the living portent is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Price of Defiance", + "body": [ + "When the living portent is damaged by a creature that it can see within 120 feet of itself, radiant power sears the creature. The creature must make a {@dc 13} Constitution saving throw, taking 10 ({@damage 3d6}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The living portent casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Cure Wounds}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Divination}", + "{@spell Greater Restoration}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Living Portent-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Malaxxix", + "source": "BMT", + "page": 173, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 312, + "formula": "25d12 + 150", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 23, + "dexterity": 16, + "constitution": 22, + "intelligence": 22, + "wisdom": 20, + "charisma": 18, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "con": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Infernal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Malaxxix fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Malaxxix has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Malaxxix makes two Forge Hammer or Whip attacks in any combination." + ], + "__dataclass__": "Entry" + }, + { + "title": "Forge Hammer", + "body": [ + "{@atk mw,rw} {@hit 12} to hit, reach 10 ft. or range 60/180 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage, and the target can't take reactions until the end of Malaxxix's next turn. {@hom}The hammer then magically returns to Malaxxix's hand." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whip", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 30 ft., one creature. {@h}15 ({@damage 2d8 + 6}) slashing damage, and the target has the {@condition restrained} condition for 1 minute. The {@condition restrained} target can make a {@dc 20} Strength saving throw at the end of each of its turns, ending the effect on itself on a success. Only one creature can be {@condition restrained} by the whip at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mezzoloth Vortex {@recharge 5}", + "body": [ + "Malaxxix summons a vortex of whirling mezzoloths at a point it can see within 90 feet of itself. The vortex is a 30-foot-radius, 100-foot-high cylinder centered on that point. Each creature other than Malaxxix in that area must make a {@dc 20} Dexterity saving throw. On a failed save, a creature takes 35 ({@damage 10d6}) force damage and has the {@condition restrained} condition while within the cylinder. On a successful save, a creature takes half as much damage and is pushed to the nearest unoccupied space outside the cylinder. The vortex lasts until the start of Malaxxix's next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Fiendish Stride", + "body": [ + "Malaxxix moves up to its speed. This movement doesn't provoke opportunity attacks. When Malaxxix moves within 5 feet of a creature during this movement, that creature takes 5 ({@damage 1d10}) lightning damage. A creature can take this damage only once per turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Attack (Costs 2 Actions)", + "body": [ + "Malaxxix makes one Forge Hammer or Whip attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "yugoloth", + "actions_note": "", + "mythic": null, + "key": "Malaxxix-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Minotaur Archaeologist", + "source": "BMT", + "page": 126, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 18, + "formula": "4d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 12, + "dexterity": 10, + "constitution": 11, + "intelligence": 13, + "wisdom": 12, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Labyrinthine Recall", + "body": [ + "The minotaur can perfectly recall any path it has traveled." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}4 ({@damage 1d6 + 1}) piercing damage. If the minotaur moved at least 10 feet straight toward the target immediately before it hit, the target takes an extra 3 ({@damage 1d6}) piercing damage, and if the target is a Large or smaller creature, it must succeed on a {@dc 11} Strength saving throw or be pushed up to 10 feet from the minotaur and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Minotaur Archaeologist-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Minotaur Infiltrator", + "source": "BMT", + "page": 127, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d8 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 18, + "dexterity": 11, + "constitution": 14, + "intelligence": 8, + "wisdom": 16, + "charisma": 10, + "passive": 17, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 1, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Common" + ], + "traits": [ + { + "title": "Labyrinthine Recall", + "body": [ + "The minotaur can perfectly recall any path it has traveled." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage, or 13 ({@damage 2d8 + 4}) piercing damage while enlarged. If the minotaur moved at least 10 feet straight toward the target immediately before it hit, the target takes an extra 4 ({@damage 1d8}) piercing damage, or 9 ({@damage 2d8}) piercing damage if the minotaur is enlarged. If the target is a creature, it must succeed on a {@dc 14} Strength saving throw or be pushed up to 10 feet from the minotaur and have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mattock", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage, or 17 ({@damage 2d12 + 4}) bludgeoning damage while enlarged. If the target is a creature and the minotaur is enlarged, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Enlarge (Recharges after a Short or Long Rest)", + "body": [ + "For 1 minute, the minotaur magically increases in size, along with anything it is wearing or carrying. While enlarged, the minotaur is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the minotaur lacks the room to become Large, the minotaur doesn't change size." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Unerring Tracker", + "body": [ + "The minotaur magically creates a psychic link with one creature it can see. For the next hour, the minotaur knows the current distance and direction to the target if it is on the same plane of existence. The link ends if the minotaur has the {@condition incapacitated} condition or uses this ability on a different target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Minotaur Infiltrator-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Oddlewin", + "source": "BMT", + "page": 111, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 8, + "dexterity": 14, + "constitution": 10, + "intelligence": 10, + "wisdom": 16, + "charisma": 15, + "passive": 13, + "skills": { + "skills": [ + { + "target": "performance", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin", + "Sylvan" + ], + "traits": [ + { + "title": "Fortune Teller", + "body": [ + "Oddlewin can cast the {@spell Augury} spell as a ritual, using cards as the material component." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nilbogism", + "body": [ + "Any creature that attempts to damage Oddlewin must first succeed on a {@dc 12} Charisma saving throw or have the {@condition charmed} condition until the end of the creature's next turn. The creature must use its action praising Oddlewin.", + "Oddlewin can't regain hit points, including through magical healing, except through his Reversal of Fortune reaction." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Fool's Scepter", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cloud of Cards", + "body": [ + "Oddlewin conjures magical cards that slash at the air in a 5-foot cube within 60 feet of Oddlewin until the start of Oddlewin's next turn. A creature that starts its turn in the cube or that enters that area for the first time on a turn takes 10 ({@damage 4d4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "Oddlewin takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Reversal of Fortune", + "body": [ + "In response to another creature dealing damage to Oddlewin, Oddlewin reduces the damage to 0 and regains 9 ({@dice 2d8}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Oddlewin casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Mage Hand}", + "{@spell Tasha's Hideous Laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Oddlewin-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Otherworldly Corrupter", + "source": "BMT", + "page": 47, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 217, + "formula": "29d8 + 87", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 12, + "dexterity": 22, + "constitution": 16, + "intelligence": 22, + "wisdom": 18, + "charisma": 20, + "passive": 20, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 18, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+12", + "int": "+12" + }, + "dmg_resistances": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft." + ], + "languages": [ + "Common", + "telepathy 120 ft.", + "Thieves' cant" + ], + "traits": [ + { + "title": "Alien Mind", + "body": [ + "Magic and other features can't determine the corrupter's creature type. If a creature tries to read the corrupter's thoughts, that creature must succeed on a {@dc 20} Intelligence saving throw or have the {@condition stunned} condition for 1 minute. The {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the corrupter fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The corrupter can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The corrupter makes three Whispering Blade attacks and can use Debilitating Touch." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whispering Blade", + "body": [ + "{@atk mw,rw} {@hit 12} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 1d8 + 6}) piercing damage plus 14 ({@damage 4d6}) psychic damage. If the target is a creature, it must succeed on a {@dc 20} Wisdom saving throw or be unable to speak until the start of the corrupter's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Debilitating Touch", + "body": [ + "The corrupter's squirming tentacle lashes out at a creature the corrupter can see within 30 feet of itself. The target must succeed on a {@dc 20} Constitution saving throw or have the {@condition paralyzed} condition until the end of its next turn, after which the target is immune to this Debilitating Touch for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The corrupter magically transforms into any creature that is Small or Medium, while retaining its game statistics (other than its size). This transformation ends if the corrupter is reduced to 0 hit points or uses a bonus action to end it." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "When an attacker the corrupter can see hits the corrupter with an attack, the corrupter halves the attack's damage against it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cunning", + "body": [ + "The corrupter escapes nonmagical restraints and ends the {@condition grappled} and {@condition restrained} conditions on itself, then moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab (Costs 2 Actions)", + "body": [ + "The corrupter makes one Whispering Blade attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Amorphous Escape (Costs 3 Actions)", + "body": [ + "The corrupter dissolves into a shifting mass of flesh, tentacles, eyes, claws, and mouths. Up to two creatures the corrupter can see within 20 feet of itself must make a {@dc 20} Intelligence saving throw, taking 18 ({@damage 4d8}) psychic damage on a failed save, or half as much damage on a successful one. This transformation lasts until the end of the corrupter's next turn. While transformed, the corrupter has advantage on attack rolls, attack rolls made against it have disadvantage, and it can move through spaces at least 1 inch wide without squeezing." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Otherworldly Corrupter-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Pazrodine", + "source": "BMT", + "page": 113, + "size_str": "Gargantuan", + "maintype": "dragon", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 330, + "formula": "20d20 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 22, + "dexterity": 18, + "constitution": 23, + "intelligence": 20, + "wisdom": 22, + "charisma": 26, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+13", + "cha": "+15" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Guardian of the Market", + "body": [ + "Pazrodine can sense when an item is stolen from Seelie Market. She knows the distance and direction to stolen items, as if by the {@spell Locate Object} spell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Pazrodine fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Pazrodine makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 11 ({@damage 2d10}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d8 + 6}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath Weapon {@recharge 5}", + "body": [ + "Pazrodine uses one of the following breath weapons:", + { + "title": "Dream Breath", + "body": [ + "Pazrodine exhales mist in a 90-foot cone. Each creature in that area must succeed on a {@dc 21} Constitution saving throw or have the {@condition unconscious} condition for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moonlight Breath", + "body": [ + "Pazrodine exhales a beam of moonlight in a 120-foot line that is 10 feet wide. Each creature in that area must make a {@dc 21} Dexterity saving throw, taking 60 ({@damage 11d10}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Tail", + "body": [ + "Pazrodine makes one Tail attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Pazrodine uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Pazrodine casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Faerie Fire}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Calm Emotions}", + "{@spell Dispel Magic}", + "{@spell Invisibility}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Mass Cure Wounds}", + "{@spell Revivify}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "moonstone", + "actions_note": "", + "mythic": null, + "key": "Pazrodine-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Riffler", + "source": "BMT", + "page": 181, + "size_str": "Small", + "maintype": "fey", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "20d6 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 8, + "dexterity": 16, + "constitution": 12, + "intelligence": 11, + "wisdom": 15, + "charisma": 17, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+6" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Card Sense", + "body": [ + "The riffler can smell the presence of magical cards, including Decks of Many Things and other magical decks, within 1 mile of itself. It knows the direction to any such cards in that range. Effects that protect a target from divination magic block this sense." + ], + "__dataclass__": "Entry" + }, + { + "title": "Riffling Step", + "body": [ + "The riffler can burrow through any nonmagical material that isn't iron, shuffling the substance through which the riffler moves aside like cards to form a tunnel that closes behind the riffler." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The riffler makes two Spectral Card attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spectral Card", + "body": [ + "{@atk ms,rs} {@hit 6} to hit, reach 5 ft. or range 60 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage plus 5 ({@damage 1d10}) damage that is radiant if the {@dice d10} roll is an even number and necrotic if it's odd." + ], + "__dataclass__": "Entry" + }, + { + "title": "Card Spray {@recharge 5}", + "body": [ + "The riffler magically unleashes a spray of spectral cards in a 30-foot cone. Each creature in that area must make a {@dc 14} Dexterity saving throw. On a failed save, a creature takes 27 ({@damage 5d10}) force damage and has the {@condition restrained} condition for 1 minute as cards bind it. On a successful save, a creature takes half as much damage only. A {@condition restrained} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plane Shift", + "body": [ + "The riffler casts the {@spell Plane Shift} spell targeting only itself, requiring no material components and using Charisma as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shuffle Destiny", + "body": [ + "When a creature the riffler can see within 30 feet of itself makes an ability check, an attack roll, or a saving throw, the riffler can magically force that creature to roll a {@dice d6} and either add the number rolled to the total or subtract it from the total (riffler's choice), potentially changing the outcome." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Riffler-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Ruin Spider", + "source": "BMT", + "page": 182, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d10 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 16, + "dexterity": 18, + "constitution": 14, + "intelligence": 2, + "wisdom": 13, + "charisma": 4, + "passive": 11, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Ruinous Acid", + "body": [ + "Any nonmagical weapon that hits the spider corrodes. After dealing damage, the weapon takes a permanent and cumulative -1 penalty to damage rolls. If its penalty drops to -5, the weapon is destroyed. Nonmagical ammunition made of metal that hits the spider is destroyed after dealing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "While in contact with a web, the spider knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The spider ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spider makes two Ruinous Bite attacks. It can replace one attack with a use of Web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Ruinous Bite", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) piercing damage and 9 ({@damage 2d8}) acid damage. In addition, if the target is a creature wearing nonmagical armor, the armor takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an Armor Class of 10 is destroyed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web {@recharge 5}", + "body": [ + "{@atk rw} {@hit 7} to hit, range 30/60 ft., one creature. {@h}The target has the {@condition restrained} condition. As an action, a {@condition restrained} target can make a {@dc 13} Strength check, bursting the webbing on a successful check. The webbing can also be destroyed (AC 10; 5 hit points; vulnerability to fire damage; immunity to acid, bludgeoning, poison, and psychic damage)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Ruin Spider-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Sir Jared", + "source": "BMT", + "page": 80, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d8 + 36", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 12, + "constitution": 17, + "intelligence": 13, + "wisdom": 14, + "charisma": 17, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "athletics", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "con": "+6" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Halfling" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Jared makes three Longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 4 ({@damage 1d8}) radiant damage. On a roll of 19 or 20, Jared scores a critical hit." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protect Ally", + "body": [ + "When a creature Jared can see attacks a target other than Jared that is within 5 feet of him, Jared imposes disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sir Jared-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Solar Bastion Knight", + "source": "BMT", + "page": 75, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 20, + "note": "{@item plate armor|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 150, + "formula": "20d8 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 10, + "constitution": 17, + "intelligence": 15, + "wisdom": 16, + "charisma": 17, + "passive": 13, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+7", + "cha": "+7" + }, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common plus any one language" + ], + "traits": [ + { + "title": "Aura of Protection", + "body": [ + "The knight and each ally within 10 feet of it have advantage on saving throws. This trait is suppressed while the knight has the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The knight makes three Sunspear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunspear", + "body": [ + "{@atk ms,rs} {@hit 8} to hit, reach 5 ft. or range 120 ft., one target. {@h}14 ({@damage 3d6 + 4}) radiant damage, or 21 ({@damage 5d6 + 4}) radiant damage if the target is a Fiend or an Undead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Solar Flare {@recharge 5}", + "body": [ + "The knight unleashes a blaze of brilliant energy that fills a 30-foot-radius sphere centered on the knight. Each creature of the knight's choice in that area must make a {@dc 15} Dexterity saving throw. On a failed save, a creature takes 22 ({@damage 4d10}) radiant damage and has the {@condition blinded} condition until the end of its next turn. On a successful save, a creature takes half as much damage only. For the next minute, the affected area is filled with bright light that is sunlight." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The knight casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 15}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Greater Restoration}", + "{@spell Sending}", + "{@spell Word of Recall} (the prepared sanctuary is the Solar Bastion)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "paladin", + "actions_note": "", + "mythic": null, + "key": "Solar Bastion Knight-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Talon Beast", + "source": "BMT", + "page": 183, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 114, + "formula": "12d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 22, + "dexterity": 14, + "constitution": 19, + "intelligence": 5, + "wisdom": 12, + "charisma": 5, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The talon beast has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sense Magic", + "body": [ + "The talon beast can detect and pinpoint the location of magic within 120 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The talon beast makes two Talon attacks or a Talon attack and a Beak attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage, and if the target has any spell effects on itself or any magic items in its possession, the target must make a {@dc 15} Charisma saving throw. On a failed save, a random spell effect on the target ends. If the target has no spell effects on it, one random magic item in its possession has its magical properties suppressed for 1 minute. If the item is a potion or scroll, it becomes nonmagical instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) slashing damage, and the target has the {@condition grappled} condition (escape {@dc 17}). Until the grapple ends, the target has the {@condition restrained} condition, and the talon beast can't use Talon on another target." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Talon Beast-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Veiled Presence", + "source": "BMT", + "page": 48, + "size_str": "Small", + "maintype": "celestial", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 20, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 300, + "formula": "40d8 + 120", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 14, + "dexterity": 24, + "constitution": 16, + "intelligence": 24, + "wisdom": 20, + "charisma": 22, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 21, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+14", + "int": "+14" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 30 ft." + ], + "languages": [ + "all" + ], + "traits": [ + { + "title": "Inviolate Presence", + "body": [ + "The veiled presence can't be targeted by divination magic or by features that would read its mind or determine its creature type." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the veiled presence fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The veiled presence makes two Blade of Judgment attacks and can use Revelation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blade of Judgment", + "body": [ + "{@atk mw,rw} {@hit 14} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 1d6 + 7}) piercing damage plus 27 ({@damage 6d8}) radiant damage. If the target is a creature, it must succeed on a {@dc 22} Charisma saving throw, or on its next turn, it can either move or take an action, but not both." + ], + "__dataclass__": "Entry" + }, + { + "title": "Revelation", + "body": [ + "The veiled presence reveals a glimpse of its otherworldly nature to a creature it can see within 30 feet of itself. The target must succeed on a {@dc 22} Wisdom saving throw or have the {@condition paralyzed} condition until the end of its next turn, after which the target is immune to this Revelation for 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Uncanny Dodge", + "body": [ + "When an attacker the veiled presence can see hits the veiled presence with an attack, the veiled presence halves the attack's damage against it." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Flash Step", + "body": [ + "The veiled presence magically teleports, along with any equipment it is wearing or carrying, up to 40 feet to an unoccupied space that it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stab (Costs 2 Actions)", + "body": [ + "The veiled presence makes one Blade of Judgment attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Searing Radiance (Costs 3 Actions)", + "body": [ + "The veiled presence magically emanates dazzling light in a 10-foot-radius sphere centered on itself until the end of its next turn, during which time attack rolls against it have disadvantage and it has advantage on attack rolls. The sphere moves with the veiled presence. When another creature starts its turn in the light or enters the light for the first time on its turn, that creature must make a {@dc 22} Constitution saving throw, taking 18 ({@damage 4d8}) radiant damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Veiled Presence-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Werevulture", + "source": "BMT", + "page": 184, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 14, + "constitution": 17, + "intelligence": 11, + "wisdom": 13, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common (can't speak in vulture form)" + ], + "traits": [ + { + "title": "Regeneration", + "body": [ + "The werevulture regains 10 hit points at the start of its turn. If the werevulture takes radiant damage, this trait doesn't function at the start of the werevulture's next turn. The werevulture dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The werevulture makes two Talon attacks, or it makes a Beak attack and a Talon attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak (Vulture or Hybrid Form Only)", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@damage 2d6 + 3}) piercing damage. If the target is a Humanoid, it must succeed on a {@dc 13} Constitution saving throw or be cursed until targeted by the {@spell Remove Curse} spell or a similar effect. If the cursed target drops to 0 hit points, it becomes a werevulture under the DM's control and regains 10 hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}13 ({@damage 4d4 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow (Humanoid or Hybrid Form Only)", + "body": [ + "{@atk rw} {@hit 4} to hit, range 150/600 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The werevulture polymorphs into a vulture-humanoid hybrid, into a vulture, or back into its humanoid form. Its game statistics, other than its speed, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its humanoid form if it dies." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Werevulture-BMT", + "__dataclass__": "Monster" + }, + { + "name": "Pech", + "source": "DitLCoT", + "page": 16, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d6 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 11, + "constitution": 18, + "intelligence": 11, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+4" + }, + "cond_immunities": [ + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "languages": [ + "Common", + "Terran" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The pech has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the pech has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pech makes two Fortified Pickaxe attacks. If it hits a Large or smaller creature with both attacks, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fortified Pickaxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) force damage. If the target is a Construct or an object, the attack is automatically a critical hit." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Communal Spellcasting (2/Day)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Communal Spellcasting (2/Day)", + "body": [ + "The pech works with three or more pechs to cast spells, requiring no spell components and using Wisdom as the spellcasting ability (save {@dc 12}). If at least three other pechs are within 30 feet of it, the pech can cast {@spell Wall of Stone}. If at least seven other pechs are within 30 feet of it, it can cast {@spell Greater Restoration}. Each other pech involved in casting the spell can't have the incapacitated condition and must have at least one use of Communal Spellcasting remaining, which it must immediately expend to participate (no action required)." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell wall of stone}", + "{@spell greater restoration}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + }, + { + "name": "Stone Shape (3/Day)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Stone Shape (3/Day)", + "body": [ + "The pech casts {@spell Stone Shape}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell stone shape}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pech-DitLCoT", + "__dataclass__": "Monster" + }, + { + "name": "Alustriel Silverhand", + "source": "VEoR", + "page": 242, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": [ + 15, + { + "ac": 18, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 18, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 272, + "formula": "32d8 + 128", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 12, + "dexterity": 20, + "constitution": 18, + "intelligence": 24, + "wisdom": 23, + "charisma": 22, + "passive": 16, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+11", + "int": "+14", + "wis": "+13" + }, + "dmg_resistances": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common", + "Draconic", + "Elvish" + ], + "traits": [ + { + "title": "Ear of the Chosen", + "body": [ + "Whenever a creature on the same plane of existence as Alustriel speaks Alustriel's name, Alustriel hears her name and the next nine words the speaker utters." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Alustriel fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Alustriel carries a magic staff known as the Staff of Silverymoon. In the hands of anyone other than Alustriel, the Staff of Silverymoon is a {@item Staff of Power}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Alustriel makes three Staff of Silverymoon attacks or two Reproving Ray attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Staff of Silverymoon", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) bludgeoning damage plus 38 ({@damage 7d10}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reproving Ray", + "body": [ + "{@atk rs} {@hit 14} to hit, range 120 ft., one target. {@h}65 ({@damage 9d12 + 7}) force damage, and if the target is a creature, it must make a {@dc 22} Charisma saving throw. On a failed save, the target has the {@condition incapacitated} condition until the start of Alustriel's next turn. On a successful save, the target's speed is reduced by 10 feet until the start of Alustriel's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Argent Blaze (Requires Silver Fire)", + "body": [ + "Alustriel summons a 60-foot cone of silver fire. Each creature in that area must make a {@dc 22} Dexterity saving throw, taking 77 ({@damage 14d10}) radiant damage on a failed save or half as much damage on a successful one. Additionally, Alustriel or one creature of her choice within 60 feet of her then regains 10 ({@dice 3d6}) hit points." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Silver Fire (2/Day)", + "body": [ + "Brilliant silver fire harmlessly wreathes Alustriel and empowers her. The silver fire lasts for 1 hour or until she has the {@condition incapacitated} condition or uses another bonus action to quench it. While wreathed in silver fire, Alustriel gains truesight within 30 feet and can use her Argent Blaze action. In addition, Alustriel is unaffected by magic that would ascertain her alignment, creature type, thoughts, or truthfulness." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Shining Counterspell", + "body": [ + "Alustriel interrupts a creature she can see within 60 feet of herself that is casting a spell. If the spell is 5th level or lower, it fails and has no effect. If the spell is 6th level or higher, Alustriel makes an Intelligence check ({@dc 10} plus the spell's level). On a successful check, the spell fails and has no effect. Whatever the spell's level, the caster takes 11 ({@damage 2d10}) radiant damage if the spell fails." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Alustriel casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Dancing Lights}", + "{@spell Detect Magic}", + "{@spell Mage Armor} (self only)", + "{@spell Mage Hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Detect Thoughts}", + "{@spell Dispel Magic}", + "{@spell Tongues}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Telepathy}", + "{@spell Teleport}", + "{@spell Time Stop}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, wizard", + "actions_note": "", + "mythic": null, + "key": "Alustriel Silverhand-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Black Rose Bearer", + "source": "VEoR", + "page": 208, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 11, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 110, + "formula": "13d8 + 52", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 17, + "dexterity": 6, + "constitution": 18, + "intelligence": 2, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Berserk", + "body": [ + "Whenever the bearer takes damage or makes a Strength or Dexterity saving throw, roll a {@dice d6}. On a 5 or 6, the bearer goes berserk. On each of its turns while berserk, the bearer has advantage on melee attack rolls, it can Dash as a bonus action, and it must attack the nearest creature it can see. If no creature is near enough to move to and attack, the bearer attacks an object, with preference for an object smaller than itself. Once the bearer goes berserk, it remains berserk until it is destroyed or its creator gives it a pristine black rose." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the bearer to 0 hit points, it must make a Constitution saving throw with a DC of 5 plus the damage taken, unless the damage is radiant or from a critical hit. On a successful save, the bearer drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bearer makes two Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d8 + 3}) bludgeoning damage plus 11 ({@damage 2d10}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Black Rose Bearer-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Blade Lieutenant", + "source": "VEoR", + "page": 209, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 18, + "dexterity": 13, + "constitution": 19, + "intelligence": 14, + "wisdom": 14, + "charisma": 17, + "passive": 16, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+6", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The lieutenant has advantage on an attack roll against a creature if at least one of the lieutenant's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The lieutenant makes three Longsword or Javelin Launcher attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}17 ({@damage 3d8 + 4}) slashing damage, or 20 ({@damage 3d10 + 4}) slashing damage if used with two hands." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin Launcher", + "body": [ + "{@atk rw} {@hit 8} to hit, range 30/120 ft., one target. {@h}14 ({@damage 3d6 + 4}) piercing damage, and the target has the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Command Ally", + "body": [ + "The lieutenant targets one ally it can see within 30 feet of itself. If the target can see or hear the lieutenant, the target can make one melee attack using its reaction, if available, and has advantage on the attack roll." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rally the Troops (1/Day)", + "body": [ + "The lieutenant ends the {@condition charmed} and {@condition frightened} conditions on itself and each creature of its choice that it can see within 30 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The lieutenant adds 3 to its AC against one melee attack that would hit it. To do so, the lieutenant must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "warforged", + "actions_note": "", + "mythic": null, + "key": "Blade Lieutenant-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Blade Scout", + "source": "VEoR", + "page": 209, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 14, + "dexterity": 20, + "constitution": 16, + "intelligence": 10, + "wisdom": 19, + "charisma": 10, + "passive": 17, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The scout has advantage on an attack roll against a creature if at least one of the scout's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The scout makes three Armblade or Bolt Launcher attacks. It can replace one of the attacks with a use of Snare Trap." + ], + "__dataclass__": "Entry" + }, + { + "title": "Armblade", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bolt Launcher", + "body": [ + "{@atk rw} {@hit 8} to hit, range 80/320 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snare Trap (1/Day)", + "body": [ + "The scout deploys a Tiny mechanical trap on a solid surface within 5 feet of itself. The trap is hidden, requiring a successful {@dc 17} Intelligence ({@skill Investigation}) check to find. The trap lasts for 1 minute. Whenever an enemy enters a space within 10 feet of the trap or starts its turn there, it must succeed on a {@dc 16} Dexterity saving throw or take 21 ({@damage 6d6}) piercing damage and have the {@condition prone} condition. A creature makes this saving throw only once per turn." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Dash", + "body": [ + "The scout moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "warforged", + "actions_note": "", + "mythic": null, + "key": "Blade Scout-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Blazebear", + "source": "VEoR", + "page": 210, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 189, + "formula": "18d10 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 24, + "dexterity": 17, + "constitution": 21, + "intelligence": 3, + "wisdom": 13, + "charisma": 16, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "cha": "+7" + }, + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The blazebear has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mist Sight", + "body": [ + "The blazebear can see normally through heavily obscured areas created by mist or fog, including areas created by spells such as Fog Cloud." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blazebear makes two Bite attacks. It can replace one attack with Stunning Gaze if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}20 ({@damage 2d12 + 7}) piercing damage plus 11 ({@damage 2d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stunning Gaze {@recharge 5}", + "body": [ + "The blazebear targets two creatures it can see within 120 feet of itself. Each target must succeed on a {@dc 15} Wisdom saving throw or have the {@condition stunned} condition until the start of the blazebear's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Antimagic Swipe", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 10 ft., one creature casting a spell of 3rd level or lower. {@h}22 ({@damage 4d10}) force damage, and the target must succeed on a {@dc 15} Intelligence saving throw or the spell fails and has no effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Blazebear-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Bone Roc", + "source": "VEoR", + "page": 211, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 133, + "formula": "14d12 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 20, + "constitution": 16, + "intelligence": 2, + "wisdom": 17, + "charisma": 10, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+8", + "wis": "+6" + }, + "dmg_vulnerabilities": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The bone roc makes one Beak attack and two Talons attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Beak", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 10 ({@damage 3d6}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bone Roc-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Borthak", + "source": "VEoR", + "page": 212, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 200, + "formula": "16d12 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 25, + "dexterity": 16, + "constitution": 22, + "intelligence": 4, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "saves": { + "str": "+12", + "con": "+11", + "cha": "+7" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Glacial Aura", + "body": [ + "At the end of the borthak's turn, slippery ice covers surfaces within 10 feet of the borthak. This ice is difficult terrain. When a creature other than the borthak enters the ice's area for the first time on a turn or starts its turn there, it must succeed on a {@dc 16} Dexterity saving throw or have the {@condition prone} condition. The ice disappears at the start of the borthak's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Webbed Feet", + "body": [ + "The borthak can move across icy surfaces without needing to make an ability check. Additionally, difficult terrain composed of ice or snow doesn't cost it extra movement." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The borthak makes one Bite attack or uses Noxious Regurgitation if available, and it makes two Stomp attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d8 + 7}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noxious Regurgitation {@recharge 5}", + "body": [ + "The borthak spews acid at a creature it can see within 120 feet of itself. The target must make a {@dc 21} Constitution saving throw. On a failed save, the creature takes 24 ({@damage 7d6}) acid damage and has the {@condition poisoned} condition until the start of the borthak's next turn. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Reactive Tail", + "body": [ + "When a creature within 10 feet of the borthak hits the borthak with an attack roll, the borthak swings its tail in retaliation. The triggering creature and any creature within 5 feet of it must succeed on a {@dc 16} Dexterity saving throw or take 16 ({@damage 2d8 + 7}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "The borthak moves up to its speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite (Costs 2 Actions)", + "body": [ + "The borthak makes one Bite attack." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Borthak-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Camlash", + "source": "VEoR", + "page": 181, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 325, + "formula": "26d12 + 156", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 26, + "dexterity": 15, + "constitution": 22, + "intelligence": 20, + "wisdom": 16, + "charisma": 22, + "passive": 13, + "saves": { + "str": "+14", + "con": "+12", + "wis": "+9", + "cha": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Death Throes", + "body": [ + "Camlash explodes when reduced to 0 hit points, and each creature within 30 feet of Camlash must make a {@dc 21} Dexterity saving throw, taking 70 ({@damage 20d6}) fire damage on a failed save or half as much damage on a successful one. The explosion ignites flammable objects in that area that aren't being worn or carried." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Camlash has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Aura", + "body": [ + "Camlash is surrounded by tiny biting spiders that magically appear and disappear from moment to moment. At the start of each of Camlash's turns, each creature within 10 feet of Camlash takes 10 ({@damage 3d6}) poison damage and must succeed on a {@dc 21} Constitution saving throw or have the {@condition paralyzed} condition until the start of Camlash's next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Camlash makes one Flaming Whip attack and one Lightning Blade attack. Camlash can replace one of these attacks with Teleport." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flaming Whip", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 30 ft., one target. {@h}25 ({@damage 5d6 + 8}) fire damage, and if the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pulled up to 25 feet toward Camlash." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Blade", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) slashing damage plus 13 ({@damage 3d8}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Teleport", + "body": [ + "Camlash magically teleports, along with any equipment she is wearing or carrying, up to 120 feet to an unoccupied space she can see." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Camlash-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Citadel Spider", + "source": "VEoR", + "page": 214, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 310, + "formula": "20d20 + 150", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 50, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "18", + "xp": 20000, + "strength": 26, + "dexterity": 10, + "constitution": 21, + "intelligence": 6, + "wisdom": 12, + "charisma": 9, + "passive": 11, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the spider fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The spider can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The spider ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spider makes two Bite attacks. It can replace one of these attacks with a use of Web Bomb." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 20 ft., one target. {@h}19 ({@damage 2d10 + 8}) piercing damage plus 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Bomb", + "body": [ + "{@atk rw} {@hit 14} to hit, range 300 ft./600 ft., one target. {@h}24 ({@damage 3d10 + 8}) bludgeoning damage, and the target and all creatures within 10 feet of it must succeed on a {@dc 19} Dexterity saving throw or take 10 ({@damage 3d6}) acid damage and have the {@condition restrained} condition until the start of the spider's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Absorb Blow", + "body": [ + "In response to being hit with an attack roll, the spider's carapace absorbs some of the blow, reducing the damage it takes by 11 ({@dice 2d10})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Citadel Spider-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Deadbark Dryad", + "source": "VEoR", + "page": 216, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 17, + "dexterity": 16, + "constitution": 18, + "intelligence": 11, + "wisdom": 16, + "charisma": 18, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+9", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Bramble Walk", + "body": [ + "Difficult terrain composed of vegetation, such as foliage or thorns, doesn't cost the dryad extra movement." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The dryad has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Speak with Beasts and Plants", + "body": [ + "The dryad can communicate with Beasts and Plants as if they shared a language." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The dryad makes two Poisonous Thorn attacks and one Sapping Vine attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poisonous Thorn", + "body": [ + "{@atk mw,rw} {@hit 8} to hit, reach 5 ft. or range 120 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage. If the target is a creature, it must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition until the start of the dryad's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sapping Vine", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 30 ft., one target. {@h}The target has the {@condition grappled} condition (escape {@dc 16}). Until the grapple ends, the target has the {@condition restrained} condition, and the dryad can't use the same vine on another target. A creature {@condition restrained} in this way takes 13 ({@damage 3d8}) necrotic damage at the start of its turn.", + "The dryad has six vines. Each vine can be attacked (AC 20; 10 hit points; immunity to poison and psychic damage). Destroying a vine deals no damage to the dryad, but any creature {@condition grappled} by that vine no longer has the {@condition grappled} condition. All vines immediately wither and disappear when the dryad is reduced to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The dryad casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Druidcraft}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Dispel Magic}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell Pass without Trace}", + "{@spell Spike Growth}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deadbark Dryad-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Deathwolf", + "source": "VEoR", + "page": 217, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 20, + "dexterity": 16, + "constitution": 18, + "intelligence": 10, + "wisdom": 17, + "charisma": 19, + "passive": 23, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "dex": "+8", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If the deathwolf fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moon's Grace", + "body": [ + "When the deathwolf falls, it descends at a rate of 60 feet per round and takes no falling damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The deathwolf makes one Bite attack and two Claw attacks. It can replace one of these attacks with Phantom Deathwolf if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. The target must succeed on a {@dc 16} Wisdom saving throw or have disadvantage on saving throws against the {@condition frightened} condition. This curse lasts until removed by the {@spell Remove Curse} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage plus 4 ({@damage 1d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phantom Deathwolf {@recharge 5}", + "body": [ + "The deathwolf creates a terrifying phantom of itself in the mind of a creature the deathwolf can see within 60 feet of itself. The target must succeed on a {@dc 17} Intelligence saving throw or have the {@condition frightened} condition for 1 minute.", + "While the target is {@condition frightened}, the phantom deals 21 ({@damage 6d6}) psychic damage to the target at the start of each of the target's turns. A {@condition frightened} target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Imposing Slash", + "body": [ + "When a creature within 5 feet of the deathwolf makes an attack roll against it, the deathwolf forces the creature to succeed on a {@dc 17} Wisdom saving throw or have disadvantage on that roll. After the attack hits or misses, the deathwolf makes one Claw attack against the creature." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phase Step", + "body": [ + "Immediately after taking damage, the deathwolf teleports up to 30 feet to an unoccupied space it can see that is in dim light or darkness." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Deathwolf-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Degloth", + "source": "VEoR", + "page": 218, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 23, + "dexterity": 17, + "constitution": 18, + "intelligence": 6, + "wisdom": 11, + "charisma": 9, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+10", + "con": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The degloth has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The degloth makes two Razor Fist attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Razor Fist", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage, and if the target is a Medium or smaller creature, the target has the {@condition grappled} condition (escape {@dc 18}). Until this grapple ends, the target has the {@condition restrained} condition, and the degloth can't use this fist to grapple another target. The degloth has two fists." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Crush", + "body": [ + "The degloth targets one creature currently {@condition grappled} by it. The target must make a {@dc 18} Strength saving throw, taking 15 ({@damage 2d8 + 6}) bludgeoning damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Degloth-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "False Lich", + "source": "VEoR", + "page": 220, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 199, + "formula": "21d8 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "21", + "xp": 33000, + "strength": 10, + "dexterity": 16, + "constitution": 20, + "intelligence": 25, + "wisdom": 19, + "charisma": 15, + "passive": 14, + "saves": { + "con": "+12", + "int": "+14", + "wis": "+11", + "cha": "+9" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Dwarvish", + "Elvish", + "Giant", + "Infernal", + "Primordial", + "Undercommon" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the false lich fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The false lich has advantage on saving throws against spells and magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The false lich makes two Death Rend attacks and uses Bloodcurdling Lament if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Rend", + "body": [ + "{@atk ms} {@hit 14} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bloodcurdling Lament {@recharge 5}", + "body": [ + "The false lich emits a hideous shriek charged with malignant energy. Each creature within 30 feet of the false lich must succeed on a {@dc 22} Wisdom saving throw or have the {@condition frightened} condition for 1 minute. While {@condition frightened} in this way, a creature also has the {@condition unconscious} condition. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Soul Siphon", + "body": [ + "The false lich targets one creature it can see within 120 feet of itself. The target must make a {@dc 22} Charisma saving throw; if the target has the {@condition unconscious} condition, it has disadvantage on this saving throw. The target takes 21 ({@damage 6d6}) force damage on a failed save or half as much damage on a successful one. The false lich then regains a number of hit points equal to the amount of force damage taken.", + "If this damage reduces the target to 0 hit points, the target immediately dies, its body disappears, and its soul is trapped inside one of the soul gems within the false lich's skull. After 24 hours, the gem transfers the soul to the false lich's creator.", + "When the false lich is reduced to 0 hit points, it is destroyed and disintegrates, leaving behind the gems. Crushing a gem releases any souls trapped within, at which point the soul's body re-forms in an unoccupied space nearest to the gem and in the same state as it was when its soul was trapped." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Spiteful Teleport", + "body": [ + "The false lich, along with anything it is wearing or carrying, teleports to an unoccupied space it can see within 60 feet of itself. It then makes one Death Rend attack if possible." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "The false lich uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The false lich casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Magic}", + "{@spell Fly}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell Dispel Magic}", + "{@spell Invisibility} (self only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Globe of Invulnerability}", + "{@spell Hold Monster}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "False Lich-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Glaive", + "source": "VEoR", + "page": 81, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(50 ft. with overdrive)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 20, + "dexterity": 16, + "constitution": 19, + "intelligence": 11, + "wisdom": 16, + "charisma": 9, + "passive": 17, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "dex": "+7", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Heatsink", + "body": [ + "When Glaive takes cold damage, her Overdrive immediately recharges." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "Glaive has advantage on attack rolls if at least one ally is within 5 feet of the creature she's attacking and the ally doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Glaive makes two Spiked Glaive attacks and two Serrated Bolt attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Glaive", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing or slashing damage, or 14 ({@damage 1d10 + 9}) piercing or slashing damage if Glaive is in overdrive." + ], + "__dataclass__": "Entry" + }, + { + "title": "Serrated Bolt", + "body": [ + "{@atk rw} {@hit 7} to hit, range 60 ft., one target. {@h}13 ({@damage 3d6 + 3}) piercing damage. If Glaive has advantage on the attack roll, the serrated bolt lodges in the target, and the target's speed is reduced by 10 feet until the serrated bolt is removed. A target's speed can be reduced by only one serrated bolt at a time. A creature can use its action to remove a serrated bolt lodged in itself or another creature within its reach; when the bolt is removed from a creature, that creature takes 5 ({@damage 2d4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Overdrive (Recharges after Finishing a Short or Long Rest)", + "body": [ + "Glaive enters a state of overdrive that lasts for 1 minute or until she has the {@condition incapacitated} condition. While in overdrive, Glaive gains the following benefits:", + "Glaive has advantage on Strength checks and Strength saving throws.", + "When Glaive makes a melee weapon attack, she gains a +4 bonus to the damage roll.", + "Glaive's speed increases to 50 feet." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Self-Preservation", + "body": [ + "In response to being hit by a weapon attack, Glaive reduces the damage by 11 ({@dice 2d10})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "warforged", + "actions_note": "", + "mythic": null, + "key": "Glaive-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Granite Juggernaut", + "source": "VEoR", + "page": 221, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 157, + "formula": "15d10 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "note": "(in a straight line)", + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 23, + "dexterity": 1, + "constitution": 20, + "intelligence": 2, + "wisdom": 11, + "charisma": 3, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't adamantine", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The juggernaut has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The juggernaut deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) bludgeoning damage, and if the target is a Large or smaller creature, it must succeed on a {@dc 18} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Devastating Roll", + "body": [ + "The juggernaut moves up to its speed. During this movement, the juggernaut can move through the spaces of creatures with the {@condition prone} condition. When the juggernaut enters the space of a {@condition prone} creature for the first time during this movement, the creature must make a {@dc 18} Dexterity saving throw, taking 55 ({@damage 10d10}) bludgeoning damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Granite Juggernaut-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Hazvongel", + "source": "VEoR", + "page": 222, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 237, + "formula": "25d12 + 75", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "14", + "xp": 11500, + "strength": 21, + "dexterity": 20, + "constitution": 16, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The hazvongel has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hazvongel makes three Talon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talon", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 15 ft., one target. {@h}18 ({@damage 3d8 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Barrage {@recharge 5}", + "body": [ + "The hazvongel launches a spray of blood in a 90-foot cone. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 27 ({@damage 6d8}) necrotic damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Hazvongel-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Hertilod", + "source": "VEoR", + "page": 223, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 241, + "formula": "21d12 + 105", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 50, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 23, + "dexterity": 18, + "constitution": 20, + "intelligence": 3, + "wisdom": 15, + "charisma": 10, + "passive": 18, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "dex": "+10" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Legendary Resistances (3/Day)", + "body": [ + "If the hertilod fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The hertilod has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shock Susceptibility", + "body": [ + "If the hertilod takes lightning damage, its speed is halved until the end of its next turn, and it must succeed on a {@dc 15} Constitution saving throw or immediately regurgitate all swallowed creatures, each of which lands in a space within 10 feet of the hertilod and has the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The hertilod can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The hertilod makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage plus 13 ({@damage 2d12}) poison damage. If the target is a Large or smaller creature, it must succeed on a {@dc 20} Strength saving throw or be swallowed by the hertilod. A swallowed creature has the {@condition blinded} and {@condition restrained} conditions, and it has {@quickref Cover||3||total cover} against attacks and other effects outside the hertilod. At the start of each of the hertilod's turns, each swallowed creature takes 13 ({@damage 2d12}) poison damage from the poisonous secretion in the hertilod's gullet.", + "The hertilod's gullet can hold up to two creatures at a time. If the hertilod takes 40 damage or more on a single turn from a swallowed creature, the hertilod must succeed on a {@dc 15} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which lands in a space within 10 feet of the hertilod and has the {@condition prone} condition. If the hertilod dies, a swallowed creature is no longer {@condition restrained} and can escape from the corpse by using 10 feet of movement, exiting with the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}17 ({@damage 2d10 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Sprint", + "body": [ + "The hertilod moves up to its speed. This movement doesn't provoke opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Feed (Costs 2 Actions)", + "body": [ + "The hertilod drains life from the creatures in its gullet to bolster itself. Each creature in the hertilod's gullet takes 10 ({@damage 3d6}) necrotic damage, and the hertilod regains a number of hit points equal to the damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Hertilod-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Kakkuu Spyder-Fiend", + "source": "VEoR", + "page": 234, + "size_str": "Medium", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 17, + "dexterity": 15, + "constitution": 14, + "intelligence": 6, + "wisdom": 10, + "charisma": 10, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "con": "+5", + "wis": "+3" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Abyssal but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The kakkuu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The kakkuu can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "When in contact with a web, the kakkuu knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The kakkuu ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The kakkuu makes a Web Snare attack, uses Reel, and makes a Bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reel", + "body": [ + "The kakkuu pulls each creature within 60 feet of itself that is {@condition grappled} by its Web Snare up to 30 feet straight toward itself." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Snare", + "body": [ + "{@atk rw} {@hit 6} to hit, reach 30/60 ft., one Large or smaller creature. {@h}The target has the {@condition grappled} condition (escape {@dc 13}). While {@condition grappled}, the target also has the {@condition restrained} condition. A web snare grappling a creature can be attacked and destroyed (AC 10; 10 hit points; immunity to bludgeoning, poison, and psychic damage)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Kakkuu Spyder-Fiend-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Kas the Betrayer", + "source": "VEoR", + "page": 244, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB|plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 315, + "formula": "30d8 + 180", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 26, + "dexterity": 20, + "constitution": 22, + "intelligence": 24, + "wisdom": 19, + "charisma": 26, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+13", + "wis": "+11", + "cha": "+15" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Infernal" + ], + "traits": [ + { + "title": "Eager Betrayer", + "body": [ + "Kas adds {@dice 1d10} to his initiative rolls. He has advantage on attack rolls against any creature that has the {@condition frightened} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Kas fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Kas regains 20 hit points at the start of his turn if he has at least 1 hit point. If he takes radiant damage, this trait doesn't function at the start of his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Kas wears the {@item Crown of Lies|VEoR} (see the Introduction of Vecna: Eve of Ruin)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Kas can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Strength of the Night", + "body": [ + "Kas doesn't require a coffin, and he drinks blood to sow terror rather than for sustenance. If destroyed, Kas revives in {@dice 1d100} nights in an unoccupied space in Tovag, his Domain of Dread. He can be permanently destroyed only by having a stake driven through his heart and then being beheaded. The stake must be cut from a tree growing in soil from Oerth, Kas's home world." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "While in sunlight, Kas takes 20 radiant damage at the start of his turn, has disadvantage on attack rolls and ability checks, and can't use his Change Shape bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Kas makes three Vengeful Sword attacks. He can replace one of these attacks with a Bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vengeful Sword", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one target. {@h}20 ({@damage 2d8 + 11}) slashing damage. The sword scores a critical hit on a roll of 19 or 20." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 5 ft., one creature. {@h}11 ({@damage 1d6 + 8}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Kas regains a number of hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A Humanoid slain in this way and then buried rises the following night as a vampire spawn under Kas's control." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "Kas transforms into a Medium cloud of mist. While in this form, Kas has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. While in mist form, Kas can pass through a space without squeezing as long as air can pass through that space, but he can't pass through water. Kas has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage except the damage he takes as part of his Vampire Weaknesses trait. While in mist form, Kas can't take any actions, speak, or manipulate objects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Menacing Glare", + "body": [ + "Kas targets one creature he can see within 60 feet of himself. The target must succeed on a {@dc 23} Wisdom saving throw or have the {@condition frightened} condition until the start of Kas's next turn." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parrying Riposte", + "body": [ + "Kas adds 3 to his AC against one melee attack roll that would hit him. He then makes one Vengeful Sword attack against the attacker if it is within his reach. On a hit, the target takes an additional 9 ({@damage 2d8}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Move", + "body": [ + "Kas moves up to his speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sword (Costs 2 Actions)", + "body": [ + "Kas makes one Vengeful Sword attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rise, Fallen Soldier (Costs 3 Actions)", + "body": [ + "Kas magically summons a specter. The specter appears in an unoccupied space within 30 feet of Kas, whom it obeys. The specter takes its turn immediately after Kas. It lasts for 1 hour, until Kas dies, or until Kas dismisses it as a bonus action. Kas can't have more than two specters summoned at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "vampire", + "actions_note": "", + "mythic": null, + "key": "Kas the Betrayer-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Mirror Shade", + "source": "VEoR", + "page": 226, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 8, + "dexterity": 17, + "constitution": 14, + "intelligence": 10, + "wisdom": 13, + "charisma": 18, + "passive": 11, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the mirror shade is within 5 feet of a reflective surface\u2014such as a mirror, glass pane, or still water\u2014it has advantage on its initiative roll. If a creature hasn't observed the mirror shade move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the mirror shade isn't the creature's own reflection." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mirror Movement", + "body": [ + "The mirror shade can move along the surface of reflective or translucent objects, such as mirrors, without provoking opportunity attacks. It can move through translucent objects as if they were difficult terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The mirror shade makes two Phantasmal Strike attacks and uses Reflect Fear." + ], + "__dataclass__": "Entry" + }, + { + "title": "Phantasmal Strike", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) radiant damage plus 7 ({@damage 2d6}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reflect Fear", + "body": [ + "The mirror shade targets one creature it can see within 60 feet of itself and projects an illusion of that creature's greatest fear. The target must make a {@dc 16} Wisdom saving throw. On a failed save, the target takes 28 ({@damage 8d6}) psychic damage and has the {@condition frightened} condition until the start of the mirror shade's next turn. On a successful save, the target takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Mirror Stealth", + "body": [ + "While within 5 feet of a reflective surface, such as a mirror, the mirror shade takes the Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mirror Shade-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Miska the Wolf-Spider", + "source": "VEoR", + "page": 247, + "size_str": "Huge", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 21, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 399, + "formula": "38d12 + 152", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "24", + "xp": 62000, + "strength": 23, + "dexterity": 18, + "constitution": 19, + "intelligence": 18, + "wisdom": 21, + "charisma": 22, + "passive": 21, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+11", + "wis": "+12" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Foul Ichor", + "body": [ + "A creature that hits Miska with a melee weapon attack takes 7 ({@damage 2d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Miska fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Miska has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Miska can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "When in contact with a web, Miska knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "Miska ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Miska makes one Lupine Bite attack and two Trident of Chaos attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lupine Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}17 ({@damage 2d10 + 6}) piercing damage plus 27 ({@damage 6d8}) poison damage. If the target is a creature, it must succeed on a {@dc 21} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature has the {@condition incapacitated} condition and can't regain hit points. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trident of Chaos", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage plus 9 ({@damage 2d8}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Demand Loyalty", + "body": [ + "Miska magically ends the {@condition charmed} and {@condition frightened} conditions on himself and on any of his allies within 120 feet of himself." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Howl", + "body": [ + "Miska utters a bloodthirsty howl at one creature within 120 feet of himself that isn't a Fiend. The target must succeed on a {@dc 20} Wisdom saving throw or take 13 ({@damage 2d12}) psychic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Skitter", + "body": [ + "Miska moves up to his speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Miska uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Miska casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Disguise Self}", + "{@spell Invisibility}", + "{@spell Mage Hand}", + "{@spell Minor Illusion}", + "{@spell Web}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Dominate Monster}", + "{@spell Mass Suggestion}", + "{@spell Mirror Image}", + "{@spell Telekinesis}", + "{@spell Teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Miska the Wolf-Spider-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Moonlight Guardian", + "source": "VEoR", + "page": 227, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 19, + "dexterity": 9, + "constitution": 16, + "intelligence": 6, + "wisdom": 12, + "charisma": 6, + "passive": 11, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The guardian is immune to any spell or other effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The guardian has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Absorption", + "body": [ + "Whenever the guardian is subjected to radiant damage, it takes no damage and instead regains a number of hit points equal to the radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The guardian makes two Moonlight Slam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moonlight Slam", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) bludgeoning damage plus 4 ({@damage 1d8}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Moonlight Blast {@recharge 5}", + "body": [ + "The guardian unleashes a magical blast of moonlight in a line 60 feet long and 5 feet wide. Each creature in that area must make a {@dc 14} Dexterity saving throw. Creatures that aren't in their true form have disadvantage on the save. On a failed save, a creature takes 22 ({@damage 5d8}) radiant damage, and if it isn't in its true form, it is forced into its true form and can't change forms until the end of the guardian's next turn. On a successful save, a creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Moonlight Guardian-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Phisarazu Spyder-Fiend", + "source": "VEoR", + "page": 235, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 170, + "formula": "20d10 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 19, + "dexterity": 14, + "constitution": 17, + "intelligence": 11, + "wisdom": 14, + "charisma": 13, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+8", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The phisarazu has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The phisarazu can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "When in contact with a web, the phisarazu knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The phisarazu ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The phisarazu makes one Bite attack and two Claw attacks. It can replace one of these attacks with Scintillating Spray if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 9 ({@damage 2d8}) poison damage, and the target has the {@condition poisoned} condition until the start of the phisarazu's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}22 ({@damage 4d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Scintillating Spray {@recharge 5}", + "body": [ + "The phisarazu expels shimmering webs in a 60-foot cone. Creatures and objects in that area are outlined by the glittering webs for 1 minute, during which time they emit dim light for 10 feet and can't benefit from the {@condition invisible} condition. Additionally, creatures in that area must succeed on a {@dc 16} Wisdom saving throw or have the {@condition stunned} condition for 1 minute. A {@condition stunned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Change Shape", + "body": [ + "The phisarazu transforms into a crab, drider, or giant crab, or returns to its true form. Its game statistics, except for its size, are the same in each form. Any equipment it is wearing or carrying isn't transformed." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Phisarazu Spyder-Fiend-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Quavilithku Spyder-Fiend", + "source": "VEoR", + "page": 236, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 256, + "formula": "27d10 + 108", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 18, + "dexterity": 16, + "constitution": 19, + "intelligence": 17, + "wisdom": 14, + "charisma": 12, + "passive": 18, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "con": "+10", + "wis": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The quavilithku has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The quavilithku can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "When in contact with a web, the quavilithku knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The quavilithku ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The quavilithku makes two Bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d10 + 4}) piercing damage plus 17 ({@damage 5d6}) poison damage. If the target is a creature, it must succeed on a {@dc 18} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature can't regain hit points. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dissolving Web {@recharge 5}", + "body": [ + "The quavilithku expels acid-drenched webs in a 90-foot cone. Each creature in that area must make a {@dc 18} Constitution saving throw, taking 44 ({@damage 8d10}) acid damage on a failed save or half as much damage on a successful one. Nonmagical objects in the area that aren't being worn or carried take 44 ({@damage 8d10}) acid damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Assess Weakness", + "body": [ + "The quavilithku sizes up a creature it can see within 40 feet of itself. Until the start of the quavilithku's next turn, it has advantage on attack rolls against the creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Quavilithku Spyder-Fiend-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Raklupis Spyder-Fiend", + "source": "VEoR", + "page": 236, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "28d10 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 17, + "dexterity": 20, + "constitution": 14, + "intelligence": 18, + "wisdom": 16, + "charisma": 23, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 11, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "con": "+8", + "wis": "+9" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The raklupis has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The raklupis can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Sense", + "body": [ + "When in contact with a web, the raklupis knows the exact location of any other creature in contact with the same web." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The raklupis ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The raklupis makes a Bite attack and two Serrated Sword attacks. It can use Venom Globe in place of one of these attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage plus 18 ({@damage 4d8}) poison damage. If the target is a creature, it must succeed on a {@dc 20} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. While {@condition poisoned} in this way, a creature has the {@condition incapacitated} condition and can't regain hit points. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Serrated Sword", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}19 ({@damage 4d6 + 5}) slashing damage plus 18 ({@damage 4d8}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Venom Globe", + "body": [ + "{@atk rw} {@hit 11} to hit, range 60/180 ft., one target. {@h}45 ({@damage 10d8}) poison damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Demand Loyalty", + "body": [ + "The raklupis magically ends the {@condition charmed} and {@condition frightened} conditions on itself and on any number of allies within 60 feet of itself." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The raklupis casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 20})." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Disguise Self}", + "{@spell Invisibility} (self only)", + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Darkness}", + "{@spell Dominate Monster}", + "{@spell Mass Suggestion}", + "{@spell Telekinesis}", + "{@spell Teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Raklupis Spyder-Fiend-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Relentless Impaler", + "source": "VEoR", + "page": 231, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 184, + "formula": "16d10 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 23, + "dexterity": 16, + "constitution": 22, + "intelligence": 12, + "wisdom": 15, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+11", + "dex": "+8", + "cha": "+9" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands all languages but can't speak" + ], + "traits": [ + { + "title": "Bloodheart Stake", + "body": [ + "The impaler is magically bound to the ceremonial stake and the sacrificed corpse the ritual caster used to create it. If the impaler is reduced to 0 hit points, it disappears, then re-forms {@dice 1d8} hours later in the nearest unoccupied space to the stake and regains all its hit points. The impaler dies only if it is reduced to 0 hit points while either the ceremonial stake is removed from the sacrifice's corpse or the impaler is on a different plane of existence from that corpse." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the impaler fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The impaler makes one Spike attack and two Wicked Spear attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spike", + "body": [ + "{@atk mw} {@hit 11} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage, and the target's speed is halved until the start of the impaler's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Wicked Spear", + "body": [ + "{@atk mw,rw} {@hit 11} to hit, reach 10 ft. or range 20/40 ft., one target. {@h}13 ({@damage 2d6 + 6}) piercing damage plus 13 ({@damage 3d8}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spike Burst {@recharge 5}", + "body": [ + "Twisted, spectral spikes shoot out from the impaler's body. Each creature within 30 feet of the impaler must make a {@dc 19} Dexterity saving throw, taking 40 ({@damage 9d8}) force damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Speed Spike", + "body": [ + "The impaler teleports up to 30 feet to an unoccupied space it can see. It can then make a Spike attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Deepen Wounds (Costs 2 Actions)", + "body": [ + "Each creature whose speed is currently reduced by the impaler's Spike attack takes 18 ({@damage 4d8}) necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Relentless Impaler-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Spiderdragon", + "source": "VEoR", + "page": 233, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 152, + "formula": "16d12 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 60, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 21, + "dexterity": 18, + "constitution": 16, + "intelligence": 7, + "wisdom": 14, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "intimidation", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "dex": "+8" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 90 ft." + ], + "languages": [ + "Abyssal", + "Draconic", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The spiderdragon has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The spiderdragon can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Web Walker", + "body": [ + "The spiderdragon ignores movement restrictions caused by webbing." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The spiderdragon makes one Bite attack and two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 13 ({@damage 2d12}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiderling Breath {@recharge 5}", + "body": [ + "The spiderdragon exhales venomous spiderlings in a 30-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 33 ({@damage 6d10}) piercing damage and 33 ({@damage 6d10}) poison damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Stifling Webs {@recharge 5}", + "body": [ + "The spiderdragon spins a 30-foot cube of strong, sticky webbing in an area adjacent to itself. The webbing lasts for 1 minute, is difficult terrain, and lightly obscures its area. A creature that starts its turn in the webbing or enters the webbing for the first time on its turn must succeed on a {@dc 15} Dexterity saving throw or have the {@condition restrained} condition while in the web. As an action, a creature can free itself or another creature from the web by succeeding on a {@dc 15} Strength check.", + "A 5-foot cube of the web is destroyed if it takes at least 10 acid, fire, or slashing damage on a single turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Spiderdragon-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Star Angler", + "source": "VEoR", + "page": 237, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 119, + "formula": "14d10 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 0, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 40, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 21, + "dexterity": 15, + "constitution": 17, + "intelligence": 3, + "wisdom": 14, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "blindsight 120 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "Avoidance", + "body": [ + "If the star angler is subjected to an effect that allows it to make a saving throw to take only half damage, it instead takes no damage if it succeeds on the saving throw and only half damage if it fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Illumination", + "body": [ + "The star angler's lure sheds bright light in a 30-foot radius and dim light for an additional 30 feet." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The star angler makes three Bite attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Lure Charm", + "body": [ + "The star angler's lure flares with enchanting starlight, targeting one creature the star angler can see within 120 feet of itself. The target must succeed on a {@dc 13} Wisdom saving throw or have the {@condition charmed} condition until the start of the star angler's next turn. While {@condition charmed} in this way, the target has the {@condition incapacitated} condition and must use its movement on its turn to move directly toward the star angler; a {@condition charmed} target doesn't avoid opportunity attacks, but it does avoid damaging terrain. A target can be {@condition charmed} by only one star angler at a time." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Star Angler-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Strahd, Master of Death House", + "source": "VEoR", + "page": 251, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d8 + 64", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 20, + "wisdom": 15, + "charisma": 18, + "passive": 22, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 10, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Draconic", + "Elvish", + "Giant", + "Infernal" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Strahd fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Master of the House", + "body": [ + "When Strahd is reduced to 0 hit points, he dissolves into mist and immediately teleports to his lair in Castle Ravenloft. After {@dice 1d4} hours, Strahd re-forms in a random unoccupied space within his lair, regaining all his hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Strahd regains 20 hit points at the start of his turn if he has at least 1 hit point. If he takes radiant damage, this trait doesn't function at the start of his next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Strahd can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampire Weaknesses", + "body": [ + "Strahd has the following flaws:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Harmed by Running Water", + "body": [ + "While in running water, Strahd takes 20 acid damage if he ends his turn there, and he can't use his Change Shape." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "While in sunlight, Strahd takes 20 radiant damage at the start of his turn, has disadvantage on attack rolls and ability checks, and can't use his Change Shape bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Strahd makes two Death Strike attacks. He can replace one of these attacks with Blighted Fire if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Strike", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d8 + 4}) slashing damage plus 14 ({@damage 4d6}) necrotic damage. If the target is a creature, Strahd can forgo dealing slashing damage; the target then has the {@condition grappled} condition (escape {@dc 18}) instead. Strahd can grapple only one creature at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blighted Fire {@recharge 5}", + "body": [ + "Strahd summons shadowy, necrotic fire that fills a 20-foot-radius sphere centered on a point he can see within 90 feet of himself. Each creature in that area must make a {@dc 18} Dexterity saving throw, taking 14 ({@damage 4d6}) fire damage plus 14 ({@damage 4d6}) necrotic damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "Strahd targets one Humanoid he can see within 30 feet of himself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition. The {@condition charmed} target regards Strahd as a trusted friend to be heeded and protected. The target isn't under Strahd's control, but it takes Strahd's requests and actions in the most favorable way.", + "Each time Strahd or his companions deal damage to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Strahd is reduced to 0 hit points, is on a different plane of existence than the target, or uses a bonus action to end the effect." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature that has the {@condition charmed} or {@condition grappled} condition. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Strahd regains a number of hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if its hit point maximum is reduced to 0. A Humanoid slain in this way and then buried rises the following night as a vampire spawn under Strahd's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Change Shape", + "body": [ + "Strahd transforms into a new form or back into his true form. Anything he is wearing transforms with him, but nothing he is carrying does. He reverts to his true form if he dies. When transforming into a new form, Strahd chooses one of the following options:" + ], + "__dataclass__": "Entry" + }, + { + "title": "Beast Form", + "body": [ + "Strahd transforms into a Tiny bat (flying speed 30 ft.) or a Medium wolf (speed 40 ft.). While in that form, he can't speak, and he retains his game statistics other than his size and speed." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mist Form", + "body": [ + "Strahd transforms into a Medium cloud of mist. While in this form, Strahd has a flying speed of 20 feet, can hover, and can enter a hostile creature's space and stop there. While in mist form, Strahd can pass through a space without squeezing as long as air can pass through that space, but he can't pass through water. Strahd has advantage on Strength, Dexterity, and Constitution saving throws, and he is immune to all nonmagical damage except the damage he takes as part of his Vampire Weaknesses trait. While in mist form, Strahd can't take any actions, speak, or manipulate objects." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Cunning Escape", + "body": [ + "Strahd moves up to his speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Strike (Costs 2 Actions)", + "body": [ + "Strahd makes one Death Strike attack." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Strahd casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 18}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Thoughts}", + "{@spell Fog Cloud}", + "{@spell Mage Hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Animate Dead} (as an action)", + "{@spell Gust of Wind}", + "{@spell Mirror Image}", + "{@spell Nondetection}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Greater Invisibility}", + "{@spell Polymorph}", + "{@spell Scrying} (as an action)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "vampire, wizard", + "actions_note": "", + "mythic": null, + "key": "Strahd, Master of Death House-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Tasha the Witch", + "source": "VEoR", + "page": 252, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": 19, + "note": "{@item robe of the archmagi}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 210, + "formula": "28d8 + 84", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "19", + "xp": 22000, + "strength": 10, + "dexterity": 18, + "constitution": 17, + "intelligence": 23, + "wisdom": 12, + "charisma": 22, + "passive": 11, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 12, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+12", + "wis": "+7", + "cha": "+12" + }, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Abyssal", + "Celestial", + "Common", + "Draconic", + "Elvish", + "Infernal", + "Sylvan" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Tasha fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Tasha has advantage on saving throws against spells and other magical effects. (This trait is bestowed by her Robe of the Archmagi.)" + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Tasha wears a {@item Robe of the Archmagi}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Tasha makes two Caustic Blast attacks and uses Psychic Whip once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Caustic Blast", + "body": [ + "{@atk ms,rs} {@hit 14} to hit, reach 5 ft. or range 120 ft., one target. {@h}21 ({@damage 6d4 + 6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychic Whip", + "body": [ + "Tasha psychically lashes out at one creature she can see within 90 feet of herself. The target must make a {@dc 20} Intelligence saving throw. On a failed save, the target takes 21 ({@damage 6d6}) psychic damage and has the {@condition stunned} condition until the start of Tasha's next turn. On a successful save, the target takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Abyssal Visage (2/Day)", + "body": [ + "For 1 minute, Tasha gains a flying speed of 30 feet, is immune to poison damage and the {@condition poisoned} condition, and has advantage on attack rolls against any creature that doesn't have all its hit points. These benefits end early if Tasha has the {@condition incapacitated} condition or if she uses another bonus action to dismiss them." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Arcane Rebuff", + "body": [ + "Immediately after Tasha takes damage, she unleashes arcane energy in a 10-foot-radius sphere centered on herself. All other creatures in that area must make a {@dc 20} Dexterity saving throw, taking 19 ({@damage 3d12}) lightning damage on a failed save or half as much damage on a successful one. Tasha then teleports, along with any equipment she is wearing or carrying, to an unoccupied space she can see within 60 feet of herself." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Tasha casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 22}, {@hit 14} to hit with spell attacks):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Magic}", + "{@spell Disguise Self}", + "{@spell Dispel Magic}", + "{@spell Light}", + "{@spell Mage Hand}", + "{@spell Message}", + "{@spell Prestidigitation}", + "{@spell Tasha's Hideous Laughter}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Polymorph}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Maze}", + "{@spell Telekinesis}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, wizard", + "actions_note": "", + "mythic": null, + "key": "Tasha the Witch-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Vecna the Archlich", + "source": "VEoR", + "page": 254, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 272, + "formula": "32d8 + 128", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "26", + "xp": 90000, + "strength": 14, + "dexterity": 16, + "constitution": 18, + "intelligence": 22, + "wisdom": 24, + "charisma": 16, + "passive": 25, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 14, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 15, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 15, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+12", + "int": "+14", + "wis": "+15" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Draconic", + "Elvish", + "Infernal" + ], + "traits": [ + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If Vecna fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Vecna carries a magic dagger named Afterthought. In the hands of anyone other than Vecna, Afterthought is a {@item +2 Dagger}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undying", + "body": [ + "If Vecna is slain, his soul refuses to accept its fate and lives on as a disembodied spirit that fashions a new body for itself after {@dice 1d100} years. Vecna's new body appears within 100 miles of where he was slain. When the new body is complete, Vecna regains all his hit points and becomes active again." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Vecna uses Flight of the Damned (if available), Rotten Fate, or Spellcasting. He then makes two attacks with Afterthought." + ], + "__dataclass__": "Entry" + }, + { + "title": "Afterthought", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d4 + 5}) piercing damage plus 9 ({@damage 2d8}) necrotic damage. If the target is a creature, it is afflicted by entropic magic, taking 9 ({@damage 2d8}) necrotic damage at the start of each of its turns. Immediately after taking this damage on its turn, the target must make a {@dc 20} Constitution saving throw, ending the effect on itself on a success. Until it succeeds on this save, the afflicted target can't regain hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Flight of the Damned {@recharge 5}", + "body": [ + "Vecna conjures a torrent of flying, spectral entities that fill a 120-foot cone and pass through all creatures in that area before dissipating. Each creature in that area must make a {@dc 22} Constitution saving throw. On a failed save, the creature takes 36 ({@damage 8d8}) necrotic damage and has the {@condition frightened} condition for 1 minute. On a successful save, the creature takes half as much damage only. A {@condition frightened} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotten Fate", + "body": [ + "Vecna causes necrotic magic to engulf one creature he can see within 120 feet of himself. The target must make a {@dc 22} Constitution saving throw, taking 96 ({@damage 8d8 + 60}) necrotic damage on a failed save or half as much damage on a successful one. A Humanoid killed by this magic rises as a zombie at the start of Vecna's next turn and acts immediately after Vecna in the initiative order. The zombie is under Vecna's control." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Vile Teleport", + "body": [ + "Vecna teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see. He can cause each creature of his choice within 15 feet of his destination space to take 10 ({@damage 3d6}) psychic damage. If at least one creature takes this damage, Vecna regains 80 hit points." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Dread Counterspell", + "body": [ + "Vecna utters a dread word to interrupt a creature he can see that is casting a spell. If the spell is 4th level or lower, it fails and has no effect. If the spell is 5th level or higher, Vecna makes an Intelligence check ({@dc 10} plus the spell's level). On a successful check, the spell fails and has no effect. Whatever the spell's level, the caster takes 10 ({@damage 3d6}) psychic damage if the spell fails." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fell Rebuke", + "body": [ + "In response to being hit by an attack, Vecna utters a fell word, dealing 10 ({@damage 3d6}) necrotic damage to the attacker, and Vecna teleports, along with any equipment he is wearing or carrying, up to 30 feet to an unoccupied space he can see." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "Vecna casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability (spell save {@dc 22}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Animate Dead} (as an action)", + "{@spell Detect Magic}", + "{@spell Dispel Magic}", + "{@spell Fly}", + "{@spell Lightning Bolt}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Dimension Door}", + "{@spell Invisibility}", + "{@spell Scrying} (as an action)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Dominate Monster}", + "{@spell Globe of Invulnerability}", + "{@spell Plane Shift} (self only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "wizard", + "actions_note": "", + "mythic": null, + "key": "Vecna the Archlich-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Vlazok", + "source": "VEoR", + "page": 238, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 136, + "formula": "16d10 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "11", + "xp": 7200, + "strength": 21, + "dexterity": 18, + "constitution": 16, + "intelligence": 6, + "wisdom": 9, + "charisma": 9, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "con": "+7" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "All-Around Vision", + "body": [ + "The vlazok can't be surprised." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Frenzy", + "body": [ + "The vlazok has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The vlazok has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vlazok can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vlazok makes two Gore attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}23 ({@damage 4d8 + 5}) piercing damage, and if the target is a Large or smaller creature, it has the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Stomp", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one {@condition prone} creature. {@h}27 ({@damage 4d10 + 5}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Vlazok-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Warforged Warrior", + "source": "VEoR", + "page": 238, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 12, + "constitution": 16, + "intelligence": 10, + "wisdom": 14, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warforged makes two Armblade attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Armblade", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Javelin", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Protection", + "body": [ + "When an attacker the warforged can see makes an attack roll against a creature within 5 feet of the warforged, the warforged can impose disadvantage on the attack roll." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warforged Warrior-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Whirling Chandelier", + "source": "VEoR", + "page": 239, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d10 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 18, + "dexterity": 15, + "constitution": 15, + "intelligence": 3, + "wisdom": 5, + "charisma": 1, + "passive": 7, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the chandelier is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the chandelier move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the chandelier is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fiery Aura", + "body": [ + "Any creature that starts its turn within 5 feet of the chandelier takes 7 ({@damage 2d6}) fire damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The chandelier makes three Chain attacks, three Lamp attacks, or a combination thereof." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chain", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 15 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage, and the target must succeed on a {@dc 15} Strength saving throw or be pulled into an unoccupied space within 5 feet of the chandelier." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lamp", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}9 ({@damage 2d4 + 4}) bludgeoning damage plus 13 ({@damage 3d8}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blazing Vortex {@recharge 5}", + "body": [ + "Each creature within 20 feet of the chandelier and not behind {@quickref Cover||3||total cover} must succeed on a {@dc 14} Constitution saving throw or take 36 ({@damage 8d8}) fire damage and have the {@condition blinded} condition until the start of the chandelier's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Whirling Chandelier-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Windfall", + "source": "VEoR", + "page": 153, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 19, + "note": "{@item studded leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 323, + "formula": "34d8 + 170", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 14, + "dexterity": 24, + "constitution": 20, + "intelligence": 22, + "wisdom": 18, + "charisma": 26, + "passive": 21, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 13, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 18, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 22, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 14, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "dex": "+14", + "wis": "+11", + "cha": "+15" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic", + "Infernal" + ], + "traits": [ + { + "title": "Dazzling Visage", + "body": [ + "A brilliant array of chromatic colors emanates from Windfall, causing attack rolls against her to have disadvantage. This trait ceases to function while Windfall has the {@condition incapacitated} condition or has a speed of 0." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Windfall fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Windfall wears an iridescent magic coat that was tailored specifically for her and imbued with Tiamat's power. When she dies, the coat functions as a {@item Robe of Scintillating Colors}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Windfall makes two Chromatic Rapier attacks and uses Dragon's Fury once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Chromatic Rapier", + "body": [ + "{@atk mw} {@hit 14} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d8 + 7}) piercing damage plus 21 ({@damage 6d6}) acid, cold, fire, lightning, or poison damage (Windfall's choice)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dragon's Fury", + "body": [ + "Windfall targets one creature she can see within 60 feet of herself and unleashes a burst of magical ire. The target must make a {@dc 23} Wisdom saving throw. On a failed save, the target takes 36 ({@damage 8d8}) psychic damage and has the {@condition frightened} condition until the start of Windfall's next turn. On a successful save, the target takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Stunning Scintillation {@recharge 5}", + "body": [ + "Windfall emits an overwhelming array of colors from her coat. Each creature within 30 feet of Windfall that can see her must succeed on a {@dc 23} Constitution saving throw or have the {@condition stunned} condition until the start of Windfall's next turn." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Deft Dance", + "body": [ + "Windfall moves up to her speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dragon's Flare", + "body": [ + "Windfall flares with multicolored flames and targets a creature she can see within 30 feet of herself. The target must make a {@dc 23} Dexterity saving throw. On a failed save, the target takes 26 ({@damage 4d12}) damage of a type chosen by Windfall: acid, cold, fire, lightning, or poison. On a successful save, the target takes half as much damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cast a Spell (Costs 2 Actions)", + "body": [ + "Windfall uses Spellcasting." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Windfall casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 23}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Magic}", + "{@spell Light}", + "{@spell Thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Hold Monster}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 3, + "spells": [ + "{@spell Shatter}", + "{@spell Unseen Servant}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell Hypnotic Pattern}", + "{@spell Sending}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "bard, tiefling", + "actions_note": "", + "mythic": null, + "key": "Windfall-VEoR", + "__dataclass__": "Monster" + }, + { + "name": "Android", + "source": "QftIS", + "page": 194, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 91, + "formula": "14d8 + 28", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 30, + "note": "(hover; aerialist only)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "note": "(diver only)", + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 18, + "constitution": 15, + "intelligence": 12, + "wisdom": 13, + "charisma": 10, + "passive": 17, + "skills": { + "skills": [ + { + "target": "history", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+4" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (sentry only)", + "darkvision 60 ft." + ], + "languages": [ + "Common plus the languages spoken by its creator" + ], + "traits": [ + { + "title": "Design Specialization", + "body": [ + "When the android is created, it gains one of six possible designs suited for its role (choose or roll a {@dice d6}): 1, aerialist; 2, diplomat; 3, diver; 4, duelist; 5, medic; 6, sentry. This design determines certain traits in this stat block." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Overload", + "body": [ + "When the android takes lightning damage, it must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The android makes two Force Strike attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Strike", + "body": [ + "{@atk mw,rw} {@hit 7} to hit, reach 5 ft. or range 40/120 ft., one target. {@h}15 ({@damage 2d10 + 4}) force damage. If the target is a Medium or smaller creature, it must succeed on a {@dc 15} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry (Duelist Only)", + "body": [ + "The android adds 3 to its AC against one melee attack roll that would hit it. To do so, the android must see the attacker." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting (Diplomat and Medic Only)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting (Diplomat and Medic Only)", + "body": [ + "The android casts one of the following spells, requiring no material components and using Intelligence as the spellcasting ability:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Cure Wounds} (as a 3rd-level spell; medic only)", + "{@spell Identify}", + "{@spell Tongues} (diplomat only)" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Android-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Barkburr", + "source": "QftIS", + "page": 195, + "size_str": "Small", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d6 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 10, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 16, + "dexterity": 6, + "constitution": 16, + "intelligence": 1, + "wisdom": 15, + "charisma": 1, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the barkburr is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the barkburr move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the barkburr is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Springing Leap", + "body": [ + "With or without a running start, the barkburr's high jump is up to 15 feet, and its long jump is up to 30 feet. The barkburr's jumps can exceed its speed if its speed isn't 0." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The barkburr makes two Poison Barb attacks and uses Lignify if able." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Barb", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one creature. {@h}5 ({@damage 1d4 + 3}) piercing damage plus 7 ({@damage 2d6}) poison damage, and the barkburr attaches to the target. While the barkburr is attached, it can't make Poison Barb attacks, and the target has the {@condition restrained} condition as its body begins to transform into wood.", + "An attached barkburr can detach itself by spending 5 feet of its movement on its turn. A creature that can reach the barkburr, including the target, can use its action to detach the barkburr by making a successful {@dc 13} Strength ({@skill Athletics}) check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lignify", + "body": [ + "The barkburr targets the creature it is attached to, and the target must make a {@dc 13} Constitution saving throw. On a failed save, the target has the {@condition petrified} condition until freed by the {@spell Greater Restoration} spell or another effect, except it turns into a tree instead of stone. Any equipment the target is wearing or carrying is absorbed into the tree's bark." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Barkburr-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Champion of Gorm", + "source": "QftIS", + "page": 203, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 19, + "note": "{@item splint armor|phb}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 10, + "constitution": 12, + "intelligence": 12, + "wisdom": 15, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+5", + "wis": "+4" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "The champion has advantage on saving throws against the {@condition frightened} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes two Lightning Mace attacks or three Handaxe attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Mace", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage plus 5 ({@damage 2d4}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Handaxe", + "body": [ + "{@atk mw,rw} {@hit 5} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aura of Resilience (1/Day)", + "body": [ + "The champion exudes an aura of ghostly lightning that fills a 10-foot-radius sphere centered on itself. While this aura is active, the champion and each creature of its choice within the aura have advantage on saving throws. The aura moves with the champion and lasts for 1 minute, until the champion has the {@condition incapacitated} condition, or until the champion uses another bonus action to end the aura." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Champion of Gorm-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Champion of Madarua", + "source": "QftIS", + "page": 220, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 13, + "note": "{@item hide armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d8 + 12", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 17, + "dexterity": 12, + "constitution": 15, + "intelligence": 12, + "wisdom": 12, + "charisma": 14, + "passive": 11, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+5", + "dex": "+3" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes three Longsword attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage, or 8 ({@damage 1d10 + 3}) piercing damage if used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aura of Fury (1/Day)", + "body": [ + "The champion summons an aura of ghostly animals that fills a 10-foot-radius sphere centered on itself. While this aura is active, the champion and all its allies in the aura have advantage on attack rolls. The aura moves with the champion and lasts for 1 minute, until the champion has the {@condition incapacitated} condition, or until the champion uses another bonus action to end the aura." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The champion adds 2 to its AC against one melee attack that would hit it. To do so, the champion must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Champion of Madarua-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Champion of Usamigaras", + "source": "QftIS", + "page": 206, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 12, + { + "ac": 15, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 33, + "formula": "6d8 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 17, + "wisdom": 14, + "charisma": 15, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+5", + "cha": "+4" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The champion makes two Arcane Burst attacks or makes one Arcane Burst attack and uses Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}8 ({@damage 1d10 + 3}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Aura of Deception (1/Day)", + "body": [ + "The champion emits an aura of ghostly illusions that fills a 10-foot-radius sphere centered on itself. While this aura is active, creatures have disadvantage on attack rolls against the champion and any of the champion's allies that are in the aura. The aura moves with the champion and lasts for 1 minute, until the champion has the {@condition incapacitated} condition, or until the champion uses another bonus action to end the aura." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The champion casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Light}", + "{@spell Mage Armor} (self only)", + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Charm Person}", + "{@spell Disguise Self}", + "{@spell Silent Image}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Crown of Madness}", + "{@spell Shatter}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Champion of Usamigaras-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Combat Robot", + "source": "QftIS", + "page": 214, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Lawful Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 20, + "dexterity": 14, + "constitution": 17, + "intelligence": 10, + "wisdom": 15, + "charisma": 10, + "passive": 15, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "cha": "+3" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common plus the languages spoken by its creator" + ], + "traits": [ + { + "title": "Lightning Overload", + "body": [ + "When the robot takes lightning damage, it must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The robot makes two Tentacle attacks or three Laser Beam attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}10 ({@damage 1d10 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 16}). While {@condition grappled}, the target also has the {@condition restrained} condition. The robot has two tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Laser Beam", + "body": [ + "{@atk rw} {@hit 5} to hit, range 120 ft., one target. {@h}16 ({@damage 4d6 + 2}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Grenade Launcher {@recharge 5}", + "body": [ + "The robot fires a grenade at a point it can see within 120 feet of itself. The grenade explodes in a 20-foot-radius sphere centered on that point, creating one of the following effects (robot's choice):" + ], + "__dataclass__": "Entry" + }, + { + "title": "Concussion Grenade", + "body": [ + "Each creature in the sphere must make a {@dc 15} Dexterity saving throw, taking 21 ({@damage 6d6}) force damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sleep Grenade", + "body": [ + "Each creature in the sphere must succeed on a {@dc 15} Constitution saving throw or have the {@condition unconscious} condition for 1 hour. The condition ends on a creature early if the creature takes damage or if another creature uses an action to shake it awake." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Emergency Speed (2/Day)", + "body": [ + "The robot takes the Dash or Disengage action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Combat Robot-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Derro Apprentice", + "source": "QftIS", + "page": 196, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d6 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 9, + "dexterity": 14, + "constitution": 12, + "intelligence": 11, + "wisdom": 5, + "charisma": 12, + "passive": 7, + "skills": { + "skills": [ + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The derro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Chaos Blast", + "body": [ + "{@atk ms,rs} {@hit 3} to hit, reach 5 ft. or range 60 ft., one target. {@h}10 ({@damage 3d6}) damage. Roll a {@dice d4} to determine the damage type: 1, acid; 2, cold; 3, fire; 4, lightning." + ], + "__dataclass__": "Entry" + }, + { + "title": "Force Burst {@recharge 4}", + "body": [ + "Raw arcane magic bursts out from the derro. Each creature within 10 feet of it must make a {@dc 11} Strength saving throw. On a failed save, the creature takes 7 ({@damage 2d6}) force damage and has the {@condition prone} condition. On a successful save, the creature takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The derro casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 11}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Message}", + "{@spell Prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Charm Person}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Derro Apprentice-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Derro Raider", + "source": "QftIS", + "page": 196, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d6 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 14, + "dexterity": 12, + "constitution": 14, + "intelligence": 11, + "wisdom": 5, + "charisma": 9, + "passive": 7, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Dwarvish", + "Undercommon" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The derro has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the derro has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Hooked Spear", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage. If the target is a Medium or smaller creature, the derro can choose to deal no damage, and instead the target has the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Throwing Hammer", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Derro Raider-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Derwyth", + "source": "QftIS", + "page": 52, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": [ + 11, + { + "ac": 16, + "condition": "with {@spell barkskin}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 16, + "note": "(with {@spell barkskin})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 10, + "dexterity": 12, + "constitution": 13, + "intelligence": 12, + "wisdom": 15, + "charisma": 11, + "passive": 14, + "skills": { + "skills": [ + { + "target": "medicine", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60" + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Tree Shape (2/Day)", + "body": [ + "Over the course of 1 minute, Derwyth can magically transform into a Huge or smaller tree and remain in that form for 24 hours or until she ends this transformation early (no action required). Her equipment melds into her new form. While in this form, her Armor Class is 16, she has the {@condition incapacitated} condition, and she can't move or speak." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Quarterstaff", + "body": [ + "{@atk mw} {@hit 2} to hit ({@hit 4} to hit with shillelagh), reach 5 ft., one target. {@h}3 ({@damage 1d6}) bludgeoning damage, 4 ({@damage 1d8}) bludgeoning damage if wielded with two hands, or 6 ({@damage 1d8 + 2}) bludgeoning damage with shillelagh." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Derwyth is a 4th-level spellcaster. Her spellcasting ability is Wisdom (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell produce flame}", + "{@spell shillelagh}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell entangle}", + "{@spell longstrider}", + "{@spell speak with animals}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell animal messenger}", + "{@spell barkskin}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Derwyth-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Drelnza", + "source": "QftIS", + "page": 197, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "{@item plate armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 187, + "formula": "22d8 + 88", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 18, + "dexterity": 18, + "constitution": 18, + "intelligence": 17, + "wisdom": 15, + "charisma": 18, + "passive": 17, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+9", + "int": "+8", + "wis": "+7", + "cha": "+9" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Abyssal", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If Drelnza fails a saving throw, she can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Drelnza wields {@item Heretic|QftIS}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "Drelnza can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Hypersensitivity", + "body": [ + "Drelnza takes 20 radiant damage when she starts her turn in sunlight. While in sunlight, she has disadvantage on attack rolls and ability checks." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Drelnza makes one Bite attack and one Heretic attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}7 ({@damage 1d6 + 4}) piercing damage plus 10 ({@damage 3d6}) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and Drelnza regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A Humanoid slain in this way and then buried rises the following night as a vampire spawn under Drelnza's control." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heretic", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft. one target. {@h}40 ({@damage 6d10 + 7}) slashing damage, and the target must succeed on a {@dc 17} Constitution saving throw or have the {@condition paralyzed} condition until the start of Drelnza's next turn. Celestials have disadvantage on the saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Charm", + "body": [ + "Drelnza targets one Humanoid she can see within 30 feet of herself. The target must succeed on a {@dc 17} Wisdom saving throw or have the {@condition charmed} condition. While {@condition charmed} in this way, the target regards Drelnza as a trusted friend to be heeded and protected. The target isn't under Drelnza's control, but it takes her requests and actions in the most favorable way.", + "Each time Drelnza or her allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until Drelnza is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Move", + "body": [ + "Immediately after a creature Drelnza can see ends its turn, Drelnza moves up to her speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Parry", + "body": [ + "Drelnza adds 5 to her AC against one melee attack that would hit her. To do so, she must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "vampire", + "actions_note": "", + "mythic": null, + "key": "Drelnza-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Froghemoth Elder", + "source": "QftIS", + "page": 198, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 207, + "formula": "18d12 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 30, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 25, + "dexterity": 13, + "constitution": 20, + "intelligence": 2, + "wisdom": 14, + "charisma": 8, + "passive": 22, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 12, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+12", + "con": "+10", + "wis": "+7" + }, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "lightning", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The froghemoth can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the froghemoth fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shock Susceptibility", + "body": [ + "If the froghemoth takes lightning damage, it suffers two effects until the end of its next turn: its speed is halved, and it has disadvantage on Dexterity saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The froghemoth makes one Bite attack and two Tentacle attacks, and it can use Tongue." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}23 ({@damage 3d10 + 7}) piercing damage, and the target is swallowed if it is a Medium or smaller creature. A swallowed creature has the {@condition blinded} and {@condition restrained} conditions, has {@quickref Cover||3||total cover} against attacks and other effects outside the froghemoth, and takes 10 ({@damage 3d6}) acid damage at the start of each of the froghemoth's turns.", + "The froghemoth's gullet can hold up to three creatures at a time. If the froghemoth takes 25 damage or more on a single turn from a creature inside it, the froghemoth must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, each of which lands in a space within 10 feet of the froghemoth and has the {@condition prone} condition. If the froghemoth dies, any swallowed creatures are no longer {@condition restrained} by it and can escape from the corpse using 10 feet of movement, exiting with the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tentacle", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}20 ({@damage 3d8 + 7}) bludgeoning damage, and the target has the {@condition grappled} condition (escape {@dc 20}). Until this grapple ends, the froghemoth can't use this tentacle on another target. The froghemoth has four tentacles." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue", + "body": [ + "The froghemoth targets one Large or smaller creature that it can see within 25 feet of it. The target must make a {@dc 20} Strength saving throw. On a failed save, the target is pulled into an unoccupied space within 5 feet of the froghemoth." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Alien Gaze", + "body": [ + "When a creature the froghemoth can see damages the froghemoth, the froghemoth swivels its eyestalk toward the creature and pierces the creature's mind with its otherworldly gaze. That creature must make a {@dc 18} Intelligence saving throw, taking 7 ({@damage 2d6}) psychic damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Leap", + "body": [ + "Immediately after a creature the froghemoth can see ends its turn, the froghemoth jumps up to half its speed. Each creature within 5 feet of the froghemoth when it lands must succeed on a {@dc 20} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Froghemoth Elder-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Gibberling", + "source": "QftIS", + "page": 202, + "size_str": "Small", + "maintype": "fiend", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 13, + "dexterity": 14, + "constitution": 11, + "intelligence": 5, + "wisdom": 7, + "charisma": 5, + "passive": 8, + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Gibberling" + ], + "traits": [ + { + "title": "Aversion to Fire", + "body": [ + "If the gibberling takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incessant Gibberish", + "body": [ + "Any non-gibberling that is within 30 feet of the gibberling and doesn't have the {@condition deafened} condition has disadvantage on Constitution saving throws to maintain {@status concentration} on spells and similar effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 3} to hit, reach 5 ft., one target. {@h}3 ({@damage 1d4 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "demon", + "actions_note": "", + "mythic": null, + "key": "Gibberling-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Guardian of Gorm", + "source": "QftIS", + "page": 203, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Good", + "ac": [ + { + "value": 16, + "note": "{@item chain mail|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 15, + "dexterity": 10, + "constitution": 10, + "intelligence": 10, + "wisdom": 13, + "charisma": 12, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Brave", + "body": [ + "The guardian has advantage on saving throws against the {@condition frightened} condition." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Lightning Mace", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage plus 2 ({@damage 1d4}) lightning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Handaxe", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guardian of Gorm-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Horrid Plant", + "source": "QftIS", + "page": 204, + "size_str": "Large", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 6 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "5d10 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 5, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 3, + "constitution": 17, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "Horrid Plant Varieties", + "body": [ + "A horrid plant comes in one of three varieties (choose or roll a {@dice d6}): 1-2, dew drinker; 3-4, purple blossom; or 5-6, snapper saw. This form determines certain traits in this stat block." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "If the horrid plant is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the horrid plant move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Nature}) check to discern that the horrid plant isn't an ordinary plant." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The horrid plant makes two Tendril attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tendril", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 30 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage. If the target is a Huge or smaller creature, it has the {@condition grappled} condition (escape {@dc 14}), and the horrid plant can pull the target up to 25 feet closer to itself. Until the grapple ends, the target has the {@condition restrained} condition, and the horrid plant can't use the same tendril on another target. The horrid plant has two tendrils." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Sap Squirt (Purple Blossom Only)", + "body": [ + "The horrid plant targets one creature it can see within 15 feet of itself. The target must succeed on a {@dc 14} Dexterity saving throw or take 28 ({@damage 8d6}) acid damage and become covered in acidic sap. This sap lasts for 1 minute or until a creature uses its action to scrape the sap off itself or another creature it can reach. A creature covered in sap takes 14 ({@damage 4d6}) acid damage at the start of each of its turns." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spiked Leaves (Snapper Saw Only)", + "body": [ + "Creatures within 10 feet of the horrid plant and not behind {@quickref Cover||3||total cover} must make a {@dc 14} Dexterity saving throw, taking 21 ({@damage 6d6}) slashing damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vampiric Tendril (Dew Drinker Only)", + "body": [ + "One creature {@condition grappled} by the horrid plant must make a {@dc 13} Constitution saving throw, taking 10 ({@damage 3d6}) necrotic damage on a failed save or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken, and the horrid plant regains hit points equal to that amount. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Horrid Plant-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Leprechaun", + "source": "QftIS", + "page": 205, + "size_str": "Small", + "maintype": "fey", + "alignment": "Neutral", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "8d6 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 6, + "dexterity": 17, + "constitution": 16, + "intelligence": 12, + "wisdom": 14, + "charisma": 18, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+5", + "wis": "+4" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Sylvan" + ], + "traits": [ + { + "title": "Industrious", + "body": [ + "The leprechaun is proficient with all artisan's tools and adds double its proficiency bonus to ability checks made with them." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reluctant Refusal", + "body": [ + "When a creature offers the leprechaun the chance to partake in merriment or revelry such as a song, a dance, or a good meal, the leprechaun must succeed on a {@dc 15} Wisdom saving throw or have the {@condition charmed} condition for 24 hours. While {@condition charmed} in this way, the leprechaun partakes of the offering, treats the creature as a trusted friend, and seeks to defend it from harm. The {@condition charmed} condition ends if the creature or any of its allies damage the leprechaun, force the leprechaun to make a saving throw, or steal from the leprechaun." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The leprechaun makes two Cobbler's Hammer attacks and can use Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cobbler's Hammer", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage plus 13 ({@damage 3d8}) force damage. If the target is a creature, its speed is halved until the start of the leprechaun's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gift of Luck (1/Day)", + "body": [ + "The leprechaun touches a creature and magically gifts the target a measure of luck. The creature gains the leprechaun's Astonishing Luck reaction. The creature can use the reaction three times, after which this gift goes away. The leprechaun can revoke this gift from a creature at any time (no action required). A creature can benefit from only one leprechaun's Gift of Luck at a time." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Cunning Trick", + "body": [ + "The leprechaun takes the Disengage or Hide action or makes a Dexterity ({@skill Sleight of Hand}) check." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Astonishing Luck", + "body": [ + "When the leprechaun fails an ability check, an attack roll, or a saving throw, it can roll a new {@dice d20} and choose which roll to use, potentially turning the failure into a success." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "The leprechaun casts one of the following spells, requiring no material components and using Charisma as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Mending} (as an action)", + "{@spell Prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Invisibility}", + "{@spell Phantasmal Force}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Fabricate} (as an action)", + "{@spell Mislead}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Leprechaun-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Mage of Usamigaras", + "source": "QftIS", + "page": 206, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Neutral", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 9, + "formula": "2d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 10, + "dexterity": 12, + "constitution": 10, + "intelligence": 15, + "wisdom": 10, + "charisma": 13, + "passive": 10, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 4} to hit, reach 5 ft. or range 120 ft., one target. {@h}7 ({@damage 1d10 + 2}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The mage casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 12}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Light}", + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Charm Person}", + "{@spell Disguise Self}", + "{@spell Silent Image}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Mage of Usamigaras-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Maschin-i-Bozorg", + "source": "QftIS", + "page": 207, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 94, + "formula": "9d10 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 18, + "dexterity": 16, + "constitution": 20, + "intelligence": 2, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Gnomish but can't speak" + ], + "traits": [ + { + "title": "Overheat", + "body": [ + "When the maschin-i-bozorg is reduced to 0 hit points, its power source overloads, briefly superheating its outer shell. Each creature within 10 feet of the maschin-i-bozorg must make a {@dc 16} Constitution saving throw, taking 7 ({@damage 2d6}) fire damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The maschin-i-bozorg makes two Poison Jab attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Poison Jab", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 30/120 ft., one target. {@h}13 ({@damage 4d4 + 3}) piercing damage, and the target must succeed on a {@dc 16} Constitution saving throw or have the {@condition poisoned} condition for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Steam Jet {@recharge 5}", + "body": [ + "The maschin-i-bozorg emits scalding steam in a 30-foot cone. Each creature in that area must make a {@dc 16} Constitution saving throw, taking 28 ({@damage 8d6}) fire damage on a failed save or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Crushing Stride", + "body": [ + "The maschin-i-bozorg moves up to its speed in a straight line. During this movement, it can enter Medium and smaller creatures' spaces. A creature whose space the maschin-i-bozorg enters must make a {@dc 15} Dexterity saving throw. On a successful save, the creature is pushed to the nearest unoccupied space out of the maschin-i-bozorg's path. On a failed save, the creature takes 10 ({@damage 3d6}) bludgeoning damage and has the {@condition prone} condition.", + "If the maschin-i-bozorg remains in the {@condition prone} creature's space, the creature also has the {@condition restrained} condition until it's no longer in the same space as the maschin-i-bozorg. While {@condition restrained} in this way, the creature, or another creature within 5 feet of it, can use its action to make a {@dc 15} Strength ({@skill Athletics}) check. On a successful check, the creature is shunted to an unoccupied space of its choice within 5 feet of the maschin-i-bozorg." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Maschin-i-Bozorg-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Memory Web", + "source": "QftIS", + "page": 208, + "size_str": "Large", + "maintype": "aberration", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 14 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 39, + "formula": "6d10 + 6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 16, + "dexterity": 18, + "constitution": 13, + "intelligence": 14, + "wisdom": 14, + "charisma": 3, + "passive": 12, + "dmg_resistances": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (can't see beyond this radius)" + ], + "traits": [ + { + "title": "Damage Transfer", + "body": [ + "While it is grappling a creature, the memory web takes only half the damage dealt to it, and the creature {@condition grappled} by the web takes the other half." + ], + "__dataclass__": "Entry" + }, + { + "title": "False Appearance", + "body": [ + "If the memory web is motionless at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the memory web move or act, that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the memory web is animate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Memory Flood", + "body": [ + "When the memory web is reduced to 0 hit points, it discharges any memories it consumed over the past 24 hours in a telepathic deluge. Hazy, dreamlike visions of these discharged memories lodge in the minds of creatures up to 120 feet from the memory web." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Ensnare", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one Large or smaller creature. {@h}The target has the {@condition grappled} condition (escape {@dc 13}). Until this grapple ends, the target has the {@condition restrained} condition and takes 7 ({@damage 1d8 + 3}) bludgeoning damage at the start of each of its turns. The memory web can grapple only one creature at a time." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Drain Memories", + "body": [ + "The memory web targets one creature {@condition grappled} by it. The target must make a {@dc 12} Intelligence saving throw. Constructs, Oozes, Plants, and Undead succeed on the save automatically. On a failed save, the target takes 5 ({@damage 2d4}) psychic damage and becomes memory drained until it finishes a long rest or the memory web is destroyed.", + "While memory drained, the target must roll a {@dice d4} each time it makes an ability check or attack roll, subtracting the {@dice d4} roll from it. Each time the target is memory drained beyond the first, the die size increases by one: the {@dice d4} becomes a {@dice d6}, the {@dice d6} becomes a {@dice d8}, and so on until the die becomes a {@dice d20}, at which point the target has the {@condition unconscious} condition for 1 hour. If a memory drained creature is the target of the Greater Restoration or {@spell Heal} spell, the memory drained effect ends on it. On a successful save, the target takes half as much damage only." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Memory Web-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Nafas", + "source": "QftIS", + "page": 210, + "size_str": "Large", + "maintype": "elemental", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 19, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 350, + "formula": "28d10 + 196", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 90, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "23", + "xp": 50000, + "strength": 23, + "dexterity": 18, + "constitution": 24, + "intelligence": 15, + "wisdom": 18, + "charisma": 23, + "passive": 21, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "performance", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+11", + "wis": "+11", + "cha": "+13" + }, + "dmg_resistances": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Auran", + "Common" + ], + "traits": [ + { + "title": "Dimensionally Bound", + "body": [ + "Nafas can't leave the Infinite Staircase or be trapped within a container (such as an Iron Flask). Attempts to transport Nafas to another plane are wasted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Last Wish", + "body": [ + "When Nafas drops to 0 hit points, his body disintegrates into a whirl of multiversal dust that surrounds one creature responsible for his demise. That creature then hears Nafas's last wish: for the creature to take his place.", + "If the creature accepts, it is transformed into a noble djinni. The creature's game statistics are replaced by those of Nafas (including this trait), though it retains its name, alignment, and personality. The creature also inherits Nafas's palace and all it contains.", + "If the creature refuses, Nafas gains a new body in {@dice 1d10} days, regaining all his hit points and appearing in a random safe location on the Infinite Staircase." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (5/Day)", + "body": [ + "If Nafas fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Nafas has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Noble Genie", + "body": [ + "Nafas doesn't suffer any of the penalties that normally follow casting the {@spell Wish} spell to produce an effect other than duplicating another spell." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Nafas makes three Storm Shamshir attacks and uses Create Vortex." + ], + "__dataclass__": "Entry" + }, + { + "title": "Storm Shamshir", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 14 ({@damage 4d6}) lightning or thunder damage (Nafas's choice)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Create Vortex", + "body": [ + "A 10-foot-radius, 60-foot-tall cylinder of swirling cosmic dust forms on a point Nafas can see within 120 feet of him. The vortex lasts as long as Nafas maintains {@status concentration} (as if {@status concentration||concentrating} on a spell). When the vortex appears, each creature other than Nafas in the vortex's area must make a {@dc 22} Strength saving throw. On a failed save, a creature takes 36 ({@damage 8d8}) force damage and has the {@condition restrained} condition. On a successful save, a creature takes half as much damage only and moves to the nearest unoccupied space outside the vortex.", + "On subsequent turns, Nafas can use this action to move the vortex up to 60 feet. When the vortex enters a creature's space for the first time on a turn, the creature must make the same saving throw as when the vortex first appeared. Creatures {@condition restrained} by the vortex move with it.", + "A creature {@condition restrained} by the vortex, or another creature that can reach it, can use its action to make a {@dc 22} Strength check. On a successful check, the {@condition restrained} creature is no longer {@condition restrained} and moves to the nearest unoccupied space outside the vortex." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Blowback", + "body": [ + "Immediately after a creature Nafas can see ends its turn, Nafas exhales forceful winds in a 30-foot cone. Large or smaller creatures in that area must succeed on a {@dc 22} Strength saving throw or be pushed up to 15 feet away from him." + ], + "__dataclass__": "Entry" + }, + { + "title": "Zephyr Step", + "body": [ + "In response to being hit by an attack roll, Nafas moves up to half his flying speed without provoking opportunity attacks." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Nafas casts one of the following spells, requiring no spell components and using Charisma as the spellcasting ability (spell save {@dc 21}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Detect Evil and Good}", + "{@spell Detect Magic}", + "{@spell Thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 3, + "spells": [ + "{@spell Create Food and Water} (the food is always tasty)", + "{@spell Dispel Magic}", + "{@spell Invisibility}", + "{@spell Legend Lore} (as an action)", + "{@spell Tongues}", + "{@spell Wind Walk} (as an action)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Gaseous Form}", + "{@spell Major Image}", + "{@spell Teleport}", + "{@spell Wish}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nafas-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Nafik", + "source": "QftIS", + "page": 212, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d8 + 33", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 18, + "dexterity": 10, + "constitution": 16, + "intelligence": 10, + "wisdom": 16, + "charisma": 14, + "passive": 13, + "skills": { + "skills": [ + { + "target": "history", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 3, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+3", + "wis": "+6" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Legendary Resistance (2/Day)", + "body": [ + "If Nafik fails a saving throw, he can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "Nafik has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rejuvenation", + "body": [ + "When he is destroyed, Nafik gains a new body in 24 hours if his heart is intact, regaining all his hit points. The new body appears in an unoccupied space within 5 feet of Nafik's heart." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Nafik can use his Dreadful Glare and makes one Rotting Fist or Unholy Beam attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rotting Fist", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage plus 21 ({@damage 6d6}) necrotic damage. If the target is a creature, it must succeed on a {@dc 14} Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 ({@dice 3d6}) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies and its body turns to dust. The curse lasts until removed by the {@spell Remove Curse} spell or other magic." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unholy Beam", + "body": [ + "{@atk rs} {@hit 6} to hit, range 120 ft., one target. {@h}28 ({@damage 8d6}) necrotic damage, and the next attack roll made against this target before the end of Nafik's next turn has advantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dreadful Glare", + "body": [ + "Nafik targets one creature he can see within 60 feet of himself. The target must succeed on a {@dc 14} Wisdom saving throw or have the {@condition frightened} condition until the end of Nafik's next turn. A target that succeeds on the saving throw is immune to Nafik's Dreadful Glare for the next 24 hours." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "Nafik casts one of the following spells, using Wisdom as the spellcasting ability (spell save {@dc 14}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Thaumaturgy}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Insect Plague}" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 2, + "spells": [ + "{@spell Command}", + "{@spell Silence}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Nafik-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Pech", + "source": "QftIS", + "page": 213, + "size_str": "Small", + "maintype": "elemental", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 82, + "formula": "11d6 + 44", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 20, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 19, + "dexterity": 11, + "constitution": 18, + "intelligence": 11, + "wisdom": 14, + "charisma": 10, + "passive": 14, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+6", + "wis": "+4" + }, + "cond_immunities": [ + { + "value": "petrified", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft.", + "tremorsense 120 ft." + ], + "languages": [ + "Common", + "Terran" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The pech has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the pech has disadvantage on attack rolls." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The pech makes two Fortified Pickaxe attacks. If it hits a Large or smaller creature with both attacks, the target must succeed on a {@dc 14} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fortified Pickaxe", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) force damage. If the target is a Construct or an object, the attack is automatically a critical hit." + ], + "__dataclass__": "Entry" + }, + { + "title": "Stone Shape (3/Day)", + "body": [ + "The pech casts {@spell Stone Shape}, requiring no spell components and using Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Communal Spellcasting (2/Day)", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Communal Spellcasting (2/Day)", + "body": [ + "The pech works with three or more pechs to cast spells, requiring no spell components and using Wisdom as the spellcasting ability (save {@dc 12}). If at least three other pechs are within 30 feet of it, the pech can cast {@spell Wall of Stone} . If at least seven other pechs are within 30 feet of it, it can cast {@spell Greater Restoration} . Each other pech involved in casting the spell can't have the incapacitated condition and must have at least one use of Communal Spellcasting remaining, which it must immediately expend to participate (no action required)." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": null, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Wall of Stone}", + "{@spell Greater Restoration}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Pech-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Sion", + "source": "QftIS", + "page": 216, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 16, + "dexterity": 14, + "constitution": 13, + "intelligence": 12, + "wisdom": 14, + "charisma": 16, + "passive": 14, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+3", + "cha": "+5" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "Sion has advantage on saving throws against spells and other magical effects if he is in dim light or darkness." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadesight", + "body": [ + "Magical darkness doesn't impede Sion's darkvision." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadowy Demise", + "body": [ + "If Sion dies, his body melts into shadow, leaving behind only equipment he was wearing or carrying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Weakness", + "body": [ + "While in sunlight, Sion has disadvantage on attack rolls, ability checks, and saving throws." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Sion makes one Shadow Sword attack and uses Affix Shadow or Spellcasting." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Sword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d10 + 3}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Affix Shadow", + "body": [ + "Sion targets a creature within 60 feet of himself that he can see. That target must make a {@dc 13} Charisma saving throw. On a failed save, the target has the {@condition grappled} condition (escape {@dc 13}) as its shadow wraps around it. Once the target escapes the grapple, its shadow returns to normal." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Shadow Step", + "body": [ + "While Sion is in dim light or darkness, he magically teleports up to 15 feet to an unoccupied space he can see that is also in dim light or darkness." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Spellcasting", + "body": [ + "Sion casts one of the following spells, using Charisma as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Mage Hand}", + "{@spell Minor Illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Darkness}", + "{@spell Mirror Image}", + "{@spell Silence}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "human, sorcerer", + "actions_note": "", + "mythic": null, + "key": "Sion-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Swarm of Gibberlings", + "source": "QftIS", + "page": 202, + "size_str": "Large", + "maintype": "swarm of Small fiends", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 38, + "formula": "7d10", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 11, + "intelligence": 5, + "wisdom": 7, + "charisma": 5, + "passive": 8, + "dmg_resistances": [ + { + "value": "bludgeoning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + }, + { + "value": "slashing", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "prone", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + }, + { + "value": "stunned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Gibberling" + ], + "traits": [ + { + "title": "Aversion to Fire", + "body": [ + "If the swarm takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Incessant Gibberish", + "body": [ + "Any non-gibberling that is within 60 feet of the swarm and doesn't have the {@condition deafened} condition has disadvantage on Constitution saving throws to maintain {@status concentration} on spells and similar effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swarm", + "body": [ + "The swarm can occupy another creature's space and vice versa, and the swarm can move through any opening large enough to accommodate a Small gibberling. The swarm can't regain hit points or gain temporary hit points." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The swarm makes two Gnashing Teeth attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gnashing Teeth", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 0 ft., one target in the swarm's space. {@h}14 ({@damage 4d4 + 4}) piercing damage, or 9 ({@damage 2d4 + 4}) piercing damage if the swarm has half of its hit points or fewer." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swarm of Gibberlings-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "The Gardener", + "source": "QftIS", + "page": 200, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Neutral Good", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 209, + "formula": "22d8 + 110", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 21, + "dexterity": 16, + "constitution": 20, + "intelligence": 17, + "wisdom": 20, + "charisma": 18, + "passive": 19, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "nature", + "mod": 11, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 13, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+7", + "con": "+9", + "wis": "+9", + "cha": "+8" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "Common", + "Druidic", + "Elvish", + "Sylvan" + ], + "traits": [ + { + "title": "Fey Rebirth", + "body": [ + "If the Gardener dies in the Eternal Garden, they revive with all their hit points {@dice 1d4} days later in a safe location within the garden." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the Gardener fails a saving throw, they can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unfettered Steps", + "body": [ + "The Gardener is unaffected by difficult terrain." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The Gardener makes two Vine attacks and can use Breath of Tranquility if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Vine", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 10 ft., one target. {@h}11 ({@damage 1d12 + 5}) bludgeoning damage plus 9 ({@damage 2d8}) psychic damage, and if the target is a Large or smaller creature, the vine wraps around the target, and the target has the {@condition grappled} condition (escape {@dc 17}). The vine vanishes when the target is no longer {@condition grappled}, or when the Gardener wills it to (no action required). A creature reduced to 0 hit points by the vine has the {@condition unconscious} condition but is stable instead of dying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Breath of Tranquility {@recharge 5}", + "body": [ + "The Gardener exhales soporific vapor in a 30-foot cone. Each creature in that area must succeed on a {@dc 17} Constitution saving throw or have the {@condition poisoned} condition. A {@condition poisoned} creature must repeat the saving throw at the end of its next turn. On a failed save, it has the {@condition unconscious} condition, and on a successful save, the effect ends on it. An {@condition unconscious} creature is no longer {@condition poisoned} and remains {@condition unconscious} for 1 hour, until it takes damage, or until a creature uses an action to shake it awake." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Pacification", + "body": [ + "When a creature within 120 feet of the Gardener damages the Gardener, that creature takes 10 ({@damage 3d6}) psychic damage, and the Gardener teleports, along with anything they are wearing or carrying, to an unoccupied space they can see within 15 feet. A creature reduced to 0 hit points by the psychic damage has the {@condition unconscious} condition and is stable instead of dying." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spell Refuge", + "body": [ + "When the Gardener or a creature within 30 feet of the Gardener takes damage from a spell, the Gardener chooses up to 5 creatures within 30 feet of themself. The Gardener and the chosen creatures have resistance to all damage from the triggering spell." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The Gardener casts one of the following spells, requiring no material components and using Wisdom as the spellcasting ability (spell save {@dc 17}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Druidcraft}", + "{@spell Speak with Animals}", + "{@spell Speak with Plants}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 2, + "spells": [ + "{@spell Awaken} (as an action)", + "{@spell Goodberry}", + "{@spell Plant Growth} (as an action only)" + ], + "__dataclass__": "DailySpellList" + }, + { + "per_day": 1, + "spells": [ + "{@spell Heroes' Feast} (as an action)", + "{@spell Teleport}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "archfey, druid", + "actions_note": "", + "mythic": null, + "key": "The Gardener-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Tower Hand", + "source": "QftIS", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 14, + "note": "Unarmored Defense", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "4d8 + 4", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 10, + "dexterity": 14, + "constitution": 12, + "intelligence": 12, + "wisdom": 14, + "charisma": 9, + "passive": 12, + "skills": { + "skills": [ + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "traits": [ + { + "title": "Unarmored Defense", + "body": [ + "While the tower hand is wearing no armor and wielding no shield, its AC includes its Wisdom modifier." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tower hand makes two Unarmed Strike attacks, two Dart attacks, or one of each." + ], + "__dataclass__": "Entry" + }, + { + "title": "Unarmed Strike", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dart", + "body": [ + "{@atk rw} {@hit 4} to hit, range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Deflect Missile", + "body": [ + "In response to being hit by a ranged weapon attack, the tower hand deflects the missile. The damage it takes from the attack is reduced by 7 ({@dice 1d10 + 2})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tower Hand-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Tower Sage", + "source": "QftIS", + "page": 217, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": [ + 10, + { + "ac": 13, + "condition": "with {@spell mage armor}", + "braces": true + } + ], + "__dataclass__": "AC" + }, + { + "value": 13, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 10, + "dexterity": 10, + "constitution": 10, + "intelligence": 16, + "wisdom": 14, + "charisma": 16, + "passive": 12, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "history", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common plus any three languages" + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The tower sage makes two Arcane Burst attacks and can use Starry Radiance if available." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arcane Burst", + "body": [ + "{@atk ms,rs} {@hit 5} to hit, reach 5 ft. or range 120 ft., one target. {@h}8 ({@damage 1d10 + 3}) radiant damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Starry Radiance {@recharge 5}", + "body": [ + "Dazzling light bursts from the tower sage's fingertips in a 15-foot cone. Each creature in that area must succeed on a {@dc 13} Constitution saving throw or have the {@condition blinded} condition until the end of the tower sage's next turn." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Spellcasting", + "body": [ + "The tower sage casts one of the following spells, using Intelligence as the spellcasting ability (spell save {@dc 13}):" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell Dancing Lights}", + "{@spell Mage Hand}", + "{@spell Prestidigitation}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell Arcane Lock}", + "{@spell Burning Hands}", + "{@spell Comprehend Languages}", + "{@spell Detect Magic}", + "{@spell Levitate}", + "{@spell Mage Armor}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Tower Sage-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Vegepygmy Moldmaker", + "source": "QftIS", + "page": 218, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 44, + "formula": "8d6 + 16", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 10, + "dexterity": 14, + "constitution": 14, + "intelligence": 10, + "wisdom": 16, + "charisma": 11, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "int": "+2", + "wis": "+5" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Vegepygmy" + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vegepygmy regains 7 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The vegepygmy makes two Claw attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}12 ({@damage 3d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Toxic Mold (2/Day)", + "body": [ + "The vegepygmy targets a creature it can see within 60 feet of itself. If the target isn't a vegepygmy, it must make a {@dc 13} Constitution saving throw. On a failed save, the target takes 13 ({@damage 3d8}) poison damage and has the {@condition blinded} and {@condition deafened} conditions for 1 minute as it becomes covered in a thick layer of mold. On a successful save, the target takes half as much damage only.", + "The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vegepygmy Moldmaker-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Vegepygmy Scavenger", + "source": "QftIS", + "page": 218, + "size_str": "Small", + "maintype": "plant", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 13, + "formula": "3d6 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/4", + "xp": 50, + "strength": 7, + "dexterity": 14, + "constitution": 13, + "intelligence": 6, + "wisdom": 11, + "charisma": 7, + "passive": 12, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "sleight of hand", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Vegepygmy" + ], + "traits": [ + { + "title": "Plant Camouflage", + "body": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vegepygmy regains 3 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}5 ({@damage 1d6 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sling", + "body": [ + "{@atk rw} {@hit 4} to hit, range 30/120 ft., one target. {@h}4 ({@damage 1d4 + 2}) bludgeoning damage." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Nimble Escape", + "body": [ + "The vegepygmy takes the Disengage or Hide action." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vegepygmy Scavenger-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Vegepygmy Thorny Hunter", + "source": "QftIS", + "page": 219, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 27, + "formula": "5d8 + 5", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "2", + "xp": 450, + "strength": 15, + "dexterity": 14, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 6, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "lightning", + "__dataclass__": "Scalar" + }, + { + "value": "piercing", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The vegepygmy has advantage on attack rolls against a creature if at least one of the vegepygmy's allies is within 5 feet of the creature and the ally doesn't have the {@condition incapacitated} condition." + ], + "__dataclass__": "Entry" + }, + { + "title": "Plant Camouflage", + "body": [ + "The vegepygmy has advantage on Dexterity ({@skill Stealth}) checks it makes in any terrain with ample obscuring vegetation." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "The vegepygmy regains 5 hit points at the start of its turn. If it takes cold, fire, or necrotic damage, this trait doesn't function at the start of the vegepygmy's next turn. The vegepygmy dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Thorny Body", + "body": [ + "At the start of its turn, the vegepygmy deals 2 ({@damage 1d4}) piercing damage to any creature grappling it." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d8 + 2}) piercing damage. If the target is a creature, it must succeed on a {@dc 12} Strength saving throw or have the {@condition prone} condition." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vegepygmy Thorny Hunter-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Warrior of Madarua", + "source": "QftIS", + "page": 220, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Chaotic Good", + "ac": [ + { + "value": 12, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 11, + "formula": "2d8 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 15, + "dexterity": 12, + "constitution": 13, + "intelligence": 10, + "wisdom": 10, + "charisma": 10, + "passive": 10, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "religion", + "mod": 2, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common" + ], + "actions": [ + { + "title": "Spear", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage, or 6 ({@damage 1d8 + 2}) piercing damage if used with two hands to make a melee attack." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Parry", + "body": [ + "The warrior adds 2 to its AC against one melee attack that would hit it. To do so, the warrior must see the attacker and be wielding a melee weapon." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Warrior of Madarua-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Wolf-in-Sheep's-Clothing", + "source": "QftIS", + "page": 221, + "size_str": "Medium", + "maintype": "plant", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 112, + "formula": "15d8 + 45", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 20, + "dexterity": 9, + "constitution": 16, + "intelligence": 5, + "wisdom": 12, + "charisma": 5, + "passive": 17, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 7, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "cond_immunities": [ + { + "value": "prone", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "False Appearance", + "body": [ + "If the wolf-in-sheep's-clothing is motionless (except for its lure) at the start of combat, it has advantage on its initiative roll. Moreover, if a creature hasn't observed the wolf-in-sheep's-clothing move or act (except for the lure), that creature must succeed on a {@dc 18} Intelligence ({@skill Investigation}) check to discern that the wolf-in-sheep's-clothing is animate." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wolf-in-sheep's-clothing makes one Bite attack and two Root Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}9 ({@damage 1d8 + 5}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Root Tentacle", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 20 ft., one target. {@h}8 ({@damage 1d6 + 5}) bludgeoning damage, and if the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 16}). While {@condition grappled} in this way, the target has the {@condition restrained} condition, and at the start of each of the wolf-in-sheep's-clothing's turns, the wolf-in-sheep's-clothing can pull the target up to 10 feet toward itself (no action required). The wolf-in-sheep's-clothing has four root tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + } + ], + "bonus_actions": [ + { + "title": "Completely Harmless Lure", + "body": [ + "The wolf-in-sheep's-clothing can change the color, texture, and shape of its lure to resemble a Tiny Beast or Tiny object. It can move the lure to reinforce the resemblance (no action required), but the lure must remain within 15 feet of the wolf-in-sheep's-clothing, connected by nearly {@condition invisible} filament-like tendrils." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Wolf-in-Sheep's-Clothing-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Worker Robot", + "source": "QftIS", + "page": 215, + "size_str": "Medium", + "maintype": "construct", + "alignment": "Neutral", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d8 + 30", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 30, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 20, + "dexterity": 9, + "constitution": 16, + "intelligence": 10, + "wisdom": 12, + "charisma": 10, + "passive": 11, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common plus the languages spoken by its creator" + ], + "traits": [ + { + "title": "Lightning Overload", + "body": [ + "When the robot takes lightning damage, it must succeed on a {@dc 10} Constitution saving throw or have the {@condition stunned} condition until the start of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The robot makes two Cargo Tentacle attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Cargo Tentacle", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 10 ft., one target. {@h}9 ({@damage 1d8 + 5}) bludgeoning damage. If the target is a Medium or smaller creature, it has the {@condition grappled} condition (escape {@dc 15}). The robot has two cargo tentacles, each of which can grapple one target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tractor Beam", + "body": [ + "The robot casts {@spell Telekinesis}, targeting only creatures with the {@condition incapacitated} condition or objects. It requires no spell components and uses Wisdom as the spellcasting ability." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Worker Robot-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Zargon the Returner", + "source": "QftIS", + "page": 223, + "size_str": "Huge", + "maintype": "aberration", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 253, + "formula": "22d12 + 110", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 80, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 22, + "dexterity": 10, + "constitution": 20, + "intelligence": 14, + "wisdom": 18, + "charisma": 18, + "passive": 20, + "skills": { + "skills": [ + { + "target": "history", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 10, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "cha": "+10" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "acid", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 120 ft." + ], + "languages": [ + "all", + "telepathy 120 ft." + ], + "traits": [ + { + "title": "Legendary Resistance (4/Day)", + "body": [ + "If Zargon fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Regeneration", + "body": [ + "Zargon regains 20 hit points at the start of each of its turns. If Zargon takes cold or fire damage, this trait doesn't function at the start of Zargon's next turn. Zargon dies only if it starts its turn with 0 hit points and doesn't regenerate." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shrouded Being", + "body": [ + "Zargon can't be targeted by divination magic or perceived through magical scrying sensors." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slimy Demise", + "body": [ + "When Zargon dies, its body dissolves into foul slime, leaving only its horn behind. Zargon re-forms in {@dice 1d10} days, regrowing from the horn. The horn is immune to all damage and can be destroyed only by submerging it in a cleansing waterfall on one of the Upper Planes for 101 days. While the horn is submerged in this way, Zargon doesn't re-form, and the horn slowly dissolves, sending corrupting slime downriver that permanently fouls the water for 10 miles from the place where the horn dissolved. The fouled water is unfit to drink, chokes aquatic wildlife, and withers plants." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Zargon makes two Barbed Tentacle attacks, one Bite attack, and one Gore attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Barbed Tentacle", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 20 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage. If the target is a Large or smaller creature, it has the {@condition grappled} condition (escape {@dc 20}), and Zargon can pull the creature up to 20 feet straight toward itself. Zargon has six tentacles, each of which can grapple one creature. Zargon can move at its full speed while dragging creatures it is grappling." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 5 ft., one target. {@h}19 ({@damage 2d12 + 6}) piercing damage plus 7 ({@damage 2d6}) acid damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Gore", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}15 ({@damage 2d8 + 6}) force damage, and a 10-foot-radius {@condition invisible} sphere of antimagic, like that created by an {@spell Antimagic Field} spell, surrounds the target. The sphere is centered on the target, moves with the target, and lasts until the end of Zargon's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slime Wave {@recharge 5}", + "body": [ + "Zargon spews slime in a 60-foot cone. Each creature in that area that isn't an Aberration or Ooze must make a {@dc 19} Constitution saving throw. On a failed save, the creature takes 38 ({@damage 7d10}) acid damage and has the {@condition poisoned} condition for 1 minute. On a successful save, the creature takes half as much damage only. A {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "A creature reduced to 0 hit points by the acid damage dies and dissolves into a puddle of slime that rises as a gibbering mouther at the start of Zargon's next turn. The creature obeys Zargon's commands and takes its turn immediately after Zargon's. Only a {@spell Wish} spell can reverse this transformation and restore the creature to life." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Defiant Essence", + "body": [ + "When a creature casts a spell that targets Zargon or would deal damage to it, Zargon attempts to absorb the magic into its horn. The creature must make a {@dc 19} Charisma saving throw. On a failed save, the creature takes 6 ({@damage 1d12}) force damage, and the spell it cast fails and is wasted." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slime Spray", + "body": [ + "When a creature ends its turn within 30 feet of Zargon, Zargon sprays toxic slime at the creature. The target must make a {@dc 19} Dexterity saving throw (with disadvantage if it has the {@condition poisoned} condition). On a failed save, the creature takes 7 ({@damage 2d6}) poison damage. On a successful save, it takes half as much damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Zargon the Returner-QftIS", + "__dataclass__": "Monster" + }, + { + "name": "Avatar of Death", + "source": "XDMG", + "page": 252, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 20 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 0, + "formula": "", + "special": "Half the HP maximum of its summoner", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 16, + "dexterity": 16, + "constitution": 16, + "intelligence": 16, + "wisdom": 16, + "charisma": 16, + "passive": 13, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "unconscious", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "truesight 60 ft." + ], + "languages": [ + "all languages known to its summoner" + ], + "traits": [ + { + "title": "Incorporeal Movement", + "body": [ + "The avatar can move through other creatures and objects as if they were Difficult Terrain. It takes 5 ({@damage 1d10}) Force damage if it ends its turn inside an object." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The avatar makes a number of Reaping Scythe attacks equal to half the summoner's Proficiency Bonus (rounded up)." + ], + "__dataclass__": "Entry" + }, + { + "title": "Reaping Scythe", + "body": [ + "{@atkr m} Automatic hit, reach 5 ft. {@h}7 ({@damage 1d8 + 3}) Slashing damage plus 4 ({@damage 1d8}) Necrotic damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Avatar of Death-XDMG", + "__dataclass__": "Monster" + }, + { + "name": "Giant Fly", + "source": "XDMG", + "page": 261, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": [ + 11 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 19, + "formula": "3d10 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "0", + "xp": 10, + "strength": 14, + "dexterity": 13, + "constitution": 13, + "intelligence": 2, + "wisdom": 10, + "charisma": 3, + "passive": 10, + "senses": [ + "darkvision 60 ft." + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Giant Fly-XDMG", + "__dataclass__": "Monster" + }, + { + "name": "Aeorian Absorber", + "source": "EGW", + "page": 283, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 171, + "formula": "18d10 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 21, + "dexterity": 18, + "constitution": 18, + "intelligence": 6, + "wisdom": 14, + "charisma": 8, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+3" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The absorber has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pounce", + "body": [ + "If the absorber moves at least 20 feet straight toward a creature and then hits its claws attack on the same turn, that target must succeed on a {@dc 17} Strength saving throw or be knocked {@condition prone}. If the target is {@condition prone}, the absorber can make one bite attack against it as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The absorber makes three attacks: one with its bite or Mind Bolt and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}10 ({@damage 1d10 + 5}) piercing damage plus 5 ({@damage 1d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 3 ({@damage 1d6}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Mind Bolt", + "body": [ + "{@atk rs} {@hit 8} to hit, range 120 ft., one creature. {@h}22 ({@damage 4d10}) psychic damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Tail Ray", + "body": [ + "When the absorber takes damage from a spell, the absorber takes only half the triggering damage. If the spellcaster is within 60 feet of the absorber, the absorber can force the caster to make a {@dc 16} Dexterity saving throw. Unless the save succeeds, the caster takes the other half of the damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aeorian Absorber-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Aeorian Nullifier", + "source": "EGW", + "page": 283, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 180, + "formula": "19d10 + 76", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 14, + "constitution": 18, + "intelligence": 7, + "wisdom": 14, + "charisma": 18, + "passive": 16, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+6", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "traits": [ + { + "title": "Horrid Gnashing", + "body": [ + "The nullifier's mouths gnash incoherently while it can see any enemies. Each creature that starts its turn within 20 feet of the nullifier and can hear it must make a {@dc 16} Wisdom saving throw. Unless the save succeeds, the creature rolls a {@dice d8} to determine what it does during the current turn:", + { + "title": "1-4:", + "body": [ + "The creature is {@condition stunned} until the end of the turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "5-6:", + "body": [ + "The creature is {@condition frightened} until the end of the turn and uses its movement to get as far as possible from the nullifier." + ], + "__dataclass__": "Entry" + }, + { + "title": "7-8:", + "body": [ + "The creature doesn't move, and it uses its action to make one melee attack against a random creature (other than itself) if one is within reach. It otherwise does nothing" + ], + "__dataclass__": "Entry" + } + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The nullifier has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The nullifier makes three attacks: one with its bites and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bites", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}17 ({@damage 2d12 + 4}) piercing damage plus 11 ({@damage 2d10}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 10 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 11 ({@damage 2d10}) force damage, and the target is {@condition grappled} (escape {@dc 16}) if it's a creature. The nullifier has two claws, each of which can grapple one creature." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Counterspell", + "body": [ + "The nullifier attempts to interrupt a creature that it can see within 60 feet in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, the nullifier makes a Charisma check with a DC equal to 10 + the spell's level. On a success, the creature's spell fails and has no effect." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The nullifier's innate spellcasting ability is Charisma (spell save {@dc 16}). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell counterspell} (see \"Reactions\" below)", + "{@spell detect magic}", + "{@spell dispel magic}", + "{@spell see invisibility}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell antimagic field}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aeorian Nullifier-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Aeorian Reverser", + "source": "EGW", + "page": 284, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 133, + "formula": "14d10 + 56", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 40, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 21, + "dexterity": 16, + "constitution": 18, + "intelligence": 6, + "wisdom": 14, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "survival", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "wis": "+5", + "cha": "+2" + }, + "dmg_immunities": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + }, + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "understands Draconic but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The reverser has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The reverser makes three attacks: one with its bite and two with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, range 5 ft., one creature. {@h}11 ({@damage 1d12 + 5}) piercing damage plus 6 ({@damage 1d12}) force damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}8 ({@damage 1d6 + 5}) slashing damage plus 7 ({@damage 2d6}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Reversal", + "body": [ + "When a creature the reverser can see within 30 feet of it regains hit points, the reverser reduces the number of hit points regained to 0, and the reverser deals 13 ({@damage 3d8}) force damage to the creature." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Aeorian Reverser-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Blood Hunter", + "source": "EGW", + "page": 284, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Any", + "ac": [ + { + "value": 16, + "note": "{@item half plate armor|PHB|half plate}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 65, + "formula": "10d8 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 18, + "dexterity": 12, + "constitution": 15, + "intelligence": 9, + "wisdom": 16, + "charisma": 11, + "passive": 16, + "skills": { + "skills": [ + { + "target": "acrobatics", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+7", + "wis": "+6" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "any one language (usually Common)" + ], + "traits": [ + { + "title": "Blood Curse of Binding (1/Day)", + "body": [ + "As a bonus action, the blood hunter targets one creature it can see within 30 feet of it. The target must succeed on a {@dc 14} Strength saving throw or have its speed reduced to 0 and be unable to take reactions. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blood Frenzy", + "body": [ + "The blood hunter has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The blood hunter has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The blood hunter attacks twice with a weapon." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greatsword", + "body": [ + "{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage plus 3 ({@damage 1d6}) fire damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Heavy Crossbow", + "body": [ + "{@atk rw} {@hit 4} to hit, range 100/400 ft., one target. {@h}6 ({@damage 1d10 + 1}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting (1/Day)", + "typ": "spellcasting", + "ability": "int", + "header": { + "title": "Innate Spellcasting (1/Day)", + "body": [ + "The blood hunter can innately cast {@spell hex}. Its innate spellcasting ability is Intelligence." + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell hex}" + ], + "__dataclass__": "SpellList" + }, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "any race", + "actions_note": "", + "mythic": null, + "key": "Blood Hunter-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Bol'bara", + "source": "EGW", + "page": 261, + "size_str": "Small", + "maintype": "humanoid", + "alignment": " or Chaotic Good (chaotic evil when fully possessed)", + "ac": [ + { + "value": 13, + "note": "{@item leather armor|PHB}", + "__dataclass__": "AC" + }, + { + "value": 15, + "note": "(with {@spell mage armor})", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 40, + "formula": "9d6 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 11, + "dexterity": 14, + "constitution": 12, + "intelligence": 10, + "wisdom": 13, + "charisma": 14, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Goblin" + ], + "traits": [ + { + "title": "Dark One's Blessing", + "body": [ + "When Bol'bara reduces a hostile creature to 0 hit points, she gains 6 temporary hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Nimble Escape", + "body": [ + "Bol'bara can take the Disengage or Hide action as a bonus action on each of her turns." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "Bol'bara makes two melee attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Dagger", + "body": [ + "{@atk mw,rw} {@hit 4} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Blast (Cantrip)", + "body": [ + "{@atk rs} {@hit 4} to hit, range 120 ft., one creature. {@h}7 ({@damage 1d10 + 2}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "Incorporeal Dash", + "body": [ + "Bol'bara moves up to her speed. She can move through other creatures and objects as if they were {@quickref difficult terrain||3}. She takes 5 ({@damage 1d10}) force damage if she ends her turn inside an object." + ], + "__dataclass__": "Entry" + }, + { + "title": "Zone of Calamity (Costs 2 Actions)", + "body": [ + "A 15-foot-radius sphere of magical confusion extends from a point Bol'bara can see within 60 feet of her and spreads around corners. Each creature that starts its turn in that area is treated as if targeted by the {@spell confusion} spell (save {@dc 12}). The sphere lasts as long as Bol'bara maintains {@status concentration}, up to 1 minute (as if {@status concentration||concentrating} on a spell)." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "Bol'bara's innate spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). She can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell eldritch blast}", + "{@spell false life}", + "{@spell mage armor}", + "{@spell mage hand}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell charm person}", + "{@spell hex}", + "{@spell hold person}", + "{@spell invisibility}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "goblinoid", + "actions_note": "", + "mythic": null, + "key": "Bol'bara-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Bristled Moorbounder", + "source": "EGW", + "page": 295, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 52, + "formula": "7d10 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 70, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 2, + "wisdom": 13, + "charisma": 5, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Bladed Hide", + "body": [ + "At the start of each of its turns, the moorbounder deals 5 ({@damage 2d4}) piercing damage to any creature grappling it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The moorbounder's long jump is up to 40 feet and its high jump is up to 20 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The moorbounder makes two attacks: one with its blades and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Blades", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CRCotN", + "page": 295 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Bristled Moorbounder-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Core Spawn Crawler", + "source": "EGW", + "page": 286, + "size_str": "Small", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 12 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 21, + "formula": "6d6", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 7, + "dexterity": 14, + "constitution": 10, + "intelligence": 9, + "wisdom": 12, + "charisma": 6, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft. (blind beyond this radius)", + "tremorsense 60 ft." + ], + "languages": [ + "understands Deep Speech but can't speak" + ], + "traits": [ + { + "title": "Pack Tactics", + "body": [ + "The crawler has advantage on an attack roll against a creature if at least one of the crawler's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The crawler makes four attacks: one with its bite, two with its claws, and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage and the target must succeed on a {@dc 11} Wisdom saving throw or become {@condition frightened} until the start of the crawler's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 15 ft., one target. {@h}4 ({@damage 1d4 + 2}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 15 ft., one target. {@h}5 ({@damage 1d6 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Core Spawn Crawler-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Core Spawn Emissary", + "source": "EGW", + "page": 286, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 102, + "formula": "12d8 + 48", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 60, + "note": "(hover)", + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": true, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 17, + "dexterity": 15, + "constitution": 18, + "intelligence": 8, + "wisdom": 13, + "charisma": 8, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+5", + "wis": "+4", + "cha": "+2" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "telepathy 120 ft.", + "understands Deep Speech but can't speak" + ], + "traits": [ + { + "title": "Magic Resistance", + "body": [ + "The emissary has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The emissary makes three talons attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Talons", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}14 ({@damage 2d10 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Alluring Thrum {@recharge 5}", + "body": [ + "The emissary emits a dreadful yet alluring hum. Each creature within 20 feet of the emissary that can hear it and that isn't an aberration must succeed on a {@dc 14} Constitution saving throw or be {@condition charmed} 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." + ], + "__dataclass__": "Entry" + }, + { + "title": "Crystal Spores {@recharge}", + "body": [ + "A 15-foot-radius cloud of toxic crystalline spores extends out from the emissary. The spores spread around corners. Each creature in the area must succeed on a {@dc 14} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, a creature takes 11 ({@damage 2d10}) poison damage at the start of each of its turns. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Core Spawn Emissary-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Core Spawn Seer", + "source": "EGW", + "page": 286, + "size_str": "Medium", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 153, + "formula": "18d8 + 72", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "13", + "xp": 10000, + "strength": 14, + "dexterity": 12, + "constitution": 18, + "intelligence": 22, + "wisdom": 19, + "charisma": 16, + "passive": 19, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 9, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "dex": "+6", + "int": "+11", + "wis": "+9", + "cha": "+8" + }, + "dmg_immunities": [ + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "Common", + "Deep Speech", + "telepathy 120 ft.", + "Undercommon" + ], + "traits": [ + { + "title": "Earth Glide", + "body": [ + "The seer can traverse through nonmagical, unworked earth and stone. While doing so, the seer doesn't disturb the material it moves through." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The seer has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The seer uses Fission Staff twice, Psychedelic Orb twice, or each one once." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fission Staff", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}9 ({@damage 1d6 + 6}) bludgeoning damage plus 18 ({@damage 4d8}) radiant damage, and the target is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Psychedelic Orb", + "body": [ + "The seer hurls a glimmering orb at one creature it can see within 120 of it. The target must succeed on a {@dc 19} Wisdom saving throw or take 27 ({@damage 5d10}) psychic damage and suffer a random condition until the start of the seer's next turn. Roll a {@dice d6} for the condition: (1-2) {@condition blinded}, (3-4) {@condition frightened}, or (5-6) {@condition stunned}." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Fuse Damage", + "body": [ + "When the seer is hit by an attack, it takes only half of the triggering damage. The first time the seer hits with a melee attack on its next turn, the target takes an extra {@damage 1d6} radiant damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Core Spawn Seer-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Core Spawn Worm", + "source": "EGW", + "page": 287, + "size_str": "Gargantuan", + "maintype": "aberration", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 279, + "formula": "18d20 + 90", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 40, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "15", + "xp": 13000, + "strength": 26, + "dexterity": 5, + "constitution": 20, + "intelligence": 6, + "wisdom": 8, + "charisma": 4, + "passive": 14, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "con": "+10", + "wis": "+4" + }, + "dmg_vulnerabilities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "languages": [ + "understands Deep Speech but can't speak" + ], + "traits": [ + { + "title": "Illumination", + "body": [ + "The worm sheds dim light in a 20-foot radius." + ], + "__dataclass__": "Entry" + }, + { + "title": "Radiant Mirror", + "body": [ + "If the worm takes radiant damage, each creature within 20 feet of it takes that damage as well." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The worm can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The worm makes two attacks: one with its barbed tentacles and one with its bite." + ], + "__dataclass__": "Entry" + }, + { + "title": "Barbed Tentacles", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one creature. {@h}25 ({@damage 5d6 + 8}) piercing damage, and the target is {@condition grappled} (escape {@dc 18}). Until this grapple ends, the target is {@condition restrained}. The tentacles can grapple only one creature at a time." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}30 ({@damage 5d8 + 8}) piercing damage. If the target is a Large or smaller creature, it must succeed on a {@dc 18} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the worm, and takes 21 ({@damage 6d6}) fire damage at the start of each of the worm's turns.", + "If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Core Spawn Worm-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Frost Giant Zombie", + "source": "EGW", + "page": 288, + "size_str": "Huge", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "patchwork armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 138, + "formula": "12d12 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "9", + "xp": 5000, + "strength": 23, + "dexterity": 6, + "constitution": 21, + "intelligence": 3, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "saves": { + "wis": "+2" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands Giant but can't speak" + ], + "traits": [ + { + "title": "Numbing Aura", + "body": [ + "Any creature that starts its turn within 10 feet of the zombie must make a {@dc 17} Constitution saving throw. Unless the save succeeds, the creature can't make more than one attack, or take a bonus action on that turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is fire, radiant, or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zombie makes two weapon attacks." + ], + "__dataclass__": "Entry" + }, + { + "title": "Greataxe", + "body": [ + "{@atk mw} {@hit 10} to hit, reach 10 ft., one target. {@h}25 ({@damage 3d12 + 6}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hurl Rock", + "body": [ + "{@atk rw} {@hit 10} to hit, range 60/240 ft., one target. {@h}28 ({@damage 4d10 + 6}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Freezing Stare", + "body": [ + "The zombie targets one creature it can see within 60 feet of it. The target must succeed on a {@dc 17} Constitution saving throw or take 35 ({@damage 10d6}) cold damage and be {@condition paralyzed} until the end of its next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Giant Zombie-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Frost Worm", + "source": "EGW", + "page": 289, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 264, + "formula": "16d20 + 96", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 30, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "17", + "xp": 18000, + "strength": 28, + "dexterity": 8, + "constitution": 22, + "intelligence": 1, + "wisdom": 5, + "charisma": 5, + "passive": 7, + "saves": { + "con": "+12", + "wis": "+3" + }, + "dmg_vulnerabilities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 30 ft.", + "tremorsense 60 ft." + ], + "traits": [ + { + "title": "Freezing Body", + "body": [ + "A creature that touches the worm or hits it with a melee attack while within 5 feet of it takes 10 ({@damage 3d6}) cold damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Burst", + "body": [ + "When the worm dies, it explodes in a burst of frigid energy. Each creature within 60 feet of it must make a {@dc 20} Dexterity saving throw, taking 28 ({@damage 8d6}) cold damage on a failed save, or half as much damage on a successful one. Creatures inside the worm when it dies automatically fail this saving throw." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tunneler", + "body": [ + "The worm can burrow through solid rock at half its burrowing speed and leaves a 10-foot-diameter tunnel in its wake." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The worm makes two bite attacks, or uses its Trill and makes a bite attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 15} to hit, reach 10 ft., one target. {@h}22 ({@damage 3d8 + 9}) piercing damage plus 10 ({@damage 3d6}) cold damage. If the target is a Large or smaller creature, it must succeed on a {@dc 20} Dexterity saving throw or be swallowed by the worm. A swallowed creature is {@condition blinded} and {@condition restrained}, has {@quickref Cover||3||total cover} against attacks and other effects outside the worm, and takes 10 ({@damage 3d6}) acid damage and 10 ({@damage 3d6}) cold damage at the start of each of the worm's turns.", + "If the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a {@dc 20} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the worm." + ], + "__dataclass__": "Entry" + }, + { + "title": "Trill", + "body": [ + "The frost worm emits a haunting cry. Each creature within 60 feet of the worm that can hear it must succeed on a {@dc 20} Wisdom saving throw or be {@condition stunned} for 1 minute. A creature can repeat the saving throw each time it takes damage and at the end of each of its turns, ending the effect on itself on a success. Once a creature successfully saves against this effect, or if this effect ends for it, that creature is immune to the Trill of all frost worms for the next 24 hours. Frost worms are immune to this effect." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Frost Worm-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Gearkeeper Construct", + "source": "EGW", + "page": 290, + "size_str": "Large", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 161, + "formula": "17d10 + 68", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "10", + "xp": 5900, + "strength": 20, + "dexterity": 16, + "constitution": 18, + "intelligence": 3, + "wisdom": 11, + "charisma": 1, + "passive": 10, + "dmg_resistances": [ + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 120 ft." + ], + "languages": [ + "understands the languages of its creator but can't speak" + ], + "traits": [ + { + "title": "Immutable Form", + "body": [ + "The gearkeeper is immune to any spell or effect that would alter its form." + ], + "__dataclass__": "Entry" + }, + { + "title": "Rapid Shifting", + "body": [ + "Opportunity attacks made against the gearkeeper have disadvantage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Whirling Blades", + "body": [ + "Any creature that starts its turn within 5 feet of the gearkeeper takes 4 ({@damage 1d8}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gearkeeper makes two Arm Blade attacks, or one Arm Blade attack and one Spear Launcher attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Arm Blade", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}18 ({@damage 3d8 + 5}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spear Launcher", + "body": [ + "{@atk rw} {@hit 9} to hit, range 90 ft., one target. {@h}12 ({@damage 2d6 + 5}) piercing damage, and the target is knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shrapnel Blast {@recharge}", + "body": [ + "The gearkeeper jettisons a spray of jagged metal in a 30-foot cone. Each creature in the area must make a {@dc 15} Dexterity saving throw, taking 21 ({@damage 6d6}) piercing damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gearkeeper Construct-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Gloomstalker", + "source": "EGW", + "page": 291, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 90, + "formula": "12d10 + 24", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 40, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 80, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "6", + "xp": 2300, + "strength": 22, + "dexterity": 16, + "constitution": 14, + "intelligence": 5, + "wisdom": 17, + "charisma": 14, + "passive": 16, + "skills": { + "skills": [ + { + "target": "athletics", + "mod": 9, + "__dataclass__": "SkillMod" + }, + { + "target": "intimidation", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 6, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "saves": { + "str": "+9", + "dex": "+6" + }, + "dmg_vulnerabilities": [ + { + "value": "radiant", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 240 ft" + ], + "languages": [ + "understands Common but can't speak" + ], + "traits": [ + { + "title": "Shadowstep", + "body": [ + "As a bonus action, the gloomstalker can teleport up to 40 feet to an unoccupied space it can see." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the gloomstalker has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The gloomstalker makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one creature. {@h}15 ({@damage 2d8 + 6}) piercing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Snatch", + "body": [ + "{@atk mw} {@hit 9} to hit, reach 5 ft., one Medium or smaller creature. {@h}13 ({@damage 2d6 + 6}) slashing damage plus 7 ({@damage 2d6}) necrotic damage, and the target is {@condition grappled} (escape {@dc 17}). While {@condition grappled} in this way, the target is {@condition restrained}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shriek {@recharge}", + "body": [ + "The gloomstalker emits a terrible shriek. Each enemy within 60 feet of the gloomstalker that can hear it must succeed on a {@dc 13} Constitution saving throw or be {@condition paralyzed} until the end of the enemy's next turn." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CRCotN", + "page": 291 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Gloomstalker-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Guardian Wolf", + "source": "EGW", + "page": 272, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 66, + "formula": "7d12 + 21", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 60, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 22, + "dexterity": 14, + "constitution": 16, + "intelligence": 5, + "wisdom": 12, + "charisma": 8, + "passive": 15, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 4, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Keen Hearing and Smell", + "body": [ + "The wolf has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or smell." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The wolf has advantage on attack rolls against a creature if at least one of the wolf's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The wolf makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 1d10 + 6}) piercing damage. If the target is a creature, it must succeed on a {@dc 16} Strength saving throw or be knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}15 ({@damage 2d8 + 6}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Guardian Wolf-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Horizonback Tortoise", + "source": "EGW", + "page": 292, + "size_str": "Gargantuan", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 17, + "note": "natural armor", + "__dataclass__": "AC" + }, + { + "value": 22, + "note": "while in its shell", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 227, + "formula": "13d20 + 91", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "8", + "xp": 3900, + "strength": 28, + "dexterity": 3, + "constitution": 25, + "intelligence": 4, + "wisdom": 10, + "charisma": 5, + "passive": 10, + "saves": { + "str": "+12", + "con": "+10" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft" + ], + "languages": [ + "understands Goblin but can't speak" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The tortoise can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Massive Frame", + "body": [ + "The tortoise can carry up to 20,000 pounds of weight atop its shell, but moves at half speed if the weight exceeds 10,000 pounds. Medium or smaller creatures can move underneath the tortoise while it's not {@condition prone}.", + "Any creature under the tortoise when it falls {@condition prone} is {@condition grappled} (escape {@dc 18}). Until the grapple ends, the creature is {@condition prone} and {@condition restrained}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}28 ({@damage 3d12 + 9}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shell Defense {@recharge 4}", + "body": [ + "The tortoise withdraws into its shell, falls {@condition prone}, and gains a +5 bonus to AC. While the tortoise is in its shell, its speed is 0 and can't increase. The tortoise can emerge from its shell as an action, whereupon it is no longer {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CRCotN", + "page": 292 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Horizonback Tortoise-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Husk Zombie", + "source": "EGW", + "page": 293, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Neutral Evil", + "ac": [ + { + "value": [ + 10 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 37, + "formula": "5d8 + 15", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 10, + "constitution": 16, + "intelligence": 3, + "wisdom": 6, + "charisma": 5, + "passive": 8, + "saves": { + "con": "+5", + "wis": "+0" + }, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "understands the languages it knew in life but can't speak" + ], + "traits": [ + { + "title": "Curse of the Husk", + "body": [ + "A humanoid slain by a melee attack from the zombie revives as a husk zombie on its next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Undead Fortitude", + "body": [ + "If damage reduces the zombie to 0 hit points, it must make a Constitution saving throw with a DC of 5 + the damage taken, unless the damage is radiant or from a critical hit. On a success, the zombie drops to 1 hit point instead." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The zombie makes two claw attacks. For each of these attacks that reduces a creature to 0 hit points, the zombie can make an additional claw attack." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claw", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Husk Zombie-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Kobold Underling", + "source": "EGW", + "page": 221, + "size_str": "Small", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": [ + 13 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "3d6 - 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 7, + "dexterity": 16, + "constitution": 9, + "intelligence": 8, + "wisdom": 9, + "charisma": 8, + "passive": 9, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Draconic" + ], + "traits": [ + { + "title": "Messy End", + "body": [ + "The kobold explodes 3 rounds after it dies, or immediately if it was killed by a critical hit. The explosion destroys the kobold's body, leaving its equipment behind. Each creature within 5 feet of the exploding kobold must make a {@dc 10} Dexterity saving throw, taking 4 ({@damage 1d8}) bludgeoning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + }, + { + "title": "Pack Tactics", + "body": [ + "The kobold has advantage on an attack roll against a creature if at least one of the kobold's allies is within 5 feet of the creature and the ally isn't {@condition incapacitated}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sunlight Sensitivity", + "body": [ + "While in sunlight, the kobold has disadvantage on attack rolls, as well as on Wisdom ({@skill Perception}) checks that rely on sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Hand Crossbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 30/120 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "kobold", + "actions_note": "", + "mythic": null, + "key": "Kobold Underling-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Merrow Shallowpriest", + "source": "EGW", + "page": 294, + "size_str": "Large", + "maintype": "monstrosity", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 15, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 75, + "formula": "10d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 10, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "4", + "xp": 1100, + "strength": 18, + "dexterity": 14, + "constitution": 15, + "intelligence": 11, + "wisdom": 16, + "charisma": 9, + "passive": 13, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Abyssal", + "Aquan" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The merrow can breathe air and water." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Harpoon", + "body": [ + "{@atk mw,rw} {@hit 6} to hit, reach 5 ft. or range 20/60 ft., one target. {@h}11 ({@damage 2d6 + 4}) piercing damage. If the target is a Medium or smaller creature, the merrow can pull it 10 feet closer." + ], + "__dataclass__": "Entry" + }, + { + "title": "Lightning Bolt (3rd-Level Spell; Requires a Spell Slot)", + "body": [ + "The merrow unleashes a stroke of lightning in a line 100 feet long and 5 feet wide. Each creature in the line must make a {@dc 13} Dexterity saving throw, taking 28 ({@damage 8d6}) lightning damage on a failed save, or half as much damage on a successful one." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Spellcasting", + "typ": "spellcasting", + "ability": "wis", + "header": { + "title": "Spellcasting", + "body": [ + "The merrow is a 6th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 13}, {@hit 5} to hit with spell attacks). The merrow has the following druid spells prepared:" + ], + "__dataclass__": "Entry" + }, + "slots": [ + { + "slots": 0, + "spells": [ + "{@spell druidcraft}", + "{@spell minor illusion}", + "{@spell shocking grasp}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 4, + "spells": [ + "{@spell cure wounds}", + "{@spell fog cloud}", + "{@spell thunderwave}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell hold person}", + "{@spell mirror image}", + "{@spell misty step}" + ], + "__dataclass__": "SpellList" + }, + { + "slots": 3, + "spells": [ + "{@spell dispel magic}", + "{@spell lightning bolt} (see \"Actions\" below)", + "{@spell sleet storm}" + ], + "__dataclass__": "SpellList" + } + ], + "at_will": null, + "daily": null, + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Merrow Shallowpriest-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Moorbounder", + "source": "EGW", + "page": 295, + "size_str": "Large", + "maintype": "beast", + "alignment": "Unaligned", + "ac": [ + { + "value": 13, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 30, + "formula": "4d10 + 8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 70, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 18, + "dexterity": 14, + "constitution": 14, + "intelligence": 2, + "wisdom": 13, + "charisma": 5, + "passive": 11, + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Standing Leap", + "body": [ + "The moorbounder's long jump is up to 40 feet and its high jump is up to 20 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}14 ({@damage 4d4 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [ + { + "source": "CRCotN", + "page": 295 + } + ], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Moorbounder-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Nergaliid", + "source": "EGW", + "page": 296, + "size_str": "Large", + "maintype": "fiend", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 12, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 42, + "formula": "4d10 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 18, + "dexterity": 12, + "constitution": 20, + "intelligence": 12, + "wisdom": 10, + "charisma": 12, + "passive": 12, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 2, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Infernal" + ], + "traits": [ + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the nergaliid can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + }, + { + "title": "Standing Leap", + "body": [ + "The nergaliid's long jump is up to 30 feet and its high jump is up to 20 feet, with or without a running start." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}13 ({@damage 2d8 + 4}) piercing damage, and the target must succeed on a {@dc 15} Constitution saving throw or become {@condition poisoned} for 1 minute. The {@condition poisoned} creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tongue Lash", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 20 ft., one target. {@h}10 ({@damage 1d12 + 4}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siphon Life {@recharge 4}", + "body": [ + "The nergaliid magically draws the life from a humanoid it can see within 40 feet of it. The target must make a {@dc 15} Wisdom saving throw. An {@condition incapacitated} target fails the save automatically. On a failed save, the creature takes 10 ({@damage 3d6}) psychic damage, and the nergaliid gains temporary hit points equal to the damage taken. On a successful save, the target takes half as much damage, and the nergaliid doesn't gain temporary hit points. If this damage kills the target, its body rises at the end of the nergaliid's current turn as a {@creature husk zombie|EGW} (see earlier in this chapter)." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "devil", + "actions_note": "", + "mythic": null, + "key": "Nergaliid-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Sahuagin Warlock of Uk'otoa", + "source": "EGW", + "page": 297, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 22, + "formula": "5d8", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "3", + "xp": 700, + "strength": 14, + "dexterity": 10, + "constitution": 11, + "intelligence": 8, + "wisdom": 8, + "charisma": 16, + "passive": 9, + "skills": { + "skills": [ + { + "target": "arcana", + "mod": 1, + "__dataclass__": "SkillMod" + }, + { + "target": "persuasion", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Common", + "Sahuagin" + ], + "traits": [ + { + "title": "Blood Frenzy", + "body": [ + "The warlock has advantage on melee attack rolls against any creature that doesn't have all its hit points." + ], + "__dataclass__": "Entry" + }, + { + "title": "Limited Amphibiousness", + "body": [ + "The warlock can breathe air and water, but it needs to be submerged at least once every 4 hours to avoid suffocating." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shark Telepathy", + "body": [ + "The warlock can magically command any shark within 120 feet of it, using a limited telepathy." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The warlock makes two attacks: one with its bite and one with its Sword of Fathoms." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one creature. {@h}4 ({@damage 1d4 + 2}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Sword of Fathoms", + "body": [ + "{@atk mw} {@hit 4} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d10 + 2}) slashing damage, and if the target is a creature, it must succeed on a {@dc 13} Constitution saving throw or begin choking. The choking creature is {@condition incapacitated} until the end of its next turn, when the effect ends on it." + ], + "__dataclass__": "Entry" + }, + { + "title": "Eldritch Blast (Cantrip)", + "body": [ + "{@atk rs} {@hit 5} to hit, range 120 ft., one creature. {@h}5 ({@damage 1d10}) force damage." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The warlock's innate spellcasting ability is Charisma (spell save {@dc 13}, {@hit 5} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell eldritch blast} (see \"Actions\" below)", + "{@spell minor illusion}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell armor of Agathys}", + "{@spell arms of Hadar}", + "{@spell counterspell}", + "{@spell crown of madness}", + "{@spell invisibility}", + "{@spell hunger of Hadar}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": "sahuagin", + "actions_note": "", + "mythic": null, + "key": "Sahuagin Warlock of Uk'otoa-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Sea Fury", + "source": "EGW", + "page": 299, + "size_str": "Medium", + "maintype": "fey", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 105, + "formula": "14d8 + 42", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 50, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "12", + "xp": 8400, + "strength": 19, + "dexterity": 15, + "constitution": 16, + "intelligence": 12, + "wisdom": 12, + "charisma": 18, + "passive": 15, + "skills": { + "skills": [ + { + "target": "deception", + "mod": 8, + "__dataclass__": "SkillMod" + }, + { + "target": "insight", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 5, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 6, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_immunities": [ + { + "value": "cold", + "__dataclass__": "Scalar" + }, + { + "value": "fire", + "__dataclass__": "Scalar" + }, + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks that aren't silvered", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "languages": [ + "Aquan", + "Common", + "Giant" + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The sea fury can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Legendary Resistance (3/Day)", + "body": [ + "If the sea fury fails a saving throw, it can choose to succeed instead." + ], + "__dataclass__": "Entry" + }, + { + "title": "Magic Resistance", + "body": [ + "The sea fury has advantage on saving throws against spells and other magical effects." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The sea fury makes two attacks with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) slashing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Death Glare", + "body": [ + "The sea fury targets one {@condition frightened} creature it can see within 30 feet of it. The target must succeed on a {@dc 16} Wisdom saving throw or drop to 0 hit points." + ], + "__dataclass__": "Entry" + } + ], + "legendary_actions": [ + { + "title": "As Water", + "body": [ + "The sea fury transforms into a wave of foaming seawater, along with whatever it is wearing or carrying, and moves up to its speed without provoking opportunity attacks. While in this form, it can't be {@condition grappled} or {@condition restrained}. It reverts to its true form at the end of this movement." + ], + "__dataclass__": "Entry" + }, + { + "title": "Fearsome Apparition (Costs 2 Actions)", + "body": [ + "The sea fury conjures an apparition of one of its dead sisters, which appears in an unoccupied space the sea fury can see within 30 feet of it. Enemies of the sea fury that can see the apparition must succeed on a {@dc 16} Wisdom saving throw or be {@condition frightened} of it until it vanishes at the end of the sea fury's next turn." + ], + "__dataclass__": "Entry" + }, + { + "title": "Conjure Snakes (Costs 3 Actions)", + "body": [ + "The sea fury disgorges a {@creature swarm of poisonous snakes}, which occupies the same space as the sea fury, acts on its own initiative count, and attacks as directed by the sea fury. The sea fury can control up to three of these swarms at a time." + ], + "__dataclass__": "Entry" + } + ], + "spellcasting": [ + { + "name": "Innate Spellcasting", + "typ": "spellcasting", + "ability": "cha", + "header": { + "title": "Innate Spellcasting", + "body": [ + "The sea fury's innate spellcasting ability is Charisma (spell save {@dc 16}, {@hit 8} to hit with spell attacks). It can innately cast the following spells, requiring no material components:" + ], + "__dataclass__": "Entry" + }, + "slots": null, + "at_will": { + "slots": 0, + "spells": [ + "{@spell witch bolt}" + ], + "__dataclass__": "SpellList" + }, + "daily": [ + { + "per_day": 1, + "spells": [ + "{@spell bestow curse}", + "{@spell fear}", + "{@spell thunderwave}" + ], + "__dataclass__": "DailySpellList" + } + ], + "__dataclass__": "SpellCasting" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Sea Fury-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Shadowghast", + "source": "EGW", + "page": 299, + "size_str": "Medium", + "maintype": "undead", + "alignment": "Chaotic Evil", + "ac": [ + { + "value": [ + 15 + ], + "__dataclass__": "AC" + } + ], + "hp": { + "average": 49, + "formula": "9d8 + 9", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 35, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "5", + "xp": 1800, + "strength": 14, + "dexterity": 20, + "constitution": 12, + "intelligence": 12, + "wisdom": 11, + "charisma": 8, + "passive": 13, + "skills": { + "skills": [ + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 8, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "dmg_resistances": [ + { + "value": "necrotic", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Stench", + "body": [ + "Any creature that starts its turn within 5 feet of the shadowghast must succeed on a {@dc 12} Constitution saving throw or be {@condition poisoned} until the start of its next turn. On a successful saving throw, the creature is immune to this Stench for 24 hours." + ], + "__dataclass__": "Entry" + }, + { + "title": "Shadow Stealth", + "body": [ + "While in dim light or darkness, the shadowghast can take the Hide action as a bonus action." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The shadowghast makes two attacks: one with its bite and one with its claws." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one creature. {@h}11 ({@damage 2d8 + 2}) slashing damage plus 5 ({@damage 1d10}) necrotic damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Claws", + "body": [ + "{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}12 ({@damage 2d6 + 5}) slashing damage. If the target is a creature other than an undead, it must succeed on a {@dc 12} Constitution saving throw or be {@condition paralyzed} for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Shadowghast-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Sken Zabriss", + "source": "EGW", + "page": 221, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Lawful Evil", + "ac": [ + { + "value": 16, + "note": "{@item breastplate|PHB}, {@item shield|PHB}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 45, + "formula": "7d8 + 14", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1", + "xp": 200, + "strength": 16, + "dexterity": 11, + "constitution": 15, + "intelligence": 13, + "wisdom": 10, + "charisma": 12, + "passive": 10, + "languages": [ + "Common", + "Draconic", + "Giant" + ], + "traits": [ + { + "title": "Powerful Build", + "body": [ + "Sken counts as one size larger when determining her carrying capacity and the weight she can push, drag, or lift." + ], + "__dataclass__": "Entry" + }, + { + "title": "Special Equipment", + "body": [ + "Sken wears a {@item ring of obscuring|EGW}. With it, she can cast the {@spell fog cloud} spell centered on herself three times per day. The cloud lasts for 1 minute (no {@status concentration} required)." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Longsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage, or 8 ({@damage 1d10 + 3}) slashing damage when used with two hands." + ], + "__dataclass__": "Entry" + } + ], + "reactions": [ + { + "title": "Stone's Endurance (Recharges after a Short or Long Rest)", + "body": [ + "When Sken takes damage, she can use her reaction to reduce the damage taken by 8 ({@dice 1d12 + 2})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "goliath", + "actions_note": "", + "mythic": null, + "key": "Sken Zabriss-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Swavain Basilisk", + "source": "EGW", + "page": 300, + "size_str": "Huge", + "maintype": "monstrosity", + "alignment": "Unaligned", + "ac": [ + { + "value": 16, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 85, + "formula": "10d12 + 20", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 15, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 40, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "7", + "xp": 2900, + "strength": 15, + "dexterity": 16, + "constitution": 15, + "intelligence": 2, + "wisdom": 8, + "charisma": 7, + "passive": 9, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 60 ft." + ], + "traits": [ + { + "title": "Amphibious", + "body": [ + "The basilisk can breathe air and water." + ], + "__dataclass__": "Entry" + }, + { + "title": "Petrifying Secretions", + "body": [ + "A creature must make a {@dc 13} Constitution saving throw if it hits the basilisk with a weapon attack while within 5 feet of it or if it starts its turn {@condition grappled} by the basilisk. Unless the save succeeds, the creature magically begins to turn to stone and is {@condition restrained}, and it must repeat the saving throw at the end of its next turn. On a successful save, the effect ends. On a failure, the creature is {@condition petrified}." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The basilisk makes two attacks: one with its bite and one with its tail." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}13 ({@damage 3d6 + 3}) piercing damage plus 10 ({@damage 3d6}) poison damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Tail", + "body": [ + "{@atk mw} {@hit 6} to hit, reach 15 ft., one target. {@h}14 ({@damage 2d10 + 3}) bludgeoning damage. If the target is a Large or smaller creature, it is {@condition grappled} (escape {@dc 12})." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Swavain Basilisk-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Udaak", + "source": "EGW", + "page": 301, + "size_str": "Gargantuan", + "maintype": "fiend", + "alignment": "Neutral Evil", + "ac": [ + { + "value": 18, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 165, + "formula": "10d20 + 60", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 50, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "16", + "xp": 15000, + "strength": 26, + "dexterity": 14, + "constitution": 22, + "intelligence": 3, + "wisdom": 11, + "charisma": 10, + "passive": 10, + "saves": { + "str": "+13", + "con": "+11" + }, + "dmg_vulnerabilities": [ + { + "value": "thunder", + "__dataclass__": "Scalar" + } + ], + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": [ + "bludgeoning", + "piercing", + "slashing" + ], + "note": "from nonmagical attacks", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "grappled", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + }, + { + "value": "restrained", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "darkvision 120 ft." + ], + "traits": [ + { + "title": "Charge", + "body": [ + "If the udaak moves at least 20 feet straight toward a target and then hits it with a slam attack on the same turn, the target takes an extra 27 ({@damage 6d8}) bludgeoning damage. If the target is a creature, it must succeed on a {@dc 21} Strength saving throw or be pushed up to 20 feet away from the udaak and knocked {@condition prone}." + ], + "__dataclass__": "Entry" + }, + { + "title": "Siege Monster", + "body": [ + "The udaak deals double damage to objects and structures." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Multiattack", + "body": [ + "The udaak makes three attacks: one with its bite and two with its slam." + ], + "__dataclass__": "Entry" + }, + { + "title": "Bite", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 5 ft., one creature. {@h}21 ({@damage 2d12 + 8}) piercing damage, and the target is {@condition grappled} (escape {@dc 21}). Until this grapple ends, the target is {@condition restrained}, and the udaak can't bite another target." + ], + "__dataclass__": "Entry" + }, + { + "title": "Slam", + "body": [ + "{@atk mw} {@hit 13} to hit, reach 10 ft., one target. {@h}21 ({@damage 3d8 + 8}) bludgeoning damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Swallow", + "body": [ + "The udaak makes one bite attack against a Large or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. A swallowed creature is {@condition blinded} and {@condition restrained}, it has {@quickref Cover||3||total cover} against attacks and other effects outside the udaak, and it takes 21 ({@damage 6d6}) acid damage at the start of each of the udaak's turns.", + "If the udaak takes 30 damage or more on a single turn from a creature inside it, the udaak must succeed on a {@dc 21} Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall {@condition prone} in a space within 10 feet of the udaak. If the udaak dies, a swallowed creature is no longer {@condition restrained} by it and can escape from the corpse by using 20 feet of movement, exiting {@condition prone}." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Udaak-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Vox Seeker", + "source": "EGW", + "page": 270, + "size_str": "Tiny", + "maintype": "construct", + "alignment": "Unaligned", + "ac": [ + { + "value": 14, + "note": "natural armor", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 7, + "formula": "2d4 + 2", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 20, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 20, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/8", + "xp": 25, + "strength": 2, + "dexterity": 10, + "constitution": 12, + "intelligence": 1, + "wisdom": 10, + "charisma": 1, + "passive": 10, + "dmg_immunities": [ + { + "value": "poison", + "__dataclass__": "Scalar" + }, + { + "value": "psychic", + "__dataclass__": "Scalar" + } + ], + "cond_immunities": [ + { + "value": "blinded", + "__dataclass__": "Scalar" + }, + { + "value": "charmed", + "__dataclass__": "Scalar" + }, + { + "value": "deafened", + "__dataclass__": "Scalar" + }, + { + "value": "exhaustion", + "__dataclass__": "Scalar" + }, + { + "value": "frightened", + "__dataclass__": "Scalar" + }, + { + "value": "paralyzed", + "__dataclass__": "Scalar" + }, + { + "value": "petrified", + "__dataclass__": "Scalar" + }, + { + "value": "poisoned", + "__dataclass__": "Scalar" + } + ], + "senses": [ + "blindsight 60 ft. (blind beyond this radius)" + ], + "traits": [ + { + "title": "Voice Lock", + "body": [ + "The vox seeker must move toward and attack the source of the nearest voice within 60 feet of it, to the exclusion of all other targets, for as long as it remains operational." + ], + "__dataclass__": "Entry" + }, + { + "title": "Spider Climb", + "body": [ + "The vox seeker can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Pincer", + "body": [ + "{@atk mw} {@hit 2} to hit, reach 5 ft., one target. {@h}2 ({@damage 1d4}) piercing damage plus 3 lightning damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": null, + "actions_note": "", + "mythic": null, + "key": "Vox Seeker-EGW", + "__dataclass__": "Monster" + }, + { + "name": "Yinra Emberwind", + "source": "EGW", + "page": 223, + "size_str": "Medium", + "maintype": "humanoid", + "alignment": "Neutral Good", + "ac": [ + { + "value": 15, + "note": "{@item studded leather armor|PHB|studded leather}", + "__dataclass__": "AC" + } + ], + "hp": { + "average": 16, + "formula": "3d8 + 3", + "special": "", + "__dataclass__": "HP" + }, + "speed": { + "walk": { + "value": 30, + "__dataclass__": "Scalar" + }, + "fly": { + "value": 0, + "__dataclass__": "Scalar" + }, + "burrow": { + "value": 0, + "__dataclass__": "Scalar" + }, + "swim": { + "value": 0, + "__dataclass__": "Scalar" + }, + "climb": { + "value": 0, + "__dataclass__": "Scalar" + }, + "can_hover": false, + "__dataclass__": "Speed" + }, + "cr": "1/2", + "xp": 100, + "strength": 11, + "dexterity": 16, + "constitution": 12, + "intelligence": 14, + "wisdom": 13, + "charisma": 11, + "passive": 13, + "skills": { + "skills": [ + { + "target": "investigation", + "mod": 4, + "__dataclass__": "SkillMod" + }, + { + "target": "perception", + "mod": 3, + "__dataclass__": "SkillMod" + }, + { + "target": "stealth", + "mod": 5, + "__dataclass__": "SkillMod" + } + ], + "mode": "all", + "__dataclass__": "SkillList" + }, + "senses": [ + "darkvision 60 ft." + ], + "languages": [ + "Common", + "Elvish" + ], + "traits": [ + { + "title": "Fey Ancestry", + "body": [ + "Yinra has advantage on saving throws against being {@condition charmed}, and magic can't put her to sleep." + ], + "__dataclass__": "Entry" + }, + { + "title": "Keen Hearing and Sight", + "body": [ + "Yinra has advantage on Wisdom ({@skill Perception}) checks that rely on hearing or sight." + ], + "__dataclass__": "Entry" + } + ], + "actions": [ + { + "title": "Shortsword", + "body": [ + "{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}6 ({@damage 1d6 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + }, + { + "title": "Longbow", + "body": [ + "{@atk rw} {@hit 5} to hit, range 150/600 ft., one target. {@h}7 ({@damage 1d8 + 3}) piercing damage." + ], + "__dataclass__": "Entry" + } + ], + "other_sources": [], + "subtype": "elf", + "actions_note": "", + "mythic": null, + "key": "Yinra Emberwind-EGW", + "__dataclass__": "Monster" + } +] \ No newline at end of file diff --git a/dmtoolkit/api/models.py b/dmtoolkit/api/models.py new file mode 100644 index 0000000..4e77574 --- /dev/null +++ b/dmtoolkit/api/models.py @@ -0,0 +1,498 @@ +from __future__ import annotations + +from dataclasses import dataclass, field +from typing import Any, Optional + +from flask import render_template_string + +@dataclass +class Monster: + # This class will be moved to the Monsters API when it gets made + name: str + source: str + page: int + size_str: str + maintype: str + alignment: str + ac: list[AC] + hp: HP + speed: Speed + cr: str + xp: int + + strength: int + dexterity: int + constitution: int + intelligence: int + wisdom: int + charisma: int + + passive: int + + skills: Optional[dict[str, str]] = field(default_factory=dict) + saves: Optional[dict[str, str]] = field(default_factory=dict) + dmg_vulnerabilities: Optional[list[str]] = field(default_factory=list) + dmg_resistances: Optional[list[str]] = field(default_factory=list) + dmg_immunities: Optional[list[str]] = field(default_factory=list) + cond_immunities: Optional[list[str]] = field(default_factory=list) + senses: Optional[list[str]] = field(default_factory=list) + languages: Optional[list[str]] = field(default_factory=list) + + traits: Optional[list[Entry]] = field(default_factory=list) + actions: Optional[list[Entry]] = field(default_factory=list) + bonus_actions: Optional[list[Entry]] = field(default_factory=list) + reactions: Optional[list[Entry]] = field(default_factory=list) + legendary_actions: Optional[Section] = None + + spellcasting: Optional[list[SpellCasting]] = field(default_factory=list) + # environment: list[str] + + other_sources: list[dict] = field(default_factory=list) + subtype: str = None + actions_note: str = "" # See Homunculus Servant-TCE for example + mythic: Section = None + + key: str = "" + + + + def __post_init__(self): + if not self.key: + self.key = f"{self.name}-{self.source}" + + +@dataclass +class AC: + value: int + note: Optional[str] = None + + def __str__(self): + string = str(self.value) + if self.note: + string += f" ({self.note})" + return string + + def from_spec(ac_spec: int | list) -> list[AC]: + if isinstance(ac_spec, int): + return [AC(ac_spec)] + if isinstance(ac_spec, list): + ac_list = [] + for spec in ac_spec: + if isinstance(spec, int): + ac_list.append(AC(ac_spec)) + continue + value = spec["ac"] + if "from" in spec: + aux_str = ", ".join(spec["from"]) + if "condition" in spec: + aux_str = spec["condition"] + if spec.get("braces"): + aux_str = f"({aux_str})" + ac_list.append(AC(value, aux_str)) + return ac_list + else: + raise TypeError(f"Unexpected type '{type(ac_spec).__name__}', {ac_spec}") + + +@dataclass +class HP: + average: int = 0 + formula: str = "" + special: str = "" + + def __str__(self): + if self.special: + return self.special + return f"{self.average} ({self.formula})" + + + def __int__(self): + return self.average + + +@dataclass +class Scalar: + """Represents a value with an optional note.""" + value: Any + note: Optional[str] = "" + + def __str__(self): + if self.note: + return f"{self.value} ({self.note})" + return str(self.value) + + + def __bool__(self): + return bool(self.value) + + + def __int__(self): + return int(self.value) + + + def __float__(self): + return float(self.value) + + + def __bytes__(self): + return bytes(self.value) + + + def __eq__(self, other): + if isinstance(other, Scalar): + return self.value == other.value + return self.value == other + + + def __lt__(self, other): + if isinstance(other, Scalar): + return self.value < other.value + return self.value < other + + + def __gt__(self, other): + if isinstance(other, Scalar): + return self.value > other.value + return self.value > other + + + def __le__(self, other): + if isinstance(other, Scalar): + return self.value <= other.value + return self.value <= other + + + def __ge__(self, other): + if isinstance(other, Scalar): + return self.value >= other.value + return self.value >= other + + + def __add__(self, other): + if isinstance(other, Scalar): + return self.value + other.value + return Scalar(self.value + other, self.note) + + + def __sub__(self, other): + if isinstance(other, Scalar): + return self.value - other.value + return Scalar(self.value - other, self.note) + + + def __mul__(self, other): + if isinstance(other, Scalar): + return self.value * other.value + return Scalar(self.value * other, self.note) + + + def __div__(self, other): + if isinstance(other, Scalar): + return self.value / other.value + return Scalar(self.value / other, self.note) + + + def __mod__(self, other): + if isinstance(other, Scalar): + return self.value % other.value + return Scalar(self.value % other, self.note) + + + def __floordiv__(self, other): + if isinstance(other, Scalar): + return self.value // other.value + return Scalar(self.value // other, self.note) + + + def __pow__(self, other): + if isinstance(other, Scalar): + return self.value ** other.value + return Scalar(self.value ** other, self.note) + + + def __radd__(self, other): + if isinstance(other, Scalar): + return other.value + self.value + return Scalar(other + self.value, self.note) + + + def __rsub__(self, other): + if isinstance(other, Scalar): + return other.value - self.value + return Scalar(other - self.value, self.note) + + + def __rmul__(self, other): + if isinstance(other, Scalar): + return other.value * self.value + return Scalar(other * self.value, self.note) + + + def __rdiv__(self, other): + if isinstance(other, Scalar): + return other.value / self.value + return Scalar(other / self.value, self.note) + + + def __rmod__(self, other): + if isinstance(other, Scalar): + return other.value % self.value + return Scalar(other % self.value, self.note) + + + def __rfloordiv__(self, other): + if isinstance(other, Scalar): + return other.value // self.value + return Scalar(other // self.value, self.note) + + + def __rpow__(self, other): + if isinstance(other, Scalar): + return other.value ** self.value + return Scalar(other ** self.value, self.note) + + + def __neg__(self): + return Scalar(-self.value, self.note) + + +@dataclass +class Speed: + walk: Scalar = field(default_factory=lambda: Scalar(0)) + fly: Scalar = field(default_factory=lambda: Scalar(0)) + burrow: Scalar = field(default_factory=lambda: Scalar(0)) + swim: Scalar = field(default_factory=lambda: Scalar(0)) + climb: Scalar = field(default_factory=lambda: Scalar(0)) + can_hover: bool = False + + + def from_spec(speed_spec) -> Speed: + args = {} + for x in ("walk", "fly", "burrow", "swim", "climb"): + if x not in speed_spec: + continue + if isinstance(speed_spec[x], int): + args[x] = Scalar(speed_spec[x]) + else: + args[x] = Scalar(speed_spec[x]["number"], speed_spec[x]["condition"]) + if "canHover" in speed_spec: + args["can_hover"] = speed_spec["canHover"] + s = Speed(**args) + return s + + + def __str__(self) -> str: + speed_strs = [] + if self.walk: + speed_strs.append(str(self.walk) + "ft.") + if self.fly: + speed_strs.append( + f"Fly {self.fly.value} ft." + f" ({self.fly.note})" if self.fly.note else "" + ) + if self.burrow: + speed_strs.append( + f"Burrow {self.burrow.value} ft." + f" ({self.burrow.note})" if self.burrow.note else "" + ) + if self.swim: + speed_strs.append( + f"Swim {self.swim.value} ft." + f" ({self.swim.note})" if self.swim.note else "" + ) + if self.climb: + speed_strs.append( + f"Climb {self.climb.value} ft." + f" ({self.climb.note})" if self.climb.note else "" + ) + + return ", ".join(speed_strs) + +@dataclass +class Entry: + title: str + body: list[str|Entry] + + def from_spec(spec: dict) -> Entry: + """Converts an entry (as it appears in the monster JSON) to an Entry object.""" + title = spec["name"] + body = [] + + # Sometimes, if there's only one entry, they use the `entry: str` field instead of + # `entries: list[str]` + if "entry" in spec: + assert "entries" not in spec, "Entry has both 'entry' and 'entries' keys!" + spec["entries"] = [spec["entry"]] + + for entry in spec["entries"]: + if isinstance(entry, str): + body.append(entry) + elif isinstance(entry, dict): + match entry["type"]: + case "list": + for item in entry["items"]: + if isinstance(item, dict): + assert item["type"] == "item", f"Got {item['type']}" + body.append(Entry.from_spec(item)) + elif isinstance(item, str): + body.append(item) + else: + raise ValueError(f"Unexpected type '{type(item).__name__}'") + case _: + raise ValueError(f"Unexpected type '{entry['type']}'") + else: + raise TypeError(f"Unexpected type '{type(entry).__name__}'") + + return Entry(title, body) + + def html(self) -> str: + """Returns HTML markup.""" + template = """ +

{{entry.title}}. {{entry.body[0]}}

+ {% for text in entry.body[1:] %} +

{{text}}

+ {% endfor %} + """ + return render_template_string(template, entry=self) + + + +@dataclass +class Section: + title: str + body: str + header: str = "" + +@dataclass +class SpellCasting: + name: str + typ: str + ability: str = "" + header: Entry = None + slots: list[SpellList] = field(default=None) + at_will: SpellList = field(default=None) + daily: list[DailySpellList] = field(default=None) + + def from_spec(spec: dict[str, Any]) -> SpellCasting: + name = spec["name"] + typ = spec["type"] + ability = spec.get("ability") + header = Entry.from_spec({"name": name, "entries": spec["headerEntries"]}) + spells = SpellCasting(name, typ, ability, header) + if at_will := spec.get("will"): + spells.at_will = SpellList.from_spec({"spells": at_will}) + if daily := spec.get("daily"): + spells.daily = [DailySpellList.from_spec(k, v) for k, v in daily.items()] + if spell_list := spec.get("spells"): + max_level = max(int(k) for k in spell_list.keys()) + slots = [None]*(max_level+1) + for k, v in spell_list.items(): + # k is the level + # v is the spell list and number of slots + lvl = int(k) + s = SpellList.from_spec(v) + slots[lvl] = s + spells.slots = slots + + return spells + + def html(self) -> str: + template = """ + {{ self.entry.html() }} + {% if self.slots %} + {% for spelllist in self.slots %} + {% if loop.index0 == 0 %}Cantrips (at will){% else %}{{ loop.index0 | ordinal }} level ({{self.slots.slots}} slots){% endif %}: {{ ", " | join(self.slots.spells)}} + {% endfor %} + {% endif %} + """ + + +@dataclass +class SpellList: + slots: int + spells: list[str] + + def from_spec(spec: dict[str, Any]) -> SpellList: + return SpellList( + slots = int(spec.get("slots", 0)), + spells = spec["spells"] + ) + +@dataclass +class DailySpellList: + per_day: int + spells: list[str] + + def from_spec(key: str, spells: list[str]) -> DailySpellList: + # The 'key' will be either a integer, or something like '2e' or '3'. + key = key.replace("e", "") + per_day = int(key) + return DailySpellList(per_day, spells) + + +@dataclass +class Modifier: + target: str + mod: int + + def __post_init__(self): + # Often, it's entered as '+1' or '-5'. + if isinstance(self.mod, str): + self.mod = int(self.mod) + + +@dataclass +class SkillMod(Modifier): + def __post_init__(self): + # Validate skills + allowed_skills = {"athletics", "acrobatics", "sleight of hand", "stealth", "arcana", "history", "investigation", "nature", "religion", "animal handling", "insight", "medicine", "perception", "survival", "deception", "intimidation", "performance", "persuasion"} + if self.target.casefold() not in allowed_skills: + raise ValueError(f"Invalid skill name: {self.target}") + return super().__post_init__() + + + def __str__(self): + return "{@skill " + self.target.title() + "} " + f"{self.mod:+}" + +@dataclass +class SkillList: + skills: list[SkillMod|SkillList] + mode: str = "all" + + def __post_init__(self): + allowed_modes = {"all", "any", "one"} + if self.mode not in allowed_modes: + raise ValueError(f"Invalid mode: {self.mode}") + + def __str__(self): + string = "" + if self.mode == "one": + string = "plus one of the following: " + elif self.mode == "any": + string.mode = "plus any of the following: " + string += ", ".join(str(x) for x in self.skills) + return string + + def from_spec(skill_spec: dict[str, str|dict]) -> SkillList: + if not skill_spec: + return None + skills = [] + for k, v in skill_spec.items(): + if k == "other": + # ex.: {other: [{oneOf: {arcana: +7, nature: +2}}]} + for item in v: + for k_, v_ in item.items(): + if k_ == "oneOf": + skills_ = SkillList.from_spec(v_) + skills_.mode = "one" + skills.append(skills_) + elif k_ == "anyOf": + skills_ = SpellList.from_spec(v_) + skills_.mode = "any" + skills.append(skills_) + elif k_ == "allOf": + # All is the default; we can just add these to the main list + skills += SpellList.from_spec(v_).skills + else: + skills.append(SkillMod(k, v)) + return SkillList(skills) \ No newline at end of file diff --git a/dmtoolkit/api/monsters.py b/dmtoolkit/api/monsters.py new file mode 100644 index 0000000..061e616 --- /dev/null +++ b/dmtoolkit/api/monsters.py @@ -0,0 +1,32 @@ +from pathlib import Path + +from dmtoolkit.api.models import Monster +from dmtoolkit.api.serialize import load_json + +DEFAULT_MONSTERS_FILE = Path(__file__).parent / "data" / "monsters.json" +MONSTERS: dict[str, Monster] = {} + +def get_monsters() -> dict[str, Monster]: + """Returns the MONSTERS dict.""" + if not MONSTERS: + with DEFAULT_MONSTERS_FILE.open("r") as f: + monster_list: list[Monster] = load_json(f) + for monster in monster_list: + if not monster: + breakpoint() + MONSTERS[monster.key] = monster + + return MONSTERS + + +def get_monster(key: str) -> Monster: + """Fetch a specific monster by key. Returns 'None' if there is no monster with that key.""" + return get_monsters().get(key, None) + + +def get_monster_names() -> list[tuple[str, str]]: + """Return a list of tuples containing the monster key and it's name.""" + namelist = [] + for monster_key, monster in get_monsters().items(): + namelist.append((monster_key, monster.name)) + return namelist \ No newline at end of file diff --git a/dmtoolkit/api/serialize.py b/dmtoolkit/api/serialize.py new file mode 100644 index 0000000..bc381e0 --- /dev/null +++ b/dmtoolkit/api/serialize.py @@ -0,0 +1,140 @@ +""" +Code for serializing and deserializing the custom classes. +""" +from collections.abc import Mapping, Sequence +from dataclasses import asdict, dataclass, fields, is_dataclass, _is_dataclass_instance +import inspect +import json + +import dmtoolkit.api.models + +_MODELS: dict[str, type] = {} + +def _get_models() -> dict[str, type]: + """Returns a mapping of model names to their classes. Used to map __dataclass_ fields from + serialized objects to their appropriate Python class.""" + # Lazy-load models + if not _MODELS: + for name, obj in inspect.getmembers(dmtoolkit.api.models): + if is_dataclass(obj): + _MODELS[name] = obj + return _MODELS + + +def _asdict_inner(o: dataclass) -> dict: + data = o.__dict__ + + field_types = {field.name: field.type for field in fields(o.__class__)} + delfields = [] + for field, val in data.items(): + # Check if optional + field_type = field_types.get(field) + if not field_type: + continue + if field_type.startswith("Optional["): + if val is None or (hasattr(val, "__iter__") and len(val) == 0): + delfields.append(field) + for field in delfields: + del data[field] + + return data | { "__dataclass__": type(o).__name__} + +def _asdict(obj: dataclass): + """Custom asdict that removed optional fields which are null.""" + if isinstance(obj, Sequence): + return type(obj)(*[_asdict(x) for x in obj]) + if isinstance(obj, Mapping): + return type(obj)(**{k: _asdict(v) for k, v in obj.items()}) + if is_dataclass(obj): + return _asdict_inner(obj) + return obj + + +class CustomEncoder(json.JSONEncoder): + def default(self, o): + if is_dataclass(o): + return _asdict(o) + return super().default(o) + + +class CustomDecoder(json.JSONDecoder): + def __init__(self, *args, **kwargs): + json.JSONDecoder.__init__(self, object_hook=self.object_hook, *args, **kwargs) + + def object_hook(self, o: dict): + if class_name := o.pop("__dataclass__", None): + if class_name: + models = _get_models() + class_ = models.get(class_name) + if not class_: + raise ValueError(f"Unknown dataclass '{class_name}'") + return class_(**o) + return o + + +def load_json(fp, *, parse_float=None, + parse_int=None, parse_constant=None, **kw): + """Deserialize ``fp`` (a ``.read()``-supporting file-like object containing a JSON document) to + a Python object. + """ + return json.load( + fp, + cls=CustomDecoder, + parse_float=parse_float, + parse_int=parse_int, + parse_constant=parse_constant + ) + + +def dump_json(obj, fp, *, skipkeys=False, ensure_ascii=True, check_circular=True, + allow_nan=True, indent=2, separators=None, + default=None, sort_keys=False, **kw): + """Serialize ``obj`` as a JSON formatted stream to ``fp`` (a + ``.write()``-supporting file-like object). + + If ``skipkeys`` is true then ``dict`` keys that are not basic types + (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped + instead of raising a ``TypeError``. + + If ``ensure_ascii`` is false, then the strings written to ``fp`` can + contain non-ASCII characters if they appear in strings contained in + ``obj``. Otherwise, all such characters are escaped in JSON strings. + + If ``check_circular`` is false, then the circular reference check + for container types will be skipped and a circular reference will + result in an ``RecursionError`` (or worse). + + If ``allow_nan`` is false, then it will be a ``ValueError`` to + serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) + in strict compliance of the JSON specification, instead of using the + JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``). + + If ``indent`` is a non-negative integer, then JSON array elements and + object members will be pretty-printed with that indent level. An indent + level of 0 will only insert newlines. ``None`` is the most compact + representation. + + If specified, ``separators`` should be an ``(item_separator, key_separator)`` + tuple. The default is ``(', ', ': ')`` if *indent* is ``None`` and + ``(',', ': ')`` otherwise. To get the most compact JSON representation, + you should specify ``(',', ':')`` to eliminate whitespace. + + ``default(obj)`` is a function that should return a serializable version + of obj or raise TypeError. The default simply raises TypeError. + + If *sort_keys* is true (default: ``False``), then the output of + dictionaries will be sorted by key. + """ + return json.dump( + obj, + fp, + skipkeys=skipkeys, + ensure_ascii=ensure_ascii, + check_circular=check_circular, + allow_nan=allow_nan, + cls = CustomEncoder, + indent=indent, + separators=separators, + default=default, + sort_keys=sort_keys + ) \ No newline at end of file diff --git a/dmtoolkit/filters.py b/dmtoolkit/filters.py index c649167..cece9ca 100644 --- a/dmtoolkit/filters.py +++ b/dmtoolkit/filters.py @@ -89,7 +89,21 @@ def render_status(match: re.Match) -> str: return f"""{status_text}""" +def ordinal(s: str | int) -> str: + if isinstance(s, int): + s = str(s) + if any(s.endswith(suffix) for suffix in ("11", "12", "13")): + return s + "th" + elif s.endswith("1"): + return s + "st" + elif s.endswith("2"): + return s + "nd" + elif s.endswith("3"): + return s + "rd" + else: + return s + "th" def add_filters(app): - app.jinja_env.filters["macro5e"] = Macro5e.render_macros \ No newline at end of file + app.jinja_env.filters["macro5e"] = Macro5e.render_macros + app.jinja_env.filters["ordinal"] = ordinal \ No newline at end of file diff --git a/dmtoolkit/inittracker/api.py b/dmtoolkit/inittracker/api.py deleted file mode 100644 index 5ced049..0000000 --- a/dmtoolkit/inittracker/api.py +++ /dev/null @@ -1,172 +0,0 @@ -from collections import defaultdict -from dataclasses import dataclass, asdict -import json -from pathlib import Path - -DATA_DIR = Path(__file__).parent / "data" - -MONSTERS: dict = {} -PLAYERS: list = [] - -def load_monsters(): - monsters = dict() - for fname in (DATA_DIR / "monsters").glob("*.json"): - with fname.open('r') as f: - contents = json.load(f) - for monster in contents.get("monster"): - key = f"{monster.get('name')}-{monster.get('source')}" - if not key: - continue # Skip cases where there's no monster name or source - # Calculte Monster Size - monster["sizeStr"] = { - "G": "Gargantuan", - "H": "Huge", - "L": "Large", - "M": "Medium", - "S": "Small", - "T": "Tiny" - }.get(monster.get("size", ["M"])[0]) - - # Calculate XP and add to statblock - cr = monster.get("cr") - if isinstance(cr, dict): - cr = cr.get("cr") - monster["xp"] = { - "0": 10, - "1/8": 25, - "1/4": 50, - "1/2": 100, - "1": 200, - "2": 450, - "3": 700, - "4": 1100, - "5": 1800, - "6": 2300, - "7": 2900, - "8": 3900, - "9": 5000, - "10": 5900, - "11": 7200, - "12": 8400, - "13": 10000, - "14": 11500, - "15": 13000, - "16": 15000, - "17": 18000, - "18": 20000, - "19": 22000, - "20": 25000, - "21": 33000, - "22": 41000, - "23": 50000, - "24": 62000, - "25": 75000, - "26": 90000, - "27": 105000, - "28": 120000, - "29": 135000, - "30": 155000 - }.get(cr, 0) - monsters[key] = monster - monster["acStr"] = str(calc_ac_str(monster)) - - return monsters - - -def get_monster(monster_name: str) -> dict: - monster = MONSTERS.get(monster_name) - if not monster: - return None - - if alignment := monster.get("alignment"): - monster["alignmentStr"] = calc_alignment(alignment) - - return monster - - -def get_monster_names() -> list[tuple[str, str]]: - """Returns a list of monster IDs and their display names.""" - namelist = [] - for monster_id, monster in MONSTERS.items(): - namelist.append((monster_id, monster.get("name", "UNKNOWN NAME"))) - return namelist - -def calc_alignment(alignment: list[str|dict]): - alignment_words = { - "A": "Any", - "U": "Unaligned", - "L": "Lawful", - "N": "Neutral", - "C": "Chaotic", - "G": "Good", - "E": "Evil" - } - - if isinstance(alignment[0], str): - if len(alignment) <= 2: - # Very simple case, like "chaotic neutral", "any evil", etc. - alignment_parts = [] - for char in alignment: - alignment_parts.append(alignment_words.get(char, "X")) - return " ".join(alignment_parts) - else: - # More complex; these are the "anything but" ones... - alignments = {"E", "G", "C", "L", "NY", "NX"} - alignment_set = set(alignment) - if len(alignment) == 5: - # Find the one that's missing - missing = (alignments - alignment_set).pop() - return f"Any Non-{alignment_words.get(missing)} Alignment" - elif len(alignment) == 4: - # Determine which axis is allowed - if {"E", "G"} < alignment_set: - if "C" in alignment_set: - return "Any Chaotic Alignment" - elif "L" in alignment_set: - return "Any Lawful Alignment" - elif {"L", "C"} < alignment_set: - if "E" in alignment_set: - return "Any Evil Alignment" - elif "G" in alignment_set: - return "Any Goof Alignment" - elif isinstance(alignment[0], dict): - if len(alignment) == 1: - if alignment_str := alignment[0].get("special"): - # Ex: [{'special': "as the eidolon's alignment"}] - return alignment_str - else: - if all("alignment" in item for item in alignment): - # Ex: [{'alignment': ['C', 'G'], 'chance': 75}, {'alignment': ['N', 'E'], 'chance': 25}] - alignment_strs = [] - for item in alignment: - s = calc_alignment(item["alignment"]) - if chance := item.get("chance"): - s += f" ({chance}%)" - alignment_strs.append(s) - return ", ".join(alignment_strs[:-1]) + " or " + alignment_strs[-1] - - return ValueError(f"Invalid alignment: {alignment}") - -def calc_ac_str(monster) -> str: - ac = monster.get("ac") - if isinstance(ac, int) or isinstance(ac, str): - return str(ac) - elif isinstance(ac, list): - if len(ac) == 1: - ac = ac[0] - if isinstance(ac, int): - return str(ac) - elif isinstance(ac, dict): - ac_str = "" - if "ac" in ac: - ac_str = str(ac["ac"]) - sources = [] - for item in ac.get("from", []): - sources.append(str(item)) - if sources: - ac_str += f" ({', '.join(sources)})" - return ac_str - -# -- NO FUNCTION DEFINITIONS PAST HERE -if not MONSTERS: - MONSTERS = load_monsters() \ No newline at end of file diff --git a/dmtoolkit/inittracker/routes.py b/dmtoolkit/inittracker/routes.py index ad2a305..9d84609 100644 --- a/dmtoolkit/inittracker/routes.py +++ b/dmtoolkit/inittracker/routes.py @@ -2,8 +2,8 @@ from flask import Blueprint, render_template, request -import dmtoolkit.inittracker.api as api from dmtoolkit.api.players import list_players +from dmtoolkit.api.monsters import get_monster, get_monster_names tracker_bp = Blueprint( "tracker_bp", @@ -19,8 +19,8 @@ def tracker(): page = { "title": "DMTTools - Init Tracker" } - monsters = api.get_monster_names() - monster = api.get_monster("Poltergeist-MM") + monsters = get_monster_names() + monster = get_monster("Poltergeist-MM") return render_template( "tracker.jinja2", page = page, @@ -30,37 +30,31 @@ def tracker(): ) @tracker_bp.route("/api/monsters", methods=["GET"]) -def get_monster(): +def get_monster_page(): name = request.args.get("name") - monster = api.get_monster(name) + monster = get_monster(name) return json.dumps(monster) @tracker_bp.route("/api/monsters-combat-overview", methods=["GET"]) def get_monster_combat_overview(): name = request.args.get("name") - monster = api.get_monster(name) - ac = monster.get("ac") - if isinstance(ac, list): - ac = ac[0] - if isinstance(ac, dict): - ac = ac.get("ac") - hp = monster.get("hp") - if isinstance(hp, dict): - hp = hp.get("average") - init_mod = int(monster.get("dex")) // 2 - 5 - pp = monster.get("passive") + monster = get_monster(name) + ac = monster.ac[0].value + hp = monster.hp.average + init_mod = int(monster.dexterity) // 2 - 5 + pp = monster.passive if not pp: - if perception_mod := monster.get("skill", {}).get("perception"): + if perception_mod := monster.skills.get("perception"): pp = 10 + perception_mod else: - wis_mod = int(monster.get("wis")) // 2 - 5 + wis_mod = int(monster.wisdom) // 2 - 5 pp = 10 + wis_mod return json.dumps({ - "name": monster["name"], + "name": monster.name, "ac": ac, "hp": hp, "initMod": init_mod, - "xp": monster.get("xp"), + "xp": monster.xp, "pp": pp }) @@ -85,7 +79,7 @@ def make_ordinal(n): def get_statblock_html(id: str): # Assume it's a monster # TODO: Add statblocks for players - monster = api.get_monster(id) + monster = get_monster(id) if not monster: return f"Preview Unavailable for {id}" diff --git a/dmtoolkit/inittracker/templates/statblock.jinja2 b/dmtoolkit/inittracker/templates/statblock.jinja2 index 8fcaaca..a114717 100644 --- a/dmtoolkit/inittracker/templates/statblock.jinja2 +++ b/dmtoolkit/inittracker/templates/statblock.jinja2 @@ -1,58 +1,63 @@

{{ monster.name }}

- {{ monster.sizeStr }} {{ monster.type | title }}, {{ monster.alignmentStr | default("Unaligned") }} + {{ monster.size_str }} {{ monster.maintype | title }}, {{ monster.alignment | default("Unaligned") }}
- Armor Class {{ monster.acStr }}
+ Armor Class {{ monster.ac | join(", ") }}
Hit Points {{ monster.hp.average }} ({{ monster.hp.formula }})
Speed {{ monster.speed.walk }} ft. - {%- if monster.speed | length > 1 -%} - {%- for type, speed in monster.speed.items() -%} - {%- if type != "walk" -%}, {{ type }} {{ speed }} ft.{%- endif -%} - {%- endfor -%} + {%- if monster.speed.fly -%} + , fly {{ monster.speed.fly }} ft. + {%- endif -%} + {%- if monster.speed.burrow -%} + , burrow {{ monster.speed.burrow }} ft. + {%- endif -%} + {%- if monster.speed.swim -%} + , swim {{ monster.speed.swim }} ft. + {%- endif -%} + {%- if monster.speed.climb -%} + , climb {{ monster.speed.climb }} ft. {%- endif -%}
- STR
{{ monster.str }} ({{ "%+d" | format(monster.str // 2 - 5) }}) + STR
{{ monster.strength }} ({{ "%+d" | format(monster.strength // 2 - 5) }})
- DEX
{{ monster.dex }} ({{ "%+d" | format(monster.dex // 2 - 5) }}) + DEX
{{ monster.dexterity }} ({{ "%+d" | format(monster.dexterity // 2 - 5) }})
- CON
{{ monster.con }} ({{ "%+d" | format(monster.con // 2 - 5) }}) + CON
{{ monster.constitution }} ({{ "%+d" | format(monster.constitution // 2 - 5) }})
- INT
{{ monster.int }} ({{ "%+d" | format(monster.int // 2 - 5) }}) + INT
{{ monster.intelligence }} ({{ "%+d" | format(monster.intelligence // 2 - 5) }})
- WIS
{{ monster.wis }} ({{ "%+d" | format(monster.wis // 2 - 5) }}) + WIS
{{ monster.wisdom }} ({{ "%+d" | format(monster.wisdom // 2 - 5) }})
- CHA
{{ monster.cha }} ({{ "%+d" | format(monster.cha // 2 - 5) }}) + CHA
{{ monster.charisma }} ({{ "%+d" | format(monster.charisma // 2 - 5) }})

- {% if "save" in monster %} + {% if monster.saves %} Saving Throws - {% for stat, mod in monster.save.items() %} + {% for stat, mod in monster.saves.items() %} {{ stat | title }} {{ mod }}{% if not loop.last %},{% endif %} {%- endfor -%}
{% endif %} - {% if "skill" in monster %} + {% if monster.skills %} Skills - {% for skill, mod in monster.skill.items() %} - {{ skill | title }} {{ mod }}{% if not loop.last %},{% endif %} - {%- endfor -%} + {{ monster.skills | macro5e }}
{% endif %} - {% if "resist" in monster %} + {% if monster.dmg_resistances %} Damage Resistances {{ monster.resist | join(", ") | macro5e }}
{% endif %} - {% if "immune" in monster %} + {% if monster.dmg_immunities %} Damage Immunities - {% for immunity in monster.immune %} + {% for immunity in monster.dmg_immunities %} {% if immunity is string %}{{ immunity }}{% endif -%} {% if immunity is mapping %} {{ immunity.immune | join(", ") | macro5e }} {{ immunity.note }} @@ -61,16 +66,16 @@ {%- endfor -%}
{% endif %} - {% if "conditionImmune" in monster %} + {% if monster.cond_immunities %} Condition Immunities - {{ monster.conditionImmune | join(", ") | macro5e }}
+ {{ monster.cond_immunities | join(", ") | macro5e }}
{% endif %} Senses - {% if "senses" in monster %} + {% if monster.senses %} {% for sense in monster.senses %}{{ sense }}, {% endfor %} {% endif %} passive Perception {{ monster.passive }}
- {% if "languages" in monster %} + {% if monster.languages %} Languages {% for lang in monster.languages %} {{ lang }} @@ -84,55 +89,52 @@ {% else %} {{ monster.cr }} {% endif %} - {% if "trait" in monster or "spellcasting" in monster %} + {% if monster.traits or monster.spellcasting %}
{% endif %} - {% if "trait" in monster %} - {% for trait in monster.trait %} -

{{ trait.name }}. {{ trait.entries | join(" ") | macro5e }}

+ {% if monster.traits %} + {% for trait in monster.traits %} + trait.html() {% endfor %} {% endif %} - {% if "spellcasting" in monster %} -

- {{ monster.spellcasting[0].name }}. {{ monster.spellcasting[0].headerEntries | join(" ") | macro5e }}
- {% if "spells" in monster.spellcasting[0] %} - {% for level, spellset in monster.spellcasting[0].spells.items() %} - {% if level == "0" %} - Cantrips (at will): - {% else %} - {{ level | ordinal }} level ({{ spellset.slots }} slots): - {% endif %} - {{ spellset.spells | join(", ") | macro5e }}
+ {% if monster.spellcasting %} + {% for spellspec in monster.spellcasting %} + {% if spellspec.header %} + {{ spellspec.header.html() }} + {% endif %} + {% if spellspec.slots %} + Cantrips (at will): {{ spellspec.slots[0].spells | join(", ") | macro5e }}
+ {% for spell_list in spellspec.slots[1:] %} + {{ loop.index | ordinal }} Level ({{spell_list.slots}}): {{ spell_list.spells | join(", ") | macro5e }}
{% endfor %} {% endif %} - {% if "will" in monster.spellcasting[0] %} - At will: {{ monster.spellcasting[0].will | join(", ") | macro5e }}
+ {% if spellspec.at_will %} + At will: {{ spellspec.at_will.spells | join(", ") | macro5e }}
{% endif %} - {% if "daily" in monster.spellcasting[0] %} - {% for num, spells in monster.spellcasting[0].daily.items() %} - {{num}}/day: {{ spells | join(", ") | macro5e }}
+ {% if spellspec.daily %} + {% for spell_list in spellspec.daily %} + {{ spell_list.per_day }}/day: {{ spell_list.spells | join(", ") | macro5e }}
{% endfor %} {% endif %} -

+ {% endfor %} {% endif %} - {% if "action" in monster %} + {% if monster.actions %}

Actions

- {% for action in monster.action %} -

{{ action.name }}. {{ action.entries | join(" ") | macro5e }}

+ {% for action in monster.actions %} + {{ action.html() | macro5e }} {% endfor %} {% endif %} - {% if "bonus" in monster %} + {% if monster.bonus %}

Bonus Actions

{% for action in monster.bonus %} -

{{ action.name }}. {{ action.entries | join(" ") | macro5e }}

+ {{ action.html() | macro5e }} {% endfor %} {% endif %} - {% if "legendary" in monster %} -

Legendary Actions

+ {% if monster.legendary_actions %} +

{{ monster.legendary_actions.title or "Legendary Actions" }}

The {{ monster.name }} can take 3 legendary actions, choosing from the options below. Only one legendary action can be used at a time and only at the end of another creature's turn. The {{ monster.name }} regains spent legendary actions at the start of its turn. - {% for action in monster.legendary %} -

{{ action.name }}. {{ action.entries | join(" ") | macro5e }}

- {% endfor %} + {{ monster.legendary_actions.header }} + {{ monster.legendary_actions.body }} {% endif %}
\ No newline at end of file diff --git a/playground.py b/playground.py index 3731378..50ac2f3 100644 --- a/playground.py +++ b/playground.py @@ -1,3 +1,7 @@ -from dmtoolkit.inittracker.api import get_monster +from dmtoolkit.inittracker.api import MONSTERS +fields = set() +for m in MONSTERS.values(): + fields |= set(m.get("speed", {}).keys()) -print(get_monster("Lich-MM")) \ No newline at end of file +for s in fields: + print(s) \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index cd364e1..9d456db 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. [[package]] name = "async-timeout" @@ -11,6 +11,25 @@ files = [ {file = "async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3"}, ] +[[package]] +name = "attrs" +version = "25.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.8" +files = [ + {file = "attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a"}, + {file = "attrs-25.1.0.tar.gz", hash = "sha256:1c97078a80c814273a76b2a298a932eb681c87415c11dee0a6921de7f1b02c3e"}, +] + +[package.extras] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] + [[package]] name = "blinker" version = "1.9.0" @@ -33,6 +52,96 @@ files = [ {file = "cachelib-0.13.0.tar.gz", hash = "sha256:209d8996e3c57595bee274ff97116d1d73c4980b2fd9a34c7846cd07fd2e1a48"}, ] +[[package]] +name = "certifi" +version = "2025.1.31" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe"}, + {file = "certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651"}, +] + +[[package]] +name = "cffi" +version = "1.17.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, +] + +[package.dependencies] +pycparser = "*" + [[package]] name = "click" version = "8.1.8" @@ -58,6 +167,17 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] +[[package]] +name = "dominate" +version = "2.9.1" +description = "Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API." +optional = false +python-versions = ">=3.4" +files = [ + {file = "dominate-2.9.1-py2.py3-none-any.whl", hash = "sha256:cb7b6b79d33b15ae0a6e87856b984879927c7c2ebb29522df4c75b28ffd9b989"}, + {file = "dominate-2.9.1.tar.gz", hash = "sha256:558284687d9b8aae1904e3d6051ad132dd4a8c0cf551b37ea4e7e42a31d19dc4"}, +] + [[package]] name = "flask" version = "3.1.0" @@ -123,6 +243,31 @@ wtforms = "*" [package.extras] email = ["email-validator"] +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "idna" +version = "3.10" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.6" +files = [ + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, +] + +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "itsdangerous" version = "2.2.0" @@ -273,6 +418,43 @@ test = ["attrs", "eval-type-backport", "msgpack", "pytest", "pyyaml", "tomli", " toml = ["tomli", "tomli_w"] yaml = ["pyyaml"] +[[package]] +name = "outcome" +version = "1.3.0.post0" +description = "Capture the outcome of Python function calls." +optional = false +python-versions = ">=3.7" +files = [ + {file = "outcome-1.3.0.post0-py2.py3-none-any.whl", hash = "sha256:e771c5ce06d1415e356078d3bdd68523f284b4ce5419828922b6871e65eda82b"}, + {file = "outcome-1.3.0.post0.tar.gz", hash = "sha256:9dcf02e65f2971b80047b377468e72a268e15c0af3cf1238e6ff14f7f91143b8"}, +] + +[package.dependencies] +attrs = ">=19.2.0" + +[[package]] +name = "pycparser" +version = "2.22" +description = "C parser in Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, + {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, +] + +[[package]] +name = "pysocks" +version = "1.7.1" +description = "A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "PySocks-1.7.1-py27-none-any.whl", hash = "sha256:08e69f092cc6dbe92a0fdd16eeb9b9ffbc13cadfe5ca4c7bd92ffb078b293299"}, + {file = "PySocks-1.7.1-py3-none-any.whl", hash = "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5"}, + {file = "PySocks-1.7.1.tar.gz", hash = "sha256:3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0"}, +] + [[package]] name = "python-dotenv" version = "1.0.1" @@ -305,6 +487,129 @@ async-timeout = {version = ">=4.0.3", markers = "python_full_version < \"3.11.3\ hiredis = ["hiredis (>=3.0.0)"] ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==23.2.1)", "requests (>=2.31.0)"] +[[package]] +name = "selenium" +version = "4.29.0" +description = "Official Python bindings for Selenium WebDriver" +optional = false +python-versions = ">=3.9" +files = [ + {file = "selenium-4.29.0-py3-none-any.whl", hash = "sha256:ce5d26f1ddc1111641113653af33694c13947dd36c2df09cdd33f554351d372e"}, + {file = "selenium-4.29.0.tar.gz", hash = "sha256:3a62f7ec33e669364a6c0562a701deb69745b569c50d55f1a912bf8eb33358ba"}, +] + +[package.dependencies] +certifi = ">=2021.10.8" +trio = ">=0.17,<1.0" +trio-websocket = ">=0.9,<1.0" +typing_extensions = ">=4.9,<5.0" +urllib3 = {version = ">=1.26,<3", extras = ["socks"]} +websocket-client = ">=1.8,<2.0" + +[[package]] +name = "sniffio" +version = "1.3.1" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, +] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +optional = false +python-versions = "*" +files = [ + {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, + {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, +] + +[[package]] +name = "trio" +version = "0.29.0" +description = "A friendly Python library for async concurrency and I/O" +optional = false +python-versions = ">=3.9" +files = [ + {file = "trio-0.29.0-py3-none-any.whl", hash = "sha256:d8c463f1a9cc776ff63e331aba44c125f423a5a13c684307e828d930e625ba66"}, + {file = "trio-0.29.0.tar.gz", hash = "sha256:ea0d3967159fc130acb6939a0be0e558e364fee26b5deeecc893a6b08c361bdf"}, +] + +[package.dependencies] +attrs = ">=23.2.0" +cffi = {version = ">=1.14", markers = "os_name == \"nt\" and implementation_name != \"pypy\""} +idna = "*" +outcome = "*" +sniffio = ">=1.3.0" +sortedcontainers = "*" + +[[package]] +name = "trio-websocket" +version = "0.12.2" +description = "WebSocket library for Trio" +optional = false +python-versions = ">=3.8" +files = [ + {file = "trio_websocket-0.12.2-py3-none-any.whl", hash = "sha256:df605665f1db533f4a386c94525870851096a223adcb97f72a07e8b4beba45b6"}, + {file = "trio_websocket-0.12.2.tar.gz", hash = "sha256:22c72c436f3d1e264d0910a3951934798dcc5b00ae56fc4ee079d46c7cf20fae"}, +] + +[package.dependencies] +outcome = ">=1.2.0" +trio = ">=0.11" +wsproto = ">=0.14" + +[[package]] +name = "typing-extensions" +version = "4.12.2" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, +] + +[[package]] +name = "urllib3" +version = "2.3.0" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.9" +files = [ + {file = "urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df"}, + {file = "urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d"}, +] + +[package.dependencies] +pysocks = {version = ">=1.5.6,<1.5.7 || >1.5.7,<2.0", optional = true, markers = "extra == \"socks\""} + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "websocket-client" +version = "1.8.0" +description = "WebSocket client for Python with low level API options" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"}, + {file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"}, +] + +[package.extras] +docs = ["Sphinx (>=6.0)", "myst-parser (>=2.0.0)", "sphinx-rtd-theme (>=1.1.0)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + [[package]] name = "werkzeug" version = "3.1.3" @@ -322,6 +627,20 @@ MarkupSafe = ">=2.1.1" [package.extras] watchdog = ["watchdog (>=2.3)"] +[[package]] +name = "wsproto" +version = "1.2.0" +description = "WebSockets state-machine based protocol implementation" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "wsproto-1.2.0-py3-none-any.whl", hash = "sha256:b9acddd652b585d75b20477888c56642fdade28bdfd3579aa24a4d2c037dd736"}, + {file = "wsproto-1.2.0.tar.gz", hash = "sha256:ad565f26ecb92588a3e43bc3d96164de84cd9902482b130d0ddbaa9664a85065"}, +] + +[package.dependencies] +h11 = ">=0.9.0,<1" + [[package]] name = "wtforms" version = "3.2.1" @@ -342,4 +661,4 @@ email = ["email-validator"] [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "60fd6567b59bd981e74ede80c7bf1387caa8d5132df3e0e0142d0a54ac81db4a" +content-hash = "d5a4c6b6c36cefa9b0c947959f4aa2d7f2edaccba9c03e6e85fcc2bbbc0d3b46" diff --git a/pyproject.toml b/pyproject.toml index 1736e9d..f8f67bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,13 @@ flask-session = "^0.8.0" redis = "^5.2.1" +[tool.poetry.group.dev.dependencies] + + +[tool.poetry.group.cmd.dependencies] +selenium = "^4.29.0" +dominate = "^2.9.1" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"